# WordPress MySQL database migration
#
# Generated: Thursday 21. February 2019 06:06 UTC
# Hostname: localhost
# Database: `vicenzol_rlive`
# --------------------------------------------------------

/*!40101 SET NAMES utf8mb4 */;

SET sql_mode='NO_AUTO_VALUE_ON_ZERO';



#
# Delete any existing table `wp2o_cf7dbplugin_st`
#

DROP TABLE IF EXISTS `wp2o_cf7dbplugin_st`;


#
# Table structure of table `wp2o_cf7dbplugin_st`
#

CREATE TABLE `wp2o_cf7dbplugin_st` (
  `submit_time` decimal(16,4) NOT NULL,
  PRIMARY KEY (`submit_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_cf7dbplugin_st`
#

#
# End of data contents of table `wp2o_cf7dbplugin_st`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_cf7dbplugin_submits`
#

DROP TABLE IF EXISTS `wp2o_cf7dbplugin_submits`;


#
# Table structure of table `wp2o_cf7dbplugin_submits`
#

CREATE TABLE `wp2o_cf7dbplugin_submits` (
  `submit_time` decimal(16,4) NOT NULL,
  `form_name` varchar(127) CHARACTER SET utf8 DEFAULT NULL,
  `field_name` varchar(127) CHARACTER SET utf8 DEFAULT NULL,
  `field_value` longtext CHARACTER SET utf8,
  `field_order` int(11) DEFAULT NULL,
  `file` longblob,
  KEY `submit_time_idx` (`submit_time`),
  KEY `form_name_idx` (`form_name`),
  KEY `field_name_idx` (`field_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_cf7dbplugin_submits`
#

#
# End of data contents of table `wp2o_cf7dbplugin_submits`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_commentmeta`
#

DROP TABLE IF EXISTS `wp2o_commentmeta`;


#
# Table structure of table `wp2o_commentmeta`
#

CREATE TABLE `wp2o_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_commentmeta`
#

#
# End of data contents of table `wp2o_commentmeta`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_comments`
#

DROP TABLE IF EXISTS `wp2o_comments`;


#
# Table structure of table `wp2o_comments`
#

CREATE TABLE `wp2o_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_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=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_comments`
#

#
# End of data contents of table `wp2o_comments`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_links`
#

DROP TABLE IF EXISTS `wp2o_links`;


#
# Table structure of table `wp2o_links`
#

CREATE TABLE `wp2o_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_links`
#

#
# End of data contents of table `wp2o_links`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_optin_meta`
#

DROP TABLE IF EXISTS `wp2o_optin_meta`;


#
# Table structure of table `wp2o_optin_meta`
#

CREATE TABLE `wp2o_optin_meta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `optin_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `optin_id` (`optin_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_optin_meta`
#

#
# End of data contents of table `wp2o_optin_meta`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_optins`
#

DROP TABLE IF EXISTS `wp2o_optins`;


#
# Table structure of table `wp2o_optins`
#

CREATE TABLE `wp2o_optins` (
  `optin_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `blog_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `optin_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `optin_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `optin_message` longtext COLLATE utf8_unicode_ci NOT NULL,
  `optin_mail_list` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
  `optin_provider` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `active` tinyint(4) DEFAULT '1',
  `test_mode` tinyint(4) DEFAULT '0',
  PRIMARY KEY (`optin_id`),
  KEY `blog_id` (`blog_id`),
  KEY `active` (`active`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_optins`
#

#
# End of data contents of table `wp2o_optins`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_options`
#

DROP TABLE IF EXISTS `wp2o_options`;


#
# Table structure of table `wp2o_options`
#

CREATE TABLE `wp2o_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=139352 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_options`
#
INSERT INTO `wp2o_options` ( `option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://www.investors-watch.com/wp-staging/ranhill', 'yes'),
(2, 'home', 'http://www.investors-watch.com/wp-staging/ranhill', 'yes'),
(3, 'blogname', 'Ranhill', 'yes'),
(4, 'blogdescription', 'Ranhill', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'ryanlee@hdprint.my', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'closed', 'yes'),
(20, 'default_ping_status', 'closed', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '4', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:249:{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: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:39:"client-item/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:49:"client-item/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:69:"client-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:64:"client-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:64:"client-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:45:"client-item/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:28:"client-item/([^/]+)/embed/?$";s:39:"index.php?client=$matches[1]&embed=true";s:32:"client-item/([^/]+)/trackback/?$";s:33:"index.php?client=$matches[1]&tb=1";s:40:"client-item/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?client=$matches[1]&paged=$matches[2]";s:47:"client-item/([^/]+)/comment-page-([0-9]{1,})/?$";s:46:"index.php?client=$matches[1]&cpage=$matches[2]";s:36:"client-item/([^/]+)(?:/([0-9]+))?/?$";s:45:"index.php?client=$matches[1]&page=$matches[2]";s:28:"client-item/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:38:"client-item/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:58:"client-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:53:"client-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:53:"client-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:34:"client-item/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:53:"client-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?client-types=$matches[1]&feed=$matches[2]";s:48:"client-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?client-types=$matches[1]&feed=$matches[2]";s:29:"client-types/([^/]+)/embed/?$";s:45:"index.php?client-types=$matches[1]&embed=true";s:41:"client-types/([^/]+)/page/?([0-9]{1,})/?$";s:52:"index.php?client-types=$matches[1]&paged=$matches[2]";s:23:"client-types/([^/]+)/?$";s:34:"index.php?client-types=$matches[1]";s:38:"offer-item/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:48:"offer-item/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:68:"offer-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"offer-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"offer-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:44:"offer-item/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:27:"offer-item/([^/]+)/embed/?$";s:38:"index.php?offer=$matches[1]&embed=true";s:31:"offer-item/([^/]+)/trackback/?$";s:32:"index.php?offer=$matches[1]&tb=1";s:39:"offer-item/([^/]+)/page/?([0-9]{1,})/?$";s:45:"index.php?offer=$matches[1]&paged=$matches[2]";s:46:"offer-item/([^/]+)/comment-page-([0-9]{1,})/?$";s:45:"index.php?offer=$matches[1]&cpage=$matches[2]";s:35:"offer-item/([^/]+)(?:/([0-9]+))?/?$";s:44:"index.php?offer=$matches[1]&page=$matches[2]";s:27:"offer-item/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"offer-item/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"offer-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"offer-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"offer-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"offer-item/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:52:"offer-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?offer-types=$matches[1]&feed=$matches[2]";s:47:"offer-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?offer-types=$matches[1]&feed=$matches[2]";s:28:"offer-types/([^/]+)/embed/?$";s:44:"index.php?offer-types=$matches[1]&embed=true";s:40:"offer-types/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?offer-types=$matches[1]&paged=$matches[2]";s:22:"offer-types/([^/]+)/?$";s:33:"index.php?offer-types=$matches[1]";s:42:"portfolio-item/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:52:"portfolio-item/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:72:"portfolio-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:67:"portfolio-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:67:"portfolio-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:48:"portfolio-item/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:31:"portfolio-item/([^/]+)/embed/?$";s:42:"index.php?portfolio=$matches[1]&embed=true";s:35:"portfolio-item/([^/]+)/trackback/?$";s:36:"index.php?portfolio=$matches[1]&tb=1";s:43:"portfolio-item/([^/]+)/page/?([0-9]{1,})/?$";s:49:"index.php?portfolio=$matches[1]&paged=$matches[2]";s:50:"portfolio-item/([^/]+)/comment-page-([0-9]{1,})/?$";s:49:"index.php?portfolio=$matches[1]&cpage=$matches[2]";s:39:"portfolio-item/([^/]+)(?:/([0-9]+))?/?$";s:48:"index.php?portfolio=$matches[1]&page=$matches[2]";s:31:"portfolio-item/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:41:"portfolio-item/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:61:"portfolio-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:"portfolio-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:"portfolio-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:37:"portfolio-item/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:56:"portfolio-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:54:"index.php?portfolio-types=$matches[1]&feed=$matches[2]";s:51:"portfolio-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:54:"index.php?portfolio-types=$matches[1]&feed=$matches[2]";s:32:"portfolio-types/([^/]+)/embed/?$";s:48:"index.php?portfolio-types=$matches[1]&embed=true";s:44:"portfolio-types/([^/]+)/page/?([0-9]{1,})/?$";s:55:"index.php?portfolio-types=$matches[1]&paged=$matches[2]";s:26:"portfolio-types/([^/]+)/?$";s:37:"index.php?portfolio-types=$matches[1]";s:38:"slide-item/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:48:"slide-item/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:68:"slide-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"slide-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"slide-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:44:"slide-item/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:27:"slide-item/([^/]+)/embed/?$";s:38:"index.php?slide=$matches[1]&embed=true";s:31:"slide-item/([^/]+)/trackback/?$";s:32:"index.php?slide=$matches[1]&tb=1";s:39:"slide-item/([^/]+)/page/?([0-9]{1,})/?$";s:45:"index.php?slide=$matches[1]&paged=$matches[2]";s:46:"slide-item/([^/]+)/comment-page-([0-9]{1,})/?$";s:45:"index.php?slide=$matches[1]&cpage=$matches[2]";s:35:"slide-item/([^/]+)(?:/([0-9]+))?/?$";s:44:"index.php?slide=$matches[1]&page=$matches[2]";s:27:"slide-item/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"slide-item/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"slide-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"slide-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"slide-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"slide-item/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:52:"slide-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?slide-types=$matches[1]&feed=$matches[2]";s:47:"slide-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?slide-types=$matches[1]&feed=$matches[2]";s:28:"slide-types/([^/]+)/embed/?$";s:44:"index.php?slide-types=$matches[1]&embed=true";s:40:"slide-types/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?slide-types=$matches[1]&paged=$matches[2]";s:22:"slide-types/([^/]+)/?$";s:33:"index.php?slide-types=$matches[1]";s:44:"testimonial-item/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:54:"testimonial-item/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:74:"testimonial-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:69:"testimonial-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:69:"testimonial-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:50:"testimonial-item/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:33:"testimonial-item/([^/]+)/embed/?$";s:44:"index.php?testimonial=$matches[1]&embed=true";s:37:"testimonial-item/([^/]+)/trackback/?$";s:38:"index.php?testimonial=$matches[1]&tb=1";s:45:"testimonial-item/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?testimonial=$matches[1]&paged=$matches[2]";s:52:"testimonial-item/([^/]+)/comment-page-([0-9]{1,})/?$";s:51:"index.php?testimonial=$matches[1]&cpage=$matches[2]";s:41:"testimonial-item/([^/]+)(?:/([0-9]+))?/?$";s:50:"index.php?testimonial=$matches[1]&page=$matches[2]";s:33:"testimonial-item/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:43:"testimonial-item/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:63:"testimonial-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"testimonial-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"testimonial-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:39:"testimonial-item/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:58:"testimonial-types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:56:"index.php?testimonial-types=$matches[1]&feed=$matches[2]";s:53:"testimonial-types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:56:"index.php?testimonial-types=$matches[1]&feed=$matches[2]";s:34:"testimonial-types/([^/]+)/embed/?$";s:50:"index.php?testimonial-types=$matches[1]&embed=true";s:46:"testimonial-types/([^/]+)/page/?([0-9]{1,})/?$";s:57:"index.php?testimonial-types=$matches[1]&paged=$matches[2]";s:28:"testimonial-types/([^/]+)/?$";s:39:"index.php?testimonial-types=$matches[1]";s:39:"layout-item/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:49:"layout-item/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:69:"layout-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:64:"layout-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:64:"layout-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:45:"layout-item/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:28:"layout-item/([^/]+)/embed/?$";s:39:"index.php?layout=$matches[1]&embed=true";s:32:"layout-item/([^/]+)/trackback/?$";s:33:"index.php?layout=$matches[1]&tb=1";s:40:"layout-item/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?layout=$matches[1]&paged=$matches[2]";s:47:"layout-item/([^/]+)/comment-page-([0-9]{1,})/?$";s:46:"index.php?layout=$matches[1]&cpage=$matches[2]";s:36:"layout-item/([^/]+)(?:/([0-9]+))?/?$";s:45:"index.php?layout=$matches[1]&page=$matches[2]";s:28:"layout-item/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:38:"layout-item/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:58:"layout-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:53:"layout-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:53:"layout-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:34:"layout-item/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:41:"template-item/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:51:"template-item/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:71:"template-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:66:"template-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:66:"template-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:47:"template-item/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:30:"template-item/([^/]+)/embed/?$";s:41:"index.php?template=$matches[1]&embed=true";s:34:"template-item/([^/]+)/trackback/?$";s:35:"index.php?template=$matches[1]&tb=1";s:42:"template-item/([^/]+)/page/?([0-9]{1,})/?$";s:48:"index.php?template=$matches[1]&paged=$matches[2]";s:49:"template-item/([^/]+)/comment-page-([0-9]{1,})/?$";s:48:"index.php?template=$matches[1]&cpage=$matches[2]";s:38:"template-item/([^/]+)(?:/([0-9]+))?/?$";s:47:"index.php?template=$matches[1]&page=$matches[2]";s:30:"template-item/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:40:"template-item/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:60:"template-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:55:"template-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:55:"template-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:36:"template-item/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:8:"embed/?$";s:21:"index.php?&embed=true";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:38:"index.php?&page_id=6&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'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:11:{i:0;s:35:"advanced-iframe/advanced-iframe.php";i:1;s:58:"contact-form-7-to-database-extension/contact-form-7-db.php";i:2;s:36:"contact-form-7/wp-contact-form-7.php";i:3;s:33:"duplicate-post/duplicate-post.php";i:4;s:59:"force-regenerate-thumbnails/force-regenerate-thumbnails.php";i:5;s:19:"jetpack/jetpack.php";i:6;s:27:"js_composer/js_composer.php";i:7;s:29:"pdf-embedder/pdf_embedder.php";i:8;s:23:"revslider/revslider.php";i:9;s:23:"wordfence/wordfence.php";i:10;s:31:"wp-migrate-db/wp-migrate-db.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', 'a:5:{i:0;s:63:"/home/vicenzol/public_html/wp-content/themes/betheme/header.php";i:1;s:62:"/home/vicenzol/public_html/wp-content/themes/betheme/style.css";i:3;s:89:"/home/vicenzol/public_html/wp-content/plugins/popup-with-fancybox/inc/jquery.fancybox.css";i:4;s:89:"/home/vicenzol/public_html/wp-content/plugins/popup-with-fancybox/popup-with-fancybox.php";i:5;s:73:"/home/vicenzol/public_html/wp-content/plugins/LayerSlider/layerslider.php";}', 'no'),
(40, 'template', 'betheme', 'yes'),
(41, 'stylesheet', 'betheme', 'yes'),
(42, 'comment_whitelist', '1', 'yes'),
(43, 'blacklist_keys', '', 'no'),
(44, 'comment_registration', '', 'yes'),
(45, 'html_type', 'text/html', 'yes'),
(46, 'use_trackback', '0', 'yes'),
(47, 'default_role', 'subscriber', 'yes'),
(48, 'db_version', '38590', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '1', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'page', 'yes'),
(54, 'tag_base', '', 'yes'),
(55, 'show_avatars', '1', 'yes'),
(56, 'avatar_rating', 'G', 'yes'),
(57, 'upload_url_path', '', 'yes'),
(58, 'thumbnail_size_w', '150', 'yes'),
(59, 'thumbnail_size_h', '150', 'yes'),
(60, 'thumbnail_crop', '1', 'yes'),
(61, 'medium_size_w', '300', 'yes'),
(62, 'medium_size_h', '300', 'yes'),
(63, 'avatar_default', 'mystery', 'yes'),
(64, 'large_size_w', '1024', 'yes'),
(65, 'large_size_h', '1024', 'yes'),
(66, 'image_default_link_type', 'none', 'yes'),
(67, 'image_default_size', '', 'yes'),
(68, 'image_default_align', '', 'yes'),
(69, 'close_comments_for_old_posts', '', 'yes'),
(70, 'close_comments_days_old', '14', 'yes'),
(71, 'thread_comments', '1', 'yes'),
(72, 'thread_comments_depth', '5', 'yes'),
(73, 'page_comments', '', 'yes'),
(74, 'comments_per_page', '50', 'yes'),
(75, 'default_comments_page', 'newest', 'yes'),
(76, 'comment_order', 'asc', 'yes'),
(77, 'sticky_posts', 'a:0:{}', 'yes'),
(78, 'widget_categories', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(79, 'widget_text', 'a:3:{i:1;a:0:{}i:2;a:3:{s:5:"title";s:0:"";s:4:"text";s:3129:"<div class="section mcb-section full-width center hide-tablet hide-mobile" style="padding-top:20px;padding-bottom:0px;background-color:#333333;font-size: 14px;width: 100%;"><div class="section_wrapper mcb-section-inner"><div class="wrap mcb-wrap one  valign-top clearfix" style=""><div class="mcb-wrap-inner"><div class="column mcb-column one-six column_column  column-margin-" style="\r\n    width: 7%;\r\n">\r\n  <div class="column_attr clearfix align_left" style=""><a href="http://investors-watch.com/wp-staging/ranhill"><div class="footer-menu">Home</div></a></div></div><div class="column mcb-column one-six column_column  column-margin-" style="\r\n    width: 18%;\r\n">\r\n    <div class="column_attr clearfix align_left" style=""><a href="/about-us/"><div class="footer-menu">About Us</div></a>\r\n\r\n<a href="/our-vision-mission-values/">Our Vision, Mission &amp; Values</a><br>\r\n<a href="/board-of-directors/">Board of Directors</a> <br/>\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/">Sharing Our Expertise</a><br/>\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/">Corporate Governance</a><br/>\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/">Code of Conduct and Business Ethics</a><br/>\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/career/">Career</a></div></div><div class="column mcb-column one-six column_column  column-margin-" style="\r\n    width: 15%;\r\n">\r\n  <div class="column_attr clearfix align_left" style=""><a href="/our-business/"><div class="footer-menu">Our Business</div></a>\r\n\r\n<a href="/water-supply-services/">Water Supply Services </a><br>\r\n<a href="/water-and-waste-water-treatment/">Water and Wastewater Treatment</a><br>\r\n<a href="/non-revenue-water/">Non-Revenue Water</a><br>\r\n<a href="/clean-energy/">Clean Energy</a> </div></div><div class="column mcb-column one-six column_column  column-margin-" style="\r\n    width: 15%;\r\n">\r\n  <div class="column_attr clearfix align_left" style=""><a href="/sustainability/"><div class="footer-menu">Sustainability</div></a>\r\n \r\n\r\n<a href="/sustainability-report/">Sustainability Report</a><br>\r\n<a href="/sustainability-policies/">Sustainability Policies</a><br>\r\n<a  href="/whistle-blowing/">Whistleblowing</a>\r\n</div></div><div class="column mcb-column one-six column_column  column-margin-" style="\r\n    width: 13%;\r\n">\r\n  <div class="column_attr clearfix align_left" style=""><a href="/investor-relations/"><div class="footer-menu">Investor Relations</div></a></div></div><div class="column mcb-column one-six column_column  column-margin-" style="\r\n    width: 9%;\r\n">\r\n    <div class="column_attr clearfix align_left" style=""><a href="/media/"><div class="footer-menu">Media</div></a>\r\n    <a href="/press-release/">Press Release</a><br>\r\n<a href="video/">Video</a><br>\r\n</div></div><div class="column mcb-column one-six column_column  column-margin-" style="\r\n    width: 7%;\r\n">\r\n  <div class="column_attr clearfix" style=""><a href="/contact/"><div class="footer-menu">Contact</div></a></div></div></div></div></div>\r\n		</div>";s:6:"filter";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '6', 'yes'),
(85, 'default_post_format', '0', 'yes'),
(86, 'link_manager_enabled', '0', 'yes'),
(87, 'finished_splitting_shared_terms', '1', 'yes'),
(88, 'site_icon', '0', 'yes'),
(89, 'medium_large_size_w', '768', 'yes'),
(90, 'medium_large_size_h', '0', 'yes'),
(91, 'initial_db_version', '36686', 'yes'),
(92, 'wp2o_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:10:"copy_posts";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:35:{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:10:"copy_posts";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(93, 'widget_search', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_recent-posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'sidebars_widgets', 'a:16:{s:19:"wp_inactive_widgets";a:0:{}s:13:"footer-area-1";a:1:{i:0;s:6:"text-2";}s:13:"footer-area-2";a:0:{}s:13:"footer-area-3";a:0:{}s:13:"footer-area-4";a:0:{}s:10:"top-area-1";a:0:{}s:10:"top-area-2";a:0:{}s:10:"top-area-3";a:0:{}s:10:"top-area-4";a:0:{}s:10:"mfn-search";a:0:{}s:5:"forum";a:0:{}s:5:"buddy";a:0:{}s:6:"events";a:0:{}s:3:"edd";a:0:{}s:4:"shop";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(99, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(100, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes') ;
INSERT INTO `wp2o_options` ( `option_id`, `option_name`, `option_value`, `autoload`) VALUES
(101, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(102, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(103, 'cron', 'a:16:{i:1550731529;a:1:{s:20:"jetpack_clean_nonces";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1550731543;a:1:{s:21:"wordfence_hourly_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1550735762;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:1550742343;a:1:{s:20:"wordfence_daily_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1550744016;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1550754674;a:1:{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;}}}i:1550754675;a:2:{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:1550798035;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1550830062;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1550916843;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1551004053;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1551089010;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1551110400;a:1:{s:31:"wordfence_email_activity_report";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1551176730;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1551264035;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}s:7:"version";i:2;}', 'yes'),
(133, 'betheme', 'a:380:{s:8:"last_tab";s:6:"addons";s:6:"layout";s:10:"full-width";s:10:"grid-width";s:0:"";s:5:"style";s:0:"";s:12:"button-style";s:0:"";s:17:"image-frame-style";s:0:"";s:18:"image-frame-border";s:0:"";s:19:"image-frame-caption";s:0:"";s:11:"img-page-bg";s:0:"";s:16:"position-page-bg";s:22:"no-repeat;center top;;";s:11:"transparent";a:1:{s:9:"post-meta";s:1:"1";}s:11:"favicon-img";s:93:"https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/logo_noword.png";s:16:"apple-touch-icon";s:93:"https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/logo_noword.png";s:8:"logo-img";s:94:"https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill.png";s:15:"retina-logo-img";s:94:"https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill.png";s:15:"sticky-logo-img";s:94:"https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill.png";s:22:"sticky-retina-logo-img";s:94:"https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill.png";s:9:"logo-link";a:2:{s:9:"post-meta";s:1:"1";s:4:"link";s:4:"link";}s:9:"logo-text";s:0:"";s:10:"logo-width";s:0:"";s:11:"logo-height";s:0:"";s:21:"logo-vertical-padding";s:0:"";s:19:"logo-vertical-align";s:0:"";s:13:"logo-advanced";a:1:{s:9:"post-meta";s:1:"1";}s:19:"slider-blog-timeout";s:1:"0";s:22:"slider-clients-timeout";s:1:"0";s:20:"slider-offer-timeout";s:1:"0";s:24:"slider-portfolio-timeout";s:1:"0";s:19:"slider-shop-timeout";s:1:"0";s:21:"slider-slider-timeout";s:1:"0";s:27:"slider-testimonials-timeout";s:1:"0";s:20:"layout-boxed-padding";s:0:"";s:18:"builder-visibility";s:0:"";s:13:"display-order";s:1:"0";s:22:"content-remove-padding";s:1:"0";s:19:"google-maps-api-key";s:0:"";s:11:"table-hover";s:0:"";s:23:"math-animations-disable";s:1:"0";s:17:"post-type-disable";a:1:{s:9:"post-meta";s:1:"1";}s:13:"theme-disable";a:1:{s:9:"post-meta";s:1:"1";}s:15:"builder-storage";s:0:"";s:16:"slider-shortcode";s:0:"";s:10:"static-css";s:1:"0";s:12:"table_prefix";s:11:"base_prefix";s:8:"hook-top";s:0:"";s:19:"hook-content-before";s:0:"";s:18:"hook-content-after";s:0:"";s:11:"hook-bottom";s:0:"";s:12:"header-style";s:7:"classic";s:9:"header-fw";a:1:{s:9:"post-meta";s:1:"1";}s:17:"minimalist-header";s:1:"0";s:16:"img-subheader-bg";s:0:"";s:24:"img-subheader-attachment";s:0:"";s:13:"sticky-header";s:1:"1";s:19:"sticky-header-style";s:5:"white";s:15:"subheader-style";s:11:"title-right";s:9:"subheader";a:1:{s:9:"post-meta";s:1:"1";}s:17:"subheader-padding";s:0:"";s:19:"subheader-title-tag";s:4:"span";s:15:"subheader-image";s:0:"";s:18:"subheader-position";s:22:"no-repeat;center top;;";s:21:"subheader-transparent";s:3:"100";s:18:"subheader-advanced";a:1:{s:9:"post-meta";s:1:"1";}s:18:"top-bar-right-hide";s:1:"0";s:19:"header-action-title";s:0:"";s:18:"header-action-link";s:0:"";s:20:"header-action-target";a:1:{s:9:"post-meta";s:1:"1";}s:13:"header-search";s:1:"0";s:11:"header-wpml";s:0:"";s:19:"header-wpml-options";a:1:{s:9:"post-meta";s:1:"1";}s:11:"sliding-top";s:1:"0";s:16:"sliding-top-icon";s:0:"";s:13:"header-banner";s:0:"";s:10:"menu-style";s:10:"line-below";s:12:"menu-options";a:3:{s:9:"post-meta";s:1:"1";s:11:"align-right";s:11:"align-right";s:12:"hide-borders";s:12:"hide-borders";}s:21:"menu-creative-options";a:2:{s:9:"post-meta";s:1:"1";s:8:"dropdown";s:8:"dropdown";}s:10:"action-bar";s:1:"0";s:13:"header-slogan";s:19:"Have any questions?";s:12:"header-phone";s:15:"+61 383 766 284";s:14:"header-phone-2";s:0:"";s:12:"header-email";s:18:"noreply@envato.com";s:13:"sidebar-width";s:0:"";s:13:"sidebar-lines";s:0:"";s:18:"single-page-layout";s:0:"";s:19:"single-page-sidebar";s:0:"";s:20:"single-page-sidebar2";s:0:"";s:13:"single-layout";s:0:"";s:14:"single-sidebar";s:0:"";s:15:"single-sidebar2";s:0:"";s:23:"single-portfolio-layout";s:0:"";s:24:"single-portfolio-sidebar";s:0:"";s:25:"single-portfolio-sidebar2";s:0:"";s:13:"prev-next-nav";a:4:{s:9:"post-meta";s:1:"1";s:11:"hide-header";s:11:"hide-header";s:11:"hide-sticky";s:11:"hide-sticky";s:12:"in-same-term";s:12:"in-same-term";}s:15:"prev-next-style";s:7:"minimal";s:5:"share";s:1:"0";s:19:"pagination-show-all";s:1:"1";s:4:"love";s:1:"0";s:22:"featured-image-caption";s:4:"hide";s:13:"related-style";s:6:"simple";s:13:"title-heading";s:1:"1";s:10:"blog-posts";s:1:"4";s:11:"blog-layout";s:7:"classic";s:12:"blog-columns";s:0:"";s:15:"blog-full-width";s:1:"0";s:9:"blog-page";s:0:"";s:14:"excerpt-length";s:2:"26";s:16:"exclude-category";s:0:"";s:12:"blog-filters";s:1:"0";s:14:"blog-load-more";s:1:"0";s:9:"blog-meta";s:1:"0";s:10:"blog-title";s:1:"1";s:16:"blog-single-zoom";s:1:"0";s:11:"blog-author";s:1:"0";s:12:"blog-related";s:1:"1";s:20:"blog-related-columns";s:0:"";s:13:"blog-comments";s:1:"0";s:18:"blog-single-layout";s:0:"";s:16:"blog-single-menu";s:1:"0";s:20:"single-intro-padding";s:0:"";s:15:"portfolio-posts";s:1:"8";s:16:"portfolio-layout";s:4:"grid";s:17:"portfolio-columns";s:0:"";s:20:"portfolio-full-width";s:1:"0";s:14:"portfolio-page";s:0:"";s:17:"portfolio-orderby";s:4:"date";s:15:"portfolio-order";s:4:"DESC";s:18:"portfolio-external";s:0:"";s:21:"portfolio-hover-title";s:1:"0";s:17:"portfolio-filters";s:1:"1";s:19:"portfolio-load-more";s:1:"0";s:17:"portfolio-isotope";s:1:"1";s:17:"portfolio-related";s:1:"1";s:25:"portfolio-related-columns";s:0:"";s:18:"portfolio-comments";s:1:"0";s:23:"portfolio-single-layout";s:0:"";s:21:"portfolio-single-menu";s:1:"0";s:14:"portfolio-slug";s:14:"portfolio-item";s:13:"portfolio-tax";s:0:"";s:13:"shop-products";s:2:"12";s:11:"shop-layout";s:4:"grid";s:14:"shop-catalogue";s:1:"0";s:11:"shop-images";s:0:"";s:11:"shop-button";s:1:"0";s:12:"shop-excerpt";s:1:"0";s:12:"shop-sidebar";s:0:"";s:11:"shop-slider";s:0:"";s:19:"shop-product-images";s:0:"";s:18:"shop-product-style";s:0:"";s:18:"shop-product-title";s:0:"";s:12:"shop-related";s:1:"1";s:9:"shop-cart";s:11:"icon-basket";s:29:"featured-blog-portfolio-width";s:0:"";s:30:"featured-blog-portfolio-height";s:0:"";s:28:"featured-blog-portfolio-crop";s:4:"crop";s:21:"featured-single-width";s:0:"";s:22:"featured-single-height";s:0:"";s:20:"featured-single-crop";s:4:"crop";s:13:"page-comments";s:1:"0";s:13:"error404-icon";s:17:"icon-traffic-cone";s:13:"error404-page";s:0:"";s:12:"construction";s:1:"0";s:18:"construction-title";s:11:"Coming Soon";s:17:"construction-text";s:0:"";s:17:"construction-date";s:19:"12/30/2014 12:00:00";s:19:"construction-offset";s:1:"0";s:20:"construction-contact";s:0:"";s:17:"construction-page";s:0:"";s:13:"footer-layout";s:8:"1;one;;;";s:12:"footer-style";s:0:"";s:14:"footer-padding";s:0:"";s:13:"footer-bg-img";s:114:"http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/Screen-Shot-2016-07-29-at-10.57.53-PM.png";s:22:"footer-bg-img-position";s:15:"repeat;center;;";s:21:"footer-call-to-action";s:0:"";s:11:"footer-copy";s:53:"© 2016 RANHILL HOLDINGS BERHAD. All Rights Reserved.";s:11:"footer-hide";s:0:"";s:12:"back-top-top";s:0:"";s:18:"popup-contact-form";s:0:"";s:23:"popup-contact-form-icon";s:0:"";s:10:"responsive";s:1:"1";s:20:"font-size-responsive";s:1:"1";s:15:"responsive-zoom";s:1:"0";s:19:"mobile-menu-initial";s:3:"960";s:17:"responsive-sticky";s:1:"0";s:20:"responsive-tr-header";s:1:"0";s:25:"header-menu-mobile-sticky";s:1:"0";s:16:"header-menu-text";s:0:"";s:18:"responsive-top-bar";s:4:"left";s:19:"responsive-boxed2fw";s:1:"1";s:8:"no-hover";s:0:"";s:13:"no-section-bg";s:0:"";s:19:"responsive-parallax";s:1:"0";s:19:"responsive-logo-img";s:97:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/logo_ranhill_sml.png";s:26:"responsive-retina-logo-img";s:93:"http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/logo_ranhill_sml.png";s:16:"google-analytics";s:0:"";s:18:"google-remarketing";s:0:"";s:7:"mfn-seo";s:1:"1";s:16:"meta-description";s:27:"Just another WordPress site";s:13:"meta-keywords";s:0:"";s:19:"mfn-seo-schema-type";s:1:"0";s:13:"social-target";s:1:"0";s:12:"social-skype";s:0:"";s:15:"social-facebook";s:56:"https://www.facebook.com/Ranhill-Group-1039874486095664/";s:17:"social-googleplus";s:0:"";s:14:"social-twitter";s:32:"https://twitter.com/ranhillgroup";s:12:"social-vimeo";s:0:"";s:14:"social-youtube";s:56:"https://www.youtube.com/channel/UCIbcSFVcFxTm6SngdKYQ18w";s:13:"social-flickr";s:0:"";s:15:"social-linkedin";s:47:"https://www.linkedin.com/company/ranhill-berhad";s:16:"social-pinterest";s:0:"";s:15:"social-dribbble";s:0:"";s:16:"social-instagram";s:39:"https://www.instagram.com/ranhillgroup/";s:14:"social-behance";s:0:"";s:13:"social-tumblr";s:0:"";s:16:"social-vkontakte";s:0:"";s:13:"social-viadeo";s:0:"";s:11:"social-xing";s:0:"";s:10:"social-rss";s:1:"0";s:8:"parallax";s:11:"translate3d";s:11:"nice-scroll";s:6:"smooth";s:17:"nice-scroll-speed";s:2:"40";s:19:"prettyphoto-options";a:1:{s:9:"post-meta";s:1:"1";}s:11:"prettyphoto";s:10:"pp_default";s:17:"prettyphoto-width";s:0:"";s:18:"prettyphoto-height";s:0:"";s:18:"sc-gallery-disable";s:1:"0";s:17:"retina-js-disable";s:1:"0";s:10:"plugin-rev";s:0:"";s:12:"plugin-layer";s:0:"";s:13:"plugin-visual";s:0:"";s:4:"skin";s:3:"red";s:9:"color-one";s:7:"#2991D6";s:15:"background-html";s:7:"#FCFCFC";s:15:"background-body";s:7:"#FCFCFC";s:17:"background-header";s:7:"#e0efea";s:19:"background-top-left";s:7:"#ffffff";s:21:"background-top-middle";s:7:"#e3e3e3";s:20:"background-top-right";s:7:"#f5f5f5";s:17:"color-top-right-a";s:7:"#444444";s:17:"background-search";s:7:"#13bfb1";s:20:"background-subheader";s:7:"#F7F7F7";s:15:"color-subheader";s:7:"#ffffff";s:12:"color-menu-a";s:7:"#444444";s:19:"color-menu-a-active";s:7:"#13bfb1";s:24:"background-menu-a-active";s:7:"#13bfb1";s:18:"background-submenu";s:7:"#F2F2F2";s:15:"color-submenu-a";s:7:"#5f5f5f";s:21:"color-submenu-a-hover";s:7:"#2e2e2e";s:25:"color-overlay-menu-button";s:7:"#2991d6";s:30:"background-overlay-menu-button";s:0:"";s:23:"background-overlay-menu";s:7:"#2991d6";s:25:"background-overlay-menu-a";s:7:"#FFFFFF";s:32:"background-overlay-menu-a-active";s:7:"#B1DCFB";s:17:"border-menu-plain";s:7:"#F2F2F2";s:26:"color-menu-responsive-icon";s:7:"#2991d6";s:21:"background-action-bar";s:7:"#2C2C2C";s:11:"color-theme";s:7:"#2991d6";s:10:"color-text";s:7:"#626262";s:7:"color-a";s:7:"#2991d6";s:13:"color-a-hover";s:7:"#2275ac";s:16:"color-fancy-link";s:7:"#656B6F";s:21:"background-fancy-link";s:7:"#2195de";s:22:"color-fancy-link-hover";s:7:"#2991d6";s:27:"background-fancy-link-hover";s:7:"#2275ac";s:10:"color-note";s:7:"#a8a8a8";s:10:"color-list";s:7:"#737E86";s:20:"background-highlight";s:7:"#2991d6";s:28:"background-highlight-section";s:7:"#2991d6";s:8:"color-hr";s:7:"#2991d6";s:17:"background-button";s:7:"#f7f7f7";s:12:"color-button";s:7:"#747474";s:18:"color-footer-theme";s:7:"#2991d6";s:17:"background-footer";s:7:"#545454";s:12:"color-footer";s:7:"#cccccc";s:14:"color-footer-a";s:7:"#2991d6";s:20:"color-footer-a-hover";s:7:"#2275ac";s:20:"color-footer-heading";s:7:"#ffffff";s:17:"color-footer-note";s:7:"#a8a8a8";s:23:"color-sliding-top-theme";s:7:"#2991d6";s:22:"background-sliding-top";s:7:"#545454";s:17:"color-sliding-top";s:7:"#cccccc";s:19:"color-sliding-top-a";s:7:"#2991d6";s:25:"color-sliding-top-a-hover";s:7:"#2275ac";s:25:"color-sliding-top-heading";s:7:"#ffffff";s:22:"color-sliding-top-note";s:7:"#a8a8a8";s:8:"color-h1";s:7:"#444444";s:8:"color-h2";s:7:"#444444";s:8:"color-h3";s:7:"#444444";s:8:"color-h4";s:7:"#444444";s:8:"color-h5";s:7:"#444444";s:8:"color-h6";s:7:"#444444";s:15:"color-tab-title";s:7:"#2991d6";s:16:"color-blockquote";s:7:"#444444";s:17:"color-contentlink";s:7:"#2991d6";s:13:"color-counter";s:7:"#2991d6";s:21:"background-getintouch";s:7:"#2991d6";s:13:"color-iconbar";s:7:"#2991d6";s:13:"color-iconbox";s:7:"#2991d6";s:26:"background-imageframe-link";s:7:"#2991d6";s:21:"color-imageframe-link";s:7:"#ffffff";s:15:"color-list-icon";s:7:"#2991d6";s:19:"color-pricing-price";s:7:"#2991d6";s:27:"background-pricing-featured";s:7:"#2991d6";s:22:"background-progressbar";s:7:"#2991d6";s:22:"color-quickfact-number";s:7:"#2991d6";s:27:"background-slidingbox-title";s:7:"#2991d6";s:27:"background-trailer-subtitle";s:7:"#2991d6";s:10:"color-form";s:7:"#626262";s:15:"background-form";s:7:"#FFFFFF";s:11:"border-form";s:7:"#EBEBEB";s:16:"color-form-focus";s:7:"#1982c2";s:21:"background-form-focus";s:7:"#e9f5fc";s:17:"border-form-focus";s:7:"#d5e5ee";s:16:"form-transparent";s:0:"";s:12:"font-content";s:7:"#Futura";s:9:"font-menu";s:7:"#Futura";s:10:"font-title";s:12:"#Futura bold";s:13:"font-headings";s:12:"#Futura bold";s:19:"font-headings-small";s:7:"#Futura";s:15:"font-blockquote";s:12:"#Futura bold";s:15:"font-decorative";s:7:"#Futura";s:11:"font-weight";a:2:{s:9:"post-meta";s:1:"1";i:400;s:3:"400";}s:11:"font-subset";s:0:"";s:17:"font-size-content";a:4:{s:4:"size";s:2:"14";s:11:"line_height";s:2:"20";s:12:"weight_style";s:3:"400";s:14:"letter_spacing";s:1:"0";}s:14:"font-size-menu";a:3:{s:4:"size";s:2:"16";s:12:"weight_style";s:3:"400";s:14:"letter_spacing";s:1:"0";}s:15:"font-size-title";a:4:{s:4:"size";s:2:"25";s:11:"line_height";s:2:"25";s:12:"weight_style";s:3:"400";s:14:"letter_spacing";s:1:"0";}s:12:"font-size-h1";a:4:{s:4:"size";s:2:"25";s:11:"line_height";s:2:"30";s:12:"weight_style";s:3:"300";s:14:"letter_spacing";s:1:"0";}s:12:"font-size-h2";a:4:{s:4:"size";s:2:"27";s:11:"line_height";s:2:"32";s:12:"weight_style";s:3:"300";s:14:"letter_spacing";s:1:"0";}s:12:"font-size-h3";a:4:{s:4:"size";s:2:"25";s:11:"line_height";s:2:"28";s:12:"weight_style";s:3:"300";s:14:"letter_spacing";s:1:"0";}s:12:"font-size-h4";a:4:{s:4:"size";s:2:"21";s:11:"line_height";s:2:"25";s:12:"weight_style";s:3:"300";s:14:"letter_spacing";s:1:"0";}s:12:"font-size-h5";a:4:{s:4:"size";s:2:"15";s:11:"line_height";s:2:"19";s:12:"weight_style";s:3:"700";s:14:"letter_spacing";s:1:"0";}s:12:"font-size-h6";a:4:{s:4:"size";s:2:"13";s:11:"line_height";s:2:"19";s:12:"weight_style";s:3:"400";s:14:"letter_spacing";s:1:"0";}s:22:"font-size-single-intro";a:4:{s:4:"size";s:2:"70";s:11:"line_height";s:2:"70";s:12:"weight_style";s:3:"400";s:14:"letter_spacing";s:1:"0";}s:11:"font-custom";s:6:"Futura";s:16:"font-custom-woff";s:93:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book.woff";s:15:"font-custom-ttf";s:0:"";s:15:"font-custom-svg";s:92:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book.svg";s:15:"font-custom-eot";s:0:"";s:12:"font-custom2";s:11:"Futura bold";s:17:"font-custom2-woff";s:98:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book-bold.woff";s:16:"font-custom2-ttf";s:0:"";s:16:"font-custom2-svg";s:97:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book-bold.svg";s:16:"font-custom2-eot";s:0:"";s:9:"translate";s:1:"0";s:28:"translate-search-placeholder";s:0:"";s:24:"translate-search-results";s:0:"";s:14:"translate-home";s:0:"";s:14:"translate-prev";s:0:"";s:14:"translate-next";s:0:"";s:19:"translate-load-more";s:0:"";s:17:"translate-wpml-no";s:0:"";s:16:"translate-before";s:0:"";s:15:"translate-after";s:0:"";s:14:"translate-days";s:0:"";s:15:"translate-hours";s:0:"";s:17:"translate-minutes";s:0:"";s:17:"translate-seconds";s:0:"";s:16:"translate-filter";s:0:"";s:14:"translate-tags";s:0:"";s:17:"translate-authors";s:0:"";s:13:"translate-all";s:0:"";s:18:"translate-item-all";s:0:"";s:19:"translate-published";s:0:"";s:12:"translate-at";s:0:"";s:20:"translate-categories";s:0:"";s:18:"translate-readmore";s:0:"";s:14:"translate-like";s:0:"";s:17:"translate-related";s:0:"";s:16:"translate-client";s:0:"";s:14:"translate-date";s:0:"";s:17:"translate-website";s:0:"";s:14:"translate-view";s:0:"";s:14:"translate-task";s:0:"";s:19:"translate-404-title";s:0:"";s:22:"translate-404-subtitle";s:0:"";s:18:"translate-404-text";s:0:"";s:17:"translate-404-btn";s:0:"";s:22:"translate-search-title";s:0:"";s:25:"translate-search-subtitle";s:0:"";s:10:"custom-css";s:0:"";s:9:"custom-js";s:0:"";}', 'yes'),
(134, 'widget_widget_mfn_flickr', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(135, 'widget_widget_mfn_login', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(136, 'widget_widget_mfn_menu', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(137, 'widget_widget_mfn_recent_comments', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(138, 'widget_widget_mfn_recent_posts', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(139, 'widget_widget_mfn_tag_cloud', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(140, 'theme_mods_twentysixteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1469841251;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}}}}', 'yes'),
(141, 'current_theme', 'Betheme | Shared by Themes24x7.com', 'yes'),
(142, 'theme_mods_betheme', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:9:"main-menu";i:2;}s:18:"custom_css_post_id";i:4278;}', 'yes'),
(143, 'theme_switched', '', 'yes'),
(145, 'wpcf7', 'a:3:{s:7:"version";s:3:"4.7";s:13:"bulk_validate";a:4:{s:9:"timestamp";i:1469841395;s:7:"version";s:5:"4.4.2";s:11:"count_valid";i:1;s:13:"count_invalid";i:0;}s:9:"recaptcha";a:1:{s:40:"6LcEJSkTAAAAAMGWLluKZZTJGqWPDltH0sEehb14";s:40:"6LcEJSkTAAAAAHwF8MypY2dfh56qj2qSJJI1J0zH";}}', 'yes'),
(146, 'revslider-update-check-short', '1550587757', 'yes'),
(147, 'revslider-templates-check', '1550403414', 'yes'),
(153, 'revslider_checktables', '1', 'yes'),
(154, 'revslider_table_version', '1.0.6', 'yes'),
(155, 'revslider-global-settings', 'a:0:{}', 'yes'),
(158, 'recently_activated', 'a:0:{}', 'yes'),
(159, 'revslider_update_version', '5.2.5.5', 'yes'),
(160, 'widget_rev-slider-widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(161, 'vc_version', '4.12', 'yes'),
(162, 'duplicate_post_copyexcerpt', '1', 'yes'),
(163, 'duplicate_post_copyattachments', '0', 'yes'),
(164, 'duplicate_post_copychildren', '0', 'yes'),
(165, 'duplicate_post_copystatus', '0', 'yes'),
(166, 'duplicate_post_taxonomies_blacklist', 'a:0:{}', 'yes'),
(167, 'duplicate_post_show_row', '1', 'yes'),
(168, 'duplicate_post_show_adminbar', '1', 'yes'),
(169, 'duplicate_post_show_submitbox', '1', 'yes'),
(171, 'wpb_js_composer_license_activation_notified', 'yes', 'yes'),
(196, 'client-types_children', 'a:0:{}', 'yes'),
(197, 'offer-types_children', 'a:0:{}', 'yes'),
(198, 'portfolio-types_children', 'a:0:{}', 'yes'),
(199, 'slide-types_children', 'a:0:{}', 'yes'),
(200, 'testimonial-types_children', 'a:0:{}', 'yes'),
(207, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(234, 'pdfemb_poweredby', '1', 'yes'),
(259, 'pdfemb', 'a:5:{s:12:"pdfemb_width";s:3:"max";s:13:"pdfemb_height";s:3:"max";s:14:"pdfemb_toolbar";s:4:"both";s:19:"pdfemb_toolbarfixed";s:2:"on";s:14:"pdfemb_version";s:3:"2.8";}', 'yes'),
(316, 'revslider-connection', '1', 'yes'),
(338, 'wordfence_version', '6.3.2', 'yes'),
(339, 'wordfenceActivated', '1', 'yes'),
(340, 'wf_plugin_act_error', '', 'yes'),
(401, 'wordfence_syncAttackDataAttempts', '0', 'no'),
(402, 'wordfence_syncingAttackData', '0', 'no'),
(426, 'revslider-latest-version', '5.4.8.2', 'yes'),
(427, 'revslider-stable-version', '4.2', 'yes'),
(428, 'revslider-notices', 'a:1:{i:0;O:8:"stdClass":7:{s:7:"version";s:7:"5.4.8.1";s:4:"text";s:235:"<a href="//revolution.themepunch.com/direct-customer-benefits/?ref=5481" target="_blank"><img src="//updates.themepunch.tools/banners/revsliderbanner_5481.jpg" style="min-width: 50%; max-width:100%" alt="revslider 5.4.8.1 is out" ></a>";s:4:"code";s:11:"TPRS5481-03";s:5:"color";s:5:"green";s:7:"disable";b:0;s:9:"is_global";b:0;s:10:"additional";a:0:{}}}', 'yes'),
(429, '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'),
(430, 'revslider-addons', 'O:8:"stdClass":26:{s:26:"revslider-whiteboard-addon";O:8:"stdClass":11:{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:65:"//updates.themepunch.tools/addons/images/whiteboard_widget_bg.jpg";s:6:"button";s:11:"How to use?";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:61:"//updates.themepunch.tools/addons/images/addon_whiteboard.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"WB";}}s:22:"revslider-backup-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:57:"//updates.themepunch.tools/addons/images/addon_backup.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"BU";}}s:23:"revslider-gallery-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:60:"//updates.themepunch.tools/addons/images/addon_wpgallery.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"GA";}}s:25:"revslider-rel-posts-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:60:"//updates.themepunch.tools/addons/images/addon_wprelated.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"RP";}}s:26:"revslider-typewriter-addon";O:8:"stdClass":11:{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:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:61:"//updates.themepunch.tools/addons/images/addon_typewriter.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"TW";}}s:23:"revslider-sharing-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:64:"//updates.themepunch.tools/addons/images/addon_socialsharing.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"SH";}}s:27:"revslider-maintenance-addon";O:8:"stdClass":11:{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.5";s:10:"background";s:0:"";s:6:"button";s:9:"Configure";s:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:68:"//updates.themepunch.tools/addons/images/addon_underconstruction.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"MT";}}s:20:"revslider-snow-addon";O:8:"stdClass":11:{s:4:"slug";s:20:"revslider-snow-addon";s:12:"version_from";s:5:"5.4.6";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.5";s:10:"background";s:0:"";s:6:"button";s:11:"How to use?";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:55:"//updates.themepunch.tools/addons/images/addon_snow.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"SN";}}s:25:"revslider-particles-addon";O:8:"stdClass":11:{s:4:"slug";s:25:"revslider-particles-addon";s:12:"version_from";s:5:"5.4.6";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.6";s:10:"background";s:0:"";s:6:"button";s:11:"How to use?";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:60:"//updates.themepunch.tools/addons/images/addon_particles.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"PT";}}s:24:"revslider-polyfold-addon";O:8:"stdClass":11:{s:4:"slug";s:24:"revslider-polyfold-addon";s:12:"version_from";s:5:"5.4.6";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.2";s:10:"background";s:0:"";s:6:"button";s:11:"How to use?";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:59:"//updates.themepunch.tools/addons/images/addon_polyfold.jpg";s:5:"color";s:7:"#3e186f";s:4:"text";s:2:"PF";}}s:19:"revslider-404-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:54:"//updates.themepunch.tools/addons/images/addon_404.jpg";s:5:"color";s:0:"";s:4:"text";s:3:"404";}}s:30:"revslider-prevnext-posts-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:61:"//updates.themepunch.tools/addons/images/addon_wpadjacent.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"PN";}}s:25:"revslider-filmstrip-addon";O:8:"stdClass":11:{s:4:"slug";s:25:"revslider-filmstrip-addon";s:12:"version_from";s:5:"5.4.6";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.2";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:60:"//updates.themepunch.tools/addons/images/addon_filmstrip.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"FS";}}s:21:"revslider-login-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:56:"//updates.themepunch.tools/addons/images/addon_login.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"LI";}}s:24:"revslider-featured-addon";O:8:"stdClass":11:{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:6:"global";b:1;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:61:"//updates.themepunch.tools/addons/images/addon_wpfeatured.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"FT";}}s:22:"revslider-slicey-addon";O:8:"stdClass":11:{s:4:"slug";s:22:"revslider-slicey-addon";s:12:"version_from";s:5:"5.4.6";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.2";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:57:"//updates.themepunch.tools/addons/images/addon_slicey.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"SL";}}s:27:"revslider-beforeafter-addon";O:8:"stdClass":11:{s:4:"slug";s:27:"revslider-beforeafter-addon";s:12:"version_from";s:5:"5.4.6";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.3";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:62:"//updates.themepunch.tools/addons/images/addon_beforeafter.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"BA";}}s:23:"revslider-weather-addon";O:8:"stdClass":11:{s:4:"slug";s:23:"revslider-weather-addon";s:12:"version_from";s:7:"5.4.5.2";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:7:"Weather";s:6:"line_1";s:21:"Every where you go...";s:6:"line_2";s:36:"...always take the weather with you!";s:9:"available";s:5:"1.0.5";s:10:"background";s:0:"";s:6:"button";s:9:"Configure";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:58:"//updates.themepunch.tools/addons/images/addon_weather.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"WT";}}s:24:"revslider-panorama-addon";O:8:"stdClass":11:{s:4:"slug";s:24:"revslider-panorama-addon";s:12:"version_from";s:7:"5.4.5.2";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:8:"Panorama";s:6:"line_1";s:14:"Panorama AddOn";s:6:"line_2";s:23:"Display images in 360°";s:9:"available";s:5:"1.0.0";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:59:"//updates.themepunch.tools/addons/images/addon_panorama.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"PN";}}s:30:"revslider-duotonefilters-addon";O:8:"stdClass":11:{s:4:"slug";s:30:"revslider-duotonefilters-addon";s:12:"version_from";s:5:"5.4.6";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:7:"Duotone";s:6:"line_1";s:7:"Duotone";s:6:"line_2";s:25:"Because one is not enough";s:9:"available";s:5:"1.0.2";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:58:"//updates.themepunch.tools/addons/images/addon_duotone.jpg";s:5:"color";s:0:"";s:4:"text";s:3:"DTF";}}s:24:"revslider-revealer-addon";O:8:"stdClass":11:{s:4:"slug";s:24:"revslider-revealer-addon";s:12:"version_from";s:5:"5.4.6";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:6:"Reveal";s:6:"line_1";s:9:"Reveal...";s:6:"line_2";s:37:"...your inner beast... and RevSliders";s:9:"available";s:5:"1.0.1";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:57:"//updates.themepunch.tools/addons/images/addon_reveal.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"RV";}}s:23:"revslider-refresh-addon";O:8:"stdClass":11:{s:4:"slug";s:23:"revslider-refresh-addon";s:12:"version_from";s:5:"5.4.6";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:8:"(Re)Load";s:6:"line_1";s:39:"Reload the current page or a custom URL";s:6:"line_2";s:34:"after a certain time, loops, slide";s:9:"available";s:5:"1.0.2";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:57:"//updates.themepunch.tools/addons/images/addon_reload.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"RF";}}s:27:"revslider-bubblemorph-addon";O:8:"stdClass":11:{s:4:"slug";s:27:"revslider-bubblemorph-addon";s:12:"version_from";s:5:"5.4.6";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:11:"BubbleMorph";s:6:"line_1";s:26:"Include BubbleMorph Layers";s:6:"line_2";s:33:"for a decorative lava lamp effect";s:9:"available";s:5:"1.0.0";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:62:"//updates.themepunch.tools/addons/images/addon_bubblemorph.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"BM";}}s:28:"revslider-liquideffect-addon";O:8:"stdClass":11:{s:4:"slug";s:28:"revslider-liquideffect-addon";s:12:"version_from";s:5:"5.4.6";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:10:"Distortion";s:6:"line_1";s:22:"Add Distortion Effects";s:6:"line_2";s:30:"to your slides and transitions";s:9:"available";s:5:"1.0.2";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:61:"//updates.themepunch.tools/addons/images/addon_distortion.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"LE";}}s:31:"revslider-explodinglayers-addon";O:8:"stdClass":11:{s:4:"slug";s:31:"revslider-explodinglayers-addon";s:12:"version_from";s:5:"5.4.6";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:16:"Exploding Layers";s:6:"line_1";s:23:"Add explosive particles";s:6:"line_2";s:24:"to your layers animation";s:9:"available";s:5:"1.0.0";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:60:"//updates.themepunch.tools/addons/images/addon_exploding.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"EL";}}s:26:"revslider-paintbrush-addon";O:8:"stdClass":11:{s:4:"slug";s:26:"revslider-paintbrush-addon";s:12:"version_from";s:5:"5.4.6";s:10:"version_to";s:5:"9.9.9";s:5:"title";s:10:"Paintbrush";s:6:"line_1";s:14:"Paint or Erase";s:6:"line_2";s:22:"your background images";s:9:"available";s:5:"1.0.0";s:10:"background";s:0:"";s:6:"button";s:6:"How To";s:6:"global";b:0;s:4:"logo";O:8:"stdClass":3:{s:3:"img";s:61:"//updates.themepunch.tools/addons/images/addon_paintbrush.jpg";s:5:"color";s:0:"";s:4:"text";s:2:"PB";}}}', 'yes'),
(698, 'advancediFrameAdminOptions', 'a:125:{s:11:"securitykey";s:40:"9aed5192cb8b13ad410d79f4bdd731e96a72502d";s:3:"src";s:37:"https://www.insage.com.my/ir/ranhill/";s:5:"width";s:4:"100%";s:6:"height";s:3:"600";s:9:"scrolling";s:2:"no";s:11:"marginwidth";s:1:"0";s:12:"marginheight";s:1:"0";s:11:"frameborder";s:1:"0";s:12:"transparency";s:4:"true";s:10:"content_id";s:0:"";s:14:"content_styles";s:0:"";s:13:"hide_elements";s:0:"";s:5:"class";s:0:"";s:20:"shortcode_attributes";s:4:"true";s:21:"url_forward_parameter";s:0:"";s:2:"id";s:15:"advanced_iframe";s:4:"name";s:0:"";s:6:"onload";s:0:"";s:13:"onload_resize";s:5:"false";s:17:"onload_scroll_top";s:5:"false";s:13:"additional_js";s:0:"";s:14:"additional_css";s:0:"";s:22:"store_height_in_cookie";s:0:"";s:17:"additional_height";s:1:"0";s:17:"iframe_content_id";s:0:"";s:21:"iframe_content_styles";s:0:"";s:20:"iframe_hide_elements";s:0:"";s:15:"version_counter";s:6:"307951";s:24:"onload_show_element_only";s:0:"";s:11:"include_url";s:0:"";s:15:"include_content";s:0:"";s:14:"include_height";s:0:"";s:12:"include_fade";s:0:"";s:30:"include_hide_page_until_loaded";s:5:"false";s:15:"donation_bottom";s:5:"false";s:19:"onload_resize_width";s:0:"";s:14:"resize_on_ajax";s:0:"";s:21:"resize_on_ajax_jquery";s:0:"";s:15:"resize_on_click";s:0:"";s:24:"resize_on_click_elements";s:1:"a";s:22:"hide_page_until_loaded";s:5:"false";s:19:"show_part_of_iframe";s:5:"false";s:21:"show_part_of_iframe_x";s:3:"100";s:21:"show_part_of_iframe_y";s:3:"100";s:25:"show_part_of_iframe_width";s:3:"400";s:26:"show_part_of_iframe_height";s:3:"300";s:30:"show_part_of_iframe_new_window";s:0:"";s:27:"show_part_of_iframe_new_url";s:0:"";s:39:"show_part_of_iframe_next_viewports_hide";s:5:"false";s:34:"show_part_of_iframe_next_viewports";s:0:"";s:39:"show_part_of_iframe_next_viewports_loop";s:5:"false";s:5:"style";s:0:"";s:29:"use_shortcode_attributes_only";s:5:"false";s:33:"enable_external_height_workaround";s:4:"true";s:20:"keep_overflow_hidden";s:5:"false";s:31:"hide_page_until_loaded_external";s:5:"false";s:19:"onload_resize_delay";s:0:"";s:11:"expert_mode";s:5:"false";s:44:"show_part_of_iframe_allow_scrollbar_vertical";s:0:"";s:46:"show_part_of_iframe_allow_scrollbar_horizontal";s:0:"";s:19:"hide_part_of_iframe";s:0:"";s:26:"change_parent_links_target";s:0:"";s:19:"change_iframe_links";s:0:"";s:26:"change_iframe_links_target";s:0:"";s:7:"browser";s:0:"";s:25:"show_part_of_iframe_style";s:0:"";s:20:"map_parameter_to_url";s:0:"";s:11:"iframe_zoom";s:0:"";s:14:"accordeon_menu";s:5:"false";s:18:"show_iframe_loader";s:5:"false";s:11:"tab_visible";s:0:"";s:10:"tab_hidden";s:0:"";s:24:"enable_responsive_iframe";s:5:"false";s:15:"allowfullscreen";s:5:"false";s:19:"iframe_height_ratio";s:0:"";s:16:"enable_lazy_load";s:5:"false";s:26:"enable_lazy_load_threshold";s:4:"3000";s:25:"enable_lazy_load_fadetime";s:1:"0";s:23:"enable_lazy_load_manual";s:5:"false";s:14:"pass_id_by_url";s:0:"";s:25:"include_scripts_in_footer";s:4:"true";s:18:"write_css_directly";s:5:"false";s:24:"resize_on_element_resize";s:0:"";s:30:"resize_on_element_resize_delay";s:3:"250";s:20:"add_css_class_parent";s:5:"false";s:9:"auto_zoom";s:5:"false";s:18:"auto_zoom_by_ratio";s:0:"";s:18:"single_save_button";s:4:"true";s:31:"enable_lazy_load_manual_element";s:0:"";s:21:"alternative_shortcode";s:0:"";s:14:"show_menu_link";s:4:"true";s:19:"iframe_redirect_url";s:0:"";s:12:"install_date";i:1470622310;s:40:"show_part_of_iframe_last_viewport_remove";s:5:"false";s:11:"load_jquery";s:4:"true";s:20:"show_iframe_as_layer";s:5:"false";s:23:"add_iframe_url_as_param";s:5:"false";s:30:"add_iframe_url_as_param_prefix";s:0:"";s:15:"reload_interval";s:0:"";s:18:"iframe_content_css";s:0:"";s:25:"additional_js_file_iframe";s:0:"";s:26:"additional_css_file_iframe";s:0:"";s:20:"add_css_class_iframe";s:5:"false";s:12:"editorbutton";s:11:"securitykey";s:15:"iframe_zoom_ie8";s:5:"false";s:30:"enable_lazy_load_reserve_space";s:0:"";s:31:"hide_content_until_iframe_color";s:0:"";s:21:"use_zoom_absolute_fix";s:5:"false";s:12:"include_html";s:0:"";s:26:"enable_ios_mobile_scolling";s:5:"false";s:7:"sandbox";s:0:"";s:32:"show_iframe_as_layer_header_file";s:0:"";s:34:"show_iframe_as_layer_header_height";s:3:"100";s:36:"show_iframe_as_layer_header_position";s:3:"top";s:17:"resize_min_height";s:1:"1";s:25:"show_iframe_as_layer_full";s:0:"";s:4:"demo";s:5:"false";s:24:"show_part_of_iframe_zoom";s:5:"false";s:32:"external_height_workaround_delay";s:1:"0";s:19:"add_document_domain";s:5:"false";s:15:"document_domain";s:6:"com.my";s:20:"multi_domain_enabled";s:5:"false";s:15:"check_shortcode";s:5:"false";s:16:"use_post_message";s:5:"false";s:25:"element_to_measure_offset";s:1:"0";}', 'yes'),
(699, 'widget_advanced-iframe-widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(772, 'revslider-valid-notice', 'false', 'yes'),
(1376, 'agca_role_allbutadmin', '', 'yes'),
(1377, 'agca_screen_options_menu', '', 'yes'),
(1378, 'agca_help_menu', 'true', 'yes'),
(1379, 'agca_logout', '', 'yes'),
(1380, 'agca_remove_your_profile', '', 'yes'),
(1381, 'agca_logout_only', '', 'yes'),
(1382, 'agca_custom_title', '', 'yes'),
(1383, 'agca_howdy', '', 'yes'),
(1384, 'agca_header', 'true', 'yes'),
(1385, 'agca_header_show_logout', 'true', 'yes'),
(1386, 'agca_footer', '', 'yes'),
(1387, 'agca_privacy_options', '', 'yes'),
(1388, 'agca_header_logo', '', 'yes'),
(1389, 'agca_header_logo_custom', '', 'yes'),
(1390, 'agca_wp_logo_custom', '', 'yes'),
(1391, 'agca_remove_site_link', '', 'yes'),
(1392, 'agca_wp_logo_custom_link', '', 'yes'),
(1393, 'agca_site_heading', '', 'yes'),
(1394, 'agca_custom_site_heading', '', 'yes'),
(1395, 'agca_update_bar', '', 'yes'),
(1396, 'agca_footer_left', '', 'yes'),
(1397, 'agca_footer_left_hide', 'true', 'yes'),
(1398, 'agca_footer_right', '', 'yes'),
(1399, 'agca_footer_right_hide', '', 'yes'),
(1400, 'agca_login_banner', '', 'yes'),
(1401, 'agca_login_banner_text', '', 'yes'),
(1402, 'agca_login_photo_remove', 'true', 'yes'),
(1403, 'agca_login_photo_url', '', 'yes'),
(1404, 'agca_login_photo_href', '', 'yes'),
(1405, 'agca_login_round_box', 'true', 'yes'),
(1406, 'agca_login_round_box_size', '30', 'yes'),
(1407, 'agca_dashboard_icon', '', 'yes'),
(1408, 'agca_dashboard_text', '', 'yes'),
(1409, 'agca_dashboard_text_paragraph', '', 'yes'),
(1410, 'agca_dashboard_widget_welcome', 'true', 'yes'),
(1411, 'agca_dashboard_widget_activity', 'true', 'yes'),
(1412, 'agca_dashboard_widget_il', '', 'yes'),
(1413, 'agca_dashboard_widget_plugins', '', 'yes'),
(1414, 'agca_dashboard_widget_qp', 'true', 'yes'),
(1415, 'agca_dashboard_widget_rn', 'true', 'yes'),
(1416, 'agca_dashboard_widget_rd', '', 'yes'),
(1417, 'agca_dashboard_widget_primary', 'true', 'yes'),
(1418, 'agca_dashboard_widget_secondary', 'true', 'yes'),
(1419, 'agca_admin_bar_comments', '', 'yes'),
(1420, 'agca_admin_bar_new_content', '', 'yes') ;
INSERT INTO `wp2o_options` ( `option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1421, 'agca_admin_bar_new_content_post', '', 'yes'),
(1422, 'agca_admin_bar_new_content_link', '', 'yes'),
(1423, 'agca_admin_bar_new_content_page', '', 'yes'),
(1424, 'agca_admin_bar_new_content_user', '', 'yes'),
(1425, 'agca_admin_bar_new_content_media', '', 'yes'),
(1426, 'agca_admin_bar_update_notifications', 'true', 'yes'),
(1427, 'agca_admin_bar_admin_themes', '', 'yes'),
(1428, 'agca_remove_top_bar_dropdowns', '', 'yes'),
(1429, 'agca_admin_bar_frontend', 'true', 'yes'),
(1430, 'agca_admin_bar_frontend_hide', 'true', 'yes'),
(1431, 'agca_login_register_remove', 'true', 'yes'),
(1432, 'agca_login_register_href', '', 'yes'),
(1433, 'agca_login_lostpassword_remove', 'true', 'yes'),
(1434, 'agca_admin_capability', 'edit_dashboard', 'yes'),
(1435, 'agca_disablewarning', '', 'yes'),
(1436, 'agca_admin_menu_turnonoff', 'on', 'yes'),
(1437, 'agca_admin_menu_agca_button_only', '', 'yes'),
(1438, 'agca_admin_menu_separators', '', 'yes'),
(1439, 'agca_admin_menu_icons', '', 'yes'),
(1440, 'agca_admin_menu_collapse_button', '', 'yes'),
(1441, 'agca_admin_menu_arrow', '', 'yes'),
(1442, 'agca_admin_menu_submenu_round', '', 'yes'),
(1443, 'agca_admin_menu_submenu_round_size', '', 'yes'),
(1444, 'agca_admin_menu_brand', '', 'yes'),
(1445, 'agca_admin_menu_brand_link', '', 'yes'),
(1446, 'agca_admin_menu_autofold', '', 'yes'),
(1447, 'ag_edit_adminmenu_json', '', 'yes'),
(1448, 'ag_edit_adminmenu_json_new', '{"index.php":{"name":"Dashboard","new":"","remove":false,"url":"index.php","submenus":{"0":{"name":"Home","new":"","remove":false,"url":"index.php"},"10":{"name":"Updates","new":"","remove":true,"url":"update-core.php"}}},"edit.php":{"name":"Posts","new":"","remove":false,"url":"edit.php","submenus":{"5":{"name":"All Posts","new":"","remove":false,"url":"edit.php"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php"},"15":{"name":"Categories","new":"","remove":false,"url":"edit-tags.php?taxonomy=category"},"16":{"name":"Tags","new":"","remove":false,"url":"edit-tags.php?taxonomy=post_tag"}}},"upload.php":{"name":"Media","new":"","remove":true,"url":"upload.php","submenus":{"5":{"name":"Library","new":"","remove":false,"url":"upload.php"},"10":{"name":"Add New","new":"","remove":false,"url":"media-new.php"}}},"edit.php?post_type=page":{"name":"Pages","new":"","remove":false,"url":"edit.php?post_type=page","submenus":{"5":{"name":"All Pages","new":"","remove":false,"url":"edit.php?post_type=page"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=page"}}},"edit-comments.php":{"name":"Comments","new":"","remove":true,"url":"edit-comments.php","submenus":[]},"edit.php?post_type=client":{"name":"Clients","new":"","remove":true,"url":"edit.php?post_type=client","submenus":{"5":{"name":"Clients","new":"","remove":false,"url":"edit.php?post_type=client"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=client"},"15":{"name":"Client categories","new":"","remove":false,"url":"edit-tags.php?taxonomy=client-types&post_type=client"}}},"edit.php?post_type=offer":{"name":"Offer","new":"","remove":true,"url":"edit.php?post_type=offer","submenus":{"5":{"name":"Offer","new":"","remove":false,"url":"edit.php?post_type=offer"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=offer"},"15":{"name":"Offer categories","new":"","remove":false,"url":"edit-tags.php?taxonomy=offer-types&post_type=offer"}}},"edit.php?post_type=portfolio":{"name":"Portfolio","new":"","remove":true,"url":"edit.php?post_type=portfolio","submenus":{"5":{"name":"Portfolio","new":"","remove":false,"url":"edit.php?post_type=portfolio"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=portfolio"},"15":{"name":"Portfolio categories","new":"","remove":false,"url":"edit-tags.php?taxonomy=portfolio-types&post_type=portfolio"}}},"edit.php?post_type=slide":{"name":"Slides","new":"","remove":true,"url":"edit.php?post_type=slide","submenus":{"5":{"name":"Slides","new":"","remove":false,"url":"edit.php?post_type=slide"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=slide"},"15":{"name":"Slide categories","new":"","remove":false,"url":"edit-tags.php?taxonomy=slide-types&post_type=slide"}}},"edit.php?post_type=testimonial":{"name":"Testimonials","new":"","remove":true,"url":"edit.php?post_type=testimonial","submenus":{"5":{"name":"Testimonials","new":"","remove":false,"url":"edit.php?post_type=testimonial"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=testimonial"},"15":{"name":"Testimonial categories","new":"","remove":false,"url":"edit-tags.php?taxonomy=testimonial-types&post_type=testimonial"}}},"edit.php?post_type=layout":{"name":"Layouts","new":"","remove":true,"url":"edit.php?post_type=layout","submenus":{"5":{"name":"Layouts","new":"","remove":false,"url":"edit.php?post_type=layout"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=layout"}}},"edit.php?post_type=template":{"name":"Templates","new":"","remove":true,"url":"edit.php?post_type=template","submenus":{"5":{"name":"Templates","new":"","remove":false,"url":"edit.php?post_type=template"},"10":{"name":"Add New","new":"","remove":false,"url":"post-new.php?post_type=template"}}},"wpcf7":{"name":"Contact","new":"","remove":true,"url":"wpcf7","submenus":[{"name":"Contact Forms","new":"","remove":false,"url":"wpcf7"},{"name":"Add New","new":"","remove":false,"url":"wpcf7-new"},{"name":"Integration","new":"","remove":false,"url":"wpcf7-integration"}]},"themes.php":{"name":"Appearance","new":"","remove":true,"url":"themes.php","submenus":{"5":{"name":"Themes","new":"","remove":true,"url":"themes.php"},"6":{"name":"Customize","new":"","remove":false,"url":"customize.php?return=%2Fwp-admin%2Ftools.php%3Fpage%3Dag-custom-admin%2Fplugin.php"},"7":{"name":"Widgets","new":"","remove":false,"url":"widgets.php"},"10":{"name":"Menus","new":"","remove":true,"url":"nav-menus.php"},"11":{"name":"BeTheme Options","new":"","remove":true,"url":"muffin_options"},"12":{"name":"BeTheme Demo Data","new":"","remove":true,"url":"mfn_import"},"13":{"name":"System Status","new":"","remove":true,"url":"mfn_status"},"14":{"name":"Install Plugins","new":"","remove":true,"url":"tgmpa-install-plugins"},"15":{"name":"Editor","new":"","remove":true,"url":"theme-editor.php"}}},"plugins.php":{"name":"Plugins","new":"","remove":true,"url":"plugins.php","submenus":{"5":{"name":"Installed Plugins","new":"","remove":false,"url":"plugins.php"},"10":{"name":"Add New","new":"","remove":false,"url":"plugin-install.php"},"15":{"name":"Editor","new":"","remove":false,"url":"plugin-editor.php"}}},"users.php":{"name":"Users","new":"","remove":true,"url":"users.php","submenus":{"5":{"name":"All Users","new":"","remove":false,"url":"users.php"},"10":{"name":"Add New","new":"","remove":false,"url":"user-new.php"},"15":{"name":"Your Profile","new":"","remove":false,"url":"profile.php"}}},"tools.php":{"name":"Tools","new":"","remove":true,"url":"tools.php","submenus":{"5":{"name":"Available Tools","new":"","remove":false,"url":"tools.php"},"10":{"name":"Import","new":"","remove":false,"url":"import.php"},"15":{"name":"Export","new":"","remove":false,"url":"export.php"},"16":{"name":"AG Custom Admin","new":"","remove":false,"url":"ag-custom-admin\\/plugin.php"},"17":{"name":"Force Regenerate Thumbnails","new":"","remove":false,"url":"force-regenerate-thumbnails"}}},"vc-general":{"name":"Visual Composer","new":"","remove":true,"url":"vc-general","submenus":[{"name":"General Settings","new":"","remove":false,"url":"vc-general"},{"name":"Role Manager","new":"","remove":false,"url":"vc-roles"},{"name":"Product License","new":"","remove":false,"url":"vc-updater"},{"name":"Shortcode Mapper","new":"","remove":false,"url":"vc-automapper"},{"name":"Grid Builder","new":"","remove":false,"url":"edit.php?post_type=vc_grid_item"},{"name":"About","new":"","remove":false,"url":"vc-welcome"}]},"options-general.php":{"name":"Settings","new":"","remove":true,"url":"options-general.php","submenus":{"10":{"name":"General","new":"","remove":false,"url":"options-general.php"},"15":{"name":"Writing","new":"","remove":false,"url":"options-writing.php"},"20":{"name":"Reading","new":"","remove":false,"url":"options-reading.php"},"25":{"name":"Discussion","new":"","remove":false,"url":"options-discussion.php"},"30":{"name":"Media","new":"","remove":false,"url":"options-media.php"},"40":{"name":"Permalinks","new":"","remove":false,"url":"options-permalink.php"},"41":{"name":"Advanced iFrame Pro","new":"","remove":false,"url":"advanced-iframe.php"},"42":{"name":"Duplicate Post","new":"","remove":false,"url":"duplicatepost"},"43":{"name":"PDF Embedder","new":"","remove":false,"url":"pdfemb_list_options"}}},"advanced-iframe.php":{"name":"Advanced iFrame Pro","new":"","remove":false,"url":"advanced-iframe.php","submenus":[]},"CF7DBPluginSubmissions":{"name":"Contact Form DB","new":"","remove":true,"url":"CF7DBPluginSubmissions","submenus":[{"name":"Contact Form DB","new":"","remove":false,"url":"CF7DBPluginSubmissions"},{"name":"Shortcode","new":"","remove":false,"url":"CF7DBPluginShortCodeBuilder"},{"name":"Options","new":"","remove":false,"url":"CF7DBPluginSettings"}]},"revslider":{"name":"Slider Revolution","new":"","remove":true,"url":"revslider","submenus":[{"name":"Slider Revolution","new":"","remove":false,"url":"revslider"},{"name":"Navigation Editor","new":"","remove":false,"url":"revslider_navigation"},{"name":"Add-Ons","new":"","remove":false,"url":"rev_addon"}]},"Wordfence":{"name":"Wordfence","new":"","remove":true,"url":"Wordfence","submenus":[{"name":"Scan","new":"","remove":false,"url":"Wordfence"},{"name":"Firewall","new":"","remove":false,"url":"WordfenceWAF"},{"name":"Live Traffic","new":"","remove":false,"url":"WordfenceActivity"},{"name":"Performance Setup","new":"","remove":false,"url":"WordfenceSitePerf"},{"name":"Blocked IPs","new":"","remove":false,"url":"WordfenceBlockedIPs"},{"name":"Password Audit","new":"","remove":false,"url":"WordfencePasswdAudit"},{"name":"Cellphone Sign-in","new":"","remove":false,"url":"WordfenceTwoFactor"},{"name":"Country Blocking","new":"","remove":false,"url":"WordfenceCountryBlocking"},{"name":"Scan Schedule","new":"","remove":false,"url":"WordfenceScanSchedule"},{"name":"Whois Lookup","new":"","remove":false,"url":"WordfenceWhois"},{"name":"Advanced Blocking","new":"","remove":false,"url":"WordfenceRangeBlocking"},{"name":"Options","new":"","remove":false,"url":"WordfenceSecOpt"},{"name":"Diagnostics","new":"","remove":false,"url":"WordfenceDiagnostic"}]}}', 'yes'),
(1449, 'ag_add_adminmenu_json', '', 'yes'),
(1450, 'ag_colorizer_json', '{"color_background":"","login_color_background":"","color_header":"","color_admin_menu_top_button_background":"","color_admin_menu_font":"","color_admin_menu_top_button_current_background":"","color_admin_menu_top_button_hover_background":"","color_admin_menu_submenu_background":"","color_admin_menu_submenu_background_hover":"","color_admin_submenu_font":"","color_admin_menu_behind_background":"","color_font_content":"","color_font_header":"","color_font_footer":"","color_widget_bar":"","color_widget_background":""}', 'yes'),
(1451, 'agca_colorizer_turnonoff', 'off', 'yes'),
(1452, 'agca_custom_js', '', 'yes'),
(1453, 'agca_custom_css', '', 'yes'),
(1454, 'agca_disable_postver', '', 'yes'),
(1455, 'agca_menu_remove_client_profile', '', 'yes'),
(1567, 'db_upgraded', '', 'yes'),
(1986, 'agca_menu_remove_customize_button', '', 'yes'),
(2024, 'default_a_options', '148', 'yes'),
(2401, 'CF7DBPlugin_NoSaveFields', '/.*wpcf7.*/,_wpnonce', 'yes'),
(2402, 'CF7DBPlugin__version', '2.10.29', 'yes'),
(2403, 'CF7DBPlugin__installed', '1', 'yes'),
(2404, 'CF7DBPlugin_IntegrateWithCF7', 'true', 'yes'),
(2405, 'CF7DBPlugin_GenerateSubmitTimeInCF7Email', 'false', 'yes'),
(2406, 'CF7DBPlugin_IntegrateWithFSCF', 'true', 'yes'),
(2407, 'CF7DBPlugin_IntegrateWithJetPackContactForm', 'true', 'yes'),
(2408, 'CF7DBPlugin_IntegrateWithGravityForms', 'true', 'yes'),
(2409, 'CF7DBPlugin_IntegrateWithFormidableForms', 'true', 'yes'),
(2410, 'CF7DBPlugin_IntegrateWithWrContactForms', 'true', 'yes'),
(2411, 'CF7DBPlugin_IntegrateWithQuform', 'true', 'yes'),
(2412, 'CF7DBPlugin_IntegrateWithNinjaForms', 'true', 'yes'),
(2413, 'CF7DBPlugin_IntegrateWithCalderaForms', 'true', 'yes'),
(2414, 'CF7DBPlugin_IntegrateWithEnfoldThemForms', 'true', 'yes'),
(2415, 'CF7DBPlugin_IntegrateWithCFormsII', 'true', 'yes'),
(2416, 'CF7DBPlugin_IntegrateWithFormCraft', 'true', 'yes'),
(2417, 'CF7DBPlugin_IntegrateWithVerySimpleContactForm', 'true', 'yes'),
(2418, 'CF7DBPlugin_IntegrateWithFMS', 'true', 'yes'),
(2419, 'CF7DBPlugin_HideAdminPanelFromNonAdmins', 'true', 'yes'),
(2420, 'CF7DBPlugin_UseDataTablesJS', 'true', 'yes'),
(2421, 'CF7DBPlugin_Donated', 'false', 'yes'),
(2670, 'auto_core_update_notified', 'a:4:{s:4:"type";s:7:"success";s:5:"email";s:18:"ryanlee@hdprint.my";s:7:"version";s:6:"4.7.12";s:9:"timestamp";i:1544670986;}', 'no'),
(4299, 'duplicate_post_copytitle', '1', 'yes'),
(4300, 'duplicate_post_copydate', '0', 'yes'),
(4301, 'duplicate_post_copyslug', '1', 'yes'),
(4302, 'duplicate_post_copycontent', '1', 'yes'),
(4303, 'duplicate_post_copypassword', '0', 'yes'),
(4304, 'duplicate_post_copycomments', '0', 'yes'),
(4305, 'duplicate_post_blacklist', '', 'yes'),
(4306, 'duplicate_post_types_enabled', 'a:2:{i:0;s:4:"post";i:1;s:4:"page";}', 'yes'),
(4382, 'wordfence_lastSyncAttackData', '1550721346', 'no'),
(4966, 'category_children', 'a:0:{}', 'yes'),
(9674, 'wdev-frash', 'a:3:{s:7:"plugins";a:2:{s:27:"wordpress-popup/popover.php";i:1479706141;s:45:"wordpress-popup/lib/free-dashboard/module.php";i:1488858446;}s:5:"queue";a:2:{s:32:"a5da880cc1169cdf6d5b21966f299178";a:4:{s:6:"plugin";s:45:"wordpress-popup/lib/free-dashboard/module.php";s:4:"type";s:5:"email";s:7:"show_at";i:1488858446;s:6:"sticky";b:1;}s:32:"27ae6ed2eda0f5c6e6d0139644558649";a:3:{s:6:"plugin";s:45:"wordpress-popup/lib/free-dashboard/module.php";s:4:"type";s:4:"rate";s:7:"show_at";i:1489463246;}}s:4:"done";a:2:{i:0;a:6:{s:6:"plugin";s:27:"wordpress-popup/popover.php";s:4:"type";s:5:"email";s:7:"show_at";i:1479706141;s:5:"state";s:6:"ignore";s:4:"hash";s:32:"c6788b5eb6b55e757c7822ca974a16bb";s:10:"handled_at";i:1480401702;}i:1;a:6:{s:6:"plugin";s:27:"wordpress-popup/popover.php";s:4:"type";s:4:"rate";s:7:"show_at";i:1480483269;s:5:"state";s:6:"ignore";s:4:"hash";s:32:"c6788b5eb6b55e757c7822ca974a16bb";s:10:"handled_at";i:1481878617;}}}', 'no'),
(9675, 'inc_popup-config', 'a:2:{s:13:"loadingmethod";s:4:"ajax";s:5:"rules";a:7:{i:0;s:28:"class-popup-rule-browser.php";i:1;s:24:"class-popup-rule-geo.php";i:2;s:26:"class-popup-rule-popup.php";i:3;s:29:"class-popup-rule-referrer.php";i:4;s:24:"class-popup-rule-url.php";i:5;s:25:"class-popup-rule-user.php";i:6;s:28:"class-popup-rule-prosite.php";}}', 'yes'),
(9676, 'popover_installed', '6', 'yes'),
(25622, 'duplicate_post_copythumbnail', '1', 'yes'),
(25623, 'duplicate_post_copytemplate', '1', 'yes'),
(25624, 'duplicate_post_copyformat', '1', 'yes'),
(25625, 'duplicate_post_copyauthor', '0', 'yes'),
(25626, 'duplicate_post_copymenuorder', '1', 'yes'),
(25627, 'duplicate_post_show_bulkactions', '1', 'yes'),
(25628, 'duplicate_post_version', '3.1.2', 'no'),
(25629, 'duplicate_post_show_notice', '0', 'no'),
(25640, 'seed_csp4_settings_content', 'a:9:{s:6:"status";s:1:"0";s:4:"logo";s:0:"";s:8:"headline";s:0:"";s:11:"description";s:20:"Site Not Available. ";s:13:"footer_credit";s:1:"0";s:7:"favicon";s:0:"";s:9:"seo_title";s:0:"";s:15:"seo_description";s:0:"";s:12:"ga_analytics";s:0:"";}', 'yes'),
(25641, 'seed_csp4_settings_design', 'a:12:{s:8:"bg_color";s:7:"#fafafa";s:8:"bg_image";s:0:"";s:8:"bg_cover";a:1:{i:0;s:1:"1";}s:9:"bg_repeat";s:9:"no-repeat";s:11:"bg_position";s:8:"left top";s:13:"bg_attahcment";s:5:"fixed";s:9:"max_width";s:0:"";s:10:"text_color";s:7:"#666666";s:10:"link_color";s:7:"#27AE60";s:14:"headline_color";s:7:"#444444";s:9:"text_font";s:6:"_arial";s:10:"custom_css";s:0:"";}', 'yes'),
(25642, 'seed_csp4_settings_advanced', 'a:5:{s:29:"disable_default_excluded_urls";a:1:{i:0;s:1:"1";}s:14:"header_scripts";s:0:"";s:14:"footer_scripts";s:0:"";s:4:"html";s:0:"";s:11:"append_html";s:0:"";}', 'yes'),
(27915, 'can_compress_scripts', '1', 'no'),
(27916, 'fresh_site', '0', 'yes'),
(31375, 'jetpack_activated', '1', 'yes'),
(31377, 'jetpack_file_data', 'a:1:{s:3:"4.7";a:52:{s:32:"31e5b9ae08b62c2b0cd8a7792242298b";a:14:{s:4:"name";s:20:"Spelling and Grammar";s:11:"description";s:40:"Check your spelling, style, and grammar.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"6";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:115:"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche";}s:32:"3f41b2d629265b5de8108b463abbe8e2";a:14:{s:4:"name";s:8:"Carousel";s:11:"description";s:76:"Display images and galleries in a gorgeous, full-screen browsing experience.";s:14:"jumpstart_desc";s:79:"Brings your photos and images to life as full-size, easily navigable galleries.";s:4:"sort";s:2:"22";s:20:"recommendation_order";s:2:"12";s:10:"introduced";s:3:"1.5";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:17:"Photos and Videos";s:7:"feature";s:21:"Appearance, Jumpstart";s:25:"additional_search_queries";s:80:"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image";}s:32:"c6ebb418dde302de09600a6025370583";a:14:{s:4:"name";s:8:"Comments";s:11:"description";s:65:"Allow comments with WordPress.com, Twitter, Facebook, or Google+.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"20";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:6:"Social";s:7:"feature";s:10:"Engagement";s:25:"additional_search_queries";s:53:"comments, comment, facebook, twitter, google+, social";}s:32:"836f9485669e1bbb02920cb474730df0";a:14:{s:4:"name";s:12:"Contact Form";s:11:"description";s:57:"Insert a customizable contact form anywhere on your site.";s:14:"jumpstart_desc";s:111:"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.";s:4:"sort";s:2:"15";s:20:"recommendation_order";s:2:"14";s:10:"introduced";s:3:"1.3";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:5:"Other";s:7:"feature";s:18:"Writing, Jumpstart";s:25:"additional_search_queries";s:44:"contact, form, grunion, feedback, submission";}s:32:"ea3970eebf8aac55fc3eca5dca0e0157";a:14:{s:4:"name";s:20:"Custom Content Types";s:11:"description";s:61:"Organize and display different types of content on your site.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"34";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"3.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:72:"cpt, custom post types, portfolio, portfolios, testimonial, testimonials";}s:32:"d2bb05ccad3d8789df40ca3abb97336c";a:14:{s:4:"name";s:10:"Custom CSS";s:11:"description";s:53:"Tweak your site’s CSS without modifying your theme.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"2";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.7";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:10:"Appearance";s:7:"feature";s:10:"Appearance";s:25:"additional_search_queries";s:108:"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet";}s:32:"a2064eec5b9c7e0d816af71dee7a715f";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"53a4ec755022ef3953699734c343da02";a:14:{s:4:"name";s:21:"Enhanced Distribution";s:11:"description";s:27:"Increase reach and traffic.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"5";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:6:"Public";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:10:"Engagement";s:25:"additional_search_queries";s:54:"google, seo, firehose, search, broadcast, broadcasting";}s:32:"e1f1f6e3689fc31c477e64b06e2f8fbf";a:14:{s:4:"name";s:16:"Google Analytics";s:11:"description";s:56:"Set up Google Analytics without touching a line of code.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"37";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"4.5";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:0:"";s:7:"feature";s:10:"Engagement";s:25:"additional_search_queries";s:37:"webmaster, google, analytics, console";}s:32:"72fecb67ee6704ba0a33e0225316ad06";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"d56e2886185a9eace719cc57d46770df";a:14:{s:4:"name";s:19:"Gravatar Hovercards";s:11:"description";s:58:"Enable pop-up business cards over commenters’ Gravatars.";s:14:"jumpstart_desc";s:131:"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.";s:4:"sort";s:2:"11";s:20:"recommendation_order";s:2:"13";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:18:"Social, Appearance";s:7:"feature";s:21:"Appearance, Jumpstart";s:25:"additional_search_queries";s:20:"gravatar, hovercards";}s:32:"e391e760617bd0e0736550e34a73d7fe";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:8:"2.0.3 ??";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"2e345370766346c616b3c5046e817720";a:14:{s:4:"name";s:15:"Infinite Scroll";s:11:"description";s:54:"Automatically load new content when a visitor scrolls.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"26";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:10:"Appearance";s:7:"feature";s:10:"Appearance";s:25:"additional_search_queries";s:33:"scroll, infinite, infinite scroll";}s:32:"bd69edbf134de5fae8fdcf2e70a45b56";a:14:{s:4:"name";s:8:"JSON API";s:11:"description";s:51:"Allow applications to securely access your content.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"19";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:6:"Public";s:11:"module_tags";s:19:"Writing, Developers";s:7:"feature";s:7:"General";s:25:"additional_search_queries";s:50:"api, rest, develop, developers, json, klout, oauth";}s:32:"8110b7a4423aaa619dfa46b8843e10d1";a:14:{s:4:"name";s:14:"Beautiful Math";s:11:"description";s:57:"Use LaTeX markup for complex equations and other geekery.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"12";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:47:"latex, math, equation, equations, formula, code";}s:32:"fd7e85d3b4887fa6b6f997d6592c1f33";a:14:{s:4:"name";s:5:"Likes";s:11:"description";s:63:"Give visitors an easy way to show they appreciate your content.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"23";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:6:"Social";s:7:"feature";s:10:"Engagement";s:25:"additional_search_queries";s:26:"like, likes, wordpress.com";}s:32:"c5dfef41fad5bcdcaae8e315e5cfc420";a:14:{s:4:"name";s:6:"Manage";s:11:"description";s:54:"Manage all of your sites from a centralized dashboard.";s:14:"jumpstart_desc";s:151:"Helps you remotely manage plugins, turn on automated updates, and more from <a href="https://wordpress.com/plugins/" target="_blank">wordpress.com</a>.";s:4:"sort";s:1:"1";s:20:"recommendation_order";s:1:"3";s:10:"introduced";s:3:"3.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:35:"Centralized Management, Recommended";s:7:"feature";s:7:"General";s:25:"additional_search_queries";s:26:"manage, management, remote";}s:32:"fd6dc399b92bce76013427e3107c314f";a:14:{s:4:"name";s:8:"Markdown";s:11:"description";s:51:"Write posts or pages in plain-text Markdown syntax.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"31";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.8";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:12:"md, markdown";}s:32:"c49a35b6482b0426cb07ad28ecf5d7df";a:14:{s:4:"name";s:12:"Mobile Theme";s:11:"description";s:47:"Optimize your site for smartphones and tablets.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"21";s:20:"recommendation_order";s:2:"11";s:10:"introduced";s:3:"1.8";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:31:"Appearance, Mobile, Recommended";s:7:"feature";s:10:"Appearance";s:25:"additional_search_queries";s:24:"mobile, theme, minileven";}s:32:"b42e38f6fafd2e4104ebe5bf39b4be47";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"771cfeeba0d3d23ec344d5e781fb0ae2";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"54f0661d27c814fc8bde39580181d939";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"46c4c413b5c72bbd3c3dbd14ff8f8adc";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"9ea52fa25783e5ceeb6bfaed3268e64e";a:14:{s:4:"name";s:7:"Monitor";s:11:"description";s:61:"Receive immediate notifications if your site goes down, 24/7.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"28";s:20:"recommendation_order";s:2:"10";s:10:"introduced";s:3:"2.6";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:11:"Recommended";s:7:"feature";s:8:"Security";s:25:"additional_search_queries";s:37:"monitor, uptime, downtime, monitoring";}s:32:"cfcaafd0fcad087899d715e0b877474d";a:14:{s:4:"name";s:13:"Notifications";s:11:"description";s:57:"Receive instant notifications of site comments and likes.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"13";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:5:"Other";s:7:"feature";s:7:"General";s:25:"additional_search_queries";s:62:"notification, notifications, toolbar, adminbar, push, comments";}s:32:"0d18bfa69bec61550c1d813ce64149b0";a:14:{s:4:"name";s:10:"Omnisearch";s:11:"description";s:66:"Search your entire database from a single field in your dashboard.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"16";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.3";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:10:"Developers";s:7:"feature";s:7:"General";s:25:"additional_search_queries";s:6:"search";}s:32:"3f0a11e23118f0788d424b646a6d465f";a:14:{s:4:"name";s:6:"Photon";s:11:"description";s:27:"Speed up images and photos.";s:14:"jumpstart_desc";s:141:"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.";s:4:"sort";s:2:"25";s:20:"recommendation_order";s:1:"1";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:42:"Photos and Videos, Appearance, Recommended";s:7:"feature";s:34:"Recommended, Jumpstart, Appearance";s:25:"additional_search_queries";s:38:"photon, image, cdn, performance, speed";}s:32:"e37cfbcb72323fb1fe8255a2edb4d738";a:14:{s:4:"name";s:13:"Post by Email";s:11:"description";s:34:"Publish posts by sending an email.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"14";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:7:"Writing";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:20:"post by email, email";}s:32:"728290d131a480bfe7b9e405d7cd925f";a:14:{s:4:"name";s:7:"Protect";s:11:"description";s:43:"Prevent and block malicious login attempts.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"1";s:20:"recommendation_order";s:1:"4";s:10:"introduced";s:3:"3.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:11:"Recommended";s:7:"feature";s:8:"Security";s:25:"additional_search_queries";s:65:"security, secure, protection, botnet, brute force, protect, login";}s:32:"f9ce784babbbf4dcca99b8cd2ceb420c";a:14:{s:4:"name";s:9:"Publicize";s:11:"description";s:27:"Automated social marketing.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"10";s:20:"recommendation_order";s:1:"7";s:10:"introduced";s:3:"2.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:19:"Social, Recommended";s:7:"feature";s:10:"Engagement";s:25:"additional_search_queries";s:107:"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing";}s:32:"052c03877dd3d296a71531cb07ad939a";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"52edecb2a75222e75b2dce4356a4efce";a:14:{s:4:"name";s:13:"Related Posts";s:11:"description";s:64:"Increase page views by showing related content to your visitors.";s:14:"jumpstart_desc";s:113:"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.";s:4:"sort";s:2:"29";s:20:"recommendation_order";s:1:"9";s:10:"introduced";s:3:"2.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:11:"Recommended";s:7:"feature";s:21:"Engagement, Jumpstart";s:25:"additional_search_queries";s:22:"related, related posts";}s:32:"68b0d01689803c0ea7e4e60a86de2519";a:14:{s:4:"name";s:9:"SEO tools";s:11:"description";s:50:"Better results on search engines and social media.";s:14:"jumpstart_desc";s:50:"Better results on search engines and social media.";s:4:"sort";s:2:"35";s:20:"recommendation_order";s:2:"15";s:10:"introduced";s:3:"4.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:18:"Social, Appearance";s:7:"feature";s:18:"Traffic, Jumpstart";s:25:"additional_search_queries";s:81:"search engine optimization, social preview, meta description, custom title format";}s:32:"8b059cb50a66b717f1ec842e736b858c";a:14:{s:4:"name";s:7:"Sharing";s:11:"description";s:37:"Allow visitors to share your content.";s:14:"jumpstart_desc";s:116:"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.";s:4:"sort";s:1:"7";s:20:"recommendation_order";s:1:"6";s:10:"introduced";s:3:"1.1";s:7:"changed";s:3:"1.2";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:19:"Social, Recommended";s:7:"feature";s:21:"Engagement, Jumpstart";s:25:"additional_search_queries";s:141:"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr";}s:32:"a6d2394329871857401255533a9873f7";a:14:{s:4:"name";s:16:"Shortcode Embeds";s:11:"description";s:50:"Embed media from popular sites without any coding.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"3";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:3:"1.2";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:46:"Photos and Videos, Social, Writing, Appearance";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:236:"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube";}s:32:"21496e2897ea5f81605e2f2ac3beb921";a:14:{s:4:"name";s:16:"WP.me Shortlinks";s:11:"description";s:54:"Create short and simple links for all posts and pages.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"8";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:6:"Social";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:17:"shortlinks, wp.me";}s:32:"e2a54a5d7879a4162709e6ffb540dd08";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"f5c537bc304f55b29c1a87e30be0cd24";a:14:{s:4:"name";s:8:"Sitemaps";s:11:"description";s:50:"Make it easy for search engines to find your site.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"13";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"3.9";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:6:"Public";s:11:"module_tags";s:20:"Recommended, Traffic";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:39:"sitemap, traffic, search, site map, seo";}s:32:"59a23643437358a9b557f1d1e20ab040";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"6a90f97c3194cfca5671728eaaeaf15e";a:14:{s:4:"name";s:14:"Single Sign On";s:11:"description";s:46:"Secure user authentication with WordPress.com.";s:14:"jumpstart_desc";s:98:"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.";s:4:"sort";s:2:"30";s:20:"recommendation_order";s:1:"5";s:10:"introduced";s:3:"2.6";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:10:"Developers";s:7:"feature";s:19:"Security, Jumpstart";s:25:"additional_search_queries";s:34:"sso, single sign on, login, log in";}s:32:"b65604e920392e2f7134b646760b75e8";a:14:{s:4:"name";s:10:"Site Stats";s:11:"description";s:44:"Collect valuable traffic stats and insights.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"1";s:20:"recommendation_order";s:1:"2";s:10:"introduced";s:3:"1.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:23:"Site Stats, Recommended";s:7:"feature";s:10:"Engagement";s:25:"additional_search_queries";s:54:"statistics, tracking, analytics, views, traffic, stats";}s:32:"23a586dd7ead00e69ec53eb32ef740e4";a:14:{s:4:"name";s:13:"Subscriptions";s:11:"description";s:55:"Notify your readers of new posts and comments by email.";s:14:"jumpstart_desc";s:126:"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.";s:4:"sort";s:1:"9";s:20:"recommendation_order";s:1:"8";s:10:"introduced";s:3:"1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:6:"Social";s:7:"feature";s:21:"Engagement, Jumpstart";s:25:"additional_search_queries";s:74:"subscriptions, subscription, email, follow, followers, subscribers, signup";}s:32:"1d978b8d84d2f378fe1a702a67633b6d";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"b3b983461d7f3d27322a3551ed8a9405";a:14:{s:4:"name";s:15:"Tiled Galleries";s:11:"description";s:61:"Display image galleries in a variety of elegant arrangements.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"24";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.1";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:17:"Photos and Videos";s:7:"feature";s:10:"Appearance";s:25:"additional_search_queries";s:43:"gallery, tiles, tiled, grid, mosaic, images";}s:32:"d924e5b05722b0e104448543598f54c0";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}s:32:"36741583b10c521997e563ad8e1e8b77";a:14:{s:4:"name";s:12:"Data Backups";s:11:"description";s:54:"Off-site backups, security scans, and automatic fixes.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"32";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:5:"0:1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:5:"false";s:4:"free";s:5:"false";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:0:"";s:7:"feature";s:16:"Security, Health";s:25:"additional_search_queries";s:28:"vaultpress, backup, security";}s:32:"2b9b44f09b5459617d68dd82ee17002a";a:14:{s:4:"name";s:17:"Site Verification";s:11:"description";s:58:"Establish your site\'s authenticity with external services.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"33";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"3.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:0:"";s:7:"feature";s:10:"Engagement";s:25:"additional_search_queries";s:56:"webmaster, seo, google, bing, pinterest, search, console";}s:32:"5ab4c0db7c42e10e646342da0274c491";a:14:{s:4:"name";s:10:"VideoPress";s:11:"description";s:45:"Powerful, simple video hosting for WordPress.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"27";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.5";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:5:"false";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:17:"Photos and Videos";s:7:"feature";s:7:"Writing";s:25:"additional_search_queries";s:25:"video, videos, videopress";}s:32:"60a1d3aa38bc0fe1039e59dd60888543";a:14:{s:4:"name";s:17:"Widget Visibility";s:11:"description";s:42:"Control where widgets appear on your site.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:2:"17";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"2.4";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:10:"Appearance";s:7:"feature";s:10:"Appearance";s:25:"additional_search_queries";s:54:"widget visibility, logic, conditional, widgets, widget";}s:32:"174ed3416476c2cb9ff5b0f671280b15";a:14:{s:4:"name";s:21:"Extra Sidebar Widgets";s:11:"description";s:54:"Add images, Twitter streams, and more to your sidebar.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"4";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:3:"1.2";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:2:"No";s:13:"auto_activate";s:3:"Yes";s:11:"module_tags";s:18:"Social, Appearance";s:7:"feature";s:10:"Appearance";s:25:"additional_search_queries";s:65:"widget, widgets, facebook, gallery, twitter, gravatar, image, rss";}s:32:"a668bc9418d6de87409f867892fcdd7f";a:14:{s:4:"name";s:3:"Ads";s:11:"description";s:60:"Earn income by allowing Jetpack to display high quality ads.";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:1:"1";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:5:"4.5.0";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:3:"Yes";s:13:"auto_activate";s:2:"No";s:11:"module_tags";s:19:"Traffic, Appearance";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:26:"advertising, ad codes, ads";}s:32:"28b931a1db19bd24869bd54b14e733d5";a:14:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:14:"jumpstart_desc";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";}}}', 'yes'),
(31378, 'jetpack_available_modules', 'a:1:{s:3:"4.7";a:39:{s:18:"after-the-deadline";s:3:"1.1";s:8:"carousel";s:3:"1.5";s:8:"comments";s:3:"1.4";s:12:"contact-form";s:3:"1.3";s:20:"custom-content-types";s:3:"3.1";s:10:"custom-css";s:3:"1.7";s:21:"enhanced-distribution";s:3:"1.2";s:16:"google-analytics";s:3:"4.5";s:19:"gravatar-hovercards";s:3:"1.1";s:15:"infinite-scroll";s:3:"2.0";s:8:"json-api";s:3:"1.9";s:5:"latex";s:3:"1.1";s:5:"likes";s:3:"2.2";s:6:"manage";s:3:"3.4";s:8:"markdown";s:3:"2.8";s:9:"minileven";s:3:"1.8";s:7:"monitor";s:3:"2.6";s:5:"notes";s:3:"1.9";s:10:"omnisearch";s:3:"2.3";s:6:"photon";s:3:"2.0";s:13:"post-by-email";s:3:"2.0";s:7:"protect";s:3:"3.4";s:9:"publicize";s:3:"2.0";s:13:"related-posts";s:3:"2.9";s:9:"seo-tools";s:3:"4.4";s:10:"sharedaddy";s:3:"1.1";s:10:"shortcodes";s:3:"1.1";s:10:"shortlinks";s:3:"1.1";s:8:"sitemaps";s:3:"3.9";s:3:"sso";s:3:"2.6";s:5:"stats";s:3:"1.1";s:13:"subscriptions";s:3:"1.2";s:13:"tiled-gallery";s:3:"2.1";s:10:"vaultpress";s:5:"0:1.2";s:18:"verification-tools";s:3:"3.0";s:10:"videopress";s:3:"2.5";s:17:"widget-visibility";s:3:"2.4";s:7:"widgets";s:3:"1.2";s:7:"wordads";s:5:"4.5.0";}}', 'yes'),
(31379, 'jetpack_options', 'a:7:{s:7:"version";s:14:"4.7:1488939253";s:11:"old_version";s:14:"4.6:1487556427";s:2:"id";i:114744490;s:6:"public";i:1;s:9:"jumpstart";s:14:"new_connection";s:14:"last_heartbeat";i:1492654561;s:24:"custom_css_4.7_migration";b:1;}', 'yes'),
(31381, 'do_activate', '0', 'yes'),
(31386, 'jetpack_log', 'a:2:{i:0;a:4:{s:4:"time";i:1487556434;s:7:"user_id";i:1;s:7:"blog_id";b:0;s:4:"code";s:8:"register";}i:1;a:5:{s:4:"time";i:1487556955;s:7:"user_id";i:1;s:7:"blog_id";i:114744490;s:4:"code";s:24:"custom_css_4.7_migration";s:4:"data";s:5:"start";}}', 'no'),
(31387, 'jetpack_private_options', 'a:1:{s:9:"authorize";s:78:"UMaopF5zVVCQvx3DT2c98GOS2EuxwzxK:rpb0MFvWa3vGKOJfqAdE265PWyT80WTW:1492499320:1";}', 'yes'),
(31388, 'sharing-options', 'a:1:{s:6:"global";a:5:{s:12:"button_style";s:9:"icon-text";s:13:"sharing_label";s:11:"Share this:";s:10:"open_links";s:4:"same";s:4:"show";a:0:{}s:6:"custom";a:0:{}}}', 'yes'),
(31389, 'stats_options', 'a:7:{s:9:"admin_bar";b:1;s:5:"roles";a:1:{i:0;s:13:"administrator";}s:11:"count_roles";a:0:{}s:7:"blog_id";i:114744490;s:12:"do_not_track";b:1;s:10:"hide_smile";b:1;s:7:"version";s:1:"9";}', 'yes'),
(31390, 'jetpack_unique_connection', 'a:3:{s:9:"connected";i:1;s:12:"disconnected";i:8;s:7:"version";s:5:"3.6.1";}', 'yes'),
(31391, 'jetpack_active_modules', 'a:22:{i:0;s:18:"after-the-deadline";i:1;s:20:"custom-content-types";i:2;s:10:"custom-css";i:3;s:21:"enhanced-distribution";i:4;s:19:"gravatar-hovercards";i:5;s:8:"json-api";i:6;s:5:"latex";i:7;s:6:"manage";i:8;s:5:"notes";i:9;s:10:"omnisearch";i:10;s:13:"post-by-email";i:11;s:9:"publicize";i:12;s:10:"sharedaddy";i:13;s:10:"shortcodes";i:14;s:10:"shortlinks";i:15;s:8:"sitemaps";i:16;s:5:"stats";i:17;s:13:"subscriptions";i:18;s:10:"vaultpress";i:19;s:18:"verification-tools";i:20;s:17:"widget-visibility";i:21;s:7:"widgets";}', 'yes'),
(31395, 'widget_blog_subscription', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31396, 'widget_authors', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31397, 'widget_facebook-likebox', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes') ;
INSERT INTO `wp2o_options` ( `option_id`, `option_name`, `option_value`, `autoload`) VALUES
(31398, 'widget_wpcom-goodreads', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31399, 'widget_google_translate_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31400, 'widget_googleplus-badge', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31401, 'widget_grofile', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31402, 'widget_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31403, 'widget_milestone_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31404, 'widget_jetpack_my_community', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31405, 'widget_rss_links', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31406, 'widget_wpcom_social_media_icons_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31407, 'widget_twitter_timeline', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31408, 'widget_upcoming_events_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31409, 'widget_jetpack_display_posts_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(31411, 'jetpack_portfolio', '0', 'yes'),
(31429, 'sharedaddy_disable_resources', '0', 'yes'),
(31430, 'jetpack_testimonial', '0', 'yes'),
(31443, 'jpsq_sync_checkout', '0:0', 'no'),
(31444, 'jetpack_next_sync_time_full-sync-enqueue', '1496134989', 'yes'),
(31447, 'jetpack_active_plan', 'a:7:{s:10:"product_id";i:2002;s:12:"product_slug";s:12:"jetpack_free";s:18:"product_name_short";s:4:"Free";s:10:"free_trial";b:0;s:7:"expired";b:0;s:13:"user_is_owner";b:0;s:7:"is_free";b:1;}', 'yes'),
(31450, 'post_by_email_address1', 'NULL', 'yes'),
(31488, 'jetpack_restapi_stats_cache', 'a:1:{s:32:"dcfe4b9dc7780185e5db87a942fc2366";a:1:{i:1492498721;O:8:"stdClass":3:{s:4:"date";s:10:"2017-04-18";s:5:"stats";O:8:"stdClass":19:{s:14:"visitors_today";i:106;s:18:"visitors_yesterday";i:174;s:8:"visitors";i:7862;s:11:"views_today";i:445;s:15:"views_yesterday";i:551;s:14:"views_best_day";s:10:"2017-03-15";s:20:"views_best_day_total";i:896;s:5:"views";i:32667;s:8:"comments";i:0;s:5:"posts";i:7;s:14:"followers_blog";i:0;s:18:"followers_comments";i:0;s:18:"comments_per_month";i:0;s:31:"comments_most_active_recent_day";s:0:"";s:25:"comments_most_active_time";s:3:"N/A";s:13:"comments_spam";i:0;s:10:"categories";i:0;s:4:"tags";i:0;s:6:"shares";i:0;}s:6:"visits";O:8:"stdClass":3:{s:4:"unit";s:3:"day";s:6:"fields";a:3:{i:0;s:6:"period";i:1;s:5:"views";i:2;s:8:"visitors";}s:4:"data";a:30:{i:0;a:3:{i:0;s:10:"2017-03-20";i:1;i:677;i:2;i:175;}i:1;a:3:{i:0;s:10:"2017-03-21";i:1;i:840;i:2;i:214;}i:2;a:3:{i:0;s:10:"2017-03-22";i:1;i:781;i:2;i:189;}i:3;a:3:{i:0;s:10:"2017-03-23";i:1;i:691;i:2;i:149;}i:4;a:3:{i:0;s:10:"2017-03-24";i:1;i:575;i:2;i:138;}i:5;a:3:{i:0;s:10:"2017-03-25";i:1;i:299;i:2;i:77;}i:6;a:3:{i:0;s:10:"2017-03-26";i:1;i:237;i:2;i:64;}i:7;a:3:{i:0;s:10:"2017-03-27";i:1;i:684;i:2;i:188;}i:8;a:3:{i:0;s:10:"2017-03-28";i:1;i:572;i:2;i:166;}i:9;a:3:{i:0;s:10:"2017-03-29";i:1;i:574;i:2;i:162;}i:10;a:3:{i:0;s:10:"2017-03-30";i:1;i:552;i:2;i:153;}i:11;a:3:{i:0;s:10:"2017-03-31";i:1;i:615;i:2;i:154;}i:12;a:3:{i:0;s:10:"2017-04-01";i:1;i:131;i:2;i:46;}i:13;a:3:{i:0;s:10:"2017-04-02";i:1;i:237;i:2;i:61;}i:14;a:3:{i:0;s:10:"2017-04-03";i:1;i:806;i:2;i:196;}i:15;a:3:{i:0;s:10:"2017-04-04";i:1;i:864;i:2;i:209;}i:16;a:3:{i:0;s:10:"2017-04-05";i:1;i:850;i:2;i:217;}i:17;a:3:{i:0;s:10:"2017-04-06";i:1;i:738;i:2;i:191;}i:18;a:3:{i:0;s:10:"2017-04-07";i:1;i:569;i:2;i:150;}i:19;a:3:{i:0;s:10:"2017-04-08";i:1;i:321;i:2;i:85;}i:20;a:3:{i:0;s:10:"2017-04-09";i:1;i:200;i:2;i:74;}i:21;a:3:{i:0;s:10:"2017-04-10";i:1;i:761;i:2;i:178;}i:22;a:3:{i:0;s:10:"2017-04-11";i:1;i:636;i:2;i:165;}i:23;a:3:{i:0;s:10:"2017-04-12";i:1;i:659;i:2;i:190;}i:24;a:3:{i:0;s:10:"2017-04-13";i:1;i:611;i:2;i:152;}i:25;a:3:{i:0;s:10:"2017-04-14";i:1;i:412;i:2;i:147;}i:26;a:3:{i:0;s:10:"2017-04-15";i:1;i:192;i:2;i:61;}i:27;a:3:{i:0;s:10:"2017-04-16";i:1;i:283;i:2;i:86;}i:28;a:3:{i:0;s:10:"2017-04-17";i:1;i:551;i:2;i:174;}i:29;a:3:{i:0;s:10:"2017-04-18";i:1;i:445;i:2;i:106;}}}}}}', 'no'),
(31494, 'gravatar_disable_hovercards', '0', 'yes'),
(31496, 'verification_services_codes', '0', 'yes'),
(31498, 'open_graph_protocol_site_type', '', 'yes'),
(31499, 'facebook_admins', 'a:0:{}', 'yes'),
(31500, 'jetpack-twitter-cards-site-tag', '', 'yes'),
(32006, 'jetpack_updates_sync_checksum', 'a:3:{s:11:"update_core";i:4129708989;s:14:"update_plugins";i:4221342283;s:13:"update_themes";i:2352078159;}', 'yes'),
(46685, 'stats_cache', 'a:2:{s:32:"922b33ac7ad00f0055afbb72ace24f0f";a:1:{i:1492679971;a:8:{i:0;a:4:{s:7:"post_id";s:1:"6";s:10:"post_title";s:4:"Home";s:14:"post_permalink";s:51:"http://investors-watch.com/wp-staging/ranhill/home/";s:5:"views";s:3:"120";}i:1;a:4:{s:7:"post_id";s:4:"3797";s:10:"post_title";s:6:"Career";s:14:"post_permalink";s:57:"http://www.investors-watch.com/wp-staging/ranhill/career/";s:5:"views";s:2:"34";}i:2;a:4:{s:7:"post_id";s:2:"16";s:10:"post_title";s:7:"Contact";s:14:"post_permalink";s:58:"http://www.investors-watch.com/wp-staging/ranhill/contact/";s:5:"views";s:2:"31";}i:3;a:4:{s:7:"post_id";s:2:"95";s:10:"post_title";s:18:"Board of Directors";s:14:"post_permalink";s:78:"http://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/";s:5:"views";s:2:"31";}i:4;a:4:{s:7:"post_id";s:4:"3539";s:10:"post_title";s:8:"About Us";s:14:"post_permalink";s:59:"http://www.investors-watch.com/wp-staging/ranhill/about-us/";s:5:"views";s:2:"29";}i:5;a:4:{s:7:"post_id";s:4:"3609";s:10:"post_title";s:18:"Investor Relations";s:14:"post_permalink";s:69:"http://www.investors-watch.com/wp-staging/ranhill/investor-relations/";s:5:"views";s:2:"20";}i:6;a:4:{s:7:"post_id";s:4:"4063";s:10:"post_title";s:15:"Meet our people";s:14:"post_permalink";s:75:"http://www.investors-watch.com/wp-staging/ranhill/about-us/meet-our-people/";s:5:"views";s:2:"18";}i:7;a:4:{s:7:"post_id";s:3:"123";s:10:"post_title";s:12:"Clean Energy";s:14:"post_permalink";s:76:"http://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/";s:5:"views";s:1:"8";}}}s:32:"7ceea9312d889a47a4311078da6eeffb";a:1:{i:1492679972;a:5:{i:0;a:2:{s:10:"searchterm";s:7:"ranhill";s:5:"views";s:1:"8";}i:1;a:2:{s:10:"searchterm";s:14:"ranhill berhad";s:5:"views";s:1:"3";}i:2;a:2:{s:10:"searchterm";s:27:"ranhill consulting sdn. bhd";s:5:"views";s:1:"2";}i:3;a:2:{s:10:"searchterm";s:16:"ranhill malaysia";s:5:"views";s:1:"2";}i:4;a:2:{s:10:"searchterm";s:20:"ranhill holdings bhd";s:5:"views";s:1:"1";}}}}', 'yes'),
(46776, 'opt_in_database_version', '2.0.2', 'no'),
(46777, 'widget_inc_opt_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(46780, 'hustle_popup_migrated', '1', 'yes'),
(46781, 'hustle_popup_update_seen', '1', 'yes'),
(46782, 'hustle_legacy_notice_dismissed', '1', 'yes'),
(67984, 'widget_blog-stats', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(67987, 'widget_widget_contact_info', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(67988, 'widget_top-posts', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(71046, 'hm_custom_css_js_first_activate', '1494309539', 'yes'),
(71047, 'hm_custom_javascript_minify', '1', 'yes'),
(71048, 'hm_custom_javascript_ver', '1494309590', 'yes'),
(74429, 'jetpack_sync_settings_disable', '0', 'yes'),
(74432, 'jpsq_sync-1496134979.533392-670946-1', 'a:5:{i:0;s:18:"deactivated_plugin";i:1;a:2:{i:0;s:19:"jetpack/jetpack.php";i:1;b:0;}i:2;i:1;i:3;d:1496134979.533380031585693359375;i:4;b:0;}', 'no'),
(74433, 'jpsq_sync-1496134979.534761-670946-2', 'a:5:{i:0;s:14:"updated_option";i:1;a:3:{i:0;s:14:"active_plugins";i:1;a:10:{i:0;s:35:"advanced-iframe/advanced-iframe.php";i:1;s:58:"contact-form-7-to-database-extension/contact-form-7-db.php";i:2;s:36:"contact-form-7/wp-contact-form-7.php";i:3;s:33:"duplicate-post/duplicate-post.php";i:4;s:59:"force-regenerate-thumbnails/force-regenerate-thumbnails.php";i:5;s:19:"jetpack/jetpack.php";i:6;s:27:"js_composer/js_composer.php";i:7;s:29:"pdf-embedder/pdf_embedder.php";i:8;s:23:"revslider/revslider.php";i:9;s:23:"wordfence/wordfence.php";}i:2;a:9:{i:0;s:35:"advanced-iframe/advanced-iframe.php";i:1;s:58:"contact-form-7-to-database-extension/contact-form-7-db.php";i:2;s:36:"contact-form-7/wp-contact-form-7.php";i:3;s:33:"duplicate-post/duplicate-post.php";i:4;s:59:"force-regenerate-thumbnails/force-regenerate-thumbnails.php";i:6;s:27:"js_composer/js_composer.php";i:7;s:29:"pdf-embedder/pdf_embedder.php";i:8;s:23:"revslider/revslider.php";i:9;s:23:"wordfence/wordfence.php";}}i:2;i:1;i:3;d:1496134979.5347540378570556640625;i:4;b:0;}', 'no'),
(74436, 'jpsq_sync-1496134979.538689-670946-3', 'a:5:{i:0;s:21:"jetpack_sync_constant";i:1;a:2:{i:0;s:16:"EMPTY_TRASH_DAYS";i:1;i:30;}i:2;i:1;i:3;d:1496134979.53868198394775390625;i:4;b:0;}', 'no'),
(74437, 'jpsq_sync-1496134979.539240-670946-4', 'a:5:{i:0;s:21:"jetpack_sync_constant";i:1;a:2:{i:0;s:17:"WP_POST_REVISIONS";i:1;b:1;}i:2;i:1;i:3;d:1496134979.5392329692840576171875;i:4;b:0;}', 'no'),
(74438, 'jpsq_sync-1496134979.539649-670946-5', 'a:5:{i:0;s:21:"jetpack_sync_constant";i:1;a:2:{i:0;s:7:"ABSPATH";i:1;s:27:"/home/vicenzol/public_html/";}i:2;i:1;i:3;d:1496134979.5396420955657958984375;i:4;b:0;}', 'no'),
(74439, 'jpsq_sync-1496134979.540046-670946-6', 'a:5:{i:0;s:21:"jetpack_sync_constant";i:1;a:2:{i:0;s:14:"WP_CONTENT_DIR";i:1;s:37:"/home/vicenzol/public_html/wp-content";}i:2;i:1;i:3;d:1496134979.5400390625;i:4;b:0;}', 'no'),
(74440, 'jpsq_sync-1496134979.540467-670946-7', 'a:5:{i:0;s:21:"jetpack_sync_constant";i:1;a:2:{i:0;s:16:"JETPACK__VERSION";i:1;s:3:"4.7";}i:2;i:1;i:3;d:1496134979.540460109710693359375;i:4;b:0;}', 'no'),
(74441, 'jpsq_sync-1496134979.540855-670946-8', 'a:5:{i:0;s:21:"jetpack_sync_constant";i:1;a:2:{i:0;s:20:"WP_CRON_LOCK_TIMEOUT";i:1;i:60;}i:2;i:1;i:3;d:1496134979.5408480167388916015625;i:4;b:0;}', 'no'),
(74442, 'jpsq_sync-1496134979.541248-670946-9', 'a:5:{i:0;s:21:"jetpack_sync_constant";i:1;a:2:{i:0;s:11:"PHP_VERSION";i:1;s:6:"5.3.29";}i:2;i:1;i:3;d:1496134979.5412418842315673828125;i:4;b:0;}', 'no'),
(74443, 'jetpack_constants_sync_checksum', 'a:17:{s:16:"EMPTY_TRASH_DAYS";i:2473281379;s:17:"WP_POST_REVISIONS";i:4261170317;s:26:"AUTOMATIC_UPDATER_DISABLED";i:634125391;s:7:"ABSPATH";i:129974856;s:14:"WP_CONTENT_DIR";i:358137936;s:9:"FS_METHOD";i:634125391;s:18:"DISALLOW_FILE_EDIT";i:634125391;s:18:"DISALLOW_FILE_MODS";i:634125391;s:19:"WP_AUTO_UPDATE_CORE";i:634125391;s:22:"WP_HTTP_BLOCK_EXTERNAL";i:634125391;s:19:"WP_ACCESSIBLE_HOSTS";i:634125391;s:16:"JETPACK__VERSION";i:1977511605;s:12:"IS_PRESSABLE";i:634125391;s:15:"DISABLE_WP_CRON";i:634125391;s:17:"ALTERNATE_WP_CRON";i:634125391;s:20:"WP_CRON_LOCK_TIMEOUT";i:3994858278;s:11:"PHP_VERSION";i:1139520266;}', 'yes'),
(74446, 'jetpack_sync_https_history_main_network_site_url', 'a:1:{i:0;s:4:"http";}', 'yes'),
(74447, 'jetpack_sync_https_history_site_url', 'a:1:{i:0;s:4:"http";}', 'yes'),
(74448, 'jetpack_sync_https_history_home_url', 'a:1:{i:0;s:4:"http";}', 'yes'),
(74449, 'jpsq_sync-1496134979.564532-670946-10', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:18:"wp_max_upload_size";i:1;i:8388608;}i:2;i:1;i:3;d:1496134979.5645220279693603515625;i:4;b:0;}', 'no'),
(74450, 'jpsq_sync-1496134979.565586-670946-11', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:15:"is_main_network";i:1;b:0;}i:2;i:1;i:3;d:1496134979.565578937530517578125;i:4;b:0;}', 'no'),
(74451, 'jpsq_sync-1496134979.566041-670946-12', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:13:"is_multi_site";i:1;b:0;}i:2;i:1;i:3;d:1496134979.5660340785980224609375;i:4;b:0;}', 'no'),
(74452, 'jpsq_sync-1496134979.566797-670946-13', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:17:"main_network_site";i:1;s:49:"http://www.investors-watch.com/wp-staging/ranhill";}i:2;i:1;i:3;d:1496134979.566790103912353515625;i:4;b:0;}', 'no'),
(74453, 'jpsq_sync-1496134979.567311-670946-14', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:8:"site_url";i:1;s:49:"http://www.investors-watch.com/wp-staging/ranhill";}i:2;i:1;i:3;d:1496134979.5673038959503173828125;i:4;b:0;}', 'no'),
(74454, 'jpsq_sync-1496134979.567744-670946-15', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:8:"home_url";i:1;s:49:"http://www.investors-watch.com/wp-staging/ranhill";}i:2;i:1;i:3;d:1496134979.567737102508544921875;i:4;b:0;}', 'no'),
(74455, 'jpsq_sync-1496134979.568144-670946-16', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:16:"single_user_site";i:1;b:1;}i:2;i:1;i:3;d:1496134979.5681369304656982421875;i:4;b:0;}', 'no'),
(74456, 'jpsq_sync-1496134979.568559-670946-17', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:7:"updates";i:1;a:5:{s:7:"plugins";i:0;s:6:"themes";i:0;s:9:"wordpress";i:0;s:12:"translations";i:0;s:5:"total";i:0;}}i:2;i:1;i:3;d:1496134979.5685520172119140625;i:4;b:0;}', 'no'),
(74457, 'jpsq_sync-1496134979.568962-670946-18', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:28:"has_file_system_write_access";i:1;b:1;}i:2;i:1;i:3;d:1496134979.568954944610595703125;i:4;b:0;}', 'no'),
(74458, 'jpsq_sync-1496134979.569410-670946-19', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:21:"is_version_controlled";i:1;b:0;}i:2;i:1;i:3;d:1496134979.5694038867950439453125;i:4;b:0;}', 'no'),
(74459, 'jpsq_sync-1496134979.570074-670946-20', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:10:"taxonomies";i:1;a:10:{s:8:"category";O:8:"stdClass":23:{s:4:"name";s:8:"category";s:5:"label";s:10:"Categories";s:6:"labels";O:8:"stdClass":21:{s:4:"name";s:10:"Categories";s:13:"singular_name";s:8:"Category";s:12:"search_items";s:17:"Search Categories";s:13:"popular_items";N;s:9:"all_items";s:14:"All Categories";s:11:"parent_item";s:15:"Parent Category";s:17:"parent_item_colon";s:16:"Parent Category:";s:9:"edit_item";s:13:"Edit Category";s:9:"view_item";s:13:"View Category";s:11:"update_item";s:15:"Update Category";s:12:"add_new_item";s:16:"Add New Category";s:13:"new_item_name";s:17:"New Category Name";s:26:"separate_items_with_commas";N;s:19:"add_or_remove_items";N;s:21:"choose_from_most_used";N;s:9:"not_found";s:20:"No categories found.";s:8:"no_terms";s:13:"No categories";s:21:"items_list_navigation";s:26:"Categories list navigation";s:10:"items_list";s:15:"Categories list";s:9:"menu_name";s:10:"Categories";s:14:"name_admin_bar";s:8:"category";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:1;s:11:"meta_box_cb";s:24:"post_categories_meta_box";s:11:"object_type";a:1:{i:0;s:4:"post";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:15:"edit_categories";s:12:"delete_terms";s:17:"delete_categories";s:12:"assign_terms";s:17:"assign_categories";}s:7:"rewrite";O:8:"stdClass":4:{s:10:"with_front";b:1;s:12:"hierarchical";b:1;s:7:"ep_mask";i:512;s:4:"slug";s:8:"category";}s:9:"query_var";s:13:"category_name";s:21:"update_count_callback";N;s:12:"show_in_rest";b:1;s:9:"rest_base";s:10:"categories";s:21:"rest_controller_class";s:24:"WP_REST_Terms_Controller";s:8:"_builtin";b:1;}s:8:"post_tag";O:8:"stdClass":23:{s:4:"name";s:8:"post_tag";s:5:"label";s:4:"Tags";s:6:"labels";O:8:"stdClass":21:{s:4:"name";s:4:"Tags";s:13:"singular_name";s:3:"Tag";s:12:"search_items";s:11:"Search Tags";s:13:"popular_items";s:12:"Popular Tags";s:9:"all_items";s:8:"All Tags";s:11:"parent_item";N;s:17:"parent_item_colon";N;s:9:"edit_item";s:8:"Edit Tag";s:9:"view_item";s:8:"View Tag";s:11:"update_item";s:10:"Update Tag";s:12:"add_new_item";s:11:"Add New Tag";s:13:"new_item_name";s:12:"New Tag Name";s:26:"separate_items_with_commas";s:25:"Separate tags with commas";s:19:"add_or_remove_items";s:18:"Add or remove tags";s:21:"choose_from_most_used";s:30:"Choose from the most used tags";s:9:"not_found";s:14:"No tags found.";s:8:"no_terms";s:7:"No tags";s:21:"items_list_navigation";s:20:"Tags list navigation";s:10:"items_list";s:9:"Tags list";s:9:"menu_name";s:4:"Tags";s:14:"name_admin_bar";s:8:"post_tag";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:0;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:1;s:11:"meta_box_cb";s:18:"post_tags_meta_box";s:11:"object_type";a:1:{i:0;s:4:"post";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:16:"manage_post_tags";s:10:"edit_terms";s:14:"edit_post_tags";s:12:"delete_terms";s:16:"delete_post_tags";s:12:"assign_terms";s:16:"assign_post_tags";}s:7:"rewrite";O:8:"stdClass":4:{s:10:"with_front";b:1;s:12:"hierarchical";b:0;s:7:"ep_mask";i:1024;s:4:"slug";s:3:"tag";}s:9:"query_var";s:3:"tag";s:21:"update_count_callback";N;s:12:"show_in_rest";b:1;s:9:"rest_base";s:4:"tags";s:21:"rest_controller_class";s:24:"WP_REST_Terms_Controller";s:8:"_builtin";b:1;}s:8:"nav_menu";O:8:"stdClass":23:{s:4:"name";s:8:"nav_menu";s:5:"label";s:16:"Navigation Menus";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:16:"Navigation Menus";s:13:"singular_name";s:15:"Navigation Menu";s:12:"search_items";s:11:"Search Tags";s:13:"popular_items";s:12:"Popular Tags";s:9:"all_items";s:16:"Navigation Menus";s:11:"parent_item";N;s:17:"parent_item_colon";N;s:9:"edit_item";s:8:"Edit Tag";s:9:"view_item";s:8:"View Tag";s:11:"update_item";s:10:"Update Tag";s:12:"add_new_item";s:11:"Add New Tag";s:13:"new_item_name";s:12:"New Tag Name";s:26:"separate_items_with_commas";s:25:"Separate tags with commas";s:19:"add_or_remove_items";s:18:"Add or remove tags";s:21:"choose_from_most_used";s:30:"Choose from the most used tags";s:9:"not_found";s:14:"No tags found.";s:8:"no_terms";s:7:"No tags";s:21:"items_list_navigation";s:20:"Tags list navigation";s:10:"items_list";s:9:"Tags list";s:9:"menu_name";s:16:"Navigation Menus";s:14:"name_admin_bar";s:15:"Navigation Menu";s:8:"archives";s:16:"Navigation Menus";}s:11:"description";s:0:"";s:6:"public";b:0;s:18:"publicly_queryable";b:0;s:12:"hierarchical";b:0;s:7:"show_ui";b:0;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:0;s:13:"show_tagcloud";b:0;s:18:"show_in_quick_edit";b:0;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:18:"post_tags_meta_box";s:11:"object_type";a:1:{i:0;s:13:"nav_menu_item";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:17:"manage_categories";s:12:"delete_terms";s:17:"manage_categories";s:12:"assign_terms";s:10:"edit_posts";}s:7:"rewrite";b:0;s:9:"query_var";b:0;s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:1;}s:13:"link_category";O:8:"stdClass":23:{s:4:"name";s:13:"link_category";s:5:"label";s:15:"Link Categories";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:15:"Link Categories";s:13:"singular_name";s:13:"Link Category";s:12:"search_items";s:22:"Search Link Categories";s:13:"popular_items";N;s:9:"all_items";s:19:"All Link Categories";s:11:"parent_item";N;s:17:"parent_item_colon";N;s:9:"edit_item";s:18:"Edit Link Category";s:9:"view_item";s:8:"View Tag";s:11:"update_item";s:20:"Update Link Category";s:12:"add_new_item";s:21:"Add New Link Category";s:13:"new_item_name";s:22:"New Link Category Name";s:26:"separate_items_with_commas";N;s:19:"add_or_remove_items";N;s:21:"choose_from_most_used";N;s:9:"not_found";s:14:"No tags found.";s:8:"no_terms";s:7:"No tags";s:21:"items_list_navigation";s:20:"Tags list navigation";s:10:"items_list";s:9:"Tags list";s:9:"menu_name";s:15:"Link Categories";s:14:"name_admin_bar";s:13:"Link Category";s:8:"archives";s:19:"All Link Categories";}s:11:"description";s:0:"";s:6:"public";b:0;s:18:"publicly_queryable";b:0;s:12:"hierarchical";b:0;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:0;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:18:"post_tags_meta_box";s:11:"object_type";a:1:{i:0;s:4:"link";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:12:"manage_links";s:10:"edit_terms";s:12:"manage_links";s:12:"delete_terms";s:12:"manage_links";s:12:"assign_terms";s:12:"manage_links";}s:7:"rewrite";b:0;s:9:"query_var";b:0;s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:1;}s:11:"post_format";O:8:"stdClass":23:{s:4:"name";s:11:"post_format";s:5:"label";s:6:"Format";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:6:"Format";s:13:"singular_name";s:6:"Format";s:12:"search_items";s:11:"Search Tags";s:13:"popular_items";s:12:"Popular Tags";s:9:"all_items";s:6:"Format";s:11:"parent_item";N;s:17:"parent_item_colon";N;s:9:"edit_item";s:8:"Edit Tag";s:9:"view_item";s:8:"View Tag";s:11:"update_item";s:10:"Update Tag";s:12:"add_new_item";s:11:"Add New Tag";s:13:"new_item_name";s:12:"New Tag Name";s:26:"separate_items_with_commas";s:25:"Separate tags with commas";s:19:"add_or_remove_items";s:18:"Add or remove tags";s:21:"choose_from_most_used";s:30:"Choose from the most used tags";s:9:"not_found";s:14:"No tags found.";s:8:"no_terms";s:7:"No tags";s:21:"items_list_navigation";s:20:"Tags list navigation";s:10:"items_list";s:9:"Tags list";s:9:"menu_name";s:6:"Format";s:14:"name_admin_bar";s:6:"Format";s:8:"archives";s:6:"Format";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:0;s:7:"show_ui";b:0;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:0;s:18:"show_in_quick_edit";b:0;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:18:"post_tags_meta_box";s:11:"object_type";a:1:{i:0;s:4:"post";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:17:"manage_categories";s:12:"delete_terms";s:17:"manage_categories";s:12:"assign_terms";s:10:"edit_posts";}s:7:"rewrite";O:8:"stdClass":4:{s:10:"with_front";b:1;s:12:"hierarchical";b:0;s:7:"ep_mask";i:0;s:4:"slug";s:4:"type";}s:9:"query_var";s:11:"post_format";s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:1;}s:12:"client-types";O:8:"stdClass":24:{s:4:"name";s:12:"client-types";s:5:"label";s:17:"Client categories";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:17:"Client categories";s:13:"singular_name";s:17:"Client categories";s:12:"search_items";s:17:"Search Categories";s:13:"popular_items";N;s:9:"all_items";s:17:"Client categories";s:11:"parent_item";s:15:"Parent Category";s:17:"parent_item_colon";s:16:"Parent Category:";s:9:"edit_item";s:13:"Edit Category";s:9:"view_item";s:13:"View Category";s:11:"update_item";s:15:"Update Category";s:12:"add_new_item";s:16:"Add New Category";s:13:"new_item_name";s:17:"New Category Name";s:26:"separate_items_with_commas";N;s:19:"add_or_remove_items";N;s:21:"choose_from_most_used";N;s:9:"not_found";s:20:"No categories found.";s:8:"no_terms";s:13:"No categories";s:21:"items_list_navigation";s:26:"Categories list navigation";s:10:"items_list";s:15:"Categories list";s:9:"menu_name";s:17:"Client categories";s:14:"name_admin_bar";s:17:"Client categories";s:8:"archives";s:17:"Client categories";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:24:"post_categories_meta_box";s:11:"object_type";a:1:{i:0;s:6:"client";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:17:"manage_categories";s:12:"delete_terms";s:17:"manage_categories";s:12:"assign_terms";s:10:"edit_posts";}s:7:"rewrite";O:8:"stdClass":5:{s:10:"with_front";b:1;s:12:"hierarchical";b:0;s:7:"ep_mask";i:0;s:1:"0";s:0:"";s:4:"slug";s:12:"client-types";}s:9:"query_var";s:12:"client-types";s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:0;s:14:"singular_label";s:15:"Client category";}s:11:"offer-types";O:8:"stdClass":24:{s:4:"name";s:11:"offer-types";s:5:"label";s:16:"Offer categories";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:16:"Offer categories";s:13:"singular_name";s:16:"Offer categories";s:12:"search_items";s:17:"Search Categories";s:13:"popular_items";N;s:9:"all_items";s:16:"Offer categories";s:11:"parent_item";s:15:"Parent Category";s:17:"parent_item_colon";s:16:"Parent Category:";s:9:"edit_item";s:13:"Edit Category";s:9:"view_item";s:13:"View Category";s:11:"update_item";s:15:"Update Category";s:12:"add_new_item";s:16:"Add New Category";s:13:"new_item_name";s:17:"New Category Name";s:26:"separate_items_with_commas";N;s:19:"add_or_remove_items";N;s:21:"choose_from_most_used";N;s:9:"not_found";s:20:"No categories found.";s:8:"no_terms";s:13:"No categories";s:21:"items_list_navigation";s:26:"Categories list navigation";s:10:"items_list";s:15:"Categories list";s:9:"menu_name";s:16:"Offer categories";s:14:"name_admin_bar";s:16:"Offer categories";s:8:"archives";s:16:"Offer categories";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:24:"post_categories_meta_box";s:11:"object_type";a:1:{i:0;s:5:"offer";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:17:"manage_categories";s:12:"delete_terms";s:17:"manage_categories";s:12:"assign_terms";s:10:"edit_posts";}s:7:"rewrite";O:8:"stdClass":5:{s:10:"with_front";b:1;s:12:"hierarchical";b:0;s:7:"ep_mask";i:0;s:1:"0";s:0:"";s:4:"slug";s:11:"offer-types";}s:9:"query_var";s:11:"offer-types";s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:0;s:14:"singular_label";s:14:"Offer category";}s:15:"portfolio-types";O:8:"stdClass":23:{s:4:"name";s:15:"portfolio-types";s:5:"label";s:20:"Portfolio categories";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:20:"Portfolio categories";s:13:"singular_name";s:20:"Portfolio categories";s:12:"search_items";s:17:"Search Categories";s:13:"popular_items";N;s:9:"all_items";s:20:"Portfolio categories";s:11:"parent_item";s:15:"Parent Category";s:17:"parent_item_colon";s:16:"Parent Category:";s:9:"edit_item";s:13:"Edit Category";s:9:"view_item";s:13:"View Category";s:11:"update_item";s:15:"Update Category";s:12:"add_new_item";s:16:"Add New Category";s:13:"new_item_name";s:17:"New Category Name";s:26:"separate_items_with_commas";N;s:19:"add_or_remove_items";N;s:21:"choose_from_most_used";N;s:9:"not_found";s:20:"No categories found.";s:8:"no_terms";s:13:"No categories";s:21:"items_list_navigation";s:26:"Categories list navigation";s:10:"items_list";s:15:"Categories list";s:9:"menu_name";s:20:"Portfolio categories";s:14:"name_admin_bar";s:20:"Portfolio categories";s:8:"archives";s:20:"Portfolio categories";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:24:"post_categories_meta_box";s:11:"object_type";a:1:{i:0;s:9:"portfolio";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:17:"manage_categories";s:12:"delete_terms";s:17:"manage_categories";s:12:"assign_terms";s:10:"edit_posts";}s:7:"rewrite";O:8:"stdClass":4:{s:10:"with_front";b:1;s:12:"hierarchical";b:0;s:7:"ep_mask";i:0;s:4:"slug";s:15:"portfolio-types";}s:9:"query_var";s:15:"portfolio-types";s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:0;}s:11:"slide-types";O:8:"stdClass":24:{s:4:"name";s:11:"slide-types";s:5:"label";s:16:"Slide categories";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:16:"Slide categories";s:13:"singular_name";s:16:"Slide categories";s:12:"search_items";s:17:"Search Categories";s:13:"popular_items";N;s:9:"all_items";s:16:"Slide categories";s:11:"parent_item";s:15:"Parent Category";s:17:"parent_item_colon";s:16:"Parent Category:";s:9:"edit_item";s:13:"Edit Category";s:9:"view_item";s:13:"View Category";s:11:"update_item";s:15:"Update Category";s:12:"add_new_item";s:16:"Add New Category";s:13:"new_item_name";s:17:"New Category Name";s:26:"separate_items_with_commas";N;s:19:"add_or_remove_items";N;s:21:"choose_from_most_used";N;s:9:"not_found";s:20:"No categories found.";s:8:"no_terms";s:13:"No categories";s:21:"items_list_navigation";s:26:"Categories list navigation";s:10:"items_list";s:15:"Categories list";s:9:"menu_name";s:16:"Slide categories";s:14:"name_admin_bar";s:16:"Slide categories";s:8:"archives";s:16:"Slide categories";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:24:"post_categories_meta_box";s:11:"object_type";a:1:{i:0;s:5:"slide";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:17:"manage_categories";s:12:"delete_terms";s:17:"manage_categories";s:12:"assign_terms";s:10:"edit_posts";}s:7:"rewrite";O:8:"stdClass":5:{s:10:"with_front";b:1;s:12:"hierarchical";b:0;s:7:"ep_mask";i:0;s:1:"0";s:0:"";s:4:"slug";s:11:"slide-types";}s:9:"query_var";s:11:"slide-types";s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:0;s:14:"singular_label";s:14:"Slide category";}s:17:"testimonial-types";O:8:"stdClass":24:{s:4:"name";s:17:"testimonial-types";s:5:"label";s:22:"Testimonial categories";s:6:"labels";O:8:"stdClass":22:{s:4:"name";s:22:"Testimonial categories";s:13:"singular_name";s:22:"Testimonial categories";s:12:"search_items";s:17:"Search Categories";s:13:"popular_items";N;s:9:"all_items";s:22:"Testimonial categories";s:11:"parent_item";s:15:"Parent Category";s:17:"parent_item_colon";s:16:"Parent Category:";s:9:"edit_item";s:13:"Edit Category";s:9:"view_item";s:13:"View Category";s:11:"update_item";s:15:"Update Category";s:12:"add_new_item";s:16:"Add New Category";s:13:"new_item_name";s:17:"New Category Name";s:26:"separate_items_with_commas";N;s:19:"add_or_remove_items";N;s:21:"choose_from_most_used";N;s:9:"not_found";s:20:"No categories found.";s:8:"no_terms";s:13:"No categories";s:21:"items_list_navigation";s:26:"Categories list navigation";s:10:"items_list";s:15:"Categories list";s:9:"menu_name";s:22:"Testimonial categories";s:14:"name_admin_bar";s:22:"Testimonial categories";s:8:"archives";s:22:"Testimonial categories";}s:11:"description";s:0:"";s:6:"public";b:1;s:18:"publicly_queryable";b:1;s:12:"hierarchical";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:13:"show_tagcloud";b:1;s:18:"show_in_quick_edit";b:1;s:17:"show_admin_column";b:0;s:11:"meta_box_cb";s:24:"post_categories_meta_box";s:11:"object_type";a:1:{i:0;s:11:"testimonial";}s:3:"cap";O:8:"stdClass":4:{s:12:"manage_terms";s:17:"manage_categories";s:10:"edit_terms";s:17:"manage_categories";s:12:"delete_terms";s:17:"manage_categories";s:12:"assign_terms";s:10:"edit_posts";}s:7:"rewrite";O:8:"stdClass":5:{s:10:"with_front";b:1;s:12:"hierarchical";b:0;s:7:"ep_mask";i:0;s:1:"0";s:0:"";s:4:"slug";s:17:"testimonial-types";}s:9:"query_var";s:17:"testimonial-types";s:21:"update_count_callback";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";N;s:8:"_builtin";b:0;s:14:"singular_label";s:20:"Testimonial category";}}}i:2;i:1;i:3;d:1496134979.570066928863525390625;i:4;b:0;}', 'no') ;
INSERT INTO `wp2o_options` ( `option_id`, `option_name`, `option_value`, `autoload`) VALUES
(74460, 'jpsq_sync-1496134979.572344-670946-21', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:10:"post_types";i:1;a:16:{s:4:"post";O:12:"WP_Post_Type":30:{s:4:"name";s:4:"post";s:5:"label";s:5:"Posts";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:5:"Posts";s:13:"singular_name";s:4:"Post";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Post";s:9:"edit_item";s:9:"Edit Post";s:8:"new_item";s:8:"New Post";s:9:"view_item";s:9:"View Post";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:12:"Search Posts";s:9:"not_found";s:15:"No posts found.";s:18:"not_found_in_trash";s:24:"No posts found in Trash.";s:17:"parent_item_colon";N;s:9:"all_items";s:9:"All Posts";s:8:"archives";s:13:"Post Archives";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:5:"Posts";s:14:"name_admin_bar";s:4:"Post";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";i:5;s:9:"menu_icon";N;s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:1;s:16:"delete_with_user";b:1;s:8:"_builtin";b:1;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";b:0;s:8:"supports";N;s:12:"show_in_rest";b:1;s:9:"rest_base";s:5:"posts";s:21:"rest_controller_class";s:24:"WP_REST_Posts_Controller";}s:4:"page";O:12:"WP_Post_Type":30:{s:4:"name";s:4:"page";s:5:"label";s:5:"Pages";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:5:"Pages";s:13:"singular_name";s:4:"Page";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Page";s:9:"edit_item";s:9:"Edit Page";s:8:"new_item";s:8:"New Page";s:9:"view_item";s:9:"View Page";s:10:"view_items";s:10:"View Pages";s:12:"search_items";s:12:"Search Pages";s:9:"not_found";s:15:"No pages found.";s:18:"not_found_in_trash";s:24:"No pages found in Trash.";s:17:"parent_item_colon";s:12:"Parent Page:";s:9:"all_items";s:9:"All Pages";s:8:"archives";s:13:"Page Archives";s:10:"attributes";s:15:"Page Attributes";s:16:"insert_into_item";s:16:"Insert into page";s:21:"uploaded_to_this_item";s:21:"Uploaded to this page";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter pages list";s:21:"items_list_navigation";s:21:"Pages list navigation";s:10:"items_list";s:10:"Pages list";s:9:"menu_name";s:5:"Pages";s:14:"name_admin_bar";s:4:"Page";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:1;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:0;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";i:20;s:9:"menu_icon";N;s:15:"capability_type";s:4:"page";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:1;s:16:"delete_with_user";b:1;s:8:"_builtin";b:1;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_page";s:9:"read_post";s:9:"read_page";s:11:"delete_post";s:11:"delete_page";s:10:"edit_posts";s:10:"edit_pages";s:17:"edit_others_posts";s:17:"edit_others_pages";s:13:"publish_posts";s:13:"publish_pages";s:18:"read_private_posts";s:18:"read_private_pages";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_pages";s:20:"delete_private_posts";s:20:"delete_private_pages";s:22:"delete_published_posts";s:22:"delete_published_pages";s:19:"delete_others_posts";s:19:"delete_others_pages";s:18:"edit_private_posts";s:18:"edit_private_pages";s:20:"edit_published_posts";s:20:"edit_published_pages";s:12:"create_posts";s:10:"edit_pages";}s:7:"rewrite";b:0;s:8:"supports";N;s:12:"show_in_rest";b:1;s:9:"rest_base";s:5:"pages";s:21:"rest_controller_class";s:24:"WP_REST_Posts_Controller";}s:10:"attachment";O:12:"WP_Post_Type":30:{s:4:"name";s:10:"attachment";s:5:"label";s:5:"Media";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:5:"Media";s:13:"singular_name";s:5:"Media";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Post";s:9:"edit_item";s:10:"Edit Media";s:8:"new_item";s:8:"New Post";s:9:"view_item";s:20:"View Attachment Page";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:12:"Search Posts";s:9:"not_found";s:15:"No posts found.";s:18:"not_found_in_trash";s:24:"No posts found in Trash.";s:17:"parent_item_colon";N;s:9:"all_items";s:5:"Media";s:8:"archives";s:5:"Media";s:10:"attributes";s:21:"Attachment Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:5:"Media";s:14:"name_admin_bar";s:5:"Media";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:0;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";N;s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:1;s:16:"delete_with_user";b:1;s:8:"_builtin";b:1;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:12:"upload_files";}s:7:"rewrite";b:0;s:8:"supports";N;s:12:"show_in_rest";b:1;s:9:"rest_base";s:5:"media";s:21:"rest_controller_class";s:30:"WP_REST_Attachments_Controller";}s:8:"revision";O:12:"WP_Post_Type":30:{s:4:"name";s:8:"revision";s:5:"label";s:9:"Revisions";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:9:"Revisions";s:13:"singular_name";s:8:"Revision";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Post";s:9:"edit_item";s:9:"Edit Post";s:8:"new_item";s:8:"New Post";s:9:"view_item";s:9:"View Post";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:12:"Search Posts";s:9:"not_found";s:15:"No posts found.";s:18:"not_found_in_trash";s:24:"No posts found in Trash.";s:17:"parent_item_colon";N;s:9:"all_items";s:9:"Revisions";s:8:"archives";s:9:"Revisions";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:9:"Revisions";s:14:"name_admin_bar";s:8:"Revision";}s:11:"description";s:0:"";s:6:"public";b:0;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:1;s:18:"publicly_queryable";b:0;s:7:"show_ui";b:0;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:0;s:17:"show_in_admin_bar";b:0;s:13:"menu_position";N;s:9:"menu_icon";N;s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:0;s:16:"delete_with_user";b:1;s:8:"_builtin";b:1;s:10:"_edit_link";s:24:"revision.php?revision=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";b:0;s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:13:"nav_menu_item";O:12:"WP_Post_Type":30:{s:4:"name";s:13:"nav_menu_item";s:5:"label";s:21:"Navigation Menu Items";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:21:"Navigation Menu Items";s:13:"singular_name";s:20:"Navigation Menu Item";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Post";s:9:"edit_item";s:9:"Edit Post";s:8:"new_item";s:8:"New Post";s:9:"view_item";s:9:"View Post";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:12:"Search Posts";s:9:"not_found";s:15:"No posts found.";s:18:"not_found_in_trash";s:24:"No posts found in Trash.";s:17:"parent_item_colon";N;s:9:"all_items";s:21:"Navigation Menu Items";s:8:"archives";s:21:"Navigation Menu Items";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:21:"Navigation Menu Items";s:14:"name_admin_bar";s:20:"Navigation Menu Item";}s:11:"description";s:0:"";s:6:"public";b:0;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:1;s:18:"publicly_queryable";b:0;s:7:"show_ui";b:0;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:0;s:17:"show_in_admin_bar";b:0;s:13:"menu_position";N;s:9:"menu_icon";N;s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:1;s:16:"delete_with_user";b:0;s:8:"_builtin";b:1;s:10:"_edit_link";s:0:"";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";b:0;s:8:"supports";a:0:{}s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:10:"custom_css";O:12:"WP_Post_Type":30:{s:4:"name";s:10:"custom_css";s:5:"label";s:10:"Custom CSS";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:10:"Custom CSS";s:13:"singular_name";s:10:"Custom CSS";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Post";s:9:"edit_item";s:9:"Edit Post";s:8:"new_item";s:8:"New Post";s:9:"view_item";s:9:"View Post";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:12:"Search Posts";s:9:"not_found";s:15:"No posts found.";s:18:"not_found_in_trash";s:24:"No posts found in Trash.";s:17:"parent_item_colon";N;s:9:"all_items";s:10:"Custom CSS";s:8:"archives";s:10:"Custom CSS";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:10:"Custom CSS";s:14:"name_admin_bar";s:10:"Custom CSS";}s:11:"description";s:0:"";s:6:"public";b:0;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:1;s:18:"publicly_queryable";b:0;s:7:"show_ui";b:0;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:0;s:17:"show_in_admin_bar";b:0;s:13:"menu_position";N;s:9:"menu_icon";N;s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:0;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:1;s:16:"delete_with_user";b:0;s:8:"_builtin";b:1;s:10:"_edit_link";s:0:"";s:3:"cap";O:8:"stdClass":13:{s:9:"edit_post";s:8:"edit_css";s:9:"read_post";s:4:"read";s:11:"delete_post";s:18:"edit_theme_options";s:10:"edit_posts";s:8:"edit_css";s:17:"edit_others_posts";s:8:"edit_css";s:13:"publish_posts";s:18:"edit_theme_options";s:18:"read_private_posts";s:4:"read";s:12:"delete_posts";s:18:"edit_theme_options";s:22:"delete_published_posts";s:18:"edit_theme_options";s:20:"delete_private_posts";s:18:"edit_theme_options";s:19:"delete_others_posts";s:18:"edit_theme_options";s:20:"edit_published_posts";s:8:"edit_css";s:12:"create_posts";s:8:"edit_css";}s:7:"rewrite";b:0;s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:19:"customize_changeset";O:12:"WP_Post_Type":30:{s:4:"name";s:19:"customize_changeset";s:5:"label";s:10:"Changesets";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:10:"Changesets";s:13:"singular_name";s:9:"Changeset";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:17:"Add New Changeset";s:9:"edit_item";s:14:"Edit Changeset";s:8:"new_item";s:13:"New Changeset";s:9:"view_item";s:14:"View Changeset";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:17:"Search Changesets";s:9:"not_found";s:20:"No changesets found.";s:18:"not_found_in_trash";s:29:"No changesets found in Trash.";s:17:"parent_item_colon";N;s:9:"all_items";s:14:"All Changesets";s:8:"archives";s:14:"All Changesets";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:10:"Changesets";s:14:"name_admin_bar";s:9:"Changeset";}s:11:"description";s:0:"";s:6:"public";b:0;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:1;s:18:"publicly_queryable";b:0;s:7:"show_ui";b:0;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:0;s:17:"show_in_admin_bar";b:0;s:13:"menu_position";N;s:9:"menu_icon";N;s:15:"capability_type";s:19:"customize_changeset";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:0;s:16:"delete_with_user";b:0;s:8:"_builtin";b:1;s:10:"_edit_link";s:0:"";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"customize";s:9:"read_post";s:9:"customize";s:11:"delete_post";s:9:"customize";s:10:"edit_posts";s:9:"customize";s:17:"edit_others_posts";s:9:"customize";s:13:"publish_posts";s:9:"customize";s:18:"read_private_posts";s:9:"customize";s:4:"read";s:4:"read";s:12:"delete_posts";s:9:"customize";s:20:"delete_private_posts";s:9:"customize";s:22:"delete_published_posts";s:9:"customize";s:19:"delete_others_posts";s:9:"customize";s:18:"edit_private_posts";s:9:"customize";s:20:"edit_published_posts";s:12:"do_not_allow";s:12:"create_posts";s:9:"customize";}s:7:"rewrite";b:0;s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:18:"wpcf7_contact_form";O:12:"WP_Post_Type":30:{s:4:"name";s:18:"wpcf7_contact_form";s:5:"label";s:13:"Contact Forms";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:13:"Contact Forms";s:13:"singular_name";s:12:"Contact Form";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Post";s:9:"edit_item";s:9:"Edit Post";s:8:"new_item";s:8:"New Post";s:9:"view_item";s:9:"View Post";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:12:"Search Posts";s:9:"not_found";s:15:"No posts found.";s:18:"not_found_in_trash";s:24:"No posts found in Trash.";s:17:"parent_item_colon";N;s:9:"all_items";s:13:"Contact Forms";s:8:"archives";s:13:"Contact Forms";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:13:"Contact Forms";s:14:"name_admin_bar";s:12:"Contact Form";}s:11:"description";s:0:"";s:6:"public";b:0;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:1;s:18:"publicly_queryable";b:0;s:7:"show_ui";b:0;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:0;s:17:"show_in_admin_bar";b:0;s:13:"menu_position";N;s:9:"menu_icon";N;s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";b:0;s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:0:"";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";b:0;s:8:"supports";a:0:{}s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:12:"vc_grid_item";O:12:"WP_Post_Type":30:{s:4:"name";s:12:"vc_grid_item";s:5:"label";s:12:"Grid Builder";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:12:"Grid Builder";s:13:"singular_name";s:13:"Grid template";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:17:"Add Grid template";s:9:"edit_item";s:18:"Edit Grid template";s:8:"new_item";s:8:"New Post";s:9:"view_item";s:18:"View Grid template";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:21:"Search Grid templates";s:9:"not_found";s:23:"No Grid templates found";s:18:"not_found_in_trash";s:32:"No Grid templates found in Trash";s:17:"parent_item_colon";N;s:9:"all_items";s:12:"Grid Builder";s:8:"archives";s:12:"Grid Builder";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:12:"Grid Builder";s:14:"name_admin_bar";s:13:"Grid template";}s:11:"description";s:0:"";s:6:"public";b:0;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:1;s:18:"publicly_queryable";b:0;s:7:"show_ui";b:1;s:12:"show_in_menu";b:0;s:17:"show_in_nav_menus";b:0;s:17:"show_in_admin_bar";b:0;s:13:"menu_position";N;s:9:"menu_icon";N;s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:12:"vc_grid_item";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:12:"vc_grid_item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:6:"client";O:12:"WP_Post_Type":30:{s:4:"name";s:6:"client";s:5:"label";s:7:"Clients";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:7:"Clients";s:13:"singular_name";s:6:"Client";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:14:"Add New Client";s:9:"edit_item";s:11:"Edit Client";s:8:"new_item";s:10:"New Client";s:9:"view_item";s:12:"View Clients";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:14:"Search Clients";s:9:"not_found";s:16:"No clients found";s:18:"not_found_in_trash";s:25:"No clients found in Trash";s:17:"parent_item_colon";s:0:"";s:9:"all_items";s:7:"Clients";s:8:"archives";s:7:"Clients";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:7:"Clients";s:14:"name_admin_bar";s:6:"Client";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";s:21:"dashicons-businessman";s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:6:"client";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:11:"client-item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:5:"offer";O:12:"WP_Post_Type":30:{s:4:"name";s:5:"offer";s:5:"label";s:5:"Offer";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:5:"Offer";s:13:"singular_name";s:10:"Offer Item";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:12:"Add New Item";s:9:"edit_item";s:9:"Edit Item";s:8:"new_item";s:8:"New Item";s:9:"view_item";s:9:"View Item";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:18:"Search Offer Items";s:9:"not_found";s:14:"No items found";s:18:"not_found_in_trash";s:23:"No items found in Trash";s:17:"parent_item_colon";s:0:"";s:9:"all_items";s:5:"Offer";s:8:"archives";s:5:"Offer";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:5:"Offer";s:14:"name_admin_bar";s:10:"Offer Item";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";s:19:"dashicons-clipboard";s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:5:"offer";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:10:"offer-item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:9:"portfolio";O:12:"WP_Post_Type":30:{s:4:"name";s:9:"portfolio";s:5:"label";s:9:"Portfolio";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:9:"Portfolio";s:13:"singular_name";s:14:"Portfolio item";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:22:"Add New Portfolio item";s:9:"edit_item";s:19:"Edit Portfolio item";s:8:"new_item";s:18:"New Portfolio item";s:9:"view_item";s:19:"View Portfolio item";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:22:"Search Portfolio items";s:9:"not_found";s:24:"No portfolio items found";s:18:"not_found_in_trash";s:33:"No portfolio items found in Trash";s:17:"parent_item_colon";s:0:"";s:9:"all_items";s:9:"Portfolio";s:8:"archives";s:9:"Portfolio";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:9:"Portfolio";s:14:"name_admin_bar";s:14:"Portfolio item";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";s:19:"dashicons-portfolio";s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:9:"portfolio";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:14:"portfolio-item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:5:"slide";O:12:"WP_Post_Type":30:{s:4:"name";s:5:"slide";s:5:"label";s:6:"Slides";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:6:"Slides";s:13:"singular_name";s:5:"Slide";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:13:"Add New Slide";s:9:"edit_item";s:10:"Edit Slide";s:8:"new_item";s:9:"New Slide";s:9:"view_item";s:11:"View Slides";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:13:"Search Slides";s:9:"not_found";s:15:"No slides found";s:18:"not_found_in_trash";s:24:"No slides found in Trash";s:17:"parent_item_colon";s:0:"";s:9:"all_items";s:6:"Slides";s:8:"archives";s:6:"Slides";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:6:"Slides";s:14:"name_admin_bar";s:5:"Slide";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";s:16:"dashicons-slides";s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:5:"slide";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:10:"slide-item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:11:"testimonial";O:12:"WP_Post_Type":30:{s:4:"name";s:11:"testimonial";s:5:"label";s:12:"Testimonials";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:12:"Testimonials";s:13:"singular_name";s:11:"Testimonial";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:19:"Add New Testimonial";s:9:"edit_item";s:16:"Edit Testimonial";s:8:"new_item";s:15:"New Testimonial";s:9:"view_item";s:17:"View Testimonials";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:19:"Search Testimonials";s:9:"not_found";s:21:"No testimonials found";s:18:"not_found_in_trash";s:30:"No testimonials found in Trash";s:17:"parent_item_colon";s:0:"";s:9:"all_items";s:12:"Testimonials";s:8:"archives";s:12:"Testimonials";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:12:"Testimonials";s:14:"name_admin_bar";s:11:"Testimonial";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";s:22:"dashicons-format-quote";s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:11:"testimonial";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:16:"testimonial-item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:6:"layout";O:12:"WP_Post_Type":30:{s:4:"name";s:6:"layout";s:5:"label";s:7:"Layouts";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:7:"Layouts";s:13:"singular_name";s:6:"Layout";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:14:"Add New Layout";s:9:"edit_item";s:11:"Edit Layout";s:8:"new_item";s:10:"New Layout";s:9:"view_item";s:11:"View Layout";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:14:"Search Layouts";s:9:"not_found";s:16:"No layouts found";s:18:"not_found_in_trash";s:25:"No layouts found in Trash";s:17:"parent_item_colon";s:0:"";s:9:"all_items";s:7:"Layouts";s:8:"archives";s:7:"Layouts";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:7:"Layouts";s:14:"name_admin_bar";s:6:"Layout";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";s:14:"dashicons-edit";s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:6:"layout";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:11:"layout-item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}s:8:"template";O:12:"WP_Post_Type":30:{s:4:"name";s:8:"template";s:5:"label";s:9:"Templates";s:6:"labels";O:8:"stdClass":26:{s:4:"name";s:9:"Templates";s:13:"singular_name";s:8:"Template";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:16:"Add New Template";s:9:"edit_item";s:13:"Edit Template";s:8:"new_item";s:12:"New Template";s:9:"view_item";s:13:"View Template";s:10:"view_items";s:10:"View Posts";s:12:"search_items";s:15:"Search Template";s:9:"not_found";s:18:"No templates found";s:18:"not_found_in_trash";s:27:"No templates found in Trash";s:17:"parent_item_colon";s:0:"";s:9:"all_items";s:9:"Templates";s:8:"archives";s:9:"Templates";s:10:"attributes";s:15:"Post Attributes";s:16:"insert_into_item";s:16:"Insert into post";s:21:"uploaded_to_this_item";s:21:"Uploaded to this post";s:14:"featured_image";s:14:"Featured Image";s:18:"set_featured_image";s:18:"Set featured image";s:21:"remove_featured_image";s:21:"Remove featured image";s:18:"use_featured_image";s:21:"Use as featured image";s:17:"filter_items_list";s:17:"Filter posts list";s:21:"items_list_navigation";s:21:"Posts list navigation";s:10:"items_list";s:10:"Posts list";s:9:"menu_name";s:9:"Templates";s:14:"name_admin_bar";s:8:"Template";}s:11:"description";s:0:"";s:6:"public";b:1;s:12:"hierarchical";b:0;s:19:"exclude_from_search";b:0;s:18:"publicly_queryable";b:1;s:7:"show_ui";b:1;s:12:"show_in_menu";b:1;s:17:"show_in_nav_menus";b:1;s:17:"show_in_admin_bar";b:1;s:13:"menu_position";N;s:9:"menu_icon";s:18:"dashicons-schedule";s:15:"capability_type";s:4:"post";s:12:"map_meta_cap";b:1;s:20:"register_meta_box_cb";N;s:10:"taxonomies";a:0:{}s:11:"has_archive";b:0;s:9:"query_var";s:8:"template";s:10:"can_export";b:1;s:16:"delete_with_user";N;s:8:"_builtin";b:0;s:10:"_edit_link";s:16:"post.php?post=%d";s:3:"cap";O:8:"stdClass":15:{s:9:"edit_post";s:9:"edit_post";s:9:"read_post";s:9:"read_post";s:11:"delete_post";s:11:"delete_post";s:10:"edit_posts";s:10:"edit_posts";s:17:"edit_others_posts";s:17:"edit_others_posts";s:13:"publish_posts";s:13:"publish_posts";s:18:"read_private_posts";s:18:"read_private_posts";s:4:"read";s:4:"read";s:12:"delete_posts";s:12:"delete_posts";s:20:"delete_private_posts";s:20:"delete_private_posts";s:22:"delete_published_posts";s:22:"delete_published_posts";s:19:"delete_others_posts";s:19:"delete_others_posts";s:18:"edit_private_posts";s:18:"edit_private_posts";s:20:"edit_published_posts";s:20:"edit_published_posts";s:12:"create_posts";s:10:"edit_posts";}s:7:"rewrite";a:5:{s:4:"slug";s:13:"template-item";s:10:"with_front";b:1;s:5:"pages";b:1;s:5:"feeds";b:0;s:7:"ep_mask";i:1;}s:8:"supports";N;s:12:"show_in_rest";b:0;s:9:"rest_base";b:0;s:21:"rest_controller_class";b:0;}}}i:2;i:1;i:3;d:1496134979.5723369121551513671875;i:4;b:0;}', 'no'),
(74461, 'jpsq_sync-1496134979.576596-670946-22', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:18:"post_type_features";i:1;a:18:{s:4:"post";a:10:{s:5:"title";b:1;s:6:"editor";b:1;s:6:"author";b:1;s:9:"thumbnail";b:1;s:7:"excerpt";b:1;s:10:"trackbacks";b:1;s:13:"custom-fields";b:1;s:8:"comments";b:1;s:9:"revisions";b:1;s:12:"post-formats";b:1;}s:4:"page";a:8:{s:5:"title";b:1;s:6:"editor";b:1;s:6:"author";b:1;s:9:"thumbnail";b:1;s:15:"page-attributes";b:1;s:13:"custom-fields";b:1;s:8:"comments";b:1;s:9:"revisions";b:1;}s:10:"attachment";a:3:{s:5:"title";b:1;s:6:"author";b:1;s:8:"comments";b:1;}s:16:"attachment:audio";a:1:{s:9:"thumbnail";b:1;}s:16:"attachment:video";a:1:{s:9:"thumbnail";b:1;}s:8:"revision";a:1:{s:6:"author";b:1;}s:13:"nav_menu_item";a:2:{s:5:"title";b:1;s:6:"editor";b:1;}s:10:"custom_css";a:2:{s:5:"title";b:1;s:9:"revisions";b:1;}s:19:"customize_changeset";a:2:{s:5:"title";b:1;s:6:"author";b:1;}s:18:"wpcf7_contact_form";a:2:{s:5:"title";b:1;s:6:"editor";b:1;}s:12:"vc_grid_item";a:2:{s:5:"title";b:1;s:6:"editor";b:1;}s:6:"client";a:3:{s:5:"title";b:1;s:9:"thumbnail";b:1;s:15:"page-attributes";b:1;}s:5:"offer";a:4:{s:6:"editor";b:1;s:9:"thumbnail";b:1;s:5:"title";b:1;s:15:"page-attributes";b:1;}s:9:"portfolio";a:7:{s:6:"author";b:1;s:8:"comments";b:1;s:6:"editor";b:1;s:7:"excerpt";b:1;s:15:"page-attributes";b:1;s:9:"thumbnail";b:1;s:5:"title";b:1;}s:5:"slide";a:3:{s:5:"title";b:1;s:15:"page-attributes";b:1;s:9:"thumbnail";b:1;}s:11:"testimonial";a:4:{s:5:"title";b:1;s:6:"editor";b:1;s:15:"page-attributes";b:1;s:9:"thumbnail";b:1;}s:6:"layout";a:2:{s:5:"title";b:1;s:15:"page-attributes";b:1;}s:8:"template";a:1:{s:5:"title";b:1;}}}i:2;i:1;i:3;d:1496134979.5765879154205322265625;i:4;b:0;}', 'no'),
(74462, 'jpsq_sync-1496134979.577433-670946-23', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:10:"shortcodes";i:1;a:117:{i:0;s:10:"wp_caption";i:1;s:7:"caption";i:2;s:8:"playlist";i:3;s:5:"audio";i:4;s:5:"video";i:5;s:5:"embed";i:6;s:15:"advanced_iframe";i:7;s:15:"advanced-iframe";i:8;s:11:"cf7db-table";i:9;s:10:"cfdb-table";i:10;s:14:"cfdb-datatable";i:11;s:9:"cfdb-json";i:12;s:10:"cfdb-value";i:13;s:10:"cfdb-count";i:14;s:9:"cfdb-html";i:15;s:16:"cfdb-export-link";i:16;s:19:"cfdb-save-form-post";i:17;s:25:"cfdb-save-form-maker-post";i:18;s:12:"pdf-embedder";i:19;s:10:"rev_slider";i:20;s:14:"contact-form-7";i:21;s:12:"contact-form";i:22;s:3:"one";i:23;s:10:"one_second";i:24;s:9:"one_third";i:25;s:9:"two_third";i:26;s:10:"one_fourth";i:27;s:10:"two_fourth";i:28;s:12:"three_fourth";i:29;s:9:"one_fifth";i:30;s:9:"two_fifth";i:31;s:11:"three_fifth";i:32;s:10:"four_fifth";i:33;s:9:"one_sixth";i:34;s:9:"two_sixth";i:35;s:11:"three_sixth";i:36;s:10:"four_sixth";i:37;s:10:"five_sixth";i:38;s:5:"alert";i:39;s:10:"blockquote";i:40;s:6:"button";i:41;s:4:"code";i:42;s:12:"content_link";i:43;s:7:"divider";i:44;s:7:"dropcap";i:45;s:10:"fancy_link";i:46;s:11:"google_font";i:47;s:9:"highlight";i:48;s:2:"hr";i:49;s:4:"icon";i:50;s:8:"icon_bar";i:51;s:10:"icon_block";i:52;s:4:"idea";i:53;s:5:"image";i:54;s:5:"popup";i:55;s:14:"progress_icons";i:56;s:9:"share_box";i:57;s:7:"tooltip";i:58;s:13:"tooltip_image";i:59;s:11:"video_embed";i:60;s:9:"accordion";i:61;s:14:"accordion_item";i:62;s:11:"article_box";i:63;s:12:"before_after";i:64;s:4:"blog";i:65;s:9:"blog_news";i:66;s:11:"blog_slider";i:67;s:14:"call_to_action";i:68;s:5:"chart";i:69;s:7:"clients";i:70;s:14:"clients_slider";i:71;s:11:"contact_box";i:72;s:9:"countdown";i:73;s:7:"counter";i:74;s:13:"fancy_divider";i:75;s:13:"fancy_heading";i:76;s:3:"faq";i:77;s:8:"faq_item";i:78;s:11:"feature_box";i:79;s:12:"feature_list";i:80;s:8:"flat_box";i:81;s:6:"helper";i:82;s:9:"hover_box";i:83;s:11:"hover_color";i:84;s:12:"how_it_works";i:85;s:8:"icon_box";i:86;s:8:"info_box";i:87;s:4:"list";i:88;s:3:"map";i:89;s:5:"offer";i:90;s:11:"offer_thumb";i:91;s:13:"opening_hours";i:92;s:8:"our_team";i:93;s:13:"our_team_list";i:94;s:9:"photo_box";i:95;s:9:"portfolio";i:96;s:14:"portfolio_grid";i:97;s:15:"portfolio_photo";i:98;s:16:"portfolio_slider";i:99;s:12:"pricing_item";i:100;s:13:"progress_bars";i:101;s:9:"promo_box";i:102;s:10:"quick_fact";i:103;s:11:"shop_slider";i:104;s:6:"slider";i:105;s:11:"sliding_box";i:106;s:9:"story_box";i:107;s:4:"tabs";i:108;s:3:"tab";i:109;s:12:"testimonials";i:110;s:17:"testimonials_list";i:111;s:11:"trailer_box";i:112;s:8:"zoom_box";i:113;s:3:"bar";i:114;s:4:"item";i:115;s:7:"gallery";i:116;s:19:"vc_container_anchor";}}i:2;i:1;i:3;d:1496134979.57740688323974609375;i:4;b:0;}', 'no'),
(74463, 'jpsq_sync-1496134979.578274-670946-24', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:27:"rest_api_allowed_post_types";i:1;a:3:{i:0;s:4:"post";i:1;s:4:"page";i:2;s:8:"revision";}}i:2;i:1;i:3;d:1496134979.57826709747314453125;i:4;b:0;}', 'no'),
(74464, 'jpsq_sync-1496134979.578957-670946-25', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:32:"rest_api_allowed_public_metadata";i:1;a:0:{}}i:2;i:1;i:3;d:1496134979.5789470672607421875;i:4;b:0;}', 'no'),
(74465, 'jpsq_sync-1496134979.579544-670946-26', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:24:"sso_is_two_step_required";i:1;b:0;}i:2;i:1;i:3;d:1496134979.579536914825439453125;i:4;b:0;}', 'no'),
(74466, 'jpsq_sync-1496134979.580159-670946-27', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:26:"sso_should_hide_login_form";i:1;b:0;}i:2;i:1;i:3;d:1496134979.580152034759521484375;i:4;b:0;}', 'no'),
(74467, 'jpsq_sync-1496134979.580724-670946-28', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:18:"sso_match_by_email";i:1;b:1;}i:2;i:1;i:3;d:1496134979.5807170867919921875;i:4;b:0;}', 'no'),
(74468, 'jpsq_sync-1496134979.581234-670946-29', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:21:"sso_new_user_override";i:1;b:0;}i:2;i:1;i:3;d:1496134979.5812280178070068359375;i:4;b:0;}', 'no'),
(74469, 'jpsq_sync-1496134979.582065-670946-30', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:29:"sso_bypass_default_login_form";i:1;b:0;}i:2;i:1;i:3;d:1496134979.582057952880859375;i:4;b:0;}', 'no'),
(74470, 'jpsq_sync-1496134979.583797-670946-31', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:10:"wp_version";i:1;s:5:"4.7.5";}i:2;i:1;i:3;d:1496134979.58378505706787109375;i:4;b:0;}', 'no') ;
INSERT INTO `wp2o_options` ( `option_id`, `option_name`, `option_value`, `autoload`) VALUES
(74471, 'jpsq_sync-1496134979.584906-670946-32', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:11:"get_plugins";i:1;a:21:{s:35:"advanced-iframe/advanced-iframe.php";a:11:{s:4:"Name";s:19:"Advanced iFrame Pro";s:9:"PluginURI";s:67:"http://codecanyon.net/item/advanced-iframe-pro/5344999?ref=mdempfle";s:7:"Version";s:5:"7.2.1";s:11:"Description";s:203:"This plugin includes any webpage as shortcode in an advanced iframe or embeds the content directly. Please update this plugin with versions from codecanyon only. Otherwise you get the free version again.";s:6:"Author";s:15:"Michael Dempfle";s:9:"AuthorURI";s:29:"http://www.tinywebgallery.com";s:10:"TextDomain";s:15:"advanced-iframe";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:19:"Advanced iFrame Pro";s:10:"AuthorName";s:15:"Michael Dempfle";}s:26:"ag-custom-admin/plugin.php";a:11:{s:4:"Name";s:15:"AG Custom Admin";s:9:"PluginURI";s:47:"http://wordpressadminpanel.com/ag-custom-admin/";s:7:"Version";s:5:"5.7.1";s:11:"Description";s:148:"All-in-one tool for admin panel customization. Change almost everything: admin menu, dashboard, login page, admin bar etc. Apply admin panel themes.";s:6:"Author";s:3:"WAP";s:9:"AuthorURI";s:35:"http://www.wordpressadminpanel.com/";s:10:"TextDomain";s:15:"ag-custom-admin";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:15:"AG Custom Admin";s:10:"AuthorName";s:3:"WAP";}s:19:"akismet/akismet.php";a:11:{s:4:"Name";s:17:"Akismet Anti-Spam";s:9:"PluginURI";s:20:"https://akismet.com/";s:7:"Version";s:3:"3.3";s:11:"Description";s:279:"Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.";s:6:"Author";s:10:"Automattic";s:9:"AuthorURI";s:41:"https://automattic.com/wordpress-plugins/";s:10:"TextDomain";s:7:"akismet";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:17:"Akismet Anti-Spam";s:10:"AuthorName";s:10:"Automattic";}s:27:"coming-soon/coming-soon.php";a:11:{s:4:"Name";s:47:"Coming Soon Page & Maintenance Mode by SeedProd";s:9:"PluginURI";s:23:"http://www.seedprod.com";s:7:"Version";s:5:"5.0.9";s:11:"Description";s:84:"The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.";s:6:"Author";s:8:"SeedProd";s:9:"AuthorURI";s:23:"http://www.seedprod.com";s:10:"TextDomain";s:11:"coming-soon";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:47:"Coming Soon Page & Maintenance Mode by SeedProd";s:10:"AuthorName";s:8:"SeedProd";}s:36:"contact-form-7/wp-contact-form-7.php";a:11:{s:4:"Name";s:14:"Contact Form 7";s:9:"PluginURI";s:25:"https://contactform7.com/";s:7:"Version";s:3:"4.7";s:11:"Description";s:54:"Just another contact form plugin. Simple but flexible.";s:6:"Author";s:16:"Takayuki Miyoshi";s:9:"AuthorURI";s:30:"http://ideasilo.wordpress.com/";s:10:"TextDomain";s:14:"contact-form-7";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:14:"Contact Form 7";s:10:"AuthorName";s:16:"Takayuki Miyoshi";}s:58:"contact-form-7-to-database-extension/contact-form-7-db.php";a:11:{s:4:"Name";s:15:"Contact Form DB";s:9:"PluginURI";s:73:"http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/";s:7:"Version";s:7:"2.10.29";s:11:"Description";s:631:"Save form submissions to the database from <a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a>, <a href="http://wordpress.org/extend/plugins/si-contact-form/">Fast Secure Contact Form</a>, <a href="http://wordpress.org/extend/plugins/jetpack/">JetPack Contact Form</a> and <a href="http://www.gravityforms.com">Gravity Forms</a>. Includes exports and short codes. | <a href="admin.php?page=CF7DBPluginSubmissions">Data</a> | <a href="admin.php?page=CF7DBPluginShortCodeBuilder">Short Codes</a> | <a href="admin.php?page=CF7DBPluginSettings">Settings</a> | <a href="http://cfdbplugin.com/">Reference</a>";s:6:"Author";s:15:"Michael Simpson";s:9:"AuthorURI";s:0:"";s:10:"TextDomain";s:36:"contact-form-7-to-database-extension";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:15:"Contact Form DB";s:10:"AuthorName";s:15:"Michael Simpson";}s:55:"custom-css-and-javascript/custom-css-and-javascript.php";a:11:{s:4:"Name";s:25:"Custom CSS and Javascript";s:9:"PluginURI";s:0:"";s:7:"Version";s:5:"2.0.9";s:11:"Description";s:65:"Easily add custom CSS and Javascript code to your WordPress site.";s:6:"Author";s:14:"Potent Plugins";s:9:"AuthorURI";s:112:"http://potentplugins.com/?utm_source=custom-css-and-javascript&utm_medium=link&utm_campaign=wp-plugin-author-uri";s:10:"TextDomain";s:25:"custom-css-and-javascript";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:25:"Custom CSS and Javascript";s:10:"AuthorName";s:14:"Potent Plugins";}s:33:"duplicate-post/duplicate-post.php";a:11:{s:4:"Name";s:14:"Duplicate Post";s:9:"PluginURI";s:37:"http://lopo.it/duplicate-post-plugin/";s:7:"Version";s:5:"3.1.2";s:11:"Description";s:22:"Clone posts and pages.";s:6:"Author";s:16:"Enrico Battocchi";s:9:"AuthorURI";s:14:"http://lopo.it";s:10:"TextDomain";s:14:"duplicate-post";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:14:"Duplicate Post";s:10:"AuthorName";s:16:"Enrico Battocchi";}s:33:"fancy-admin-ui/fancy-admin-ui.php";a:11:{s:4:"Name";s:14:"Fancy Admin UI";s:9:"PluginURI";s:45:"http://boborchard.com/plugins/fancy-admin-ui/";s:7:"Version";s:3:"2.0";s:11:"Description";s:94:"Super clean, blue admin panel theme with the ability to change the color in General > Settings";s:6:"Author";s:11:"Bob Orchard";s:9:"AuthorURI";s:21:"http://boborchard.com";s:10:"TextDomain";s:14:"fancy-admin-ui";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:14:"Fancy Admin UI";s:10:"AuthorName";s:11:"Bob Orchard";}s:59:"force-regenerate-thumbnails/force-regenerate-thumbnails.php";a:11:{s:4:"Name";s:27:"Force Regenerate Thumbnails";s:9:"PluginURI";s:80:"http://pedroelsner.com/2012/08/forcando-a-atualizacao-de-thumbnails-no-wordpress";s:7:"Version";s:5:"2.0.6";s:11:"Description";s:49:"Delete and REALLY force the regenerate thumbnail.";s:6:"Author";s:12:"Pedro Elsner";s:9:"AuthorURI";s:27:"http://www.pedroelsner.com/";s:10:"TextDomain";s:27:"force-regenerate-thumbnails";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:27:"Force Regenerate Thumbnails";s:10:"AuthorName";s:12:"Pedro Elsner";}s:9:"hello.php";a:11:{s:4:"Name";s:11:"Hello Dolly";s:9:"PluginURI";s:41:"http://wordpress.org/plugins/hello-dolly/";s:7:"Version";s:3:"1.6";s:11:"Description";s:295:"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.";s:6:"Author";s:14:"Matt Mullenweg";s:9:"AuthorURI";s:13:"http://ma.tt/";s:10:"TextDomain";s:0:"";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:11:"Hello Dolly";s:10:"AuthorName";s:14:"Matt Mullenweg";}s:27:"wordpress-popup/popover.php";a:11:{s:4:"Name";s:6:"Hustle";s:9:"PluginURI";s:43:"https://premium.wpmudev.org/project/hustle/";s:7:"Version";s:5:"5.0.0";s:11:"Description";s:135:"Start collecting email addresses and quickly grow your mailing list with big bold pop-ups, slide-ins, widgets, or in post opt-in forms.";s:6:"Author";s:8:"WPMU DEV";s:9:"AuthorURI";s:27:"https://premium.wpmudev.org";s:10:"TextDomain";s:15:"wordpress-popup";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:6:"Hustle";s:10:"AuthorName";s:8:"WPMU DEV";}s:19:"jetpack/jetpack.php";a:11:{s:4:"Name";s:24:"Jetpack by WordPress.com";s:9:"PluginURI";s:18:"http://jetpack.com";s:7:"Version";s:3:"4.7";s:11:"Description";s:218:"Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.";s:6:"Author";s:10:"Automattic";s:9:"AuthorURI";s:18:"http://jetpack.com";s:10:"TextDomain";s:7:"jetpack";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:0;s:5:"Title";s:24:"Jetpack by WordPress.com";s:10:"AuthorName";s:10:"Automattic";}s:27:"LayerSlider/layerslider.php";a:11:{s:4:"Name";s:14:"LayerSlider WP";s:9:"PluginURI";s:36:"http://codecanyon.net/user/kreatura/";s:7:"Version";s:5:"5.6.9";s:11:"Description";s:133:"LayerSlider is the most advanced responsive WordPress slider plugin with the famous Parallax Effect and over 200 2D & 3D transitions.";s:6:"Author";s:14:"Kreatura Media";s:9:"AuthorURI";s:26:"https://kreaturamedia.com/";s:10:"TextDomain";s:11:"LayerSlider";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:14:"LayerSlider WP";s:10:"AuthorName";s:14:"Kreatura Media";}s:29:"pdf-embedder/pdf_embedder.php";a:11:{s:4:"Name";s:12:"PDF Embedder";s:9:"PluginURI";s:18:"http://wp-pdf.com/";s:7:"Version";s:3:"2.8";s:11:"Description";s:112:"Embed PDFs straight into your posts and pages, with flexible width and height. No third-party services required.";s:6:"Author";s:10:"Dan Lester";s:9:"AuthorURI";s:18:"http://wp-pdf.com/";s:10:"TextDomain";s:12:"pdf-embedder";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:12:"PDF Embedder";s:10:"AuthorName";s:10:"Dan Lester";}s:43:"popup-with-fancybox/popup-with-fancybox.php";a:11:{s:4:"Name";s:19:"Popup with fancybox";s:9:"PluginURI";s:77:"http://www.gopiplus.com/work/2013/08/08/popup-with-fancybox-wordpress-plugin/";s:7:"Version";s:3:"2.4";s:11:"Description";s:271:"This plugin allows you to create lightweight JQuery fancy box popup window in your blog with custom content. In the admin interface we can easily configure popup size and timeout. In this popup we can display any content such as Video, Image, Advertisement and much more.";s:6:"Author";s:13:"Gopi Ramasamy";s:9:"AuthorURI";s:77:"http://www.gopiplus.com/work/2013/08/08/popup-with-fancybox-wordpress-plugin/";s:10:"TextDomain";s:19:"popup-with-fancybox";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:19:"Popup with fancybox";s:10:"AuthorName";s:13:"Gopi Ramasamy";}s:23:"revslider/revslider.php";a:11:{s:4:"Name";s:17:"Slider Revolution";s:9:"PluginURI";s:33:"http://revolution.themepunch.com/";s:7:"Version";s:5:"5.2.6";s:11:"Description";s:45:"Slider Revolution - Premium responsive slider";s:6:"Author";s:10:"ThemePunch";s:9:"AuthorURI";s:21:"http://themepunch.com";s:10:"TextDomain";s:9:"revslider";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:17:"Slider Revolution";s:10:"AuthorName";s:10:"ThemePunch";}s:23:"wordfence/wordfence.php";a:11:{s:4:"Name";s:18:"Wordfence Security";s:9:"PluginURI";s:25:"http://www.wordfence.com/";s:7:"Version";s:5:"6.3.2";s:11:"Description";s:58:"Wordfence Security - Anti-virus, Firewall and Malware Scan";s:6:"Author";s:9:"Wordfence";s:9:"AuthorURI";s:25:"http://www.wordfence.com/";s:10:"TextDomain";s:9:"wordfence";s:10:"DomainPath";s:0:"";s:7:"Network";b:1;s:5:"Title";s:18:"Wordfence Security";s:10:"AuthorName";s:9:"Wordfence";}s:41:"wordpress-importer/wordpress-importer.php";a:11:{s:4:"Name";s:18:"WordPress Importer";s:9:"PluginURI";s:55:"http://wordpress.org/extend/plugins/wordpress-importer/";s:7:"Version";s:5:"0.6.3";s:11:"Description";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:6:"Author";s:15:"wordpressdotorg";s:9:"AuthorURI";s:21:"http://wordpress.org/";s:10:"TextDomain";s:18:"wordpress-importer";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:18:"WordPress Importer";s:10:"AuthorName";s:15:"wordpressdotorg";}s:27:"js_composer/js_composer.php";a:11:{s:4:"Name";s:24:"WPBakery Visual Composer";s:9:"PluginURI";s:22:"http://vc.wpbakery.com";s:7:"Version";s:4:"4.12";s:11:"Description";s:157:"Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required.";s:6:"Author";s:24:"Michael M - WPBakery.com";s:9:"AuthorURI";s:19:"http://wpbakery.com";s:10:"TextDomain";s:11:"js_composer";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:24:"WPBakery Visual Composer";s:10:"AuthorName";s:24:"Michael M - WPBakery.com";}s:31:"wp-migrate-db/wp-migrate-db.php";a:11:{s:4:"Name";s:13:"WP Migrate DB";s:9:"PluginURI";s:43:"http://wordpress.org/plugins/wp-migrate-db/";s:7:"Version";s:5:"0.9.2";s:11:"Description";s:159:"Exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer.";s:6:"Author";s:16:"Delicious Brains";s:9:"AuthorURI";s:26:"http://deliciousbrains.com";s:10:"TextDomain";s:13:"wp-migrate-db";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:1;s:5:"Title";s:13:"WP Migrate DB";s:10:"AuthorName";s:16:"Delicious Brains";}}}i:2;i:1;i:3;d:1496134979.5848929882049560546875;i:4;b:0;}', 'no'),
(74472, 'jpsq_sync-1496134979.590077-670946-33', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:14:"active_modules";i:1;a:21:{i:0;s:18:"after-the-deadline";i:1;s:20:"custom-content-types";i:2;s:10:"custom-css";i:3;s:21:"enhanced-distribution";i:4;s:19:"gravatar-hovercards";i:5;s:8:"json-api";i:6;s:5:"latex";i:7;s:6:"manage";i:8;s:5:"notes";i:9;s:10:"omnisearch";i:10;s:13:"post-by-email";i:11;s:9:"publicize";i:12;s:10:"sharedaddy";i:13;s:10:"shortcodes";i:14;s:10:"shortlinks";i:15;s:8:"sitemaps";i:16;s:5:"stats";i:17;s:13:"subscriptions";i:19;s:18:"verification-tools";i:20;s:17:"widget-visibility";i:21;s:7:"widgets";}}i:2;i:1;i:3;d:1496134979.59006500244140625;i:4;b:0;}', 'no'),
(74473, 'jpsq_sync-1496134979.590934-670946-34', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:16:"hosting_provider";i:1;s:7:"unknown";}i:2;i:1;i:3;d:1496134979.5909221172332763671875;i:4;b:0;}', 'no'),
(74474, 'jpsq_sync-1496134979.591709-670946-35', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:6:"locale";i:1;s:5:"en_US";}i:2;i:1;i:3;d:1496134979.5916988849639892578125;i:4;b:0;}', 'no'),
(74475, 'jpsq_sync-1496134979.592553-670946-36', 'a:5:{i:0;s:21:"jetpack_sync_callable";i:1;a:2:{i:0;s:13:"site_icon_url";i:1;b:0;}i:2;i:1;i:3;d:1496134979.5925390720367431640625;i:4;b:0;}', 'no'),
(74476, 'jetpack_callables_sync_checksum', 'a:27:{s:18:"wp_max_upload_size";i:4150424846;s:15:"is_main_network";i:734881840;s:13:"is_multi_site";i:734881840;s:17:"main_network_site";i:1936593351;s:8:"site_url";i:1936593351;s:8:"home_url";i:1936593351;s:16:"single_user_site";i:4261170317;s:7:"updates";i:3425443202;s:28:"has_file_system_write_access";i:4261170317;s:21:"is_version_controlled";i:734881840;s:10:"taxonomies";i:430239492;s:10:"post_types";i:1717444223;s:18:"post_type_features";i:3581871050;s:10:"shortcodes";i:3094791399;s:27:"rest_api_allowed_post_types";i:503776097;s:32:"rest_api_allowed_public_metadata";i:223132457;s:24:"sso_is_two_step_required";i:734881840;s:26:"sso_should_hide_login_form";i:734881840;s:18:"sso_match_by_email";i:4261170317;s:21:"sso_new_user_override";i:734881840;s:29:"sso_bypass_default_login_form";i:734881840;s:10:"wp_version";i:204082101;s:11:"get_plugins";i:1391494577;s:14:"active_modules";i:1476948229;s:16:"hosting_provider";i:769900095;s:6:"locale";i:110763218;s:13:"site_icon_url";i:734881840;}', 'yes'),
(74477, 'jetpack_next_sync_time_sync', '1496135039', 'yes'),
(138860, 'rs-templates-new', '', 'no') ;
INSERT INTO `wp2o_options` ( `option_id`, `option_name`, `option_value`, `autoload`) VALUES
(138861, 'rs-templates', 'a:2:{s:6:"slider";a:229:{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.1";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.1";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: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: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: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: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: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;}i:171;a:23:{s:2:"id";s:3:"174";s:5:"title";s:11:"TechCo Menu";s:5:"alias";s:11:"techco-menu";s:3:"zip";s:21:"packs/techco-menu.zip";s:3:"uid";s:32:"55e5efee828cdf1ff7e2d3b90a301ea9";s:3:"img";s:22:"techco-menu/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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:16:"TechCo 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:"9";s:9:"installed";b:0;}i:172;a:23:{s:2:"id";s:3:"175";s:5:"title";s:13:"TechCo Header";s:5:"alias";s:13:"techco-header";s:3:"zip";s:23:"packs/techco-header.zip";s:3:"uid";s:32:"fb574d1376de9b1e408c91f51e6497d7";s:3:"img";s:24:"techco-header/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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";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:7:"package";s:16:"TechCo 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:"9";s:9:"installed";b:0;}i:173;a:23:{s:2:"id";s:3:"176";s:5:"title";s:12:"TechCo About";s:5:"alias";s:12:"techco-about";s:3:"zip";s:22:"packs/techco-about.zip";s:3:"uid";s:32:"ba216da8231e55118d87e37d2358812c";s:3:"img";s:23:"techco-about/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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:16:"TechCo 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:"9";s:9:"installed";b:0;}i:174;a:23:{s:2:"id";s:3:"177";s:5:"title";s:15:"TechCo Services";s:5:"alias";s:15:"techco-services";s:3:"zip";s:25:"packs/techco-services.zip";s:3:"uid";s:32:"ef4a8ddbb5e1136133f7bc1227248e22";s:3:"img";s:26:"techco-services/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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:16:"TechCo 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:"9";s:9:"installed";b:0;}i:175;a:23:{s:2:"id";s:3:"178";s:5:"title";s:12:"TechCo Video";s:5:"alias";s:12:"techco-video";s:3:"zip";s:22:"packs/techco-video.zip";s:3:"uid";s:32:"d7bb92281d05f39f9bc9eca71f90e402";s:3:"img";s:23:"techco-video/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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:16:"TechCo 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:"9";s:9:"installed";b:0;}i:176;a:23:{s:2:"id";s:3:"179";s:5:"title";s:13:"TechCo Prices";s:5:"alias";s:13:"techco-prices";s:3:"zip";s:23:"packs/techco-prices.zip";s:3:"uid";s:32:"6291f404efbea12bb181352aba71ef11";s:3:"img";s:24:"techco-prices/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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:16:"TechCo 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:"9";s:9:"installed";b:0;}i:177;a:23:{s:2:"id";s:3:"180";s:5:"title";s:19:"TechCo Testimonials";s:5:"alias";s:19:"techco-testimonials";s:3:"zip";s:29:"packs/techco-testimonials.zip";s:3:"uid";s:32:"3460bd51f6b80599266fecb7fbb918be";s:3:"img";s:30:"techco-testimonials/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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:16:"TechCo 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:"9";s:9:"installed";b:0;}i:178;a:23:{s:2:"id";s:3:"181";s:5:"title";s:13:"TechCo Footer";s:5:"alias";s:13:"techco-footer";s:3:"zip";s:23:"packs/techco-footer.zip";s:3:"uid";s:32:"640abcd549137520461a4a71ff758a3b";s:3:"img";s:24:"techco-footer/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/techco-one-page-wordpress-theme/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:266:"<span class="ttm_content">The TechCo 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:16:"TechCo 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:"9";s:9:"installed";b:0;}i:179;a:20:{s:2:"id";s:3:"182";s:5:"title";s:12:"Live Weather";s:5:"alias";s:7:"weather";s:3:"zip";s:11:"weather.zip";s:3:"uid";s:32:"aab92e69374e4c7b8c6741fe02e574b9";s:3:"img";s:18:"weather/slide1.jpg";s:7:"preview";s:64:"https://revolution.themepunch.com/wordpress-live-weather-add-on/";s:7:"version";s:5:"1.0.2";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:173:"<span class="ttm_content">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</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:179:"[{"path":"revslider-weather-addon\\/revslider-weather-addon.php","name":"Live Weather 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:180;a:20:{s:2:"id";s:3:"183";s:5:"title";s:17:"360 Panorama Tour";s:5:"alias";s:11:"360panorama";s:3:"zip";s:15:"360panorama.zip";s:3:"uid";s:32:"332720fdacdbb38f65e8327a2a96c52d";s:3:"img";s:22:"360panorama/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.5.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:155:"<span class="ttm_content">An example template for our Panorama 360 tour add-on, created for the real estate market.</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:176:"[{"path":"revslider-panorama-addon\\/revslider-panorama-addon.php","name":"Panorama 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:181;a:20:{s:2:"id";s:3:"184";s:5:"title";s:14:"Duotone Add-on";s:5:"alias";s:14:"duotone-add-on";s:3:"zip";s:18:"duotone-add-on.zip";s:3:"uid";s:32:"a428c6f363b3146e96d20a6f44958922";s:3:"img";s:25:"duotone-add-on/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:168:"<span class="ttm_content">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone 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:372:"[{"path":"revslider-particles-addon\\/revslider-particles-addon.php","name":"Particles Effect AddOn","url":"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall"},{"path":"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php","name":"Duotone 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:182;a:20:{s:2:"id";s:3:"185";s:5:"title";s:13:"Reveal Add-on";s:5:"alias";s:13:"reveal-add-on";s:3:"zip";s:17:"reveal-add-on.zip";s:3:"uid";s:32:"7fa7525d8ff7fa7365cb98a437e88e32";s:3:"img";s:24:"reveal-add-on/slide1.jpg";s:7:"preview";s:66:"https://revolution.themepunch.com/wordpress-content-reveal-effect/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:204:"<span class="ttm_content">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</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:359:"[{"path":"revslider-particles-addon\\/revslider-particles-addon.php","name":"Particles Effect AddOn","url":"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall"},{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:201;a:20:{s:2:"id";s:3:"210";s:5:"title";s:21:"Cryptocurrency Prices";s:5:"alias";s:12:"cryptoslider";s:3:"zip";s:16:"cryptoslider.zip";s:3:"uid";s:32:"c4b02210387f11946223977e940d9e9e";s:3:"img";s:23:"cryptoslider/slide1.jpg";s:7:"preview";s:95:"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/";s:7:"version";s:5:"1.0.2";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"900";s:11:"description";s:209:"<span class="ttm_content">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class="ttm_space"></span>";s:11:"setup_notes";s:436:"<span class="ttm_content">Please refer to the "Custom JavaScript" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</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:203;a:23:{s:2:"id";s:3:"212";s:5:"title";s:16:"Immersion Header";s:5:"alias";s:16:"immersion_header";s:3:"zip";s:26:"packs/immersion_header.zip";s:3:"uid";s:32:"853da51256308b341ecd030bd4883229";s:3:"img";s:27:"immersion_header/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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";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:7:"package";s:18:"Immersion One 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:2:"10";s:9:"installed";b:0;}i:204;a:23:{s:2:"id";s:3:"213";s:5:"title";s:19:"Immersion Mountains";s:5:"alias";s:19:"immersion-mountains";s:3:"zip";s:29:"packs/immersion-mountains.zip";s:3:"uid";s:32:"817167eb3fe22b7e065ba210cbe6d53c";s:3:"img";s:30:"immersion-mountains/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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";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:7:"package";s:18:"Immersion One 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:2:"10";s:9:"installed";b:0;}i:205;a:23:{s:2:"id";s:3:"214";s:5:"title";s:17:"Immersion Product";s:5:"alias";s:17:"immersion-product";s:3:"zip";s:27:"packs/immersion-product.zip";s:3:"uid";s:32:"64134f263484d2bbcd7ef088ffbbfb4b";s:3:"img";s:28:"immersion-product/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:"Immersion One 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:2:"10";s:9:"installed";b:0;}i:206;a:23:{s:2:"id";s:3:"215";s:5:"title";s:16:"Immersion Design";s:5:"alias";s:16:"immersion-design";s:3:"zip";s:26:"packs/immersion-design.zip";s:3:"uid";s:32:"91e1d77c1a2826438763804f4d02bc26";s:3:"img";s:27:"immersion-design/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:"Immersion One 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:2:"10";s:9:"installed";b:0;}i:207;a:23:{s:2:"id";s:3:"216";s:5:"title";s:22:"Immersion Phototgraphy";s:5:"alias";s:21:"immersion-photography";s:3:"zip";s:31:"packs/immersion-photography.zip";s:3:"uid";s:32:"e3ddf0c577b09740f5cbf2e38ffd684d";s:3:"img";s:32:"immersion-photography/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:"Immersion One 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:2:"10";s:9:"installed";b:0;}i:208;a:23:{s:2:"id";s:3:"217";s:5:"title";s:14:"Immersion Grid";s:5:"alias";s:14:"immersion-grid";s:3:"zip";s:24:"packs/immersion-grid.zip";s:3:"uid";s:32:"b6903868189bb83b2c7a852fde3a7dc3";s:3:"img";s:25:"immersion-grid/slide1.jpg";s:7:"preview";s:74:"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:292:"<span class="ttm_content">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</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:"Immersion One Page";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"10";s:9:"installed";b:0;}i:209;a:20:{s:2:"id";s:3:"218";s:5:"title";s:18:"Funky Intro Slider";s:5:"alias";s:11:"funkyslider";s:3:"zip";s:15:"funkyslider.zip";s:3:"uid";s:32:"2d4187e3fdad19b976be335253c8925d";s:3:"img";s:22:"funkyslider/slide1.jpg";s:7:"preview";s:70:"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:200:"<span class="ttm_content">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</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";s:343:"[{"path":"revslider-typewriter-addon\\/revslider-typewriter-addon.php","name":"Typewriter AddOn","url":"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/"},{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:211;a:23:{s:2:"id";s:3:"220";s:5:"title";s:15:"Clear View Menu";s:5:"alias";s:14:"clearview_menu";s:3:"zip";s:24:"packs/clearview_menu.zip";s:3:"uid";s:32:"eaecee5fa5f3c3a7f4d2a96c4616a353";s:3:"img";s:25:"clearview_menu/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:212;a:23:{s:2:"id";s:3:"221";s:5:"title";s:17:"Clear View Header";s:5:"alias";s:16:"clearview_header";s:3:"zip";s:26:"packs/clearview_header.zip";s:3:"uid";s:32:"25e3dd80ad130875d7438a07952cb0cd";s:3:"img";s:27:"clearview_header/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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";s:174:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal AddOn","url":"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:19:"Clear View Magazine";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:213;a:23:{s:2:"id";s:3:"222";s:5:"title";s:18:"Clear View Mission";s:5:"alias";s:17:"clearview_mission";s:3:"zip";s:27:"packs/clearview_mission.zip";s:3:"uid";s:32:"35b2092a49fd2beb549342e69097eb5b";s:3:"img";s:28:"clearview_mission/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:214;a:23:{s:2:"id";s:3:"223";s:5:"title";s:17:"Clear View Slider";s:5:"alias";s:17:"clear-view-slider";s:3:"zip";s:27:"packs/clear-view-slider.zip";s:3:"uid";s:32:"d2e17edffce16ed78c54b0ef23fd7e05";s:3:"img";s:28:"clear-view-slider/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:215;a:23:{s:2:"id";s:3:"224";s:5:"title";s:15:"Clear View News";s:5:"alias";s:15:"clear-view-news";s:3:"zip";s:25:"packs/clear-view-news.zip";s:3:"uid";s:32:"5698d3131ba141e9afcfd2906739dd00";s:3:"img";s:26:"clear-view-news/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:216;a:23:{s:2:"id";s:3:"225";s:5:"title";s:18:"Clear View Clients";s:5:"alias";s:18:"clear-view-clients";s:3:"zip";s:28:"packs/clear-view-clients.zip";s:3:"uid";s:32:"b95616a94832e22bdfac5ce60232be1b";s:3:"img";s:29:"clear-view-clients/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:217;a:23:{s:2:"id";s:3:"226";s:5:"title";s:18:"Clear View Contact";s:5:"alias";s:18:"clear-view-contact";s:3:"zip";s:28:"packs/clear-view-contact.zip";s:3:"uid";s:32:"0e0cc1d8f6f6500e5f8a2b091fa3b4cb";s:3:"img";s:29:"clear-view-contact/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:19:"Clear View Magazine";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"11";s:9:"installed";b:0;}i:219;a:23:{s:2:"id";s:3:"228";s:5:"title";s:22:"Clear View Single Menu";s:5:"alias";s:22:"clear-view-single-menu";s:3:"zip";s:32:"packs/clear-view-single-menu.zip";s:3:"uid";s:32:"1e80f81982f8a4ea763482d4fa99d321";s:3:"img";s:33:"clear-view-single-menu/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post 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:2:"12";s:9:"installed";b:0;}i:220;a:23:{s:2:"id";s:3:"229";s:5:"title";s:24:"Clear View Single Header";s:5:"alias";s:24:"clear-view-single-header";s:3:"zip";s:34:"packs/clear-view-single-header.zip";s:3:"uid";s:32:"c8d717627be6cd5e70922ab609694dbf";s:3:"img";s:35:"clear-view-single-header/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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";s:174:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal AddOn","url":"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall"}]";s:4:"date";s:19:"0000-00-00 00:00:00";s:7:"package";s:20:"Clear View Post 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:2:"12";s:9:"installed";b:0;}i:221;a:23:{s:2:"id";s:3:"230";s:5:"title";s:23:"Clear View Single Media";s:5:"alias";s:23:"clear-view-single-media";s:3:"zip";s:33:"packs/clear-view-single-media.zip";s:3:"uid";s:32:"c480368ded2a64f0cdd44f1674213814";s:3:"img";s:34:"clear-view-single-media/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post 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:2:"12";s:9:"installed";b:0;}i:222;a:23:{s:2:"id";s:3:"231";s:5:"title";s:22:"Clear View Single More";s:5:"alias";s:22:"clear-view-single-more";s:3:"zip";s:32:"packs/clear-view-single-more.zip";s:3:"uid";s:32:"9c693190df26218366d1f77e10cf550a";s:3:"img";s:33:"clear-view-single-more/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post 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:2:"12";s:9:"installed";b:0;}i:223;a:23:{s:2:"id";s:3:"232";s:5:"title";s:25:"Clear View Single Contact";s:5:"alias";s:25:"clear-view-single-contact";s:3:"zip";s:35:"packs/clear-view-single-contact.zip";s:3:"uid";s:32:"73c0a889f2b654a87b5aba1ff76fbc5c";s:3:"img";s:36:"clear-view-single-contact/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.6";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:196:"<span class="ttm_content">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</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:20:"Clear View Post 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:2:"12";s:9:"installed";b:0;}i:224;a:20:{s:2:"id";s:3:"233";s:5:"title";s:18:"Clean Landing Page";s:5:"alias";s:16:"cleanlandingpage";s:3:"zip";s:20:"cleanlandingpage.zip";s:3:"uid";s:32:"727a3680d312f22c6a5998ebdb9afe52";s:3:"img";s:27:"cleanlandingpage/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/clean-landing-page-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:203:"<span class="ttm_content">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</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: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:225;a:20:{s:2:"id";s:3:"234";s:5:"title";s:9:"Clear Cut";s:5:"alias";s:8:"clearcut";s:3:"zip";s:12:"clearcut.zip";s:3:"uid";s:32:"07f43c00e9b4d3057a03cdb3385ad2b7";s:3:"img";s:19:"clearcut/slide1.jpg";s:7:"preview";s:76:"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:240:"<span class="ttm_content">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</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:227;a:23:{s:2:"id";s:3:"236";s:5:"title";s:17:"Wonderstruck Menu";s:5:"alias";s:17:"wonderstruck_menu";s:3:"zip";s:27:"packs/wonderstruck_menu.zip";s:3:"uid";s:32:"0a976e9aaae59c4f795b38f59f5a08d8";s:3:"img";s:28:"wonderstruck_menu/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck 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:2:"13";s:9:"installed";b:0;}i:228;a:23:{s:2:"id";s:3:"237";s:5:"title";s:19:"Wonderstruck Header";s:5:"alias";s:19:"wonderstruck_header";s:3:"zip";s:29:"packs/wonderstruck_header.zip";s:3:"uid";s:32:"e1379f77a902960a0ce12d44d85a9e0a";s:3:"img";s:30:"wonderstruck_header/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck 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:2:"13";s:9:"installed";b:0;}i:229;a:23:{s:2:"id";s:3:"238";s:5:"title";s:18:"Wonderstruck About";s:5:"alias";s:18:"wonderstruck_about";s:3:"zip";s:28:"packs/wonderstruck_about.zip";s:3:"uid";s:32:"d207fb140fd328acc3038300ea52082a";s:3:"img";s:29:"wonderstruck_about/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck 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:2:"13";s:9:"installed";b:0;}i:230;a:23:{s:2:"id";s:3:"239";s:5:"title";s:18:"Wonderstruck Works";s:5:"alias";s:18:"wonderstruck-works";s:3:"zip";s:28:"packs/wonderstruck-works.zip";s:3:"uid";s:32:"4476935097e27d92454b0011b7700c1d";s:3:"img";s:29:"wonderstruck-works/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck 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:2:"13";s:9:"installed";b:0;}i:231;a:23:{s:2:"id";s:3:"240";s:5:"title";s:20:"Wonderstruck Contact";s:5:"alias";s:20:"wonderstruck-contact";s:3:"zip";s:30:"packs/wonderstruck-contact.zip";s:3:"uid";s:32:"9e4911521f77bce2b8efa40f4c2adc22";s:3:"img";s:31:"wonderstruck-contact/slide1.jpg";s:7:"preview";s:77:"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:241:"<span class="ttm_content">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</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:22:"Wonderstruck 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:2:"13";s:9:"installed";b:0;}i:232;a:20:{s:2:"id";s:3:"241";s:5:"title";s:12:"Bubble Morph";s:5:"alias";s:11:"bubblemorph";s:3:"zip";s:15:"bubblemorph.zip";s:3:"uid";s:32:"1102d6f5460ab82cb612cbe9f1d9514b";s:3:"img";s:22:"bubblemorph/slide1.jpg";s:7:"preview";s:75:"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:188:"<span class="ttm_content">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</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:185:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph 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:233;a:20:{s:2:"id";s:3:"242";s:5:"title";s:16:"Distortion AddOn";s:5:"alias";s:15:"distortionaddon";s:3:"zip";s:19:"distortionaddon.zip";s:3:"uid";s:32:"0ad46c9929bb2fa6316f1e6ced301aaf";s:3:"img";s:26:"distortionaddon/slide1.jpg";s:7:"preview";s:73:"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.7";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:187:"<span class="ttm_content">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</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:193:"[{"path":"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php","name":"Distortion 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:234;a:20:{s:2:"id";s:3:"243";s:5:"title";s:10:"Club Flyer";s:5:"alias";s:9:"clubflyer";s:3:"zip";s:13:"clubflyer.zip";s:3:"uid";s:32:"dab73b9904d0e643a35b0475980998bd";s:3:"img";s:20:"clubflyer/slide1.jpg";s:7:"preview";s:81:"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:227:"<span class="ttm_content">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </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:198:"[{"path":"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php","name":"Exploding Layers 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:235;a:20:{s:2:"id";s:3:"244";s:5:"title";s:16:"Paintbrush AddOn";s:5:"alias";s:15:"paintbrushaddon";s:3:"zip";s:19:"paintbrushaddon.zip";s:3:"uid";s:32:"c85c48a6742b4bf72a2590cc1b50f6a0";s:3:"img";s:26:"paintbrushaddon/slide1.jpg";s:7:"preview";s:73:"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:239:"<span class="ttm_content">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</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-paintbrush-addon\\/revslider-paintbrush-addon.php","name":"Paintbrush 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:237;a:23:{s:2:"id";s:3:"246";s:5:"title";s:15:"Parallax Header";s:5:"alias";s:15:"parallax_header";s:3:"zip";s:25:"packs/parallax_header.zip";s:3:"uid";s:32:"32bf4a0f5136853bd6bd366275a7a60b";s:3:"img";s:26:"parallax_header/slide1.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/parallax-one-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:230:"<span class="ttm_content">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</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:"Parallax 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:2:"14";s:9:"installed";b:0;}i:238;a:23:{s:2:"id";s:3:"247";s:5:"title";s:16:"Parallax Content";s:5:"alias";s:16:"parallax_content";s:3:"zip";s:26:"packs/parallax_content.zip";s:3:"uid";s:32:"a25c5fb8f74757476ab4dc038e56f90d";s:3:"img";s:27:"parallax_content/slide1.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/parallax-one-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:230:"<span class="ttm_content">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</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:"Parallax 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:2:"14";s:9:"installed";b:0;}i:239;a:23:{s:2:"id";s:3:"248";s:5:"title";s:15:"Parallax Footer";s:5:"alias";s:15:"parallax_footer";s:3:"zip";s:25:"packs/parallax_footer.zip";s:3:"uid";s:32:"665dff9ea6eaf162a2a1f160f51a9ddb";s:3:"img";s:26:"parallax_footer/slide1.jpg";s:7:"preview";s:71:"https://revolution.themepunch.com/parallax-one-page-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:230:"<span class="ttm_content">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</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";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:7:"package";s:18:"Parallax 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:2:"14";s:9:"installed";b:0;}i:241;a:23:{s:2:"id";s:3:"250";s:5:"title";s:12:"Le Chef Menu";s:5:"alias";s:12:"le-chef-menu";s:3:"zip";s:22:"packs/le-chef-menu.zip";s:3:"uid";s:32:"2f2a6a333431fefe4a7b3b6a982b2ff5";s:3:"img";s:23:"le-chef-menu/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:"Le Chef Restaurant";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:242;a:23:{s:2:"id";s:3:"251";s:5:"title";s:14:"Le Chef Header";s:5:"alias";s:14:"le-chef-header";s:3:"zip";s:24:"packs/le-chef-header.zip";s:3:"uid";s:32:"06450ca3be5a4a8959f3752ab974e574";s:3:"img";s:25:"le-chef-header/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:"Le Chef Restaurant";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:243;a:23:{s:2:"id";s:3:"252";s:5:"title";s:18:"Le Chef Philosophy";s:5:"alias";s:18:"le-chef-philosophy";s:3:"zip";s:28:"packs/le-chef-philosophy.zip";s:3:"uid";s:32:"a532fd029addeb18106e751409b8e20a";s:3:"img";s:29:"le-chef-philosophy/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:"Le Chef Restaurant";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:244;a:23:{s:2:"id";s:3:"253";s:5:"title";s:12:"Le Chef Food";s:5:"alias";s:12:"le-chef-food";s:3:"zip";s:22:"packs/le-chef-food.zip";s:3:"uid";s:32:"cd4b6a2cb5de2dd20a0e8ba0c35451df";s:3:"img";s:23:"le-chef-food/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:"Le Chef Restaurant";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:245;a:23:{s:2:"id";s:3:"254";s:5:"title";s:16:"Le Chef La Carte";s:5:"alias";s:16:"le-chef-la-carte";s:3:"zip";s:26:"packs/le-chef-la-carte.zip";s:3:"uid";s:32:"6f312749679c3ba52c41189a6b8bf729";s:3:"img";s:27:"le-chef-la-carte/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:"Le Chef Restaurant";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:246;a:23:{s:2:"id";s:3:"255";s:5:"title";s:14:"Le Chef Footer";s:5:"alias";s:14:"le-chef-footer";s:3:"zip";s:24:"packs/le-chef-footer.zip";s:3:"uid";s:32:"12fc241e8e5b9e5df9758c43448e2907";s:3:"img";s:25:"le-chef-footer/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:261:"<span class="ttm_content">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</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:"Le Chef Restaurant";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"15";s:9:"installed";b:0;}i:247;a:20:{s:2:"id";s:3:"256";s:5:"title";s:20:"News Magazine Slider";s:5:"alias";s:20:"news-magazine-slider";s:3:"zip";s:24:"news-magazine-slider.zip";s:3:"uid";s:32:"31f2c1506babb1fef459401f051d2d52";s:3:"img";s:31:"news-magazine-slider/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:205:"<span class="ttm_content">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news 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";s:174:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:248;a:20:{s:2:"id";s:3:"257";s:5:"title";s:18:"Real Estate Slider";s:5:"alias";s:18:"real-estate-slider";s:3:"zip";s:22:"real-estate-slider.zip";s:3:"uid";s:32:"739ce6336e46815094387c9448e6c804";s:3:"img";s:29:"real-estate-slider/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/real-estate-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:204:"<span class="ttm_content">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</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:249;a:20:{s:2:"id";s:3:"258";s:5:"title";s:14:"Fashion Header";s:5:"alias";s:14:"fashion-header";s:3:"zip";s:18:"fashion-header.zip";s:3:"uid";s:32:"24ece4e7f4d31cd90377c62abbd9e25a";s:3:"img";s:25:"fashion-header/slide1.jpg";s:7:"preview";s:75:"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:5:"5.4.8";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:254:"<span class="ttm_content">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique "Bubble Morph" effect makes this module stand out!</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:185:"[{"path":"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php","name":"BubbleMorph 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:250;a:20:{s:2:"id";s:3:"259";s:5:"title";s:14:"Seasonal Offer";s:5:"alias";s:13:"seasonaloffer";s:3:"zip";s:17:"seasonaloffer.zip";s:3:"uid";s:32:"caf2f17f8fd64f2f89dcb3c8dd238457";s:3:"img";s:24:"seasonaloffer/slide1.jpg";s:7:"preview";s:80:"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:204:"<span class="ttm_content">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to 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: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:252;a:23:{s:2:"id";s:3:"261";s:5:"title";s:18:"Barber Shop Header";s:5:"alias";s:18:"barber-shop-header";s:3:"zip";s:28:"packs/barber-shop-header.zip";s:3:"uid";s:32:"71c995d36d39a0e8a04cffdf753f2ba2";s:3:"img";s:29:"barber-shop-header/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"1";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:253;a:23:{s:2:"id";s:3:"262";s:5:"title";s:23:"Barber Shop Mobile Menu";s:5:"alias";s:23:"barber-shop-mobile-menu";s:3:"zip";s:33:"packs/barber-shop-mobile-menu.zip";s:3:"uid";s:32:"762c6fb5c6306f37becb1e55773c2592";s:3:"img";s:34:"barber-shop-mobile-menu/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"2";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:254;a:23:{s:2:"id";s:3:"263";s:5:"title";s:24:"Barber Shop First Screen";s:5:"alias";s:24:"barber-shop-first-screen";s:3:"zip";s:34:"packs/barber-shop-first-screen.zip";s:3:"uid";s:32:"acf70bfd64cff2c3c2ea5585223575da";s:3:"img";s:35:"barber-shop-first-screen/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"3";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:255;a:23:{s:2:"id";s:3:"264";s:5:"title";s:17:"Barber Shop About";s:5:"alias";s:17:"barber-shop-about";s:3:"zip";s:27:"packs/barber-shop-about.zip";s:3:"uid";s:32:"bc8b63cfc7f8c34173b4fd5b082fc05a";s:3:"img";s:28:"barber-shop-about/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"4";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:256;a:23:{s:2:"id";s:3:"265";s:5:"title";s:20:"Barber Shop Services";s:5:"alias";s:20:"barber-shop-services";s:3:"zip";s:30:"packs/barber-shop-services.zip";s:3:"uid";s:32:"d65121d6f84fabd812a2b621b768e10e";s:3:"img";s:31:"barber-shop-services/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"5";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:257;a:23:{s:2:"id";s:3:"266";s:5:"title";s:19:"Barber Shop Barbers";s:5:"alias";s:19:"barber-shop-barbers";s:3:"zip";s:29:"packs/barber-shop-barbers.zip";s:3:"uid";s:32:"003e9fec9693072119c8f8d8b6690c4d";s:3:"img";s:30:"barber-shop-barbers/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"6";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:258;a:23:{s:2:"id";s:3:"267";s:5:"title";s:20:"Barber Shop Contacts";s:5:"alias";s:20:"barber-shop-contacts";s:3:"zip";s:30:"packs/barber-shop-contacts.zip";s:3:"uid";s:32:"cdcc08f5d6c90dbcfd0502bda2401643";s:3:"img";s:31:"barber-shop-contacts/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"7";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:259;a:23:{s:2:"id";s:3:"268";s:5:"title";s:18:"Barber Shop Footer";s:5:"alias";s:18:"barber-shop-footer";s:3:"zip";s:28:"packs/barber-shop-footer.zip";s:3:"uid";s:32:"26ca5ae0de7cdbb2ca19348b6e01eda0";s:3:"img";s:29:"barber-shop-footer/slide1.jpg";s:7:"preview";s:69:"https://revolution.themepunch.com/barber-shop-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:220:"<span class="ttm_content">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</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:11:"Barber Shop";s:13:"package_order";s:1:"8";s:14:"package_parent";s:0:"";s:6:"active";s:1:"1";s:10:"package_id";s:2:"16";s:9:"installed";b:0;}i:260;a:20:{s:2:"id";s:3:"269";s:5:"title";s:12:"Fitness Club";s:5:"alias";s:21:"fitness-club-template";s:3:"zip";s:25:"fitness-club-template.zip";s:3:"uid";s:32:"14ea10d68d6aad1df62b3becf71df754";s:3:"img";s:32:"fitness-club-template/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/fitness-club-header-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.1";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:223:"<span class="ttm_content">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</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:261;a:20:{s:2:"id";s:3:"270";s:5:"title";s:13:"Soccer School";s:5:"alias";s:13:"soccer-school";s:3:"zip";s:17:"soccer-school.zip";s:3:"uid";s:32:"9906b48812aff67097f990eeee42dd41";s:3:"img";s:24:"soccer-school/slide1.jpg";s:7:"preview";s:67:"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:228:"<span class="ttm_content">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</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:174:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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:262;a:20:{s:2:"id";s:3:"271";s:5:"title";s:10:"Music Band";s:5:"alias";s:19:"music-band-template";s:3:"zip";s:23:"music-band-template.zip";s:3:"uid";s:32:"91e79657bf1b1812f8114a00ab8e0eb4";s:3:"img";s:30:"music-band-template/slide1.jpg";s:7:"preview";s:68:"https://revolution.themepunch.com/music-band-template-for-wordpress/";s:7:"version";s:5:"1.0.0";s:8:"required";s:7:"5.4.8.2";s:5:"width";s:4:"1240";s:6:"height";s:3:"868";s:11:"description";s:221:"<span class="ttm_content">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</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:174:"[{"path":"revslider-revealer-addon\\/revslider-revealer-addon.php","name":"Reveal 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;}}s:6:"slides";a:247:{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";}}s:11:"techco-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"techco-menu/slide1.jpg";}}s:13:"techco-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"techco-header/slide1.jpg";}}s:12:"techco-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"techco-about/slide1.jpg";}}s:15:"techco-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"techco-services/slide1.jpg";}}s:12:"techco-video";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"techco-video/slide1.jpg";}}s:13:"techco-prices";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"techco-prices/slide1.jpg";}}s:19:"techco-testimonials";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"techco-testimonials/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"techco-testimonials/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"techco-testimonials/slide3.jpg";}}s:13:"techco-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"techco-footer/slide1.jpg";}}s:7:"weather";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:18:"weather/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:18:"weather/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:18:"weather/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:18:"weather/slide4.jpg";}}s:11:"360panorama";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"360panorama/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"360panorama/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"360panorama/slide3.jpg";}}s:14:"duotone-add-on";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"duotone-add-on/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"duotone-add-on/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"duotone-add-on/slide3.jpg";}}s:13:"reveal-add-on";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"reveal-add-on/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"reveal-add-on/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"reveal-add-on/slide3.jpg";}}s:16:"band-tour-poster";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:40:"smartcontent/band-tour-poster/slide1.png";}}s:14:"brewery-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"smartcontent/brewery-slider/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:38:"smartcontent/brewery-slider/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:38:"smartcontent/brewery-slider/slide3.png";}}s:9:"burgerbar";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"smartcontent/burgerbar/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:33:"smartcontent/burgerbar/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:33:"smartcontent/burgerbar/slide3.png";}}s:19:"burger-bar-portrait";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:43:"smartcontent/burger-bar-portrait/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:43:"smartcontent/burger-bar-portrait/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:43:"smartcontent/burger-bar-portrait/slide3.png";}}s:8:"car-rent";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"smartcontent/car-rent/slide1.png";}}s:6:"coffee";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"smartcontent/coffee/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"smartcontent/coffee/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"smartcontent/coffee/slide3.png";}}s:14:"holiday-advert";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"smartcontent/holiday-advert/slide1.png";}}s:18:"iphone-cases-light";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:42:"smartcontent/iphone-cases-light/slide1.png";}}s:7:"medical";a:2:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"smartcontent/medical/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"smartcontent/medical/slide2.png";}}s:13:"mexican-grill";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:37:"smartcontent/mexican-grill/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:37:"smartcontent/mexican-grill/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:37:"smartcontent/mexican-grill/slide3.png";}}s:20:"mobile-retail-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:44:"smartcontent/mobile-retail-slider/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:44:"smartcontent/mobile-retail-slider/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:44:"smartcontent/mobile-retail-slider/slide3.png";}}s:14:"money-exchange";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:38:"smartcontent/money-exchange/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:38:"smartcontent/money-exchange/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:38:"smartcontent/money-exchange/slide3.png";}}s:28:"restaurant-menu-first-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:52:"smartcontent/restaurant-menu-first-screen/slide1.png";}}s:29:"restaurant-menu-second-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:53:"smartcontent/restaurant-menu-second-screen/slide1.png";}}s:28:"restaurant-menu-third-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:52:"smartcontent/restaurant-menu-third-screen/slide1.png";}}s:11:"shoes-store";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"smartcontent/shoes-store/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:35:"smartcontent/shoes-store/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:35:"smartcontent/shoes-store/slide3.png";}}s:20:"supermarket-products";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:44:"smartcontent/supermarket-products/slide1.png";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:44:"smartcontent/supermarket-products/slide2.png";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:44:"smartcontent/supermarket-products/slide3.png";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:44:"smartcontent/supermarket-products/slide4.png";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:44:"smartcontent/supermarket-products/slide5.png";}}s:16:"travel-insurance";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:40:"smartcontent/travel-insurance/slide1.png";}}s:12:"cryptoslider";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"cryptoslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:23:"cryptoslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:23:"cryptoslider/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:23:"cryptoslider/slide4.jpg";}}s:16:"immersion_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"immersion_header/slide1.jpg";}}s:19:"immersion-mountains";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"immersion-mountains/slide1.jpg";}}s:17:"immersion-product";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"immersion-product/slide1.jpg";}}s:16:"immersion-design";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"immersion-design/slide1.jpg";}}s:21:"immersion-photography";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"immersion-photography/slide1.jpg";}}s:14:"immersion-grid";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"immersion-grid/slide1.jpg";}}s:11:"funkyslider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"funkyslider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"funkyslider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"funkyslider/slide3.jpg";}}s:14:"clearview_menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"clearview_menu/slide1.jpg";}}s:16:"clearview_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"clearview_header/slide1.jpg";}}s:17:"clearview_mission";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"clearview_mission/slide1.jpg";}}s:17:"clear-view-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"clear-view-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:28:"clear-view-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:28:"clear-view-slider/slide3.jpg";}}s:15:"clear-view-news";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"clear-view-news/slide1.jpg";}}s:18:"clear-view-clients";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"clear-view-clients/slide1.jpg";}}s:18:"clear-view-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"clear-view-contact/slide1.jpg";}}s:22:"clear-view-single-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"clear-view-single-menu/slide1.jpg";}}s:24:"clear-view-single-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"clear-view-single-header/slide1.jpg";}}s:23:"clear-view-single-media";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"clear-view-single-media/slide1.jpg";}}s:22:"clear-view-single-more";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:33:"clear-view-single-more/slide1.jpg";}}s:25:"clear-view-single-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:36:"clear-view-single-contact/slide1.jpg";}}s:16:"cleanlandingpage";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"cleanlandingpage/slide1.jpg";}}s:8:"clearcut";a:10:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:19:"clearcut/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:19:"clearcut/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:19:"clearcut/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:19:"clearcut/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:19:"clearcut/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:19:"clearcut/slide6.jpg";}i:6;a:2:{s:5:"title";s:7:"Slide 7";s:3:"img";s:19:"clearcut/slide7.jpg";}i:7;a:2:{s:5:"title";s:7:"Slide 8";s:3:"img";s:19:"clearcut/slide8.jpg";}i:8;a:2:{s:5:"title";s:7:"Slide 9";s:3:"img";s:19:"clearcut/slide9.jpg";}i:9;a:2:{s:5:"title";s:8:"Slide 10";s:3:"img";s:20:"clearcut/slide10.jpg";}}s:17:"wonderstruck_menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"wonderstruck_menu/slide1.jpg";}}s:19:"wonderstruck_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"wonderstruck_header/slide1.jpg";}}s:18:"wonderstruck_about";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"wonderstruck_about/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"wonderstruck_about/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"wonderstruck_about/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:29:"wonderstruck_about/slide4.jpg";}}s:18:"wonderstruck-works";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"wonderstruck-works/slide1.jpg";}}s:20:"wonderstruck-contact";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"wonderstruck-contact/slide1.jpg";}}s:11:"bubblemorph";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:22:"bubblemorph/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:22:"bubblemorph/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:22:"bubblemorph/slide3.jpg";}}s:15:"distortionaddon";a:6:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"distortionaddon/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"distortionaddon/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"distortionaddon/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:26:"distortionaddon/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:26:"distortionaddon/slide5.jpg";}i:5;a:2:{s:5:"title";s:7:"Slide 6";s:3:"img";s:26:"distortionaddon/slide6.jpg";}}s:9:"clubflyer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:20:"clubflyer/slide1.jpg";}}s:15:"paintbrushaddon";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"paintbrushaddon/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:26:"paintbrushaddon/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:26:"paintbrushaddon/slide3.jpg";}}s:15:"parallax_header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"parallax_header/slide1.jpg";}}s:16:"parallax_content";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"parallax_content/slide1.jpg";}}s:15:"parallax_footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:26:"parallax_footer/slide1.jpg";}}s:12:"le-chef-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"le-chef-menu/slide1.jpg";}}s:14:"le-chef-header";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"le-chef-header/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"le-chef-header/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"le-chef-header/slide3.jpg";}}s:18:"le-chef-philosophy";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"le-chef-philosophy/slide1.jpg";}}s:12:"le-chef-food";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:23:"le-chef-food/slide1.jpg";}}s:16:"le-chef-la-carte";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:27:"le-chef-la-carte/slide1.jpg";}}s:14:"le-chef-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"le-chef-footer/slide1.jpg";}}s:20:"news-magazine-slider";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"news-magazine-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:31:"news-magazine-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:31:"news-magazine-slider/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:31:"news-magazine-slider/slide4.jpg";}}s:18:"real-estate-slider";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"real-estate-slider/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:29:"real-estate-slider/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:29:"real-estate-slider/slide3.jpg";}}s:14:"fashion-header";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:25:"fashion-header/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:25:"fashion-header/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:25:"fashion-header/slide3.jpg";}}s:13:"seasonaloffer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"seasonaloffer/slide1.jpg";}}s:18:"barber-shop-header";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"barber-shop-header/slide1.jpg";}}s:23:"barber-shop-mobile-menu";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:34:"barber-shop-mobile-menu/slide1.jpg";}}s:24:"barber-shop-first-screen";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:35:"barber-shop-first-screen/slide1.jpg";}}s:17:"barber-shop-about";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:28:"barber-shop-about/slide1.jpg";}}s:20:"barber-shop-services";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"barber-shop-services/slide1.jpg";}}s:19:"barber-shop-barbers";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"barber-shop-barbers/slide1.jpg";}}s:20:"barber-shop-contacts";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:31:"barber-shop-contacts/slide1.jpg";}}s:18:"barber-shop-footer";a:1:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:29:"barber-shop-footer/slide1.jpg";}}s:21:"fitness-club-template";a:4:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:32:"fitness-club-template/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:32:"fitness-club-template/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:32:"fitness-club-template/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:32:"fitness-club-template/slide4.jpg";}}s:13:"soccer-school";a:3:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:24:"soccer-school/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:24:"soccer-school/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:24:"soccer-school/slide3.jpg";}}s:19:"music-band-template";a:5:{i:0;a:2:{s:5:"title";s:7:"Slide 1";s:3:"img";s:30:"music-band-template/slide1.jpg";}i:1;a:2:{s:5:"title";s:7:"Slide 2";s:3:"img";s:30:"music-band-template/slide2.jpg";}i:2;a:2:{s:5:"title";s:7:"Slide 3";s:3:"img";s:30:"music-band-template/slide3.jpg";}i:3;a:2:{s:5:"title";s:7:"Slide 4";s:3:"img";s:30:"music-band-template/slide4.jpg";}i:4;a:2:{s:5:"title";s:7:"Slide 5";s:3:"img";s:30:"music-band-template/slide5.jpg";}}}}', 'no') ;

#
# End of data contents of table `wp2o_options`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_popover_ip_cache`
#

DROP TABLE IF EXISTS `wp2o_popover_ip_cache`;


#
# Table structure of table `wp2o_popover_ip_cache`
#

CREATE TABLE `wp2o_popover_ip_cache` (
  `IP` varchar(12) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `country` varchar(2) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cached` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`IP`),
  KEY `cached` (`cached`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_popover_ip_cache`
#

#
# End of data contents of table `wp2o_popover_ip_cache`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_popupwith_fancybox`
#

DROP TABLE IF EXISTS `wp2o_popupwith_fancybox`;


#
# Table structure of table `wp2o_popupwith_fancybox`
#

CREATE TABLE `wp2o_popupwith_fancybox` (
  `Popupwfb_id` int(11) NOT NULL AUTO_INCREMENT,
  `Popupwfb_width` int(11) NOT NULL DEFAULT '500',
  `Popupwfb_timeout` int(11) NOT NULL DEFAULT '3000',
  `Popupwfb_title` varchar(1024) NOT NULL DEFAULT 'Sample popup',
  `Popupwfb_content` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `Popupwfb_group` varchar(20) NOT NULL DEFAULT 'GROUP1',
  `Popupwfb_status` varchar(3) NOT NULL DEFAULT 'YES',
  `Popupwfb_expiration` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Popupwfb_starttime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `Popupwfb_extra1` varchar(1024) NOT NULL DEFAULT '',
  `Popupwfb_extra2` varchar(1024) NOT NULL DEFAULT '',
  PRIMARY KEY (`Popupwfb_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_popupwith_fancybox`
#
INSERT INTO `wp2o_popupwith_fancybox` ( `Popupwfb_id`, `Popupwfb_width`, `Popupwfb_timeout`, `Popupwfb_title`, `Popupwfb_content`, `Popupwfb_group`, `Popupwfb_status`, `Popupwfb_expiration`, `Popupwfb_starttime`, `Popupwfb_extra1`, `Popupwfb_extra2`) VALUES
(1, 600, 600, 'AGM Popup', '<img src=\\"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/agm-popup.jpg\\">\r\n', 'GROUP1', 'YES', '2017-05-23 00:00:00', '2017-04-28 00:00:00', '', '') ;

#
# End of data contents of table `wp2o_popupwith_fancybox`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_postmeta`
#

DROP TABLE IF EXISTS `wp2o_postmeta`;


#
# Table structure of table `wp2o_postmeta`
#

CREATE TABLE `wp2o_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=6298 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_postmeta`
#
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2, 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>'),
(3, 4, '_mail', 'a:8:{s:7:"subject";s:24:"Ranhill "[your-subject]"";s:6:"sender";s:62:"[your-name] <wordpress@investors-watch.com/wp-staging/ranhill>";s:4:"body";s:194:"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 Ranhill (http://investors-watch.com/wp-staging/ranhill/new)";s:9:"recipient";s:18:"ryanlee@hdprint.my";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;}'),
(4, 4, '_mail_2', 'a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Ranhill "[your-subject]"";s:6:"sender";s:58:"Ranhill <wordpress@investors-watch.com/wp-staging/ranhill>";s:4:"body";s:136:"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Ranhill (http://investors-watch.com/wp-staging/ranhill/new)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:28:"Reply-To: ryanlee@hdprint.my";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}'),
(5, 4, '_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.";}'),
(6, 4, '_additional_settings', NULL),
(7, 4, '_locale', 'en_US'),
(10, 6, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(11, 6, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(12, 6, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(13, 6, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(14, 6, '_wp_page_template', 'default'),
(15, 6, 'mfn-post-hide-content', '0'),
(16, 6, 'mfn-post-slider', 'spa'),
(17, 6, 'mfn-post-slider-layer', '0'),
(18, 6, 'mfn-post-custom-layout', '43'),
(19, 6, 'mfn-post-one-page', '0'),
(20, 6, 'mfn-post-hide-title', '0'),
(21, 6, 'mfn-post-remove-padding', '0'),
(22, 6, 'mfn-post-menu', '0'),
(23, 6, 'slide_template', 'default'),
(24, 6, 'mfn-page-items-seo', 'About Us\r\n\r\n<h3 style="margin-bottom: 0px;">About Us</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/aboutus_v1.jpg" border="0"]\r\n[divider height="15"]\r\n<p class="big">Since inception, we have set out to full fill the basic necessities of life.</p>\r\n<a class="read_more" href="about-us/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nOur Core Business\r\n\r\n<h3 style="margin-bottom: 0px;">Our Core Business</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/corebusiness.jpg" border="0"]\r\n[divider height="15"]\r\n<p class="big">We are a Malaysian conglomerate with interest in the environment and power sectors.</p>\r\n<a class="read_more" href="our-business/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nSustainability\r\n\r\n<h3 style="margin-bottom: 0px;">Sustainability</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/sustainbility_sml.jpg" border="0"]\r\n[divider height="15"]\r\n<p class="big">Innovative and sustainable solutions for water and power industry</p>\r\n<a class="read_more" href="sustainability/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n40\r\n\r\ndefault\r\n\r\nShare\r\n\r\n<h3 style="margin-bottom: 0px;">Share Information</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n<iframe src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250px" scrolling="no" frameborder="0"></iframe>[divider height="15"]\r\n\r\nno-repeat;center top;;\r\n\r\nSustainability\r\n\r\n<h3 style="margin-bottom: 0px;">Bursa Announcements </h3>\r\n[divider height="10"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bursa-1.jpg" border="0"]\r\n[divider height="15"]\r\n\r\n<a class="read_more" href="bursa-announcements/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n'),
(25, 6, '_wp_page_template', 'default'),
(26, 6, 'mfn-post-hide-content', '0'),
(27, 6, 'mfn-post-slider', 'spa'),
(28, 6, 'mfn-post-slider-layer', '0'),
(29, 6, 'mfn-post-custom-layout', '43'),
(30, 6, 'mfn-post-one-page', '0'),
(31, 6, 'mfn-post-hide-title', '0'),
(32, 6, 'mfn-post-remove-padding', '0'),
(33, 6, 'mfn-post-menu', '0'),
(34, 6, 'slide_template', 'default'),
(35, 6, 'mfn-page-items-seo', 'About Us\r\n\r\n<h3 style="margin-bottom: 0px;">About Us</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/aboutus_v1.jpg" border="0"]\r\n[divider height="15"]\r\n<p class="big">Since inception, we have set out to full fill the basic necessities of life.</p>\r\n<a class="read_more" href="about-us/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nOur Core Business\r\n\r\n<h3 style="margin-bottom: 0px;">Our Core Business</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/corebusiness.jpg" border="0"]\r\n[divider height="15"]\r\n<p class="big">We are a Malaysian conglomerate with interest in the environment and power sectors.</p>\r\n<a class="read_more" href="our-business/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nSustainability\r\n\r\n<h3 style="margin-bottom: 0px;">Sustainability</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/sustainbility_sml.jpg" border="0"]\r\n[divider height="15"]\r\n<p class="big">Innovative and sustainable solutions for water and power industry</p>\r\n<a class="read_more" href="sustainability/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n40\r\n\r\ndefault\r\n\r\nShare\r\n\r\n<h3 style="margin-bottom: 0px;">Share Information</h3>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n<iframe src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250px" scrolling="no" frameborder="0"></iframe>[divider height="15"]\r\n\r\nno-repeat;center top;;\r\n\r\nSustainability\r\n\r\n<h3 style="margin-bottom: 0px;">Bursa Announcements </h3>\r\n[divider height="10"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bursa-1.jpg" border="0"]\r\n[divider height="15"]\r\n\r\n<a class="read_more" href="bursa-announcements/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n'),
(36, 6, '_edit_last', '1'),
(37, 6, 'mfn-post-sidebar', '0'),
(38, 6, 'mfn-post-sidebar2', '0'),
(39, 6, '_wpb_vc_js_status', 'true'),
(40, 6, 'mfn-post-css', '@media (min-width:768px)\r\n{\r\n   #Top_bar #logo, .header-fixed #Top_bar #logo, .header-plain #Top_bar #logo, .header-transparent #Top_bar #logo {     height:170px; }\r\n\r\n}\r\n\r\n     .header-simple #Top_bar #menu {top: 40%;}'),
(70, 26, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(71, 26, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(72, 26, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(73, 26, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(74, 26, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(75, 26, '_wp_page_template', 'default'),
(76, 26, 'slide_template', 'default'),
(77, 26, 'mfn-post-hide-content', '0'),
(78, 26, 'mfn-post-custom-layout', '0'),
(79, 26, 'mfn-post-slider', '0'),
(80, 26, 'mfn-post-slider-layer', '0'),
(81, 26, 'mfn-post-menu', '0'),
(82, 26, 'mfn-post-one-page', '0'),
(83, 26, 'mfn-post-hide-title', '0'),
(84, 26, 'mfn-post-remove-padding', '0'),
(85, 26, 'mfn-page-items', 'a:2:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:1083:"<div style="padding: 40px 6% 10px;"> \nWe began as an engineering services outfit , under the name Ranhill Bersekutu Partnership, originally established by Rankine & Hill. We offered a full range of mechanical and electrical design services.\n[divider height="30"]\nIn 1981, Ranhill Bersekutu Sdn Bhd was incorporated as a private limited company in Malaysia. As a result of our extensive array of project management services, including concept/schematic design, procurement, construction administration and supervision, commissioning and program management , we were involved in numerous landmark projects including the Kuala Lumpur International Airport, KLIA2, Senai-Pasir Gudang-Desaru Expressway, the Petronas Twin Towers, and Suria Shopping Complex as well as the Kulim Hi-Tech Industrial Park Tower Plant Project. \n[divider height="30"]\nPower and Environment are now the key focus points for Ranhill Holdings after five decades in the industry. Owning assets and having well established operations in both sectors along with supporting engineering services and resources.\n\n</idv>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:7:"#4a4a4a";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"40";s:14:"padding_bottom";s:2:"30";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:7:"Heading";s:7:"content";s:283:"<h3 style="color: #fff; margin: 0 7% 60px;">Today, Ranhill has a strong and growing\npresence with operations in China, India, Thailand, Sudan, Libya\nand Saudi Arabia.</h3>\n<img class="scale-with-grid" src="http://hdprint.com.my/ranhill/wp-content/uploads/2016/05/map-1.png" alt="" />";s:5:"align";s:6:"center";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(86, 26, 'mfn-page-items-seo', '<div style="padding: 40px 6% 10px;"> \r\nWe began as an engineering services outfit , under the name Ranhill Bersekutu Partnership, originally established by Rankine & Hill. We offered a full range of mechanical and electrical design services.\r\n[divider height="30"]\r\nIn 1981, Ranhill Bersekutu Sdn Bhd was incorporated as a private limited company in Malaysia. As a result of our extensive array of project management services, including concept/schematic design, procurement, construction administration and supervision, commissioning and program management , we were involved in numerous landmark projects including the Kuala Lumpur International Airport, KLIA2, Senai-Pasir Gudang-Desaru Expressway, the Petronas Twin Towers, and Suria Shopping Complex as well as the Kulim Hi-Tech Industrial Park Tower Plant Project. \r\n[divider height="30"]\r\nPower and Environment are now the key focus points for Ranhill Holdings after five decades in the industry. Owning assets and having well established operations in both sectors along with supporting engineering services and resources.\r\n\r\n</idv>\n\nno-repeat;center top;;\n\nHeading\n\n<h3 style="color: #fff; margin: 0 7% 60px;">Today, Ranhill has a strong and growing\r\npresence with operations in China, India, Thailand, Sudan, Libya\r\nand Saudi Arabia.</h3>\r\n<img class="scale-with-grid" src="http://hdprint.com.my/ranhill/wp-content/uploads/2016/05/map-1.png" alt="" />\n\ncenter\n\nno-repeat;center top;;\n\n'),
(87, 26, '_edit_last', '1'),
(88, 26, 'mfn-post-sidebar', '0'),
(89, 26, 'mfn-post-sidebar2', '0'),
(90, 26, '_wpb_vc_js_status', 'false'),
(91, 26, 'mfn-post-subheader-image', ''),
(92, 26, 'mfn-meta-seo-title', 'Our History'),
(93, 26, 'mfn-meta-seo-description', 'Our History'),
(94, 26, 'mfn-meta-seo-keywords', 'Ranhill'),
(95, 26, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(96, 26, '_thumbnail_id', '3661'),
(97, 28, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(98, 28, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(99, 28, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(100, 28, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(101, 28, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(102, 28, '_wp_page_template', 'default'),
(103, 28, 'slide_template', 'default'),
(104, 28, 'mfn-post-hide-content', '0'),
(105, 28, 'mfn-post-custom-layout', '0'),
(106, 28, 'mfn-post-slider', '0'),
(107, 28, 'mfn-post-slider-layer', '0'),
(108, 28, 'mfn-post-menu', '0'),
(109, 28, 'mfn-post-one-page', '0'),
(110, 28, 'mfn-post-hide-title', '0'),
(111, 28, 'mfn-post-remove-padding', '0'),
(112, 28, 'mfn-page-items-seo', 'We are a Malaysian conglomerate with interest in the environment and power sectors. \r\n[divider height="30"]\r\nIn the environment sector, we provide water supply services, operate water and wastewater treatment plants, and provide technical services in the management and optimisation of water utility assets. In the power sector, we develop, own and operate two power plants in Sabah.\n\njustify\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Water supply services </h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/water_services.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="water-supply-services/">Read more</a>\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Water & wastewater treatment</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/waterwaste.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="water-and-waste-water-treatment//">Read more</a>\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Non-Revenue Water (NRW) </h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/nrw.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="non-revenue-water/">Read more</a>\n\nno-repeat;center top;;\n\ndefault\n\n<h3 style="margin-bottom: 0px;">Clean Energy</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/power_gen.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="clean-energy/">Read more</a>\n\nno-repeat;center top;;\n\n'),
(113, 28, '_edit_last', '1'),
(114, 28, 'mfn-post-sidebar', '0'),
(115, 28, 'mfn-post-sidebar2', '0'),
(116, 28, '_wpb_vc_js_status', 'false'),
(117, 28, 'mfn-post-subheader-image', ''),
(118, 28, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"20";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:2:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:6:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:383:"We are a Malaysian conglomerate with interest in the environment and power sectors. \n[divider height="30"]\nIn the environment sector, we provide water supply services, operate water and wastewater treatment plants, and provide technical services in the management and optimisation of water utility assets. In the power sector, we develop, own and operate two power plants in Sabah. \n";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:507:"<h3 style="margin-bottom: 0px;">Water supply services </h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/water_services.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="water-supply-services/">Read more</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:521:"<h3 style="margin-bottom: 0px;">Water & wastewater treatment</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/waterwaste.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="water-and-waste-water-treatment//">Read more</a>\n\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:3;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:493:"<h3 style="margin-bottom: 0px;">Non-Revenue Water (NRW) </h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/nrw.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="non-revenue-water/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:4;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:0:"";s:5:"style";s:7:"default";s:4:"line";s:0:"";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}i:5;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:482:"<h3 style="margin-bottom: 0px;">Clean Energy</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/power_gen.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="clean-energy/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:4:"10px";s:13:"column_margin";s:4:"20px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(119, 28, '_thumbnail_id', '3666'),
(120, 28, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(121, 28, 'mfn-meta-seo-keywords', 'Ranhill'),
(122, 28, 'mfn-meta-seo-title', 'Ranhill '),
(123, 28, 'mfn-meta-seo-description', 'Our Business'),
(124, 95, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(125, 95, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(126, 95, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(127, 95, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(128, 95, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(129, 95, '_edit_last', '1'),
(130, 95, '_wp_page_template', 'default'),
(131, 95, 'slide_template', 'default'),
(132, 95, 'mfn-post-hide-content', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(133, 95, 'mfn-post-sidebar', '0'),
(134, 95, 'mfn-post-slider', '0'),
(135, 95, 'mfn-post-slider-layer', '0'),
(136, 95, 'mfn-post-custom-layout', '0'),
(137, 95, 'mfn-post-sidebar2', '0'),
(138, 95, 'mfn-post-subheader-image', ''),
(139, 95, 'mfn-post-one-page', '0'),
(140, 95, 'mfn-post-hide-title', '0'),
(141, 95, 'mfn-post-remove-padding', '0'),
(142, 95, 'mfn-post-menu', '0'),
(143, 95, '_wpb_vc_js_status', 'false'),
(144, 95, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"90";s:14:"padding_bottom";s:2:"50";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:7:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:102:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/tan-sri-mohamed-small.png";s:5:"title";s:27:"TAN SRI MOHAMED AZMAN YAHYA";s:8:"subtitle";s:43:"Chairman/Independent Non-Executive Director";s:5:"phone";s:0:"";s:7:"content";s:231:"TAN SRI AZMAN YAHYA, aged 55, was appointed on our Board as the Chairman/Non-Independent Non-Executive Director on 1 September 2014 and re-designated as Chairman/Independent Non-Executive Director with effect from 02 February 2019.";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:29:"/tan-sri-mohamed-azman-yahya/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:101:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/tan-sri-hamdan-small.png";s:5:"title";s:22:"TAN SRI HAMDAN MOHAMAD";s:8:"subtitle";s:50:"Executive Director / President and Chief Executive";s:5:"phone";s:0:"";s:7:"content";s:145:"TAN SRI HAMDAN, aged 62, was appointed to our Board as Executive Director and the President and Chief Executive of our Group on 1 December 2015.\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:24:"/tan-sri-hamdan-mohamad/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:99:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/dato-sri-lim-small.png";s:5:"title";s:22:"DATO SRI LIM HAW KUANG";s:8:"subtitle";s:18:"Executive Director";s:5:"phone";s:0:"";s:7:"content";s:98:"DATO SRI LIM HAW KUANG, 64, was appointed to our Board as Executive Director on 1 September 2014.\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:24:"/dato-sri-lim-haw-kuang/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:4:"30px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:2;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:99:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/lim-hun-soon-small.png";s:5:"title";s:24:"LIM HUN SOON @ DAVID LIM";s:8:"subtitle";s:35:"Independent/Non-Executive  Director";s:5:"phone";s:0:"";s:7:"content";s:120:"LIM HUN SOON @ DAVID LIM, aged 63, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:14:"/lim-hun-soon/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:96:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/abu-talib-small.jpg";s:5:"title";s:22:"ABU TALIB ABDUL RAHMAN";s:8:"subtitle";s:35:"Independent/Non-Executive  Director";s:5:"phone";s:0:"";s:7:"content";s:118:"ABU TALIB ABDUL RAHMAN, aged 65, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:23:"/dato-zulkifli-ibrahim/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:94:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/Loong-Mei-Yin.jpg";s:5:"title";s:13:"LOONG MEI YIN";s:8:"subtitle";s:42:"Non Independent and Non Executive Director";s:5:"phone";s:0:"";s:7:"content";s:119:"LOONG MEI YIN, aged 48, was appointed to our Board as a Non Independent and Non Executive Director on 16 November 2016.";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:91:"http://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/loong-mei-yi/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:3;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:4;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:90:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/karim-img.jpg";s:5:"title";s:21:"DATUK ABDULLAH KARIM ";s:8:"subtitle";s:41:"Senior Independent Non-Executive Director";s:5:"phone";s:0:"";s:7:"content";s:119:"DATUK ABDULLAH KARIM , aged 66, was appointed to our Board as Independent and Non Executive Director on 31 March 2017.\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:21:"/datuk-abdullah-karim";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/3";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:90:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/leow-peen.jpg";s:5:"title";s:14:"LEOW PEEN FONG";s:8:"subtitle";s:34:"Independent Non Executive Director";s:5:"phone";s:0:"";s:7:"content";s:114:"Leow Peen Fong, aged 61, was appointed to our Board as an Independent and Non Executive Director on 2 March 2018.\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:8:"vertical";s:4:"link";s:15:"/leow-peen-fong";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:5;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:6;a:3:{s:4:"size";s:3:"1/1";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(145, 95, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/tan-sri-mohamed-small.png" alt="tan-sri-mohamed-small"/>\n\nTAN SRI MOHAMED AZMAN YAHYA\n\nChairman/Independent Non-Executive Director\n\nTAN SRI AZMAN YAHYA, aged 55, was appointed on our Board as the Chairman/Non-Independent Non-Executive Director on 1 September 2014 and re-designated as Chairman/Independent Non-Executive Director with effect from 02 February 2019.\n\nvertical\n\n<a href="/tan-sri-mohamed-azman-yahya/">/tan-sri-mohamed-azman-yahya/</a>\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/tan-sri-hamdan-small.png" alt="tan-sri-hamdan-small"/>\n\nTAN SRI HAMDAN MOHAMAD\n\nExecutive Director / President and Chief Executive\n\nTAN SRI HAMDAN, aged 62, was appointed to our Board as Executive Director and the President and Chief Executive of our Group on 1 December 2015.\n\nvertical\n\n<a href="/tan-sri-hamdan-mohamad/">/tan-sri-hamdan-mohamad/</a>\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/dato-sri-lim-small.png" alt="dato-sri-lim-small"/>\n\nDATO SRI LIM HAW KUANG\n\nExecutive Director\n\nDATO SRI LIM HAW KUANG, 64, was appointed to our Board as Executive Director on 1 September 2014.\n\nvertical\n\n<a href="/dato-sri-lim-haw-kuang/">/dato-sri-lim-haw-kuang/</a>\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/lim-hun-soon-small.png" alt="lim-hun-soon-small"/>\n\nLIM HUN SOON @ DAVID LIM\n\nIndependent/Non-Executive  Director\n\nLIM HUN SOON @ DAVID LIM, aged 63, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.\n\nvertical\n\n<a href="/lim-hun-soon/">/lim-hun-soon/</a>\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/abu-talib-small.jpg" alt="abu-talib-small"/>\n\nABU TALIB ABDUL RAHMAN\n\nIndependent/Non-Executive  Director\n\nABU TALIB ABDUL RAHMAN, aged 65, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.\n\nvertical\n\n<a href="/dato-zulkifli-ibrahim/">/dato-zulkifli-ibrahim/</a>\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/Loong-Mei-Yin.jpg" alt="loong-mei-yin"/>\n\nLOONG MEI YIN\n\nNon Independent and Non Executive Director\n\nLOONG MEI YIN, aged 48, was appointed to our Board as a Non Independent and Non Executive Director on 16 November 2016.\n\nvertical\n\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/loong-mei-yi/">http://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/loong-mei-yi/</a>\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/karim-img.jpg" alt="karim-img"/>\n\nDATUK ABDULLAH KARIM\n\nSenior Independent Non-Executive Director\n\nDATUK ABDULLAH KARIM , aged 66, was appointed to our Board as Independent and Non Executive Director on 31 March 2017.\n\nvertical\n\n<a href="/datuk-abdullah-karim">/datuk-abdullah-karim</a>\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/leow-peen.jpg" alt="leow-peen"/>\n\nLEOW PEEN FONG\n\nIndependent Non Executive Director\n\nLeow Peen Fong, aged 61, was appointed to our Board as an Independent and Non Executive Director on 2 March 2018.\n\nvertical\n\n<a href="/leow-peen-fong">/leow-peen-fong</a>\n\n'),
(146, 95, 'mfn-meta-seo-title', 'Board of Directors'),
(147, 95, 'mfn-meta-seo-description', 'RANHIL Board of Directors'),
(148, 95, 'mfn-meta-seo-keywords', 'Board of Directors'),
(149, 95, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}\r\n\r\n'),
(151, 101, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(152, 101, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(153, 101, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(154, 101, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(155, 101, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(156, 101, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(157, 101, '_wp_page_template', 'default'),
(158, 101, 'slide_template', 'default'),
(159, 101, 'mfn-post-hide-content', '0'),
(160, 101, 'mfn-post-custom-layout', '0'),
(161, 101, 'mfn-post-slider', '0'),
(162, 101, 'mfn-post-slider-layer', '0'),
(163, 101, 'mfn-post-menu', '0'),
(164, 101, 'mfn-post-one-page', '0'),
(165, 101, 'mfn-post-hide-title', '0'),
(166, 101, 'mfn-post-remove-padding', '0'),
(167, 101, 'mfn-page-items-seo', '<p style="font-size:16px; font-style: italic;">\r\n“As our core business hinged on management of water and power, we aspire to forge a leading and exemplary role in sustainability by taking the economic, environmental and social factors into account at every level we operate in.”\r\n</p>\r\n\r\n<h5>\r\nTAN SRI HAMDAN MOHAMAD<br/>\r\nPresident / Chief Executive<br/>\r\nRanhill Holdings Berhad\r\n</h5>\n\nno-repeat;center top;;\n\n30px\n\n<h3 style="margin-bottom: 0px;">Sustainability Report</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/sustainability-sr2016-img.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="sustainability-report/">Read more</a>\n\nno-repeat;center top;;\n\nfadeIn\n\n<h3 style="margin-bottom: 0px;">Sustainability Policies</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/sustainability_report.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="sustainability-policies/">Read more</a>\n\nno-repeat;center top;;\n\nfadeIn\n\n<h3 style="margin-bottom: 0px;">Whistleblowing</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/corprate_gov.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="whistle-blowing/">Read more</a>\n\nno-repeat;center top;;\n\nfadeIn\n\n'),
(168, 101, '_edit_last', '1'),
(169, 101, 'mfn-post-sidebar', '0'),
(170, 101, 'mfn-post-sidebar2', '0'),
(171, 101, '_wpb_vc_js_status', 'false'),
(172, 101, 'mfn-post-subheader-image', ''),
(173, 101, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;\r\n    font-size: 50px;}'),
(174, 101, '_dp_original', '28'),
(175, 101, 'mfn-page-items', 'a:2:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:383:"<p style="font-size:16px; font-style: italic;">\n“As our core business hinged on management of water and power, we aspire to forge a leading and exemplary role in sustainability by taking the economic, environmental and social factors into account at every level we operate in.”\n</p>\n\n<h5>\nTAN SRI HAMDAN MOHAMAD<br/>\nPresident / Chief Executive<br/>\nRanhill Holdings Berhad\n</h5>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:4:"30px";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:520:"<h3 style="margin-bottom: 0px;">Sustainability Report</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/sustainability-sr2016-img.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="sustainability-report/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"fadeIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:516:"<h3 style="margin-bottom: 0px;">Sustainability Policies</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/sustainability_report.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="sustainability-policies/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"fadeIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:490:"<h3 style="margin-bottom: 0px;">Whistleblowing</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/corprate_gov.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="whistle-blowing/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"fadeIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(177, 101, 'mfn-meta-seo-title', 'Ranhill'),
(178, 101, 'mfn-meta-seo-description', 'Sustainability'),
(179, 101, 'mfn-meta-seo-keywords', 'Ranhill'),
(181, 110, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(182, 110, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(183, 110, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(184, 110, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(185, 110, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(186, 110, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(187, 110, '_wp_page_template', 'default'),
(188, 110, 'slide_template', 'default'),
(189, 110, 'mfn-post-hide-content', '0'),
(190, 110, 'mfn-post-custom-layout', '0'),
(191, 110, 'mfn-post-slider', '0'),
(192, 110, 'mfn-post-slider-layer', '0'),
(193, 110, 'mfn-post-menu', '0'),
(194, 110, 'mfn-post-one-page', '0'),
(195, 110, 'mfn-post-hide-title', '0'),
(196, 110, 'mfn-post-remove-padding', '0'),
(197, 110, 'mfn-page-items-seo', 'Ranhill, via its subsidiary Ranhill SAJ Sdn Bhd (SAJ) is the exclusive provider of source-to-tap water in Johor, the second most populous state in Malaysia.\r\nWe hold an exclusive license by the Minister of Energy, Green Technology and Water Malaysia. The license enables us to complete the cycle of potable water supply services from the sourcing of raw water, treatment of water to consumers, and the management of the maintenance of the water supply. It’s a full range of customised services including billing. \r\n[divider height=30px]\r\n\r\nAs at December 2017, Ranhill’s water supply operations in Johor manages:\r\n<ol><li>44 water treatment plants, with total capacity of 1,986 MLD</li><li>\r\n673 active storage and service reservoirs</li><li>\r\n22,150 KM of pipelines, of which 18,725 KM are reticulation mains, 3,261 KM of distribution mains and 164 KM of raw water mains</li><li>\r\n1.1 million connections serving over 3.9 million local residents</li><oll>\n\nno-repeat;center top;;\n\nTo learn more please visit : <a href="https://ranhillsaj.com.my/" target="_blank">www.ranhillsaj.com.my</a>\n\nno-repeat;center top;;\n\n'),
(198, 110, '_edit_last', '1'),
(199, 110, 'mfn-post-sidebar', '0'),
(200, 110, 'mfn-post-sidebar2', '0'),
(201, 110, '_wpb_vc_js_status', 'false'),
(202, 110, 'mfn-post-subheader-image', ''),
(203, 110, '_dp_original', '28'),
(204, 110, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:952:"Ranhill, via its subsidiary Ranhill SAJ Sdn Bhd (SAJ) is the exclusive provider of source-to-tap water in Johor, the second most populous state in Malaysia.\nWe hold an exclusive license by the Minister of Energy, Green Technology and Water Malaysia. The license enables us to complete the cycle of potable water supply services from the sourcing of raw water, treatment of water to consumers, and the management of the maintenance of the water supply. It’s a full range of customised services including billing. \n[divider height=30px]\n\nAs at December 2017, Ranhill’s water supply operations in Johor manages:\n<ol><li>44 water treatment plants, with total capacity of 1,986 MLD</li><li>\n673 active storage and service reservoirs</li><li>\n22,150 KM of pipelines, of which 18,725 KM are reticulation mains, 3,261 KM of distribution mains and 164 KM of raw water mains</li><li>\n1.1 million connections serving over 3.9 million local residents</li><oll>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:107:"To learn more please visit : <a href="https://ranhillsaj.com.my/" target="_blank">www.ranhillsaj.com.my</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(205, 110, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(206, 110, '_thumbnail_id', '3721'),
(207, 123, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(208, 123, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(209, 123, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(210, 123, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(211, 123, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(212, 123, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(213, 123, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(214, 123, '_wp_page_template', 'default'),
(215, 123, 'slide_template', 'default'),
(216, 123, 'mfn-post-hide-content', '0'),
(217, 123, 'mfn-post-custom-layout', '0'),
(218, 123, 'mfn-post-slider', '0'),
(219, 123, 'mfn-post-slider-layer', '0'),
(220, 123, 'mfn-post-menu', '0'),
(221, 123, 'mfn-post-one-page', '0'),
(222, 123, 'mfn-post-hide-title', '0'),
(223, 123, 'mfn-post-remove-padding', '0'),
(224, 123, 'mfn-page-items-seo', 'In the Power Sector, we own and operate two 190 MW plants in Sabah, Ranhill Power I (RPI) and Ranhill Power II (RPII), providing for the sale of up to 380 MW of electricity-generating capacity and electricity production for 21 years. We boosted the efficiency of the RPI plant by converting its mode of operation from open cycle to combined cycle. This raised the power generating capacity from 120 MW to 190 MW.\r\n\r\n[divider height="30"]\r\n\r\n\r\nWe conduct routine maintenance on both the RPI & RPII power plants through our on subsidiaries Ranhill Power O&M Sdn Bhd (RPOM) and Ranhill Power O&M II Sdn Bhd (RPOMII).\n\nno-repeat;center top;;\n\n'),
(225, 123, '_edit_last', '1'),
(226, 123, 'mfn-post-sidebar', '0'),
(227, 123, 'mfn-post-sidebar2', '0'),
(228, 123, '_wpb_vc_js_status', 'false'),
(229, 123, 'mfn-post-subheader-image', ''),
(230, 123, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:609:"In the Power Sector, we own and operate two 190 MW plants in Sabah, Ranhill Power I (RPI) and Ranhill Power II (RPII), providing for the sale of up to 380 MW of electricity-generating capacity and electricity production for 21 years. We boosted the efficiency of the RPI plant by converting its mode of operation from open cycle to combined cycle. This raised the power generating capacity from 120 MW to 190 MW.\n\n[divider height="30"]\n\n\nWe conduct routine maintenance on both the RPI & RPII power plants through our on subsidiaries Ranhill Power O&M Sdn Bhd (RPOM) and Ranhill Power O&M II Sdn Bhd (RPOMII).\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(231, 123, '_dp_original', '110'),
(232, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(233, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(234, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(235, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(236, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(237, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(238, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(239, 125, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(240, 125, '_wp_page_template', 'default'),
(241, 125, 'slide_template', 'default'),
(242, 125, 'mfn-post-hide-content', '0'),
(243, 125, 'mfn-post-custom-layout', '0'),
(244, 125, 'mfn-post-slider', '0'),
(245, 125, 'mfn-post-slider-layer', '0'),
(246, 125, 'mfn-post-menu', '3'),
(247, 125, 'mfn-post-one-page', '0'),
(248, 125, 'mfn-post-hide-title', '0'),
(249, 125, 'mfn-post-remove-padding', '0'),
(250, 125, 'mfn-page-items-seo', 'Non-Revenue water (NRW) Management\n\n<h2 style="margin-bottom: 0px;">Non-Revenue water (NRW) Management</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n\r\n[divider height="15"]\r\n<p class="big">Our NRW solutions are able to detect water leakages in the delivery systems within 1-2 hours, thus improving our efficiency in managing and reducing NRW\r\n</p>\n\nno-repeat;center top;;\n\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/APMC_image.jpg" border="0"]\r\n[divider height="15"]\r\n\r\n[popup title="Advance Pressure Management and Control (APMC)" padding="0" button="0" style="color="ff0000"]<b >APMC (Advance Pressure Management and Control)</b><br/> <br/>An innovative system designed to adjust and control the pressure of water going into a District Metering Area. It is implemented to reduce the pressure of water without affecting service levels during off peak demand.\r\n[/popup]\n\nno-repeat;center top;;\n\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/gis.jpg" border="0"]\r\n[divider height="15"]\r\n[popup title="Geographic Information System (GIS)" padding="0" button="0"]<b style="color="ff0000">Geographic Information System (GIS)</b><br/><br/> It is essentially used as a system designed to analyse, evaluate and present all types of spatial or geographical data in relation to our assets within the water supply industry. [/popup]\n\nno-repeat;center top;;\n\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Aquasmart_images.jpg" border="0"]\r\n[divider height="15"]\r\n[popup title="AquaSMART" padding="0" button="0"]<b style="color="ff0000">AquaSMART</b> <br/><br/>Water Strategic Management and Analytical Resources Terminal (Aqua SMART) system is a web-based application developed as an operational tool to perform as data storage management plan for data capture, input, handling and monitoring of NRW assets’ field data. This system is implemented to link all the raw data collected and create reports at the click of a button. It is a simple and useful tool for NRW monitoring.\r\n\r\n\r\n[/popup]\n\nno-repeat;center top;;\n\nWater and wastewater treatment\n\n<h2 style="margin-bottom: 0px;">Water and wastewater treatment</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n\r\n[divider height="15"]\r\n<p class="big">We offer cost-effective solutions through our modular fit-to-need system. This design innovation enables our customers to increase the capacity and customise the water treatment plants to cater to their needs as and when needed\r\n\r\n</p>\n\nno-repeat;center top;;\n\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/DISSOLVED-AIR-FLOATATION-DAF.jpg" border="0"]\r\n[divider height="15"]\r\n[popup title="Dissolve Air Flotation (DAF) " padding="0" button="0"]<b>DAF (Dissolve Air Flotation)</b> <br/><br/> A water treatment process that filters wastewaters through the removal of suspended substances such as oil or solids. Our clarifier/ filter is designed based on ‘zero velocity’ water distribution and recovery concept.  Its main function is to produce high quality filtrated water at high flows whilst minimising the use of hydraulic turbulence. \r\n[/popup]\n\nno-repeat;center top;;\n\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/SBR_image.jpg" border="0"]\r\n[divider height="15"]\r\n[popup title="Sequential Batch Reactor (SBR) " padding="0" button="0"]<b>SBR (Sequential Batch Reactor)</b> <br/><br/> It is often described as an activated sludge process designed to operate under non-steady state conditions. There is a degree of flexibility associated with Sequential Batch Reactors as it carries out functions of equalisation aeration and sedimentation in a time sequence, as oppose to the conventional space sequence of continuous-flow systems. \r\n[/popup]\n\nno-repeat;center top;;\n\nClean Energy\n\n<h2 style="margin-bottom: 0px;">Clean Energy\r\n</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n\r\n[divider height="15"]\r\n<p class="big">The Gas-Fired Combined Cycle Power Plants are currently generating at full capacity of total 380MW, contributing 43% to the maximum load demand to the Sabah Grid\r\n\r\n</p>\n\nno-repeat;center top;;\n\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/CCGT_image.jpg" border="0"]\r\n[divider height="15"]\r\n[popup title="CCGT ( Combined Cycle Gas Turbine )" padding="0" button="0"]<b>Combined Cycle Gas Turbine (CCGT) </b><br/><br/>  A power plant which uses both a gas and a steam turbine, to produce up to 50 percent more electricity from the same fuel, as oppose to a traditional simple-cycle plant.  The excess heat produced from the gas turbine is then transmitted to the nearby steam turbine, which ultimately generates more electricity. [/popup]\n\nno-repeat;center top;;\n\n'),
(251, 125, '_edit_last', '1'),
(252, 125, 'mfn-post-sidebar', '0'),
(253, 125, 'mfn-post-sidebar2', '0'),
(254, 125, '_wpb_vc_js_status', 'false'),
(255, 125, 'mfn-post-subheader-image', ''),
(256, 125, 'mfn-page-items', 'a:3:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:4:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:34:"Non-Revenue water (NRW) Management";s:7:"content";s:439:"<h2 style="margin-bottom: 0px;">Non-Revenue water (NRW) Management</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n\n[divider height="15"]\n<p class="big">Our NRW solutions are able to detect water leakages in the delivery systems within 1-2 hours, thus improving our efficiency in managing and reducing NRW\n</p>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:539:"[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/APMC_image.jpg" border="0"]\n[divider height="15"]\n\n[popup title="Advance Pressure Management and Control (APMC)" padding="0" button="0" style="color="ff0000"]<b >APMC (Advance Pressure Management and Control)</b><br/> <br/>An innovative system designed to adjust and control the pressure of water going into a District Metering Area. It is implemented to reduce the pressure of water without affecting service levels during off peak demand.\n[/popup]\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:468:"[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/gis.jpg" border="0"]\n[divider height="15"]\n[popup title="Geographic Information System (GIS)" padding="0" button="0"]<b style="color="ff0000">Geographic Information System (GIS)</b><br/><br/> It is essentially used as a system designed to analyse, evaluate and present all types of spatial or geographical data in relation to our assets within the water supply industry. [/popup]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:3;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:672:"[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Aquasmart_images.jpg" border="0"]\n[divider height="15"]\n[popup title="AquaSMART" padding="0" button="0"]<b style="color="ff0000">AquaSMART</b> <br/><br/>Water Strategic Management and Analytical Resources Terminal (Aqua SMART) system is a web-based application developed as an operational tool to perform as data storage management plan for data capture, input, handling and monitoring of NRW assets’ field data. This system is implemented to link all the raw data collected and create reports at the click of a button. It is a simple and useful tool for NRW monitoring.\n\n\n[/popup]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:30:"Water and wastewater treatment";s:7:"content";s:511:"<h2 style="margin-bottom: 0px;">Water and wastewater treatment</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n\n[divider height="15"]\n<p class="big">We offer cost-effective solutions through our modular fit-to-need system. This design innovation enables our customers to increase the capacity and customise the water treatment plants to cater to their needs as and when needed\n\n</p>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:630:"[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/DISSOLVED-AIR-FLOATATION-DAF.jpg" border="0"]\n[divider height="15"]\n[popup title="Dissolve Air Flotation (DAF) " padding="0" button="0"]<b>DAF (Dissolve Air Flotation)</b> <br/><br/> A water treatment process that filters wastewaters through the removal of suspended substances such as oil or solids. Our clarifier/ filter is designed based on ‘zero velocity’ water distribution and recovery concept.  Its main function is to produce high quality filtrated water at high flows whilst minimising the use of hydraulic turbulence. \n[/popup]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:614:"[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/SBR_image.jpg" border="0"]\n[divider height="15"]\n[popup title="Sequential Batch Reactor (SBR) " padding="0" button="0"]<b>SBR (Sequential Batch Reactor)</b> <br/><br/> It is often described as an activated sludge process designed to operate under non-steady state conditions. There is a degree of flexibility associated with Sequential Batch Reactors as it carries out functions of equalisation aeration and sedimentation in a time sequence, as oppose to the conventional space sequence of continuous-flow systems. \n[/popup]\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:2;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:12:"Clean Energy";s:7:"content";s:428:"<h2 style="margin-bottom: 0px;">Clean Energy\n</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n\n[divider height="15"]\n<p class="big">The Gas-Fired Combined Cycle Power Plants are currently generating at full capacity of total 380MW, contributing 43% to the maximum load demand to the Sabah Grid\n\n</p>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:586:"[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/CCGT_image.jpg" border="0"]\n[divider height="15"]\n[popup title="CCGT ( Combined Cycle Gas Turbine )" padding="0" button="0"]<b>Combined Cycle Gas Turbine (CCGT) </b><br/><br/>  A power plant which uses both a gas and a steam turbine, to produce up to 50 percent more electricity from the same fuel, as oppose to a traditional simple-cycle plant.  The excess heat produced from the gas turbine is then transmitted to the nearby steam turbine, which ultimately generates more electricity. [/popup]\n\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(257, 125, '_dp_original', '123'),
(258, 125, 'mfn-meta-seo-title', 'Our Technology'),
(259, 125, 'mfn-meta-seo-description', 'Our Technology'),
(260, 125, 'mfn-meta-seo-keywords', 'Technology'),
(261, 125, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}\r\n\r\n.popup-link {color: #cb000f;}\r\n'),
(263, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(264, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(265, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(266, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(267, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(268, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(269, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(270, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(271, 127, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(272, 127, '_wp_page_template', 'default'),
(273, 127, 'slide_template', 'default'),
(274, 127, 'mfn-post-hide-content', '0'),
(275, 127, 'mfn-post-custom-layout', '0'),
(276, 127, 'mfn-post-slider', '0'),
(277, 127, 'mfn-post-slider-layer', '0'),
(278, 127, 'mfn-post-menu', '0'),
(279, 127, 'mfn-post-one-page', '0'),
(280, 127, 'mfn-post-hide-title', '0'),
(281, 127, 'mfn-post-remove-padding', '0'),
(282, 127, 'mfn-page-items-seo', '<img src="http://hdprint.com.my/rh/wp-content/uploads/2016/05/Amata_main.jpg" alt=""/>\n\nAmata City Water & Wastewater Treatment Plant\n\n<a href="http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/">http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/</a>\n\n<img src="http://hdprint.com.my/rh/wp-content/uploads/2016/05/Amata_main.jpg" alt=""/>\n\nAmata City Water & Wastewater Treatment Plant\n\n<a href="http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/">http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/</a>\n\n<img src="http://hdprint.com.my/rh/wp-content/uploads/2016/05/Amata_main.jpg" alt=""/>\n\nAmata City Water & Wastewater Treatment Plant\n\n<a href="http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/">http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/</a>\n\n'),
(283, 127, '_edit_last', '1'),
(284, 127, 'mfn-post-sidebar', '0'),
(285, 127, 'mfn-post-sidebar2', '0'),
(286, 127, '_wpb_vc_js_status', 'false'),
(287, 127, 'mfn-post-subheader-image', ''),
(288, 127, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:15:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:11:"trailer_box";s:4:"size";s:3:"1/3";s:6:"fields";a:7:{s:5:"image";s:66:"http://hdprint.com.my/rh/wp-content/uploads/2016/05/Amata_main.jpg";s:6:"slogan";s:0:"";s:5:"title";s:45:"Amata City Water & Wastewater Treatment Plant";s:4:"link";s:69:"http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:11:"trailer_box";s:4:"size";s:3:"1/3";s:6:"fields";a:7:{s:5:"image";s:66:"http://hdprint.com.my/rh/wp-content/uploads/2016/05/Amata_main.jpg";s:6:"slogan";s:0:"";s:5:"title";s:45:"Amata City Water & Wastewater Treatment Plant";s:4:"link";s:69:"http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:11:"trailer_box";s:4:"size";s:3:"1/3";s:6:"fields";a:7:{s:5:"image";s:66:"http://hdprint.com.my/rh/wp-content/uploads/2016/05/Amata_main.jpg";s:6:"slogan";s:0:"";s:5:"title";s:45:"Amata City Water & Wastewater Treatment Plant";s:4:"link";s:69:"http://hdprint.com.my/rh/amata-city-water-wastewater-treatment-plant/";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}}s:4:"attr";a:7:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(289, 127, '_dp_original', '125'),
(290, 127, '_thumbnail_id', '3545'),
(291, 127, 'mfn-post-css', '#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -44px;\n    width: 95%;\n    color: #ffffff;\n    font-size: 50px;}'),
(292, 129, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(293, 129, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(294, 129, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(295, 129, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(296, 129, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(297, 129, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(298, 129, '_wp_page_template', 'default'),
(299, 129, 'slide_template', 'default'),
(300, 129, 'mfn-post-hide-content', '0'),
(301, 129, 'mfn-post-custom-layout', '0'),
(302, 129, 'mfn-post-slider', '0'),
(303, 129, 'mfn-post-slider-layer', '0'),
(304, 129, 'mfn-post-menu', '0'),
(305, 129, 'mfn-post-one-page', '0'),
(306, 129, 'mfn-post-hide-title', '0'),
(307, 129, 'mfn-post-remove-padding', '0'),
(308, 129, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:6:"VISION";s:7:"content";s:1052:"<h3>OUR VISION</h3><div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; width:300px; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n\n<h4>Enriching Lives Through Sustainable Solutions</h4>\n[divider height="30"]\n<b>ENRICHING LIVES</b>[divider height="10"]\nRanhill aspires to lift the quality of life by being in the forefront of nation building through sustainable environment and power solutions using\ninnovative and clean technology.\n[divider height="30"]\n<b>SUSTAINABLE SOLUTIONS</b>[divider height="10"]\n\nRanhill aspires to meet the needs for an enhanced quality of life and for a cleaner planet through innovation.[divider height="10"]\nWe subscribe to the triple bottom-line approach to the Environment (Planet) and Communities (People) whilst achieving our Financial Objective (Profit).\n\n[divider height="30"]\nWe inspire our employees to be innovative in providing solutions beyond customers’ expectations.";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:366:"<h3>OUR MISSION</h3><div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\nTo be a regional leader in water, wastewater and energy, with emphasis on circular economy.\n";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:625:"<h3>OUR VALUES</h3><div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n\n<b>RESPECT</b>[divider height="10"]\nRespect for the environment, communities we serve and for our employees.\n\n[divider height="30"]\n<b>RESOURCEFUL</b> [divider height="10"]\nDetermination in sourcing and adopting innovative solutions.\n[divider height="30"]\n<b>RESULT</b> [divider height="10"]\nFocused on delivering growth and value to our stakeholders.";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(309, 129, 'mfn-page-items-seo', 'VISION\n\n<h3>OUR VISION</h3><div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; width:300px; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n\r\n<h4>Enriching Lives Through Sustainable Solutions</h4>\r\n[divider height="30"]\r\n<b>ENRICHING LIVES</b>[divider height="10"]\r\nRanhill aspires to lift the quality of life by being in the forefront of nation building through sustainable environment and power solutions using\r\ninnovative and clean technology.\r\n[divider height="30"]\r\n<b>SUSTAINABLE SOLUTIONS</b>[divider height="10"]\r\n\r\nRanhill aspires to meet the needs for an enhanced quality of life and for a cleaner planet through innovation.[divider height="10"]\r\nWe subscribe to the triple bottom-line approach to the Environment (Planet) and Communities (People) whilst achieving our Financial Objective (Profit).\r\n\r\n[divider height="30"]\r\nWe inspire our employees to be innovative in providing solutions beyond customers’ expectations.\n\njustify\n\nno-repeat;center top;;\n\n<h3>OUR MISSION</h3><div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\nTo be a regional leader in water, wastewater and energy, with emphasis on circular economy.\n\njustify\n\nno-repeat;center top;;\n\n<h3>OUR VALUES</h3><div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n\r\n<b>RESPECT</b>[divider height="10"]\r\nRespect for the environment, communities we serve and for our employees.\r\n\r\n[divider height="30"]\r\n<b>RESOURCEFUL</b> [divider height="10"]\r\nDetermination in sourcing and adopting innovative solutions.\r\n[divider height="30"]\r\n<b>RESULT</b> [divider height="10"]\r\nFocused on delivering growth and value to our stakeholders.\n\njustify\n\nno-repeat;center top;;\n\n'),
(310, 129, '_edit_last', '1'),
(311, 129, 'mfn-post-sidebar', '0'),
(312, 129, 'mfn-post-sidebar2', '0'),
(313, 129, '_wpb_vc_js_status', 'false'),
(314, 129, 'mfn-post-subheader-image', ''),
(315, 129, '_dp_original', '26'),
(316, 129, '_thumbnail_id', '3661'),
(317, 129, 'mfn-meta-seo-title', 'Our Vision, Mission & Values'),
(318, 129, 'mfn-meta-seo-description', 'Rahill has a strong underlying commitment that stretches across all areas of it business as well as its staff. A strong desire to fulfill its VISION of Enriching Lives Through Sustainable Solutions. This can be seen in its approach to development of services across nations.'),
(319, 129, 'mfn-meta-seo-keywords', 'Our Vision, Mission & Values'),
(320, 129, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(321, 133, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(322, 133, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(323, 133, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(324, 133, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(325, 133, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(326, 133, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(327, 133, '_wp_page_template', 'default'),
(328, 133, 'slide_template', ''),
(329, 133, 'mfn-post-hide-content', '0'),
(330, 133, 'mfn-post-custom-layout', '0'),
(331, 133, 'mfn-post-slider', '0'),
(332, 133, 'mfn-post-slider-layer', '0'),
(333, 133, 'mfn-post-menu', '0'),
(334, 133, 'mfn-post-one-page', '0'),
(335, 133, 'mfn-post-hide-title', '0'),
(336, 133, 'mfn-post-remove-padding', '1') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(337, 133, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI5MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MjoiNTAiO3M6NzoiZGl2aWRlciI7czowOiIiO3M6MTA6Im5hdmlnYXRpb24iO3M6MDoiIjtzOjU6InN0eWxlIjtzOjA6IiI7czo1OiJjbGFzcyI7czowOiIiO3M6MTA6InNlY3Rpb25faWQiO3M6MDoiIjtzOjEwOiJ2aXNpYmlsaXR5IjtzOjA6IiI7czo0OiJoaWRlIjtzOjA6IiI7fXM6NToid3JhcHMiO2E6MTp7aTowO2E6Mzp7czo0OiJzaXplIjtzOjM6IjEvMSI7czo1OiJpdGVtcyI7YToyOntpOjA7YTozOntzOjQ6InR5cGUiO3M6MTM6ImZhbmN5X2hlYWRpbmciO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6MTM6IlByb3VkIEhpc3RvcnkiO3M6MjoiaDEiO3M6MToiMCI7czo0OiJpY29uIjtzOjA6IiI7czo2OiJzbG9nYW4iO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjQ6ImxpbmUiO3M6NzoiYW5pbWF0ZSI7czowOiIiO3M6NzoiY2xhc3NlcyI7czowOiIiO319aToxO2E6Mzp7czo0OiJ0eXBlIjtzOjY6ImNvbHVtbiI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTE6e3M6NToidGl0bGUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTE3MzoiPGRpdiBzdHlsZT0icGFkZGluZzogNDBweCA2JSAxMHB4OyI+IA0KPGg0IGFsaWduPSJqdXN0aWZ5Ij5XZSBwcm91ZGx5IGJlZ2FuIG91ciBkZXZlbG9wbWVudCBpbiBlbmdpbmVlcmluZyBzZXJ2aWNlcywgdW5kZXIgdGhlIG5hbWUgUmFuaGlsbCBCZXJzZWt1IFBhcnRuZXJzaGlwLCBvcmlnaW5hbGx5IGVzdGFibGlzaGVkIGJ5IFJhbmtpbmUgJiBIaWxsLiBXZSBvZmZlcmVkIGEgZnVsbCByYW5nZSBvZiBtZWNoYW5pY2FsIGFuZCBlbGVjdHJpY2FsIGRlc2lnbiBzZXJ2aWNlcy4gPC9oND4NCltkaXZpZGVyIGhlaWdodD0iMzAiXQ0KSW4gMTk4MSwgUmFuaGlsbCBCZXJzZWt1dHUgU2RuIEJoZCB3YXMgaW5jb3Jwb3JhdGVkIGFzIGEgcHJpdmF0ZSBsaW1pdGVkIGNvbXBhbnkgaW4gTWFsYXlzaWEuIFdlIG1lcmdlZCBvdXIgZXhpdGluZyBhcnJheSBvZiBzZXJ2aWNlcyB3aXRoIHRoZSBkcml2ZW4gTWFsYXlzaWEgTWFuYWdlbWVudC4gVG9nZXRoZXIgd2Ugd2VyZSBhYmxlIHRvIGJ1aWxkIG9uIG91ciBzdHJlbmd0aHMgYW5kIG1vdmVkIGZvcndhcmQgaW4gdGhlIHBvd2VyIHNlY3RvciB0aHJvdWdoIFJhbmhpbGwgUG93ZXIgU2RuIEJoZCBhbmQgZGV2ZWxvcCBvdXIgRW52aXJvbm1lbnQgYnVzaW5lc3MgdGhyb3VnaCBSYW5oaWxsIFdhdGVyIERpdmlzaW9uLg0KW2RpdmlkZXIgaGVpZ2h0PSIzMCJdDQoNCkFzIGEgcmVzdWx0IG9mIG91ciBleHRlbnNpdmUgYXJyYXkgb2YgcHJvamVjdCBtYW5hZ2VtZW50IHNlcnZpY2VzLCBpbmNsdWRpbmcgY29uY2VwdC9zY2hlbWF0aWMgZGVzaWduLCBwcm9jdXJlbWVudCwgY29uc3RydWN0aW9uIGFkbWluaXN0cmF0aW9uIGFuZCBzdXBlcnZpc2lvbiwgY29tbWlzc2lvbmluZyBhbmQgcHJvZ3JhbSBtYW5hZ2VtZW50IHRvIG5hbWUgYSBmZXcsIHdlIGhhdmUgYmUgaW52b2x2ZWQgaW4gbnVtZXJvdXMgbGFuZG1hcmsgcHJvamVjdHMgaW5jbHVkaW5nIHRoZSBLdWFsYSBMdW1wdXIgSW50ZXJuYXRpb25hbCBBaXJwb3J0LCBLTElBMiwgU2VuYWktUGFzaXIgR3VkYW5nLURlc2FydSBFeHByZXNzd2F5LCB0aGUgUGV0cm9uYXMgVHdpbiBUb3dlcnMsIGFuZCBTdXJpYSBTaG9wcGluZyBDb21wbGV4IGFzIHdlbGwgYXMgdGhlIEt1bGltIEhpLVRlY2ggSW5kdXN0cmlhbCBQYXJrIFRvd2VyIFBsYW50IFByb2plY3QuDQoNCg0KPC9kaXY+IjtzOjU6ImFsaWduIjtzOjc6Imp1c3RpZnkiO3M6OToiY29sdW1uX2JnIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEzOiJtYXJnaW5fYm90dG9tIjtzOjA6IiI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czo3OiJhbmltYXRlIjtzOjA6IiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7czo1OiJzdHlsZSI7czowOiIiO319fXM6NDoiYXR0ciI7YTo3OntzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjEzOiJjb2x1bW5fbWFyZ2luIjtzOjA6IiI7czoxNDoidmVydGljYWxfYWxpZ24iO3M6MzoidG9wIjtzOjU6ImNsYXNzIjtzOjA6IiI7fX19fX0='),
(338, 133, 'mfn-page-items-seo', 'Proud History\n\nline\n\n<div style="padding: 40px 6% 10px;"> \n<h4 align="justify">We proudly began our development in engineering services, under the name Ranhill Berseku Partnership, originally established by Rankine & Hill. We offered a full range of mechanical and electrical design services. </h4>\n[divider height="30"]\nIn 1981, Ranhill Bersekutu Sdn Bhd was incorporated as a private limited company in Malaysia. We merged our exiting array of services with the driven Malaysia Management. Together we were able to build on our strengths and moved forward in the power sector through Ranhill Power Sdn Bhd and develop our Environment business through Ranhill Water Division.\n[divider height="30"]\n\nAs a result of our extensive array of project management services, including concept/schematic design, procurement, construction administration and supervision, commissioning and program management to name a few, we have be involved in numerous landmark projects including the Kuala Lumpur International Airport, KLIA2, Senai-Pasir Gudang-Desaru Expressway, the Petronas Twin Towers, and Suria Shopping Complex as well as the Kulim Hi-Tech Industrial Park Tower Plant Project.\n\n\n</div>\n\njustify\n\nno-repeat;center top;;\n\n'),
(339, 133, '_edit_last', '1'),
(340, 133, 'mfn-post-sidebar', '0'),
(341, 133, 'mfn-post-sidebar2', '0'),
(342, 133, '_wpb_vc_js_status', 'false'),
(343, 133, 'mfn-post-subheader-image', 'http://hdprint.com.my/ranhill/wp-content/uploads/2015/04/about.jpg'),
(344, 133, '_dp_original', '26'),
(345, 136, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(346, 136, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(347, 136, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(348, 136, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(349, 136, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(350, 136, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(351, 136, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(352, 136, '_wp_page_template', 'default'),
(353, 136, 'slide_template', 'default'),
(354, 136, 'mfn-post-hide-content', '0'),
(355, 136, 'mfn-post-custom-layout', '0'),
(356, 136, 'mfn-post-slider', '0'),
(357, 136, 'mfn-post-slider-layer', '0'),
(358, 136, 'mfn-post-menu', '0'),
(359, 136, 'mfn-post-one-page', '0'),
(360, 136, 'mfn-post-hide-title', '0'),
(361, 136, 'mfn-post-remove-padding', '0'),
(362, 136, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:797:"<h2 style="margin-bottom: 0px;"> Enhancing Governance across the Group</h2>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \nRanhill’s diverse operations across Malaysia and in overseas markets, requires us to maintain good Corporate Governance and to instil double confidence among our stakeholders.\n[divider height="30"]\n\nOur Group Human Capital conducted a series of workshops in 2015 to ensure all Ranhill employees comply and are fully aware of our various Policies and Procedures.\n[divider height="30"]\n\nAmong other areas, our employees have been trained for compliance in the following areas:\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:284:"<div style="padding: 40px 10% 40px;"> \n<ul class="list_check"><li>	Employees Competency and Career  Development</li>\n<li>	Competency based Performance Management  System</li>\n<li>	Management of Under Performance</li>\n<li>	Code of Conduct and Business Ethics\n\n\n</li></ul></div>\n\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:217:"<div style="padding: 40px 6% 40px;"> \n\n\n<ul class="list_check">\n<li>	Grievance Handling</li>\n<li>	Business Continuity Management</li>\n<li>	Fraud Risk Management</li>\n<li>	Fraud and Whistle Blowing\n\n\n</li></ul>\n\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(363, 136, 'mfn-page-items-seo', '<h2 style="margin-bottom: 0px;"> Enhancing Governance across the Group</h2>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \r\nRanhill’s diverse operations across Malaysia and in overseas markets, requires us to maintain good Corporate Governance and to instil double confidence among our stakeholders.\r\n[divider height="30"]\r\n\r\nOur Group Human Capital conducted a series of workshops in 2015 to ensure all Ranhill employees comply and are fully aware of our various Policies and Procedures.\r\n[divider height="30"]\r\n\r\nAmong other areas, our employees have been trained for compliance in the following areas:\n\nno-repeat;center top;;\n\n<div style="padding: 40px 10% 40px;"> \r\n<ul class="list_check"><li>	Employees Competency and Career  Development</li>\r\n<li>	Competency based Performance Management  System</li>\r\n<li>	Management of Under Performance</li>\r\n<li>	Code of Conduct and Business Ethics\r\n\r\n\r\n</li></ul></div>\r\n\r\n</div>\n\nno-repeat;center top;;\n\n<div style="padding: 40px 6% 40px;"> \r\n\r\n\r\n<ul class="list_check">\r\n<li>	Grievance Handling</li>\r\n<li>	Business Continuity Management</li>\r\n<li>	Fraud Risk Management</li>\r\n<li>	Fraud and Whistle Blowing\r\n\r\n\r\n</li></ul>\r\n\r\n</div>\n\nno-repeat;center top;;\n\n'),
(364, 136, '_edit_last', '1'),
(365, 136, 'mfn-post-sidebar', '0'),
(366, 136, 'mfn-post-sidebar2', '0'),
(367, 136, '_wpb_vc_js_status', 'false'),
(368, 136, 'mfn-post-subheader-image', ''),
(369, 136, '_dp_original', '133'),
(370, 136, 'mfn-meta-seo-title', 'Ranhill'),
(371, 136, 'mfn-meta-seo-keywords', 'Ranhill'),
(372, 138, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(373, 138, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(374, 138, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(375, 138, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(376, 138, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(377, 138, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(378, 138, '_edit_last', '1'),
(379, 138, '_wp_page_template', 'default'),
(380, 138, 'slide_template', ''),
(381, 138, 'mfn-post-hide-content', '0'),
(382, 138, 'mfn-post-sidebar', '0'),
(383, 138, 'mfn-post-slider', '0'),
(384, 138, 'mfn-post-slider-layer', '0'),
(385, 138, 'mfn-post-custom-layout', '0'),
(386, 138, 'mfn-post-sidebar2', '0'),
(387, 138, 'mfn-post-subheader-image', ''),
(388, 138, 'mfn-post-one-page', '0'),
(389, 138, 'mfn-post-hide-title', '0'),
(390, 138, 'mfn-post-remove-padding', '0'),
(391, 138, 'mfn-post-menu', '0'),
(392, 138, '_wpb_vc_js_status', 'false'),
(393, 138, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MjoiNTAiO3M6NzoiZGl2aWRlciI7czowOiIiO3M6MTA6Im5hdmlnYXRpb24iO3M6MDoiIjtzOjU6InN0eWxlIjtzOjA6IiI7czo1OiJjbGFzcyI7czowOiIiO3M6MTA6InNlY3Rpb25faWQiO3M6MDoiIjtzOjEwOiJ2aXNpYmlsaXR5IjtzOjA6IiI7czo0OiJoaWRlIjtzOjA6IiI7fXM6NToid3JhcHMiO2E6MTp7aTowO2E6Mzp7czo0OiJzaXplIjtzOjM6IjEvMSI7czo1OiJpdGVtcyI7YTozOntpOjA7YTozOntzOjQ6InR5cGUiO3M6MTM6ImZhbmN5X2hlYWRpbmciO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6MjA6IkF3YXJkcyAmIFJlY29nbml0aW9uIjtzOjI6ImgxIjtzOjE6IjAiO3M6NDoiaWNvbiI7czowOiIiO3M6Njoic2xvZ2FuIjtzOjA6IiI7czo3OiJjb250ZW50IjtzOjA6IiI7czo1OiJzdHlsZSI7czo0OiJsaW5lIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fWk6MTthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjExOntzOjU6InRpdGxlIjtzOjA6IiI7czo3OiJjb250ZW50IjtzOjQzNjoiPGRpdiBzdHlsZT0icGFkZGluZzogNDBweCA2JSAxMHB4OyI+IA0KPGg0IGFsaWduPSJqdXN0aWZ5Ij5PdmVyIHRoZSB5ZWFycywgUmFuaGlsbCBoYXMgZ2FybmVyZWQgc2V2ZXJhbCBub3Rld29ydGh5IGF3YXJkcyBhbmQgYWNjb2xhZGVzLiBUaGVzZSwgd2UgYXJlIHBsZWFzZWQgdG8gYWNjZXB0IGFzIGEgdGVzdGFtZW50IG9mIG91ciBjb250aW51ZWQgZ29vZCB3b3JrIGFuZCBwcm9mZXNzaW9uYWxpc20gaW4gY29uc2lzdGVudGx5IHBlcmZvcm1pbmcgdG8gdGhlIGhpZ2hlc3Qgc3RhbmRhcmRzIG9mIHRoZSBpbmR1c3RyeSBhbmQgdG8gYWx3YXlzIHByZXNlcnZlIG91ciBpbnRlZ3JpdHkgYW5kIHJlcHV0YXRpb24gaW4gcHJvdmlkaW5nIGV4Y2VsbGVudCBjdXN0b21lciBzZXJ2aWNlIHRvIG91ciBjdXN0b21lcnMuPC9oND4NCltkaXZpZGVyIGhlaWdodD0iMzAiXSI7czo1OiJhbGlnbiI7czowOiIiO3M6OToiY29sdW1uX2JnIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEzOiJtYXJnaW5fYm90dG9tIjtzOjA6IiI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czo3OiJhbmltYXRlIjtzOjA6IiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7czo1OiJzdHlsZSI7czowOiIiO319aToyO2E6Mzp7czo0OiJ0eXBlIjtzOjk6ImFjY29yZGlvbiI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6Nzp7czo1OiJ0aXRsZSI7czowOiIiO3M6NToiY291bnQiO3M6MjoiMTIiO3M6NDoidGFicyI7YToxMjp7aTowO2E6Mjp7czo1OiJ0aXRsZSI7czozOToiQmVzdCBDb21wYW5pZXMgdG8gd29yayBmb3IgaW4gQXNpYSAyMDE0IjtzOjc6ImNvbnRlbnQiO3M6MjE1OiJTQUogSG9sZGluZ3Mgd2FzIGF3YXJkZWQgSFIgQXNpYeKAmXMgQmVzdCBDb21wYW5pZXMgVG8gV29yayBGb3IgSW4gQXNpYSAyMDE0LiAgSFIgQXNpYSBoYXMgc2VsZWN0ZWQgdGhlIGJlc3QgNjAgY29tcGFuaWVzIGZyb20gNiwwMDAgZW50cmllcyBmb3IgaXRzIGFkdmFuY2VtZW50IGluIHRoZWlyIHdvcmtwbGFjZSwgY3VsdHVyZSBhbmQgZW1wbG95ZWUgZW5nYWdlbWVudCANCiI7fWk6MTthOjI6e3M6NToidGl0bGUiO3M6MzA6IlRoZSBCZXN0IENvbnRyYWN0b3IgQXdhcmQgMjAxNCI7czo3OiJjb250ZW50IjtzOjIzMDoiUmFuaGlsbCBXYXRlciBTZXJ2aWNlcyB3YXMgYXdhcmRlZCBieSB0aGUgU2V3ZXJhZ2UgU2VydmljZXMgRGVwYXJ0bWVudCBmb3Ig4oCYVGhlIEJlc3QgQ29udHJhY3RvciAyMDE04oCZIG9uIDIzcmQgTm92ZW1iZXIuIFRoaXMgYXdhcmQgcmVjb2duaXplcyBjb250cmlidXRpb25zIGFuZCBhY2hpZXZlbWVudHMgaW4gdGhlIGVuZXJneSwgZ3JlZW4gdGVjaG5vbG9neSBhbmQgd2F0ZXIgaW5kdXN0cnkuDQoiO31pOjI7YToyOntzOjU6InRpdGxlIjtzOjI4OiJDYXJib24gQXdhcmRzIGJ5IEtlVFRIQSAyMDE0IjtzOjc6ImNvbnRlbnQiO3M6NDMyOiJTQUogSG9sZGluZyBTZG4gQmhkLCB3YXMgYXdhcmRlZCBNeUNhcmJvbiBBd2FyZHMgMjAxNCBieSBNaW5pc3RyeSBvZiBOYXR1cmFsIFJlc291cmNlcyBhbmQgRW52aXJvbm1lbnQgYW5kIFVuaXRlZCBOYXRpb25zIERldmVsb3BtZW50IFByb2dyYW1tZSAoIFVORFApLiAgIFNBSkggaGFkIHdvbiB0aGUgMm5kIFJ1bm5lciDigJN1cCBpbiB0aGUgZmlyc3QgTVkgQ2FyYm9uIEF3YXJkcy4gU0FKSCBoYWQgZG9uZSBhIHJlc2VhcmNoIHRpdGxlIOKAmENhcmJvbiBGb290cHJpbnQgU3R1ZHkgaW4gMjAxMiB0byBjYWxjdWxhdGUgQ2FyYm9uIEVtaXNzaW9uIGluIFNBSiBmb3IgMjAxMS4NCg0KU0FKSCBoYXMgc2lnbmlmaWNhbnRseSByZWR1Y2VkIG9uIEVsZWN0cmljaXR5IGNvbnN1bXB0aW9uIGFuZCBjb250aW51b3VzbHkgZWZmb3J0IHRpbGwgdG8tZGF0ZS4gDQoiO31pOjM7YToyOntzOjU6InRpdGxlIjtzOjQ0OiJHbG9iYWwgRXhjZWxsZW5jZSBpbiBNYW5hZ2VtZW50IEF3YXJkcyAyMDEzICI7czo3OiJjb250ZW50IjtzOjM5NDoiU0FKIEhvbGRpbmdzIFNkbiBCaGQgKFNBSkgpIGhhcyBiZWVuIGNvbmZlcnJlZCBhbiBob25vcmFyeSBhd2FyZCBvZiDigJxFeGNlbGxlbmNlIGluIENoYW5nZSBNYW5hZ2VtZW50IGF0IEdFTUEgMjAxMy4gVGhpcyBpcyBpbiByZWNvZ25pdGlvbiBvZiBTQUpI4oCZcyBmYXIgc2lnaHRlZCB2aXNpb24gYW5kIGJlaW5nIGFibGUgdG8gYWdncmVzc2l2ZWx5IGxlYWQgYW5kIGVmZmVjdGl2ZWx5IGFwcGx5IGltcGFjdGZ1bCBjaGFuZ2UgbWFuYWdlbWVudCBza2lsbHMgYW5kIHN1YnNlcXVlbnRseSBlbGV2YXRpbmcgaXRzIGVzdGFibGlzaG1lbnQgdG8gZ3JlYXRlciBoZWlnaHRzLCBiZWluZyBjb25zaXN0ZW50bHkgcGxhY2VkIGFuZCByYW5rZWQgYnkgZ2xvYmFsIGNsYXNzIHN0YW5kYXJkcy4NCiI7fWk6NDthOjI6e3M6NToidGl0bGUiO3M6MzA6IkJyYW5kTGF1cmVhdGUgQXdhcmRzIDIwMDktMjAxMCI7czo3OiJjb250ZW50IjtzOjMwOToiUmFuaGlsbCB3YXMgYXdhcmRlZCB0aGUgQnJhbmRMYXVyZWF0ZSBBd2FyZHMgDQoyMDA5LTIwMTAgZm9yIGJlc3QgYnJhbmRzIGluIENvcnBvcmF0ZSBCcmFuZGluZyAtIEVuZ2luZWVyaW5nICYgQ29uc3RydWN0aW9uLiBUaGUgYXdhcmQsIHJlY2VpdmVkIGJ5IG91ciBDaGllZiBPcGVyYXRpbmcgT2ZmaWNlciwgQW1yYW4gQXdhbHVkZGluLiBXaXRoIHRoaXMgYXdhcmQsIHdlIGhvcGUgdG8gY29udGludWUgYnVpbGRpbmcgb3VyIGJyYW5kIGFuZCBhY2hpZXZlIGdyZWF0ZXIgZXhjZWxsZW5jZSBpbiBvdXIgam91cm5leSB0byBzdWNjZXNzLg0KIjt9aTo1O2E6Mjp7czo1OiJ0aXRsZSI7czoyMToiV2F0ZXJMaW5rcyBBd2FyZCAyMDEwIjtzOjc6ImNvbnRlbnQiO3M6NDU1OiJXYXRlckxpbmtzIHByZXNlbnRlZCB0aGUgZmlyc3QgV2F0ZXJMaW5rcyBhd2FyZHMgYXQgdGhlIDIwMTAgV2F0ZXJMaW5rcyBGb3J1bSBpbiBNYW5pbGEsIFBoaWxpcHBpbmVzLCBvbiBNYXkgNCwgMjAxMCwgdG8gcmVjb2duaXplIHRoZSBvdXRzdGFuZGluZyBhY2hpZXZlbWVudHMgb2Ygd2F0ZXIgb3BlcmF0b3IgcGFydG5lcnNoaXBzLiBSYW5oaWxsIFV0aWxpdGllcyB0b2dldGhlciB3aXRoIERhdmFvIENpdHkgV2F0ZXIgRGlzdHJpY3QgKERDV0QpIG9mIHRoZSBQaGlsaXBwaW5lcyByZWNlaXZlZCB0aGUgV2F0ZXJMaW5rcyBBd2FyZCBmb3IgU2NhbGUtVXAgYW5kIFJlcGxpY2F0aW9uIGZvciByZWR1Y2luZyB3YXRlciBsb3NzZXMgaW4gRGF2YW8gdGhyb3VnaCBhIFR3aW5uaW5nIHByb2dyYW1tZSBpbiB3aGljaCBSYW5oaWxsIFV0aWxpdGllcyBhY3RlZCBhcyBhIG1lbnRvciB0byBEQ1dELiANCiI7fWk6NjthOjI6e3M6NToidGl0bGUiO3M6NTY6Ikdsb2JhbCBFbWVyZ2luZyBLbm93bGVkZ2UgT3JnYW5pc2F0aW9uIChHRUtPKSBBd2FyZCAyMDA5IjtzOjc6ImNvbnRlbnQiO3M6Mzk3OiJJbiBBdWd1c3QgMjAwOSwgUmFuaGlsbCB3YXMgYXdhcmRlZCBhIENlcnRpZmljYXRlIG9mIEdsb2JhbCBBY2hpZXZlbWVudCDigJMgMXN0IFBsYWNpbmcsIEdsb2JhbCBFbWVyZ2luZyBLbm93bGVkZ2UgT3JnYW5pc2F0aW9uIEF3YXJkIDIwMDksIHVuZGVyIFBvdGVudGlhbCBPcmdhbmlzYXRpb24gQ2F0ZWdvcnkgZm9yIGFkb3B0aW5nIGEgc3RydWN0dXJlZCByb2FkbWFwIHRvIHBpb25lZXIgdGhlIFByYWN0aWNlIG9mIEtub3dsZWRnZSBNYW5hZ2VtZW50ICjigJxQT0tN4oCdKS4gT3VyIHN1YnNpZGlhcnksIFNBSiBIb2xkaW5ncyB3b24gdGhlIEJlc3QgUHJhY3RpY2luZyBPcmdhbmlzYXRpb24gQ2F0ZWdvcnkgaW4gR2xvYmFsIEFjaGlldmVtZW50IGZvciBpdHMgc3VjY2VzcyBpbiBQT0tNLg0KIjt9aTo3O2E6Mjp7czo1OiJ0aXRsZSI7czoyMjoiV2F0ZXIgSW5ubyBBd2FyZHMgMjAwOSI7czo3OiJjb250ZW50IjtzOjQ4NjoiU0FKIEhvbGRpbmdzIGFuZCBSYW5oaWxsIFdhdGVyIFRlY2hub2xvZ2llcyBib3RoIGJhZ2dlZCB0aGUgQnJvbnplIGFuZCBHb2xkIHByaXplcyByZXNwZWN0aXZlbHkgYXQgdGhlIFdhdGVyIElubm8gQXdhcmRzIDIwMDkgaGVsZCBpbiBjb25qdW5jdGlvbiB3aXRoIFdhdGVyIE1hbGF5c2lhIDIwMDkgRXhoaWJpdGlvbiBhbmQgQ29uZmVyZW5jZS4gU0FKIEhvbGRpbmdzIHdvbiB0aGUgQnJvbnplIGluIHRoZSBDb21wdXRlciBTb2Z0d2FyZSBhbmQgVHJhaW5pbmcgY2F0ZWdvcnksIGZvciB0aGVpciBJbnRlZ3JhdGVkIEdlb2dyYXBoaWNhbCBJbmZvcm1hdGlvbiBTeXN0ZW0uIFJhbmhpbGwgV2F0ZXIgVGVjaG5vbG9naWVzIGJhZ2dlZCB0aGUgR29sZCBwcml6ZSBmb3IgdGhlaXIgQW1hdGEgQ2l0eSBXYXRlciBhbmQgV2FzdGV3YXRlciBUcmVhdG1lbnQgUGxhbnQgaW4gVGhhaWxhbmQgZm9yIFdhdGVyIENvbnNlcnZhdGlvbiBhbmQgUmVjeWNsaW5nLg0KIjt9aTo4O2E6Mjp7czo1OiJ0aXRsZSI7czo2NToiUHJvbWlzaW5nIENvbXBhbnkgT2YgVGhlIFllYXIgM3JkIEJ1c2luZXNzIE9mIFRoZSBZZWFyIEF3YXJkIDIwMDgiO3M6NzoiY29udGVudCI7czoyODU6IlJhbmhpbGwgQmVyc2VrdXR1IHdhcyBnaXZlbiBhbm90aGVyIGFjY29sYWRlLCB0aGUgcmVjb2duaXRpb24gb2YgUHJvbWlzaW5nIENvbXBhbnkgYXQgdGhlIFNNSS1TTUUgM3JkIEJ1c2luZXNzIG9mIHRoZSBZZWFyIEF3YXJkIGhlbGQgb24gMTMgT2N0b2JlciAyMDA4IGluIEt1YWxhIEx1bXB1ci4gVGhlIGF3YXJkIGlzIHByZXNlbnRlZCB0byB0b3AgdGVuIG91dHN0YW5kaW5nIGNvbXBhbmllcyBhbmQgaGlnaCBhY2hpZXZlcnMgZnJvbSBhbGwgaW5kdXN0cmllcyBvciBlbnRlcnByaXNlcy4gDQoNCiI7fWk6OTthOjI6e3M6NToidGl0bGUiO3M6NDc6IkFzaWEgUGFjaWZpYyBFbnRyZXByZW5ldXJzaGlwIChBUEVBKSBBd2FyZCAyMDA4IjtzOjc6ImNvbnRlbnQiO3M6MzgzOiJSYW5oaWxsIEJlcnNla3V0dSB3YXMgY29uZmVycmVkIHRoZSBPdXRzdGFuZGluZyBFbnRyZXByZW5ldXIgQXdhcmQgYXQgdGhlIEFzaWEgUGFjaWZpYyBFbnRyZXByZW5ldXJzaGlwIEF3YXJkcyAyMDA4IG9uIDIzIEp1bHkgMjAwOCBpbiBLdWFsYSBMdW1wdXIuIFRoZSBhd2FyZCBpcyBwcmVzZW50ZWQgdG8gdGhvc2Ugb3V0c3RhbmRpbmcgY29tcGFuaWVzIHRoYXQgaGF2ZSBkZW1vbnN0cmF0ZWQgZW50cmVwcmVuZXVyaWFsIGF0dHJpYnV0ZXMsIGluY2x1ZGluZyB0aGUgdGVuYWNpdHkgYW5kIHBlcnNldmVyYW5jZSB0byBjb250aW51ZSBpbm5vdmF0aW5nIGFuZCBtYWtpbmcgYSBkaWZmZXJlbmNlIHVuZGVyIGFkdmVyc2Ugc2l0dWF0aW9ucyBhbmQgZW52aXJvbm1lbnRzLiI7fWk6MTA7YToyOntzOjU6InRpdGxlIjtzOjQyOiJBc2lhd2F0ZXIgMjAwOCBNYW5hZ2VtZW50IEV4Y2VsbGVuY2UgQXdhcmQiO3M6NzoiY29udGVudCI7czozMzI6IkF0IHRoZSBBc2lhd2F0ZXIgMjAwOCBFeGhpYml0aW9uIGFuZCBDb25mZXJlbmNlIGhlbGQgaW4gS3VhbGEgTHVtcHVyLCBSYW5oaWxs4oCZcyBQcmVzaWRlbnQgYW5kIENoaWVmIEV4ZWN1dGl2ZSwgSGFtZGFuIE1vaGFtYWQsIHdhcyBjb25mZXJyZWQgdGhlIE1hbmFnZW1lbnQgRXhjZWxsZW5jZSBBd2FyZC4gSW4gcmVjb2duaXRpb24gb2YgDQpoaXMgY29udHJpYnV0aW9uIHRvd2FyZHMgdGhlIE1hbGF5c2lhbiB3YXRlciBpbmR1c3RyeSwgZXNwZWNpYWxseSB0aHJvdWdoIGhpcyBpbnZvbHZlbWVudCB0aGUgcHJpdmF0aXphdGlvbiBvZiBKb2hvciBTdGF0ZSBXYXRlciBTdXBwbHkuIjt9aToxMTthOjI6e3M6NToidGl0bGUiO3M6NDg6IkFzaWFuIENvcnBvcmF0ZSBTb2NpYWwgUmVzcG9uc2liaWxpdHkgQXdhcmQgMjAwNSI7czo3OiJjb250ZW50IjtzOjMyMzoiRm9yIGl0cyBTaXggU2lnbWEgT3JnYW5pc2F0aW9uYWwgQ2xpbWF0ZSBwcm9qZWN0LCBTQUogSG9sZGluZ3Mgd29uIHRoZSBCZXN0IFdvcmtwbGFjZSBQcmFjdGljZXMgY2F0ZWdvcnkgaW4gdGhlIEFzaWFuIENTUiBBd2FyZHMuIFRoZSBQcm9qZWN0IHdhcyBkZWVtZWQgdGhlIG1vc3Qgb3V0c3RhbmRpbmcgYW1vbmcgMTYwIHByb2plY3RzIGZyb20gOTEgY29tcGFuaWVzIGluIDEyIGNvdW50cmllcy4gVGhlIEF3YXJkIHdhcyBjb25mZXJyZWQgdG8gU0FKIEhvbGRpbmdzIGJ5IHRoZSBBc2lhbiBJbnN0aXR1dGUgb2YgTWFuYWdlbWVudCBpbiBTZXB0ZW1iZXIgMjAwNS4iO319czo3OiJvcGVuMXN0IjtzOjE6IjEiO3M6Nzoib3BlbkFsbCI7czoxOiIxIjtzOjU6InN0eWxlIjtzOjk6ImFjY29yZGlvbiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7fX19czo0OiJhdHRyIjthOjc6e3M6ODoiYmdfY29sb3IiO3M6MDoiIjtzOjg6ImJnX2ltYWdlIjtzOjA6IiI7czoxMToiYmdfcG9zaXRpb24iO3M6MjI6Im5vLXJlcGVhdDtjZW50ZXIgdG9wOzsiO3M6NzoicGFkZGluZyI7czowOiIiO3M6MTM6ImNvbHVtbl9tYXJnaW4iO3M6MDoiIjtzOjE0OiJ2ZXJ0aWNhbF9hbGlnbiI7czozOiJ0b3AiO3M6NToiY2xhc3MiO3M6MDoiIjt9fX19fQ=='),
(394, 138, 'mfn-page-items-seo', 'Awards & Recognition\n\nline\n\n<div style="padding: 40px 6% 10px;"> \n<h4 align="justify">Over the years, Ranhill has garnered several noteworthy awards and accolades. These, we are pleased to accept as a testament of our continued good work and professionalism in consistently performing to the highest standards of the industry and to always preserve our integrity and reputation in providing excellent customer service to our customers.</h4>\n[divider height="30"]\n\nno-repeat;center top;;\n\nBest Companies to work for in Asia 2014: SAJ Holdings was awarded HR Asia’s Best Companies To Work For In Asia 2014.  HR Asia has selected the best 60 companies from 6,000 entries for its advancement in their workplace, culture and employee engagement \n\n\nThe Best Contractor Award 2014: Ranhill Water Services was awarded by the Sewerage Services Department for ‘The Best Contractor 2014’ on 23rd November. This award recognizes contributions and achievements in the energy, green technology and water industry.\n\n\nCarbon Awards by KeTTHA 2014: SAJ Holding Sdn Bhd, was awarded MyCarbon Awards 2014 by Ministry of Natural Resources and Environment and United Nations Development Programme ( UNDP).   SAJH had won the 2nd Runner –up in the first MY Carbon Awards. SAJH had done a research title ‘Carbon Footprint Study in 2012 to calculate Carbon Emission in SAJ for 2011.\n\nSAJH has significantly reduced on Electricity consumption and continuously effort till to-date. \n\n\nGlobal Excellence in Management Awards 2013 : SAJ Holdings Sdn Bhd (SAJH) has been conferred an honorary award of “Excellence in Change Management at GEMA 2013. This is in recognition of SAJH’s far sighted vision and being able to aggressively lead and effectively apply impactful change management skills and subsequently elevating its establishment to greater heights, being consistently placed and ranked by global class standards.\n\n\nBrandLaureate Awards 2009-2010: Ranhill was awarded the BrandLaureate Awards \n2009-2010 for best brands in Corporate Branding - Engineering & Construction. The award, received by our Chief Operating Officer, Amran Awaluddin. With this award, we hope to continue building our brand and achieve greater excellence in our journey to success.\n\n\nWaterLinks Award 2010: WaterLinks presented the first WaterLinks awards at the 2010 WaterLinks Forum in Manila, Philippines, on May 4, 2010, to recognize the outstanding achievements of water operator partnerships. Ranhill Utilities together with Davao City Water District (DCWD) of the Philippines received the WaterLinks Award for Scale-Up and Replication for reducing water losses in Davao through a Twinning programme in which Ranhill Utilities acted as a mentor to DCWD. \n\n\nGlobal Emerging Knowledge Organisation (GEKO) Award 2009: In August 2009, Ranhill was awarded a Certificate of Global Achievement – 1st Placing, Global Emerging Knowledge Organisation Award 2009, under Potential Organisation Category for adopting a structured roadmap to pioneer the Practice of Knowledge Management (“POKM”). Our subsidiary, SAJ Holdings won the Best Practicing Organisation Category in Global Achievement for its success in POKM.\n\n\nWater Inno Awards 2009: SAJ Holdings and Ranhill Water Technologies both bagged the Bronze and Gold prizes respectively at the Water Inno Awards 2009 held in conjunction with Water Malaysia 2009 Exhibition and Conference. SAJ Holdings won the Bronze in the Computer Software and Training category, for their Integrated Geographical Information System. Ranhill Water Technologies bagged the Gold prize for their Amata City Water and Wastewater Treatment Plant in Thailand for Water Conservation and Recycling.\n\n\nPromising Company Of The Year 3rd Business Of The Year Award 2008: Ranhill Bersekutu was given another accolade, the recognition of Promising Company at the SMI-SME 3rd Business of the Year Award held on 13 October 2008 in Kuala Lumpur. The award is presented to top ten outstanding companies and high achievers from all industries or enterprises. \n\n\n\nAsia Pacific Entrepreneurship (APEA) Award 2008: Ranhill Bersekutu was conferred the Outstanding Entrepreneur Award at the Asia Pacific Entrepreneurship Awards 2008 on 23 July 2008 in Kuala Lumpur. The award is presented to those outstanding companies that have demonstrated entrepreneurial attributes, including the tenacity and perseverance to continue innovating and making a difference under adverse situations and environments.\n\nAsiawater 2008 Management Excellence Award: At the Asiawater 2008 Exhibition and Conference held in Kuala Lumpur, Ranhill’s President and Chief Executive, Hamdan Mohamad, was conferred the Management Excellence Award. In recognition of \nhis contribution towards the Malaysian water industry, especially through his involvement the privatization of Johor State Water Supply.\n\nAsian Corporate Social Responsibility Award 2005: For its Six Sigma Organisational Climate project, SAJ Holdings won the Best Workplace Practices category in the Asian CSR Awards. The Project was deemed the most outstanding among 160 projects from 91 companies in 12 countries. The Award was conferred to SAJ Holdings by the Asian Institute of Management in September 2005.\n\naccordion\n\n'),
(395, 138, '_dp_original', '95'),
(396, 140, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(397, 140, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(398, 140, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(399, 140, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(400, 140, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(401, 140, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(402, 140, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(403, 140, '_wp_page_template', 'default'),
(404, 140, 'slide_template', 'default'),
(405, 140, 'mfn-post-hide-content', '0'),
(406, 140, 'mfn-post-custom-layout', '0'),
(407, 140, 'mfn-post-slider', '0'),
(408, 140, 'mfn-post-slider-layer', '0'),
(409, 140, 'mfn-post-menu', '0'),
(410, 140, 'mfn-post-one-page', '0'),
(411, 140, 'mfn-post-hide-title', '0'),
(412, 140, 'mfn-post-remove-padding', '0'),
(413, 140, 'mfn-page-items-seo', '<em><strong>PDF Version</strong></em>\r\n\r\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/sustainability-satement-2016.pdf"]\n\nno-repeat;center top;;\n\n<label class="dropDownRight pull-right">\r\n            Year  :  <select class="selectpicker dropDownArrow" data-style="btn-primary" onchange="location = this.value;">\r\n                      <option selected="selected" value="http://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-statement/">2016</option>\r\n                       <option value="http://www.investors-watch.com/wp-staging/ranhill/sustainability-statement-2015/">2015</option>\r\n         </select>\r\n        </label>\n\nright\n\nno-repeat;center top;;\n\n<em><strong>PDF Version</strong></em>\r\n\r\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/sustainability-satement-2016.pdf"]\n\nno-repeat;center top;;\n\n50px\n\n'),
(414, 140, '_edit_last', '1'),
(415, 140, 'mfn-post-sidebar', '0'),
(416, 140, 'mfn-post-sidebar2', '0'),
(417, 140, '_wpb_vc_js_status', 'false'),
(418, 140, 'mfn-post-subheader-image', ''),
(419, 140, 'mfn-page-items', 'a:2:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:1:"1";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:170:"<em><strong>PDF Version</strong></em>\n\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/sustainability-satement-2016.pdf"]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:1:"0";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:501:"<label class="dropDownRight pull-right">\n            Year  :  <select class="selectpicker dropDownArrow" data-style="btn-primary" onchange="location = this.value;">\n                      <option selected="selected" value="http://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-statement/">2016</option>\n                       <option value="http://www.investors-watch.com/wp-staging/ranhill/sustainability-statement-2015/">2015</option>\n         </select>\n        </label>\n";s:5:"align";s:5:"right";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:171:"<em><strong>PDF Version</strong></em>\n\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/sustainability-satement-2016.pdf"]\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:4:"50px";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(420, 140, '_dp_original', '110'),
(421, 140, '_thumbnail_id', '3671'),
(422, 140, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;}'),
(423, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(424, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(425, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(426, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(427, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(428, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(429, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(430, 142, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(431, 142, '_wp_page_template', 'default'),
(432, 142, 'slide_template', 'default'),
(433, 142, 'mfn-post-hide-content', '0'),
(434, 142, 'mfn-post-custom-layout', '0'),
(435, 142, 'mfn-post-slider', '0'),
(436, 142, 'mfn-post-slider-layer', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(437, 142, 'mfn-post-menu', '0'),
(438, 142, 'mfn-post-one-page', '0'),
(439, 142, 'mfn-post-hide-title', '0'),
(440, 142, 'mfn-post-remove-padding', '1'),
(441, 142, 'mfn-page-items-seo', 'Contributing towards Social Wellbeing\n\nOur Corporate Social Responsibility (CSR) initiatives are closely aligned with our core business. For the year under review, we carried out CSR activities in a number of states where we operate.\n\nline\n\n<div style="padding: 40px 6% 40px;"> \n<h2>Flood relief in Kelantan and Pahang\n</h2>\nIn January 2015, a number of teams comprising Group employees departed to Kota Bharu, Kelantan and Kuala Lipis, Pahang with two lorries loaded with donated items on a 3-day post-flood relief mission.\n\nIn response to those affected by the floods, our teams distributed the donated items. In addition, the teams also volunteered their expertise by repairing water treatment plants in Kuala Krai, Kelantan.  At the same time SAJH deployed six water tankers to assist Syarikat Air Kelantan to distribute clean water to flood victims.\n\nno-repeat;center top;;\n\ndots\n\nnarrow\n\n<div style="padding: 10px 6% 30px;"> \n<h2>Water education in Johor\n\n</h2>\nIn May 2015, the Group participated in World Water Day 2015, an annual educational event organised by SAJH. \n\nAs part of Ranhill’s ongoing commitment we are developing a more cohesive and structured approach to ensure Sustainability is adopted by every subsidiary within the Group.\n\nRanhill’s is advancing its approach based on international standards and globally recognised guidelines. The group is focusing on methods that promote an effective and comprehensive Environment, Social and Governance framework.\n\nno-repeat;center top;;\n\n'),
(442, 142, '_edit_last', '1'),
(443, 142, 'mfn-post-sidebar', '0'),
(444, 142, 'mfn-post-sidebar2', '0'),
(445, 142, '_wpb_vc_js_status', 'false'),
(446, 142, 'mfn-post-subheader-image', 'http://hdprint.com.my/ranhill/wp-content/uploads/2016/04/environment.jpg'),
(447, 142, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MjoiNTAiO3M6NzoiZGl2aWRlciI7czowOiIiO3M6MTA6Im5hdmlnYXRpb24iO3M6MDoiIjtzOjU6InN0eWxlIjtzOjA6IiI7czo1OiJjbGFzcyI7czowOiIiO3M6MTA6InNlY3Rpb25faWQiO3M6MDoiIjtzOjEwOiJ2aXNpYmlsaXR5IjtzOjA6IiI7czo0OiJoaWRlIjtzOjA6IiI7fXM6NToid3JhcHMiO2E6MTp7aTowO2E6Mzp7czo0OiJzaXplIjtzOjM6IjEvMSI7czo1OiJpdGVtcyI7YTo0OntpOjA7YTozOntzOjQ6InR5cGUiO3M6MTM6ImZhbmN5X2hlYWRpbmciO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6Mzc6IkNvbnRyaWJ1dGluZyB0b3dhcmRzIFNvY2lhbCBXZWxsYmVpbmciO3M6MjoiaDEiO3M6MToiMCI7czo0OiJpY29uIjtzOjA6IiI7czo2OiJzbG9nYW4iO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTk0OiJPdXIgQ29ycG9yYXRlIFNvY2lhbCBSZXNwb25zaWJpbGl0eSAoQ1NSKSBpbml0aWF0aXZlcyBhcmUgY2xvc2VseSBhbGlnbmVkIHdpdGggb3VyIGNvcmUgYnVzaW5lc3MuIEZvciB0aGUgeWVhciB1bmRlciByZXZpZXcsIHdlIGNhcnJpZWQgb3V0IENTUiBhY3Rpdml0aWVzIGluIGEgbnVtYmVyIG9mIHN0YXRlcyB3aGVyZSB3ZSBvcGVyYXRlLiI7czo1OiJzdHlsZSI7czo0OiJsaW5lIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fWk6MTthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjExOntzOjU6InRpdGxlIjtzOjA6IiI7czo3OiJjb250ZW50IjtzOjYxODoiPGRpdiBzdHlsZT0icGFkZGluZzogNDBweCA2JSA0MHB4OyI+IA0KPGgyPkZsb29kIHJlbGllZiBpbiBLZWxhbnRhbiBhbmQgUGFoYW5nDQo8L2gyPg0KSW4gSmFudWFyeSAyMDE1LCBhIG51bWJlciBvZiB0ZWFtcyBjb21wcmlzaW5nIEdyb3VwIGVtcGxveWVlcyBkZXBhcnRlZCB0byBLb3RhIEJoYXJ1LCBLZWxhbnRhbiBhbmQgS3VhbGEgTGlwaXMsIFBhaGFuZyB3aXRoIHR3byBsb3JyaWVzIGxvYWRlZCB3aXRoIGRvbmF0ZWQgaXRlbXMgb24gYSAzLWRheSBwb3N0LWZsb29kIHJlbGllZiBtaXNzaW9uLg0KDQpJbiByZXNwb25zZSB0byB0aG9zZSBhZmZlY3RlZCBieSB0aGUgZmxvb2RzLCBvdXIgdGVhbXMgZGlzdHJpYnV0ZWQgdGhlIGRvbmF0ZWQgaXRlbXMuIEluIGFkZGl0aW9uLCB0aGUgdGVhbXMgYWxzbyB2b2x1bnRlZXJlZCB0aGVpciBleHBlcnRpc2UgYnkgcmVwYWlyaW5nIHdhdGVyIHRyZWF0bWVudCBwbGFudHMgaW4gS3VhbGEgS3JhaSwgS2VsYW50YW4uICBBdCB0aGUgc2FtZSB0aW1lIFNBSkggZGVwbG95ZWQgc2l4IHdhdGVyIHRhbmtlcnMgdG8gYXNzaXN0IFN5YXJpa2F0IEFpciBLZWxhbnRhbiB0byBkaXN0cmlidXRlIGNsZWFuIHdhdGVyIHRvIGZsb29kIHZpY3RpbXMuIjtzOjU6ImFsaWduIjtzOjA6IiI7czo5OiJjb2x1bW5fYmciO3M6MDoiIjtzOjg6ImJnX2ltYWdlIjtzOjA6IiI7czoxMToiYmdfcG9zaXRpb24iO3M6MjI6Im5vLXJlcGVhdDtjZW50ZXIgdG9wOzsiO3M6MTM6Im1hcmdpbl9ib3R0b20iO3M6MDoiIjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjA6IiI7fX1pOjI7YTozOntzOjQ6InR5cGUiO3M6NzoiZGl2aWRlciI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6NTp7czo2OiJoZWlnaHQiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjQ6ImRvdHMiO3M6NDoibGluZSI7czo2OiJuYXJyb3ciO3M6MTA6InRoZW1lY29sb3IiO3M6MToiMCI7czo3OiJjbGFzc2VzIjtzOjA6IiI7fX1pOjM7YTozOntzOjQ6InR5cGUiO3M6NjoiY29sdW1uIjtzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjY6ImZpZWxkcyI7YToxMTp7czo1OiJ0aXRsZSI7czowOiIiO3M6NzoiY29udGVudCI7czo2MDA6IjxkaXYgc3R5bGU9InBhZGRpbmc6IDEwcHggNiUgMzBweDsiPiANCjxoMj5XYXRlciBlZHVjYXRpb24gaW4gSm9ob3INCg0KPC9oMj4NCkluIE1heSAyMDE1LCB0aGUgR3JvdXAgcGFydGljaXBhdGVkIGluIFdvcmxkIFdhdGVyIERheSAyMDE1LCBhbiBhbm51YWwgZWR1Y2F0aW9uYWwgZXZlbnQgb3JnYW5pc2VkIGJ5IFNBSkguIA0KDQpBcyBwYXJ0IG9mIFJhbmhpbGzigJlzIG9uZ29pbmcgY29tbWl0bWVudCB3ZSBhcmUgZGV2ZWxvcGluZyBhIG1vcmUgY29oZXNpdmUgYW5kIHN0cnVjdHVyZWQgYXBwcm9hY2ggdG8gZW5zdXJlIFN1c3RhaW5hYmlsaXR5IGlzIGFkb3B0ZWQgYnkgZXZlcnkgc3Vic2lkaWFyeSB3aXRoaW4gdGhlIEdyb3VwLg0KDQpSYW5oaWxs4oCZcyBpcyBhZHZhbmNpbmcgaXRzIGFwcHJvYWNoIGJhc2VkIG9uIGludGVybmF0aW9uYWwgc3RhbmRhcmRzIGFuZCBnbG9iYWxseSByZWNvZ25pc2VkIGd1aWRlbGluZXMuIFRoZSBncm91cCBpcyBmb2N1c2luZyBvbiBtZXRob2RzIHRoYXQgcHJvbW90ZSBhbiBlZmZlY3RpdmUgYW5kIGNvbXByZWhlbnNpdmUgRW52aXJvbm1lbnQsIFNvY2lhbCBhbmQgR292ZXJuYW5jZSBmcmFtZXdvcmsuDQoNCiI7czo1OiJhbGlnbiI7czowOiIiO3M6OToiY29sdW1uX2JnIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEzOiJtYXJnaW5fYm90dG9tIjtzOjA6IiI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czo3OiJhbmltYXRlIjtzOjA6IiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7czo1OiJzdHlsZSI7czowOiIiO319fXM6NDoiYXR0ciI7YTo3OntzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjEzOiJjb2x1bW5fbWFyZ2luIjtzOjA6IiI7czoxNDoidmVydGljYWxfYWxpZ24iO3M6MzoidG9wIjtzOjU6ImNsYXNzIjtzOjA6IiI7fX19fX0='),
(448, 142, '_dp_original', '140'),
(449, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(450, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(451, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(452, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(453, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(454, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(455, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(456, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(457, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(458, 145, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(459, 145, '_wp_page_template', 'default'),
(460, 145, 'slide_template', ''),
(461, 145, 'mfn-post-hide-content', '0'),
(462, 145, 'mfn-post-custom-layout', '0'),
(463, 145, 'mfn-post-slider', '0'),
(464, 145, 'mfn-post-slider-layer', '0'),
(465, 145, 'mfn-post-menu', '0'),
(466, 145, 'mfn-post-one-page', '0'),
(467, 145, 'mfn-post-hide-title', '0'),
(468, 145, 'mfn-post-remove-padding', '1'),
(469, 145, 'mfn-page-items-seo', '<div style="padding: 40px 6% 10px;">\n<h2>How it was on the\nbeginning</h2>\n<h4>Sed id nisi lectus! Fusce ac magna gravida, tincidunt ipsum ac<br />malesuada ante! Nam vel facilisis neque.</h4>\n[divider height="30"]\nSed id nisi lectus! Fusce ac magna gravida, tincidunt ipsum ac\nmalesuada ante! Nam vel facilisis neque.\n[divider height="30"]\n\n\nProin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Telis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat velit.\n[divider height="30"]\n\nAenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\n[divider height="30"]\nMorbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam.</div>\n\n<div style="padding: 40px 6% 10px;">\n<h2>We provide simple<br />solutions to make life easier</h2>\n<h4>Sed id nisi lectus! Fusce ac magna gravida, tincidunt ipsum ac<br />malesuada ante! Nam vel facilisis neque.</h4>\n[divider height="30"]\n\nAenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo.\n[divider height="30"]\nNullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque.\n[divider height="30"]\nNam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim.\n</div>\n\nHeading\n\n<h2 style="color: #fff;">Become our partner</h2>\n<h3 style="color: #fff; margin: 0 7% 20px;">Psum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.</h3>\n[button title="more details" link="#"  color="#ff0000" font_color="#ffffff" large="1"]\n\ncenter\n\n'),
(470, 145, '_edit_last', '1'),
(471, 145, 'mfn-post-sidebar', '0'),
(472, 145, 'mfn-post-sidebar2', '0'),
(473, 145, '_wpb_vc_js_status', 'false'),
(474, 145, 'mfn-post-subheader-image', 'http://hdprint.com.my/ranhill/wp-content/uploads/2016/04/environment.jpg'),
(475, 145, 'mfn-page-items', 'YToyOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI5MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MjoiNTAiO3M6NzoiZGl2aWRlciI7czowOiIiO3M6MTA6Im5hdmlnYXRpb24iO3M6MDoiIjtzOjU6InN0eWxlIjtzOjEwOiJmdWxsLXdpZHRoIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjI6e2k6MDthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzIiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTM4ODoiPGRpdiBzdHlsZT0icGFkZGluZzogNDBweCA2JSAxMHB4OyI+IA0KPGgyPkhvdyBpdCB3YXMgb24gdGhlDQpiZWdpbm5pbmc8L2gyPg0KPGg0PlNlZCBpZCBuaXNpIGxlY3R1cyEgRnVzY2UgYWMgbWFnbmEgZ3JhdmlkYSwgdGluY2lkdW50IGlwc3VtIGFjPGJyIC8+bWFsZXN1YWRhIGFudGUhIE5hbSB2ZWwgZmFjaWxpc2lzIG5lcXVlLjwvaDQ+DQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NClNlZCBpZCBuaXNpIGxlY3R1cyEgRnVzY2UgYWMgbWFnbmEgZ3JhdmlkYSwgdGluY2lkdW50IGlwc3VtIGFjDQptYWxlc3VhZGEgYW50ZSEgTmFtIHZlbCBmYWNpbGlzaXMgbmVxdWUuDQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NCg0KDQpQcm9pbiBjb25kaW1lbnR1bSBmZXJtZW50dW0gbnVuYy4gRXRpYW0gcGhhcmV0cmEsIGVyYXQgc2VkIGZlcm1lbnR1bSBmZXVnaWF0LCB2ZWxpdCBtYXVyaXMgZWdlc3RhcyBxdWFtLCB1dCBhbGlxdWFtIG1hc3NhIG5pc2wgcXVpcyBuZXF1ZS4gU3VzcGVuZGlzc2UgaW4gb3JjaSBlbmltLiBUZWxpcyBkYXBpYnVzIGNvbmRpbWVudHVtIHNpdCBhbWV0IGEgYXVndWUuIFNlZCBub24gbmVxdWUgZWxpdC4gU2VkIHV0IGltcGVyZGlldCBuaXNpLiBQcm9pbiBjb25kaW1lbnR1bSBmZXJtZW50dW0gbnVuYy4gRXRpYW0gcGhhcmV0cmEsIGVyYXQgc2VkIGZlcm1lbnR1bSBmZXVnaWF0IHZlbGl0Lg0KW2RpdmlkZXIgaGVpZ2h0PSIzMCJdDQoNCkFlbmVhbiBzb2xsaWNpdHVkaW4sIGxvcmVtIHF1aXMgYmliZW5kdW0gYXVjdG9yLCBuaXNpIGVsaXQgY29uc2VxdWF0IGlwc3VtLCBuZWMgc2FnaXR0aXMgc2VtIG5pYmggaWQgZWxpdC4gRHVpcyBzZWQgb2RpbyBzaXQgYW1ldCBuaWJoIHZ1bHB1dGF0ZSBjdXJzdXMgYSBzaXQgYW1ldCBtYXVyaXMuDQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NCk1vcmJpIGFjY3Vtc2FuIGlwc3VtIHZlbGl0LiBOYW0gbmVjIHRlbGx1cyBhIG9kaW8gdGluY2lkdW50IGF1Y3RvciBhIG9ybmFyZSBvZGlvLiBTZWQgbm9uIG1hdXJpcyB2aXRhZSBlcmF0IGNvbnNlcXVhdCBhdWN0b3IgZXUgaW4gZWxpdC4gQ2xhc3MgYXB0ZW50IHRhY2l0aSBzb2Npb3NxdSBhZCBsaXRvcmEgdG9ycXVlbnQgcGVyIGNvbnViaWEgbm9zdHJhLCBwZXIgaW5jZXB0b3MgaGltZW5hZW9zLiBNYXVyaXMgaW4gZXJhdCBqdXN0by4gTnVsbGFtIGFjIHVybmEgZXUgZmVsaXMgZGFwaWJ1cyBjb25kaW1lbnR1bSBzaXQgYW1ldCBhIGF1Z3VlLiBTZWQgbm9uIG5lcXVlIGVsaXQuIFNlZCB1dCBpbXBlcmRpZXQgbmlzaS4gUHJvaW4gY29uZGltZW50dW0gZmVybWVudHVtIG51bmMuIEV0aWFtIHBoYXJldHJhLCBlcmF0IHNlZCBmZXJtZW50dW0gZmV1Z2lhdCwgdmVsaXQgbWF1cmlzIGVnZXN0YXMgcXVhbSwgdXQgYWxpcXVhbS48L2Rpdj4iO3M6NToiYWxpZ24iO3M6MDoiIjtzOjk6ImNvbHVtbl9iZyI7czowOiIiO3M6MTM6Im1hcmdpbl9ib3R0b20iO3M6MDoiIjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fWk6MTthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzIiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTQ2MDoiPGRpdiBzdHlsZT0icGFkZGluZzogNDBweCA2JSAxMHB4OyI+IA0KPGgyPldlIHByb3ZpZGUgc2ltcGxlPGJyIC8+c29sdXRpb25zIHRvIG1ha2UgbGlmZSBlYXNpZXI8L2gyPg0KPGg0PlNlZCBpZCBuaXNpIGxlY3R1cyEgRnVzY2UgYWMgbWFnbmEgZ3JhdmlkYSwgdGluY2lkdW50IGlwc3VtIGFjPGJyIC8+bWFsZXN1YWRhIGFudGUhIE5hbSB2ZWwgZmFjaWxpc2lzIG5lcXVlLjwvaDQ+DQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NCg0KQWVuZWFuIHNvbGxpY2l0dWRpbiwgbG9yZW0gcXVpcyBiaWJlbmR1bSBhdWN0b3IsIG5pc2kgZWxpdCBjb25zZXF1YXQgaXBzdW0sIG5lYyBzYWdpdHRpcyBzZW0gbmliaCBpZCBlbGl0LiBEdWlzIHNlZCBvZGlvIHNpdCBhbWV0IG5pYmggdnVscHV0YXRlIGN1cnN1cyBhIHNpdCBhbWV0IG1hdXJpcy4gTW9yYmkgYWNjdW1zYW4gaXBzdW0gdmVsaXQuIE5hbSBuZWMgdGVsbHVzIGEgb2RpbyB0aW5jaWR1bnQgYXVjdG9yIGEgb3JuYXJlIG9kaW8uIFNlZCBub24gbWF1cmlzIHZpdGFlIGVyYXQgY29uc2VxdWF0IGF1Y3RvciBldSBpbiBlbGl0LiBDbGFzcyBhcHRlbnQgdGFjaXRpIHNvY2lvc3F1IGFkIGxpdG9yYSB0b3JxdWVudCBwZXIgY29udWJpYSBub3N0cmEsIHBlciBpbmNlcHRvcyBoaW1lbmFlb3MuIE1hdXJpcyBpbiBlcmF0IGp1c3RvLg0KW2RpdmlkZXIgaGVpZ2h0PSIzMCJdDQpOdWxsYW0gYWMgdXJuYSBldSBmZWxpcyBkYXBpYnVzIGNvbmRpbWVudHVtIHNpdCBhbWV0IGEgYXVndWUuIFNlZCBub24gbmVxdWUgZWxpdC4gU2VkIHV0IGltcGVyZGlldCBuaXNpLiBQcm9pbiBjb25kaW1lbnR1bSBmZXJtZW50dW0gbnVuYy4gRXRpYW0gcGhhcmV0cmEsIGVyYXQgc2VkIGZlcm1lbnR1bSBmZXVnaWF0LCB2ZWxpdCBtYXVyaXMgZWdlc3RhcyBxdWFtLCB1dCBhbGlxdWFtIG1hc3NhIG5pc2wgcXVpcyBuZXF1ZS4NCltkaXZpZGVyIGhlaWdodD0iMzAiXQ0KTmFtIG5lYyB0ZWxsdXMgYSBvZGlvIHRpbmNpZHVudCBhdWN0b3IgYSBvcm5hcmUgb2Rpby4gU2VkIG5vbiBtYXVyaXMgdml0YWUgZXJhdCBjb25zZXF1YXQgYXVjdG9yIGV1IGluIGVsaXQuIENsYXNzIGFwdGVudCB0YWNpdGkgc29jaW9zcXUgYWQgbGl0b3JhIHRvcnF1ZW50IHBlciBjb251YmlhIG5vc3RyYSwgcGVyIGluY2VwdG9zIGhpbWVuYWVvcy4gTWF1cmlzIGluIGVyYXQganVzdG8uIE51bGxhbSBhYyB1cm5hIGV1IGZlbGlzIGRhcGlidXMgY29uZGltZW50dW0gc2l0IGFtZXQgYSBhdWd1ZS4gU2VkIG5vbiBuZXF1ZSBlbGl0LiBTZWQgdXQgaW1wZXJkaWV0IG5pc2kuIFByb2luIGNvbmRpbWVudHVtIGZlcm1lbnR1bSBudW5jLiBFdGlhbSBwaGFyZXRyYSwgZXJhdCBzZWQgZmVybWVudHVtIGZldWdpYXQsIHZlbGl0IG1hdXJpcyBlZ2VzdGFzIHF1YW0sIHV0IGFsaXF1YW0gbWFzc2EgbmlzbCBxdWlzIG5lcXVlLiBTdXNwZW5kaXNzZSBpbiBvcmNpIGVuaW0uDQo8L2Rpdj4iO3M6NToiYWxpZ24iO3M6MDoiIjtzOjk6ImNvbHVtbl9iZyI7czowOiIiO3M6MTM6Im1hcmdpbl9ib3R0b20iO3M6MDoiIjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fX1zOjQ6ImF0dHIiO2E6Njp7czo4OiJiZ19jb2xvciI7czowOiIiO3M6ODoiYmdfaW1hZ2UiO3M6MDoiIjtzOjExOiJiZ19wb3NpdGlvbiI7czoyMjoibm8tcmVwZWF0O2NlbnRlciB0b3A7OyI7czoxMzoiY29sdW1uX21hcmdpbiI7czowOiIiO3M6NzoicGFkZGluZyI7czowOiIiO3M6NToiY2xhc3MiO3M6MDoiIjt9fX19aToxO2E6Mjp7czo0OiJhdHRyIjthOjE1OntzOjU6InRpdGxlIjtzOjA6IiI7czo4OiJiZ19jb2xvciI7czo3OiIjNGE0YTRhIjtzOjg6ImJnX2ltYWdlIjtzOjA6IiI7czoxMToiYmdfcG9zaXRpb24iO3M6MjI6Im5vLXJlcGVhdDtjZW50ZXIgdG9wOzsiO3M6MTI6ImJnX3ZpZGVvX21wNCI7czowOiIiO3M6MTI6ImJnX3ZpZGVvX29ndiI7czowOiIiO3M6MTE6InBhZGRpbmdfdG9wIjtzOjI6IjMwIjtzOjE0OiJwYWRkaW5nX2JvdHRvbSI7czoyOiI0MCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6NzoiSGVhZGluZyI7czo3OiJjb250ZW50IjtzOjMxNToiPGgyIHN0eWxlPSJjb2xvcjogI2ZmZjsiPkJlY29tZSBvdXIgcGFydG5lcjwvaDI+DQo8aDMgc3R5bGU9ImNvbG9yOiAjZmZmOyBtYXJnaW46IDAgNyUgMjBweDsiPlBzdW0sIG5lYyBzYWdpdHRpcyBzZW0gbmliaCBpZCBlbGl0LiBEdWlzIHNlZCBvZGlvIHNpdCBhbWV0IG5pYmggdnVscHV0YXRlIGN1cnN1cyBhIHNpdCBhbWV0IG1hdXJpcy4gTW9yYmkgYWNjdW1zYW4gaXBzdW0gdmVsaXQuPC9oMz4NCltidXR0b24gdGl0bGU9Im1vcmUgZGV0YWlscyIgbGluaz0iIyIgIGNvbG9yPSIjZmYwMDAwIiBmb250X2NvbG9yPSIjZmZmZmZmIiBsYXJnZT0iMSJdIjtzOjU6ImFsaWduIjtzOjY6ImNlbnRlciI7czo5OiJjb2x1bW5fYmciO3M6MDoiIjtzOjEzOiJtYXJnaW5fYm90dG9tIjtzOjA6IiI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czo3OiJhbmltYXRlIjtzOjA6IiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7fX19czo0OiJhdHRyIjthOjY6e3M6ODoiYmdfY29sb3IiO3M6MDoiIjtzOjg6ImJnX2ltYWdlIjtzOjA6IiI7czoxMToiYmdfcG9zaXRpb24iO3M6MjI6Im5vLXJlcGVhdDtjZW50ZXIgdG9wOzsiO3M6MTM6ImNvbHVtbl9tYXJnaW4iO3M6MDoiIjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7fX19fX0='),
(476, 145, '_dp_original', '143'),
(477, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(478, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(479, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(480, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(481, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(482, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(483, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(484, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(485, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(486, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(487, 148, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(488, 148, '_wp_page_template', 'default'),
(489, 148, 'slide_template', ''),
(490, 148, 'mfn-post-hide-content', '0'),
(491, 148, 'mfn-post-custom-layout', '0'),
(492, 148, 'mfn-post-slider', '0'),
(493, 148, 'mfn-post-slider-layer', '0'),
(494, 148, 'mfn-post-menu', '0'),
(495, 148, 'mfn-post-one-page', '0'),
(496, 148, 'mfn-post-hide-title', '0'),
(497, 148, 'mfn-post-remove-padding', '1'),
(498, 148, 'mfn-page-items-seo', '<div style="padding: 40px 6% 10px;">\n<h2>How it was on the\nbeginning</h2>\n<h4>Sed id nisi lectus! Fusce ac magna gravida, tincidunt ipsum ac<br />malesuada ante! Nam vel facilisis neque.</h4>\n[divider height="30"]\nSed id nisi lectus! Fusce ac magna gravida, tincidunt ipsum ac\nmalesuada ante! Nam vel facilisis neque.\n[divider height="30"]\n\n\nProin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim. Telis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat velit.\n[divider height="30"]\n\nAenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\n[divider height="30"]\nMorbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam.</div>\n\n<div style="padding: 40px 6% 10px;">\n<h2>We provide simple<br />solutions to make life easier</h2>\n<h4>Sed id nisi lectus! Fusce ac magna gravida, tincidunt ipsum ac<br />malesuada ante! Nam vel facilisis neque.</h4>\n[divider height="30"]\n\nAenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo.\n[divider height="30"]\nNullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque.\n[divider height="30"]\nNam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliquam massa nisl quis neque. Suspendisse in orci enim.\n</div>\n\nHeading\n\n<h2 style="color: #fff;">Become our partner</h2>\n<h3 style="color: #fff; margin: 0 7% 20px;">Psum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.</h3>\n[button title="more details" link="#"  color="#ff0000" font_color="#ffffff" large="1"]\n\ncenter\n\n'),
(499, 148, '_edit_last', '1'),
(500, 148, 'mfn-post-sidebar', '0'),
(501, 148, 'mfn-post-sidebar2', '0'),
(502, 148, '_wpb_vc_js_status', 'false'),
(503, 148, 'mfn-post-subheader-image', 'http://hdprint.com.my/ranhill/wp-content/uploads/2016/04/environment.jpg'),
(504, 148, 'mfn-page-items', 'YToyOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI5MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MjoiNTAiO3M6NzoiZGl2aWRlciI7czowOiIiO3M6MTA6Im5hdmlnYXRpb24iO3M6MDoiIjtzOjU6InN0eWxlIjtzOjEwOiJmdWxsLXdpZHRoIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjI6e2k6MDthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzIiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTM4ODoiPGRpdiBzdHlsZT0icGFkZGluZzogNDBweCA2JSAxMHB4OyI+IA0KPGgyPkhvdyBpdCB3YXMgb24gdGhlDQpiZWdpbm5pbmc8L2gyPg0KPGg0PlNlZCBpZCBuaXNpIGxlY3R1cyEgRnVzY2UgYWMgbWFnbmEgZ3JhdmlkYSwgdGluY2lkdW50IGlwc3VtIGFjPGJyIC8+bWFsZXN1YWRhIGFudGUhIE5hbSB2ZWwgZmFjaWxpc2lzIG5lcXVlLjwvaDQ+DQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NClNlZCBpZCBuaXNpIGxlY3R1cyEgRnVzY2UgYWMgbWFnbmEgZ3JhdmlkYSwgdGluY2lkdW50IGlwc3VtIGFjDQptYWxlc3VhZGEgYW50ZSEgTmFtIHZlbCBmYWNpbGlzaXMgbmVxdWUuDQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NCg0KDQpQcm9pbiBjb25kaW1lbnR1bSBmZXJtZW50dW0gbnVuYy4gRXRpYW0gcGhhcmV0cmEsIGVyYXQgc2VkIGZlcm1lbnR1bSBmZXVnaWF0LCB2ZWxpdCBtYXVyaXMgZWdlc3RhcyBxdWFtLCB1dCBhbGlxdWFtIG1hc3NhIG5pc2wgcXVpcyBuZXF1ZS4gU3VzcGVuZGlzc2UgaW4gb3JjaSBlbmltLiBUZWxpcyBkYXBpYnVzIGNvbmRpbWVudHVtIHNpdCBhbWV0IGEgYXVndWUuIFNlZCBub24gbmVxdWUgZWxpdC4gU2VkIHV0IGltcGVyZGlldCBuaXNpLiBQcm9pbiBjb25kaW1lbnR1bSBmZXJtZW50dW0gbnVuYy4gRXRpYW0gcGhhcmV0cmEsIGVyYXQgc2VkIGZlcm1lbnR1bSBmZXVnaWF0IHZlbGl0Lg0KW2RpdmlkZXIgaGVpZ2h0PSIzMCJdDQoNCkFlbmVhbiBzb2xsaWNpdHVkaW4sIGxvcmVtIHF1aXMgYmliZW5kdW0gYXVjdG9yLCBuaXNpIGVsaXQgY29uc2VxdWF0IGlwc3VtLCBuZWMgc2FnaXR0aXMgc2VtIG5pYmggaWQgZWxpdC4gRHVpcyBzZWQgb2RpbyBzaXQgYW1ldCBuaWJoIHZ1bHB1dGF0ZSBjdXJzdXMgYSBzaXQgYW1ldCBtYXVyaXMuDQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NCk1vcmJpIGFjY3Vtc2FuIGlwc3VtIHZlbGl0LiBOYW0gbmVjIHRlbGx1cyBhIG9kaW8gdGluY2lkdW50IGF1Y3RvciBhIG9ybmFyZSBvZGlvLiBTZWQgbm9uIG1hdXJpcyB2aXRhZSBlcmF0IGNvbnNlcXVhdCBhdWN0b3IgZXUgaW4gZWxpdC4gQ2xhc3MgYXB0ZW50IHRhY2l0aSBzb2Npb3NxdSBhZCBsaXRvcmEgdG9ycXVlbnQgcGVyIGNvbnViaWEgbm9zdHJhLCBwZXIgaW5jZXB0b3MgaGltZW5hZW9zLiBNYXVyaXMgaW4gZXJhdCBqdXN0by4gTnVsbGFtIGFjIHVybmEgZXUgZmVsaXMgZGFwaWJ1cyBjb25kaW1lbnR1bSBzaXQgYW1ldCBhIGF1Z3VlLiBTZWQgbm9uIG5lcXVlIGVsaXQuIFNlZCB1dCBpbXBlcmRpZXQgbmlzaS4gUHJvaW4gY29uZGltZW50dW0gZmVybWVudHVtIG51bmMuIEV0aWFtIHBoYXJldHJhLCBlcmF0IHNlZCBmZXJtZW50dW0gZmV1Z2lhdCwgdmVsaXQgbWF1cmlzIGVnZXN0YXMgcXVhbSwgdXQgYWxpcXVhbS48L2Rpdj4iO3M6NToiYWxpZ24iO3M6MDoiIjtzOjk6ImNvbHVtbl9iZyI7czowOiIiO3M6MTM6Im1hcmdpbl9ib3R0b20iO3M6MDoiIjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fWk6MTthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzIiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTQ2MDoiPGRpdiBzdHlsZT0icGFkZGluZzogNDBweCA2JSAxMHB4OyI+IA0KPGgyPldlIHByb3ZpZGUgc2ltcGxlPGJyIC8+c29sdXRpb25zIHRvIG1ha2UgbGlmZSBlYXNpZXI8L2gyPg0KPGg0PlNlZCBpZCBuaXNpIGxlY3R1cyEgRnVzY2UgYWMgbWFnbmEgZ3JhdmlkYSwgdGluY2lkdW50IGlwc3VtIGFjPGJyIC8+bWFsZXN1YWRhIGFudGUhIE5hbSB2ZWwgZmFjaWxpc2lzIG5lcXVlLjwvaDQ+DQpbZGl2aWRlciBoZWlnaHQ9IjMwIl0NCg0KQWVuZWFuIHNvbGxpY2l0dWRpbiwgbG9yZW0gcXVpcyBiaWJlbmR1bSBhdWN0b3IsIG5pc2kgZWxpdCBjb25zZXF1YXQgaXBzdW0sIG5lYyBzYWdpdHRpcyBzZW0gbmliaCBpZCBlbGl0LiBEdWlzIHNlZCBvZGlvIHNpdCBhbWV0IG5pYmggdnVscHV0YXRlIGN1cnN1cyBhIHNpdCBhbWV0IG1hdXJpcy4gTW9yYmkgYWNjdW1zYW4gaXBzdW0gdmVsaXQuIE5hbSBuZWMgdGVsbHVzIGEgb2RpbyB0aW5jaWR1bnQgYXVjdG9yIGEgb3JuYXJlIG9kaW8uIFNlZCBub24gbWF1cmlzIHZpdGFlIGVyYXQgY29uc2VxdWF0IGF1Y3RvciBldSBpbiBlbGl0LiBDbGFzcyBhcHRlbnQgdGFjaXRpIHNvY2lvc3F1IGFkIGxpdG9yYSB0b3JxdWVudCBwZXIgY29udWJpYSBub3N0cmEsIHBlciBpbmNlcHRvcyBoaW1lbmFlb3MuIE1hdXJpcyBpbiBlcmF0IGp1c3RvLg0KW2RpdmlkZXIgaGVpZ2h0PSIzMCJdDQpOdWxsYW0gYWMgdXJuYSBldSBmZWxpcyBkYXBpYnVzIGNvbmRpbWVudHVtIHNpdCBhbWV0IGEgYXVndWUuIFNlZCBub24gbmVxdWUgZWxpdC4gU2VkIHV0IGltcGVyZGlldCBuaXNpLiBQcm9pbiBjb25kaW1lbnR1bSBmZXJtZW50dW0gbnVuYy4gRXRpYW0gcGhhcmV0cmEsIGVyYXQgc2VkIGZlcm1lbnR1bSBmZXVnaWF0LCB2ZWxpdCBtYXVyaXMgZWdlc3RhcyBxdWFtLCB1dCBhbGlxdWFtIG1hc3NhIG5pc2wgcXVpcyBuZXF1ZS4NCltkaXZpZGVyIGhlaWdodD0iMzAiXQ0KTmFtIG5lYyB0ZWxsdXMgYSBvZGlvIHRpbmNpZHVudCBhdWN0b3IgYSBvcm5hcmUgb2Rpby4gU2VkIG5vbiBtYXVyaXMgdml0YWUgZXJhdCBjb25zZXF1YXQgYXVjdG9yIGV1IGluIGVsaXQuIENsYXNzIGFwdGVudCB0YWNpdGkgc29jaW9zcXUgYWQgbGl0b3JhIHRvcnF1ZW50IHBlciBjb251YmlhIG5vc3RyYSwgcGVyIGluY2VwdG9zIGhpbWVuYWVvcy4gTWF1cmlzIGluIGVyYXQganVzdG8uIE51bGxhbSBhYyB1cm5hIGV1IGZlbGlzIGRhcGlidXMgY29uZGltZW50dW0gc2l0IGFtZXQgYSBhdWd1ZS4gU2VkIG5vbiBuZXF1ZSBlbGl0LiBTZWQgdXQgaW1wZXJkaWV0IG5pc2kuIFByb2luIGNvbmRpbWVudHVtIGZlcm1lbnR1bSBudW5jLiBFdGlhbSBwaGFyZXRyYSwgZXJhdCBzZWQgZmVybWVudHVtIGZldWdpYXQsIHZlbGl0IG1hdXJpcyBlZ2VzdGFzIHF1YW0sIHV0IGFsaXF1YW0gbWFzc2EgbmlzbCBxdWlzIG5lcXVlLiBTdXNwZW5kaXNzZSBpbiBvcmNpIGVuaW0uDQo8L2Rpdj4iO3M6NToiYWxpZ24iO3M6MDoiIjtzOjk6ImNvbHVtbl9iZyI7czowOiIiO3M6MTM6Im1hcmdpbl9ib3R0b20iO3M6MDoiIjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fX1zOjQ6ImF0dHIiO2E6Njp7czo4OiJiZ19jb2xvciI7czowOiIiO3M6ODoiYmdfaW1hZ2UiO3M6MDoiIjtzOjExOiJiZ19wb3NpdGlvbiI7czoyMjoibm8tcmVwZWF0O2NlbnRlciB0b3A7OyI7czoxMzoiY29sdW1uX21hcmdpbiI7czowOiIiO3M6NzoicGFkZGluZyI7czowOiIiO3M6NToiY2xhc3MiO3M6MDoiIjt9fX19aToxO2E6Mjp7czo0OiJhdHRyIjthOjE1OntzOjU6InRpdGxlIjtzOjA6IiI7czo4OiJiZ19jb2xvciI7czo3OiIjNGE0YTRhIjtzOjg6ImJnX2ltYWdlIjtzOjA6IiI7czoxMToiYmdfcG9zaXRpb24iO3M6MjI6Im5vLXJlcGVhdDtjZW50ZXIgdG9wOzsiO3M6MTI6ImJnX3ZpZGVvX21wNCI7czowOiIiO3M6MTI6ImJnX3ZpZGVvX29ndiI7czowOiIiO3M6MTE6InBhZGRpbmdfdG9wIjtzOjI6IjMwIjtzOjE0OiJwYWRkaW5nX2JvdHRvbSI7czoyOiI0MCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo2OiJjb2x1bW4iO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjg6e3M6NToidGl0bGUiO3M6NzoiSGVhZGluZyI7czo3OiJjb250ZW50IjtzOjMxNToiPGgyIHN0eWxlPSJjb2xvcjogI2ZmZjsiPkJlY29tZSBvdXIgcGFydG5lcjwvaDI+DQo8aDMgc3R5bGU9ImNvbG9yOiAjZmZmOyBtYXJnaW46IDAgNyUgMjBweDsiPlBzdW0sIG5lYyBzYWdpdHRpcyBzZW0gbmliaCBpZCBlbGl0LiBEdWlzIHNlZCBvZGlvIHNpdCBhbWV0IG5pYmggdnVscHV0YXRlIGN1cnN1cyBhIHNpdCBhbWV0IG1hdXJpcy4gTW9yYmkgYWNjdW1zYW4gaXBzdW0gdmVsaXQuPC9oMz4NCltidXR0b24gdGl0bGU9Im1vcmUgZGV0YWlscyIgbGluaz0iIyIgIGNvbG9yPSIjZmYwMDAwIiBmb250X2NvbG9yPSIjZmZmZmZmIiBsYXJnZT0iMSJdIjtzOjU6ImFsaWduIjtzOjY6ImNlbnRlciI7czo5OiJjb2x1bW5fYmciO3M6MDoiIjtzOjEzOiJtYXJnaW5fYm90dG9tIjtzOjA6IiI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czo3OiJhbmltYXRlIjtzOjA6IiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7fX19czo0OiJhdHRyIjthOjY6e3M6ODoiYmdfY29sb3IiO3M6MDoiIjtzOjg6ImJnX2ltYWdlIjtzOjA6IiI7czoxMToiYmdfcG9zaXRpb24iO3M6MjI6Im5vLXJlcGVhdDtjZW50ZXIgdG9wOzsiO3M6MTM6ImNvbHVtbl9tYXJnaW4iO3M6MDoiIjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7fX19fX0='),
(505, 148, '_dp_original', '145'),
(506, 211, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(507, 211, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(508, 211, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(509, 211, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(510, 211, '_edit_last', '1'),
(511, 211, '_wp_page_template', 'default'),
(512, 211, 'slide_template', 'default'),
(513, 211, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:100:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/tan-sri-mohamed-big.jpg";s:5:"title";s:27:"TAN SRI MOHAMED AZMAN YAHYA";s:8:"subtitle";s:43:"Chairman/Independent Non-Executive Director";s:5:"phone";s:0:"";s:7:"content";s:2041:"<h5>TAN SRI AZMAN YAHYA, aged 55, was appointed on our Board as the Chairman/Non-Independent Non-Executive Director on 1 September 2014 and re-designated as Chairman/Independent Non-Executive Director with effect from 02 February 2019.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li> Strategy And Investment Committee (Chairman)</li>\n  <li>Nominating And Remuneration Committee (Member)</li>  \n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Science (First Class Honours) degree in Economics from the London School of Economics and Political Science</li>\n  <li>Member of the Institute of Chartered Accountants in England and Wales</li> \n <li>Fellow of the Institute of Bankers</li> \n <li>Member of the Malaysian Institute of Accountants</li>\n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\nTan Sri Azman Yahya started his career at KPMG in London.\nIn 1988 he returned to Malaysia where he built his career in\ninvestment banking to become the Chief Executive of Amanah\nMerchant Bank. During the Asian Financial Crisis in 1998, Tan Sri\nAzman was tasked by the Malaysian Government to set-up and\nhead Danaharta, the national asset management company to\nacquire, manage and resolve the non-performing loans in the\nbanking sector. He was also the Chairman of Corporate Debt\nRestructuring Committee, set up by Bank Negara Malaysia, to\nmediate and assist in debt restructuring programmes of viable\ncompanies. In 2003, he returned to the private sector and is\ncurrently the Executive Chairman of Symphony Life Berhad.\n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Khazanah Nasional Berhad</li>\n  <li>Ekuiti Nasional Berhad</li> \n <li>Symphony Life Berhad (Executive Chairman)</li> \n <li>AIA Group Limited, Hong Kong</li>\n<li>Sime Darby Berhad</li>\n</ul>\n\n\n<ul class="bod-list"> \n <p>In addition, he serves on the following organisations: </p>  \n <li>Motorsports Association of Malaysia (Chairman)</li> \n <li>Sepang International Circuit Sdn Bhd (Chairman)</li>\n</ul>\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(514, 211, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/tan-sri-mohamed-big.jpg" alt="tan-sri-mohamed-big"/>\n\nTAN SRI MOHAMED AZMAN YAHYA\n\nChairman/Independent Non-Executive Director\n\n<h5>TAN SRI AZMAN YAHYA, aged 55, was appointed on our Board as the Chairman/Non-Independent Non-Executive Director on 1 September 2014 and re-designated as Chairman/Independent Non-Executive Director with effect from 02 February 2019.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li> Strategy And Investment Committee (Chairman)</li>\r\n  <li>Nominating And Remuneration Committee (Member)</li>  \r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Science (First Class Honours) degree in Economics from the London School of Economics and Political Science</li>\r\n  <li>Member of the Institute of Chartered Accountants in England and Wales</li> \r\n <li>Fellow of the Institute of Bankers</li> \r\n <li>Member of the Malaysian Institute of Accountants</li>\r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\nTan Sri Azman Yahya started his career at KPMG in London.\r\nIn 1988 he returned to Malaysia where he built his career in\r\ninvestment banking to become the Chief Executive of Amanah\r\nMerchant Bank. During the Asian Financial Crisis in 1998, Tan Sri\r\nAzman was tasked by the Malaysian Government to set-up and\r\nhead Danaharta, the national asset management company to\r\nacquire, manage and resolve the non-performing loans in the\r\nbanking sector. He was also the Chairman of Corporate Debt\r\nRestructuring Committee, set up by Bank Negara Malaysia, to\r\nmediate and assist in debt restructuring programmes of viable\r\ncompanies. In 2003, he returned to the private sector and is\r\ncurrently the Executive Chairman of Symphony Life Berhad.\r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Khazanah Nasional Berhad</li>\r\n  <li>Ekuiti Nasional Berhad</li> \r\n <li>Symphony Life Berhad (Executive Chairman)</li> \r\n <li>AIA Group Limited, Hong Kong</li>\r\n<li>Sime Darby Berhad</li>\r\n</ul>\r\n\r\n\r\n<ul class="bod-list"> \r\n <p>In addition, he serves on the following organisations: </p>  \r\n <li>Motorsports Association of Malaysia (Chairman)</li> \r\n <li>Sepang International Circuit Sdn Bhd (Chairman)</li>\r\n</ul>\n\nhorizontal\n\nbod-details\n\n'),
(515, 211, 'mfn-post-hide-content', '0'),
(516, 211, 'mfn-post-slider', '0'),
(517, 211, 'mfn-post-slider-layer', '0'),
(518, 211, 'mfn-post-custom-layout', '0'),
(519, 211, 'mfn-post-one-page', '0'),
(520, 211, 'mfn-post-hide-title', '0'),
(521, 211, 'mfn-post-remove-padding', '0'),
(522, 211, 'mfn-post-menu', '0'),
(523, 211, '_wpb_vc_js_status', 'false'),
(524, 211, '_thumbnail_id', '4569'),
(525, 272, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(526, 272, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(527, 272, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(528, 272, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(529, 272, '_edit_last', '1'),
(530, 272, '_wp_page_template', 'default'),
(531, 272, 'slide_template', 'default'),
(532, 272, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:671:"<div style="padding: 40px 6% 10px;"> \nRanhill Water Technologies has completed the construction of water treatment complex for Amata Water Company, Thailand in year 2008. This facility is to cater for various factories in Amata Nakorn Industrial Park.  The water treatment complex has 10.4 MLD Water treatment plant, 24 MLD wastewater treatment plant and 8 MLD water reclamation plant. The construction of reclamation plant is part of the industrial park effort for ‘zero discharge’ water treatment system. Ranhill Water Technologies will continue operate and maintain this treatment plant until year 2028 under Built Operate Transfer (BOT) contractual scheme.</div>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(533, 272, 'mfn-page-items-seo', '<div style="padding: 40px 6% 10px;"> \r\nRanhill Water Technologies has completed the construction of water treatment complex for Amata Water Company, Thailand in year 2008. This facility is to cater for various factories in Amata Nakorn Industrial Park.  The water treatment complex has 10.4 MLD Water treatment plant, 24 MLD wastewater treatment plant and 8 MLD water reclamation plant. The construction of reclamation plant is part of the industrial park effort for ‘zero discharge’ water treatment system. Ranhill Water Technologies will continue operate and maintain this treatment plant until year 2028 under Built Operate Transfer (BOT) contractual scheme.</div>\n\nno-repeat;center top;;\n\n'),
(534, 272, 'mfn-post-hide-content', '0'),
(535, 272, 'mfn-post-slider', '0'),
(536, 272, 'mfn-post-slider-layer', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(537, 272, 'mfn-post-custom-layout', '0'),
(538, 272, 'mfn-post-subheader-image', ''),
(539, 272, 'mfn-post-one-page', '0'),
(540, 272, 'mfn-post-hide-title', '0'),
(541, 272, 'mfn-post-remove-padding', '0'),
(542, 272, 'mfn-post-menu', '0'),
(543, 272, '_wpb_vc_js_status', 'false'),
(544, 272, '_thumbnail_id', '259'),
(545, 272, 'mfn-post-sidebar', '0'),
(546, 272, 'mfn-post-sidebar2', '0'),
(547, 272, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(566, 274, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(567, 274, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(568, 274, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(569, 274, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(570, 274, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(571, 274, '_edit_last', '1'),
(572, 274, '_wp_page_template', 'default'),
(573, 274, 'slide_template', ''),
(574, 274, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:15:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:672:"<div style="padding: 40px 6% 10px;"> \nRanhill Water Technologies has completed the construction of water treatment complex for Amata Water Company, Thailand in year 2008. This facility is to cater for various factories in Amata Nakorn Industrial Park.  The water treatment complex has 10.4 MLD Water treatment plant, 24 MLD waste water treatment plant and 8 MLD water reclamation plant. The construction of reclamation plant is part of the industrial park effort for ‘zero discharge’ water treatment system. Ranhill Water Technologies will continue operate and maintain this treatment plant until year 2028 under Built Operate Transfer (BOT) contractual scheme.</div>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:7:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(575, 274, 'mfn-page-items-seo', '<div style="padding: 40px 6% 10px;"> \nRanhill Water Technologies has completed the construction of water treatment complex for Amata Water Company, Thailand in year 2008. This facility is to cater for various factories in Amata Nakorn Industrial Park.  The water treatment complex has 10.4 MLD Water treatment plant, 24 MLD waste water treatment plant and 8 MLD water reclamation plant. The construction of reclamation plant is part of the industrial park effort for ‘zero discharge’ water treatment system. Ranhill Water Technologies will continue operate and maintain this treatment plant until year 2028 under Built Operate Transfer (BOT) contractual scheme.</div>\n\nno-repeat;center top;;\n\n'),
(576, 274, 'mfn-post-hide-content', '0'),
(577, 274, 'mfn-post-slider', '0'),
(578, 274, 'mfn-post-slider-layer', '0'),
(579, 274, 'mfn-post-custom-layout', '0'),
(580, 274, 'mfn-post-subheader-image', ''),
(581, 274, 'mfn-post-one-page', '0'),
(582, 274, 'mfn-post-hide-title', '0'),
(583, 274, 'mfn-post-remove-padding', '0'),
(584, 274, 'mfn-post-menu', '0'),
(585, 274, '_wpb_vc_js_status', 'false'),
(586, 274, '_dp_original', '272'),
(587, 274, 'mfn-post-sidebar', '0'),
(588, 274, 'mfn-post-sidebar2', '0'),
(589, 274, 'mfn-post-css', '#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -44px;\n    width: 95%;\n    color: #ffffff;\n    font-size: 50px;}'),
(590, 279, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(591, 279, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(592, 279, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(593, 279, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(594, 279, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(595, 279, '_edit_last', '1'),
(596, 279, '_wp_page_template', 'default'),
(597, 279, 'slide_template', 'default'),
(598, 279, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:83:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/01.jpg";s:5:"title";s:24:"TAN SRI HAMDAN   MOHAMAD";s:8:"subtitle";s:48:"Executive Director/President and Chief Executive";s:5:"phone";s:0:"";s:7:"content";s:2241:"<h5>TAN SRI HAMDAN, aged 62, was appointed to our Board as Executive Director and the President and Chief Executive of our Group on 1 December 2015.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Strategy And Investment Committee (Member)</li>    \n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Engineering degree from the University of Western Australia </li>\n  <li>Masters of Science degree in Engineering from Imperial College of Science and Technology, University of London </li> \n <li>Fellow of the Institution of Engineers, Malaysia</li> \n <li>Professional Engineer registered with the Board of Engineers, Malaysia</li>\n<li>Fellow and a Chartered Engineer registered with the Institute of Civil Engineers, United Kingdom</li>\n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\nTan Sri Hamdan Mohamad started his career as a structural\nengineer at the engineering consulting firm of Ranhill Bersekutu\nSdn Bhd (“<b>RBSB</b>”) in 1981. Upon his return to Malaysia after\ncompleting his Masters Degree, he was appointed as Director\nof RBSB in 1988 and eventually became the President and\nChief Executive Officer of RBSB in 1995. On 15 November\n2000, he became Executive Director of Ranhill Berhad (“<b>RB</b>”)\nwhere he spearheaded RB and the RB Group’s expansion from\nan engineering and consulting based firm to a full-fledged\norganisation that engineers, constructs, owns and operates\nfacilities in diverse segments including the infrastructure,\nenvironment, power and oil and gas segments. Following\nthe delisting of RB in 2011, he was appointed as the Executive\nDirector in Ranhill Energy and Resources Berhad (now known\nas Ranhill Energy and Resources Sdn Bhd) on 2 January 2013\nand subsequently on 14 June 2013, he was appointed as Group\nPresident and Chief Executive, a position he held before his\nappointment as Ranhill Holdings Berhad’s Executive Director\non 1 December 2015.\n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Senai Desaru Expressway Berhad</li>  \n</ul>\n\n<p style="margin-bottom:4px">Note:</p>\n<p><i>* Excluded 1 board meeting held which he had abstained from attending due\nto his interest on the related party proposal</i></p>";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(599, 279, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/01.jpg" alt="01"/>\n\nTAN SRI HAMDAN   MOHAMAD\n\nExecutive Director/President and Chief Executive\n\n<h5>TAN SRI HAMDAN, aged 62, was appointed to our Board as Executive Director and the President and Chief Executive of our Group on 1 December 2015.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Strategy And Investment Committee (Member)</li>    \r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Engineering degree from the University of Western Australia </li>\r\n  <li>Masters of Science degree in Engineering from Imperial College of Science and Technology, University of London </li> \r\n <li>Fellow of the Institution of Engineers, Malaysia</li> \r\n <li>Professional Engineer registered with the Board of Engineers, Malaysia</li>\r\n<li>Fellow and a Chartered Engineer registered with the Institute of Civil Engineers, United Kingdom</li>\r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\nTan Sri Hamdan Mohamad started his career as a structural\r\nengineer at the engineering consulting firm of Ranhill Bersekutu\r\nSdn Bhd (“<b>RBSB</b>”) in 1981. Upon his return to Malaysia after\r\ncompleting his Masters Degree, he was appointed as Director\r\nof RBSB in 1988 and eventually became the President and\r\nChief Executive Officer of RBSB in 1995. On 15 November\r\n2000, he became Executive Director of Ranhill Berhad (“<b>RB</b>”)\r\nwhere he spearheaded RB and the RB Group’s expansion from\r\nan engineering and consulting based firm to a full-fledged\r\norganisation that engineers, constructs, owns and operates\r\nfacilities in diverse segments including the infrastructure,\r\nenvironment, power and oil and gas segments. Following\r\nthe delisting of RB in 2011, he was appointed as the Executive\r\nDirector in Ranhill Energy and Resources Berhad (now known\r\nas Ranhill Energy and Resources Sdn Bhd) on 2 January 2013\r\nand subsequently on 14 June 2013, he was appointed as Group\r\nPresident and Chief Executive, a position he held before his\r\nappointment as Ranhill Holdings Berhad’s Executive Director\r\non 1 December 2015.\r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Senai Desaru Expressway Berhad</li>  \r\n</ul>\r\n\r\n<p style="margin-bottom:4px">Note:</p>\r\n<p><i>* Excluded 1 board meeting held which he had abstained from attending due\r\nto his interest on the related party proposal</i></p>\n\nhorizontal\n\nbod-details\n\n'),
(600, 279, 'mfn-post-hide-content', '0'),
(601, 279, 'mfn-post-slider', '0'),
(602, 279, 'mfn-post-slider-layer', '0'),
(603, 279, 'mfn-post-custom-layout', '0'),
(604, 279, 'mfn-post-one-page', '0'),
(605, 279, 'mfn-post-hide-title', '0'),
(606, 279, 'mfn-post-remove-padding', '0'),
(607, 279, 'mfn-post-menu', '0'),
(608, 279, '_wpb_vc_js_status', 'false'),
(609, 279, '_dp_original', '211'),
(610, 279, '_thumbnail_id', '4569'),
(611, 281, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(612, 281, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(613, 281, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(614, 281, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(615, 281, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(616, 281, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(617, 281, '_edit_last', '1'),
(618, 281, '_wp_page_template', 'default'),
(619, 281, 'slide_template', 'default'),
(620, 281, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:83:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpg";s:5:"title";s:22:"DATO SRI LIM HAW KUANG";s:8:"subtitle";s:18:"Executive Director";s:5:"phone";s:0:"";s:7:"content";s:2082:"<h5>DATO SRI LIM HAW KUANG, 64, was appointed to our Board as Executive Director on 1 September 2014.</h5>\n\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Governance And Risk Management Committee (Member)</li>\n  <li>Strategy And Investment Committee (Member)</li>  \n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Science (Computing Science) degree from Imperial College, University of London</li>\n  <li>Master of Business Administration degree in International Management from IMD Switzerland (formerly known \n        as International Management Institute, Geneva)\n</li>\n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\n Dato Sri Lim worked for Shell for 34 years and held various\nsenior executive positions including Executive Chairman of\nShell Companies in China; Vice President Corporate Strategy\nand Planning for Shell International; President Oil Products\nfor Asia Pacific and Middle East; Chairman of Shell Malaysia,\nmanaging director of Shell Malaysia Exploration and Production;\nSenior Corporate Adviser, Asia Pacific for Shell International;\nand Business Development Manager for Former Soviet Union\nand Sakhalin for Shell International Gas. In 2011, the Beijing\nMunicipal Government honoured him with the “Great Wall\nFriendship Award” for his contributions to the city. From 2011\ntill 2016, he was an international council member of the China\nCouncil for International Cooperation on Environment and\nDevelopment. He was previously the President of Malaysia\nBusiness Council for Sustainable Development and a director\nof China Business Council for Sustainable Development. He has\nbeen awarded state honours by the Malaysian Government. He\nis also an honorary citizen of Texas and the City of Houston,\nUnited States of America.\n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Sime Darby Berhad (Redesignated as Senior Independent Non-Executive Director with effect from 1 December 2017)</li> \n</ul>\n\n\n<p>Dato Sri Lim is also a Board member of Bank Negara Malaysia and the ENN Group in China.</p>\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(621, 281, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpg" alt="06"/>\n\nDATO SRI LIM HAW KUANG\n\nExecutive Director\n\n<h5>DATO SRI LIM HAW KUANG, 64, was appointed to our Board as Executive Director on 1 September 2014.</h5>\r\n\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Governance And Risk Management Committee (Member)</li>\r\n  <li>Strategy And Investment Committee (Member)</li>  \r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Science (Computing Science) degree from Imperial College, University of London</li>\r\n  <li>Master of Business Administration degree in International Management from IMD Switzerland (formerly known \r\n        as International Management Institute, Geneva)\r\n</li>\r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\n Dato Sri Lim worked for Shell for 34 years and held various\r\nsenior executive positions including Executive Chairman of\r\nShell Companies in China; Vice President Corporate Strategy\r\nand Planning for Shell International; President Oil Products\r\nfor Asia Pacific and Middle East; Chairman of Shell Malaysia,\r\nmanaging director of Shell Malaysia Exploration and Production;\r\nSenior Corporate Adviser, Asia Pacific for Shell International;\r\nand Business Development Manager for Former Soviet Union\r\nand Sakhalin for Shell International Gas. In 2011, the Beijing\r\nMunicipal Government honoured him with the “Great Wall\r\nFriendship Award” for his contributions to the city. From 2011\r\ntill 2016, he was an international council member of the China\r\nCouncil for International Cooperation on Environment and\r\nDevelopment. He was previously the President of Malaysia\r\nBusiness Council for Sustainable Development and a director\r\nof China Business Council for Sustainable Development. He has\r\nbeen awarded state honours by the Malaysian Government. He\r\nis also an honorary citizen of Texas and the City of Houston,\r\nUnited States of America.\r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Sime Darby Berhad (Redesignated as Senior Independent Non-Executive Director with effect from 1 December 2017)</li> \r\n</ul>\r\n\r\n\r\n<p>Dato Sri Lim is also a Board member of Bank Negara Malaysia and the ENN Group in China.</p>\n\nhorizontal\n\nbod-details\n\n'),
(622, 281, 'mfn-post-hide-content', '0'),
(623, 281, 'mfn-post-slider', '0'),
(624, 281, 'mfn-post-slider-layer', '0'),
(625, 281, 'mfn-post-custom-layout', '0'),
(626, 281, 'mfn-post-one-page', '0'),
(627, 281, 'mfn-post-hide-title', '0'),
(628, 281, 'mfn-post-remove-padding', '0'),
(629, 281, 'mfn-post-menu', '0'),
(630, 281, '_wpb_vc_js_status', 'false'),
(631, 281, '_dp_original', '279'),
(632, 281, '_thumbnail_id', '4569'),
(633, 282, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(634, 282, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(635, 282, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(636, 282, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(637, 282, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(638, 282, '_edit_last', '1'),
(639, 282, '_wp_page_template', 'default'),
(640, 282, 'slide_template', 'default'),
(641, 282, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:83:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/07.jpg";s:5:"title";s:13:"LIM HUN SOON ";s:8:"subtitle";s:49:"Chairman/Non-Independent  Non-Executive  Director";s:5:"phone";s:0:"";s:7:"content";s:2279:"<h5>LIM HUN SOON @ DAVID LIM, aged 63, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Audit Committee (Chairman)</li>  \n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Arts degree in Economics from the University of Leeds</li>\n  <li>Member of the Institute of Taxation, United Kingdom</li> \n <li>Chartered Accountant in England and Wales</li> \n <li>Member of the Malaysian Institute of Accountants and Malaysian \n       Association of Certified Public Accountants (now known as Malaysian\n       Institute of Certified Public Accountants (“MICPA”)\n </li>\n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\nLim Hun Soon started his career with KPMG (previously Peat\nMarwick Mitchell) in the United Kingdom. He returned to\nMalaysia in 1982 to continue with KPMG. He had a 33 year\nlong career at KPMG, where he was admitted as Partner (April\n1990), and served in the Management Committee (1997- 2001)\nand in KPMG’s Partnership Supervisory Council (2002-2010).\nHe was also the Asian Anchor Practice representative for\nMarketing (2000-2001), where he gained extensive knowledge\nand insights from KPMG Global counterparts worldwide. He\nretired from KPMG in 2011. David Lim has been an examiner for\ncompany law examinations conducted by MICPA for over 10\nyears. From 2002 till 2004, he was Chairman of MICPA Code\nof Ethics Committee and a member of the Malaysian Institute\nof Accountants Code of Ethics Committee. In May 2013, he\nwas appointed as council member of the Institute of Chartered\nAccountants in England and Wales (the first time Malaysia was\ngranted a seat in the Council) for a term of two years till June\n2015, which was then renewed for a further two year term\ntill May 2017. David Lim was reappointed for a third term in\nCouncil in early 2017.\n<p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Manulife Holdings Berhad</li>\n  <li>Ann Joo Resources Berhad</li> \n <li>Sasbadi Holdings Berhad</li> \n <li>Kawan Food Berhad</li>\n<li>Affin Hwang Investment Bank Berhad</li>\n<li>Affin Investment Berhad</li>\n<li>Manulife Insurance Berhad</li>\n<li>Rockwills Trustee Bhd</li>\n<li>Fairview Schools Berhad</li>\n</ul>\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(642, 282, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/07.jpg" alt="07"/>\n\nLIM HUN SOON\n\nChairman/Non-Independent  Non-Executive  Director\n\n<h5>LIM HUN SOON @ DAVID LIM, aged 63, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Audit Committee (Chairman)</li>  \r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Arts degree in Economics from the University of Leeds</li>\r\n  <li>Member of the Institute of Taxation, United Kingdom</li> \r\n <li>Chartered Accountant in England and Wales</li> \r\n <li>Member of the Malaysian Institute of Accountants and Malaysian \r\n       Association of Certified Public Accountants (now known as Malaysian\r\n       Institute of Certified Public Accountants (“MICPA”)\r\n </li>\r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\nLim Hun Soon started his career with KPMG (previously Peat\r\nMarwick Mitchell) in the United Kingdom. He returned to\r\nMalaysia in 1982 to continue with KPMG. He had a 33 year\r\nlong career at KPMG, where he was admitted as Partner (April\r\n1990), and served in the Management Committee (1997- 2001)\r\nand in KPMG’s Partnership Supervisory Council (2002-2010).\r\nHe was also the Asian Anchor Practice representative for\r\nMarketing (2000-2001), where he gained extensive knowledge\r\nand insights from KPMG Global counterparts worldwide. He\r\nretired from KPMG in 2011. David Lim has been an examiner for\r\ncompany law examinations conducted by MICPA for over 10\r\nyears. From 2002 till 2004, he was Chairman of MICPA Code\r\nof Ethics Committee and a member of the Malaysian Institute\r\nof Accountants Code of Ethics Committee. In May 2013, he\r\nwas appointed as council member of the Institute of Chartered\r\nAccountants in England and Wales (the first time Malaysia was\r\ngranted a seat in the Council) for a term of two years till June\r\n2015, which was then renewed for a further two year term\r\ntill May 2017. David Lim was reappointed for a third term in\r\nCouncil in early 2017.\r\n<p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Manulife Holdings Berhad</li>\r\n  <li>Ann Joo Resources Berhad</li> \r\n <li>Sasbadi Holdings Berhad</li> \r\n <li>Kawan Food Berhad</li>\r\n<li>Affin Hwang Investment Bank Berhad</li>\r\n<li>Affin Investment Berhad</li>\r\n<li>Manulife Insurance Berhad</li>\r\n<li>Rockwills Trustee Bhd</li>\r\n<li>Fairview Schools Berhad</li>\r\n</ul>\n\nhorizontal\n\nbod-details\n\n'),
(643, 282, 'mfn-post-hide-content', '0'),
(644, 282, 'mfn-post-slider', '0'),
(645, 282, 'mfn-post-slider-layer', '0'),
(646, 282, 'mfn-post-custom-layout', '0'),
(647, 282, 'mfn-post-one-page', '0'),
(648, 282, 'mfn-post-hide-title', '0'),
(649, 282, 'mfn-post-remove-padding', '0'),
(650, 282, 'mfn-post-menu', '0'),
(651, 282, '_wpb_vc_js_status', 'false'),
(652, 282, '_dp_original', '211'),
(653, 282, '_thumbnail_id', '4569'),
(654, 284, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(655, 284, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(656, 284, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(657, 284, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(658, 284, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(659, 284, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(660, 284, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(661, 284, '_edit_last', '1'),
(662, 284, '_wp_page_template', 'default'),
(663, 284, 'slide_template', 'default'),
(664, 284, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:83:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/04.jpg";s:5:"title";s:21:"TAN SRI SAW CHOO BOON";s:8:"subtitle";s:42:"Senior Independent Non-Executive  Director";s:5:"phone";s:0:"";s:7:"content";s:2259:"<h5>TAN SRI SAW CHOO BOON, 72, was appointed as a Senior Independent Non-Executive Director on 1 September 2014.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Nominating And Remuneration Committee (Chairman)</li>\n  <li>Governance And Risk Management Committee (Chairman)</li>  \n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Science (Honours) degree in Chemistry from the University of Malaya</li>\n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\nTan Sri Saw has 40 years of continuous service with Shell,\nhaving joined the company in 1970 as a Refinery Technologist\nin Shell Refining Company (Federation of Malaya) Berhad. He\nserved in various capacities in manufacturing, supply, trading\nand planning in Malaysia, Singapore and Netherlands. In 1996,\nhe was appointed MD of Shell MDS (Malaysia) Sendirian Berhad.\nFrom 1998 until 1999, he was MD for Oil Products (Downstream)\nShell Malaysia and MD of Shell Refining Company (Federation\nof Malaya) Berhad. In 1999, with the globalisation of the Shell\nOil Products business, he was appointed the Vice President\n(VP) of the commercial business in the Asia-Pacific region and\nin 2004 he became the President of Shell Oil Product East. In\n2005, he was appointed VP Global Marine Products. On 18\nMay 2006, he was appointed as Chairman of Shell Malaysia,\nand on 1 January 2010 as Senior Advisor, positions he held\ntill his retirement on 30 June 2010. He was also VP Business\nDevelopment Asia Pacific responsible for developing the\ncommercial businesses in new market entries in Asia - China,\nIndia, Indonesia and Vietnam.\n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>RHB Bank Berhad</li>\n  <li>RHB Insurance Berhad</li> \n <li>Digi.Com Berhad</li> \n <li>Integrated Petroleum Berhad</li>\n<li>MRCB Quill Management Sdn Bhd</li>\n</ul>\n\n\n<ul class="bod-list"> \n <p>In addition, he serves on the following association: </p>\n  <li>Government’s Public-Private Sector Special Task Force on Facilitating Business (PEMUDAH) as the Co-Chairman</li>\n  <li>Federation of Malaysian Manufacturers Council (President)</li> \n <li>Socio-Economic Research Centre Board of the Associated Chinese Chambers of Commerce and Industry Malaysia</li> \n</ul>\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(665, 284, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/04.jpg" alt="04"/>\n\nTAN SRI SAW CHOO BOON\n\nSenior Independent Non-Executive  Director\n\n<h5>TAN SRI SAW CHOO BOON, 72, was appointed as a Senior Independent Non-Executive Director on 1 September 2014.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Nominating And Remuneration Committee (Chairman)</li>\r\n  <li>Governance And Risk Management Committee (Chairman)</li>  \r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Science (Honours) degree in Chemistry from the University of Malaya</li>\r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\nTan Sri Saw has 40 years of continuous service with Shell,\r\nhaving joined the company in 1970 as a Refinery Technologist\r\nin Shell Refining Company (Federation of Malaya) Berhad. He\r\nserved in various capacities in manufacturing, supply, trading\r\nand planning in Malaysia, Singapore and Netherlands. In 1996,\r\nhe was appointed MD of Shell MDS (Malaysia) Sendirian Berhad.\r\nFrom 1998 until 1999, he was MD for Oil Products (Downstream)\r\nShell Malaysia and MD of Shell Refining Company (Federation\r\nof Malaya) Berhad. In 1999, with the globalisation of the Shell\r\nOil Products business, he was appointed the Vice President\r\n(VP) of the commercial business in the Asia-Pacific region and\r\nin 2004 he became the President of Shell Oil Product East. In\r\n2005, he was appointed VP Global Marine Products. On 18\r\nMay 2006, he was appointed as Chairman of Shell Malaysia,\r\nand on 1 January 2010 as Senior Advisor, positions he held\r\ntill his retirement on 30 June 2010. He was also VP Business\r\nDevelopment Asia Pacific responsible for developing the\r\ncommercial businesses in new market entries in Asia - China,\r\nIndia, Indonesia and Vietnam.\r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>RHB Bank Berhad</li>\r\n  <li>RHB Insurance Berhad</li> \r\n <li>Digi.Com Berhad</li> \r\n <li>Integrated Petroleum Berhad</li>\r\n<li>MRCB Quill Management Sdn Bhd</li>\r\n</ul>\r\n\r\n\r\n<ul class="bod-list"> \r\n <p>In addition, he serves on the following association: </p>\r\n  <li>Government’s Public-Private Sector Special Task Force on Facilitating Business (PEMUDAH) as the Co-Chairman</li>\r\n  <li>Federation of Malaysian Manufacturers Council (President)</li> \r\n <li>Socio-Economic Research Centre Board of the Associated Chinese Chambers of Commerce and Industry Malaysia</li> \r\n</ul>\n\nhorizontal\n\nbod-details\n\n'),
(666, 284, 'mfn-post-hide-content', '0'),
(667, 284, 'mfn-post-slider', '0'),
(668, 284, 'mfn-post-slider-layer', '0'),
(669, 284, 'mfn-post-custom-layout', '0'),
(670, 284, 'mfn-post-one-page', '0'),
(671, 284, 'mfn-post-hide-title', '0'),
(672, 284, 'mfn-post-remove-padding', '0'),
(673, 284, 'mfn-post-menu', '0'),
(674, 284, '_wpb_vc_js_status', 'false'),
(675, 284, '_dp_original', '281'),
(676, 284, '_thumbnail_id', '4557'),
(699, 288, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(700, 288, '_thumbnail_id', '4569'),
(701, 288, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(702, 288, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(703, 288, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(704, 288, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(705, 288, '_edit_last', '1'),
(706, 288, '_wp_page_template', 'default'),
(707, 288, 'slide_template', 'default'),
(708, 288, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:83:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/05.jpg";s:5:"title";s:22:"ABU TALIB ABDUL RAHMAN";s:8:"subtitle";s:35:"Independent/Non-Executive  Director";s:5:"phone";s:0:"";s:7:"content";s:1771:"<h5>ABU TALIB ABDUL RAHMAN, aged 65, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Audit Committee (Member)</li>\n  <li>Nominating And Remuneration Committee (Member)</li>  \n <li>Governance And Risk Management Committee (Member)</li>\n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Law (Honours) degree from University of London</li>\n  <li>Certificate of Legal Practice from Lembaga Kelayakan Malaysia</li> \n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\nAbu Talib Abdul Rahman started his career as a banker with\nBank Pertanian Malaysia. He then moved to work in a merchant\nbank before harnessing further experience with a commercial\nbank, Bank Bumiputera Malaysia Berhad from 1981 up to 1985.\nDuring his tenure at Bank Bumiputera Malaysia Berhad, he was\nalso entrusted to supervise the construction of UMNO building\nand Putra World Trade Centre which began in 1981 until its\ncompletion in 1984.\n<br/><br/>\nFrom 1986 to 1991, he worked as partner of other legal firms\nbefore establishing Messrs Abu Talib Shahrom (formerly\nknown as Messrs Abu Talib Shahrom Khamil & Zahari) (“ATS”).\nBeing a founding partner of ATS, his area of legal expertise\nencompasses corporate law, corporate secretarial, corporate\nfinance and banking, commercial contracts, construction\nand private finance initiative projects with the Government of\nMalaysia. He has since 1 January 2017 retired as a partner of\nATS after assuming his position as the Managing Director of\nSumatec Resources Berhad.\n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Senai-Desaru Expressway Berhad</li>\n  <li>Sumatec Resources Berhad</li> \n</ul>\n\n\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(709, 288, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/05.jpg" alt="05"/>\n\nABU TALIB ABDUL RAHMAN\n\nIndependent/Non-Executive  Director\n\n<h5>ABU TALIB ABDUL RAHMAN, aged 65, was appointed to our Board as Independent Non-Executive Director on 1 December 2015.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Audit Committee (Member)</li>\r\n  <li>Nominating And Remuneration Committee (Member)</li>  \r\n <li>Governance And Risk Management Committee (Member)</li>\r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Law (Honours) degree from University of London</li>\r\n  <li>Certificate of Legal Practice from Lembaga Kelayakan Malaysia</li> \r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\nAbu Talib Abdul Rahman started his career as a banker with\r\nBank Pertanian Malaysia. He then moved to work in a merchant\r\nbank before harnessing further experience with a commercial\r\nbank, Bank Bumiputera Malaysia Berhad from 1981 up to 1985.\r\nDuring his tenure at Bank Bumiputera Malaysia Berhad, he was\r\nalso entrusted to supervise the construction of UMNO building\r\nand Putra World Trade Centre which began in 1981 until its\r\ncompletion in 1984.\r\n<br/><br/>\r\nFrom 1986 to 1991, he worked as partner of other legal firms\r\nbefore establishing Messrs Abu Talib Shahrom (formerly\r\nknown as Messrs Abu Talib Shahrom Khamil & Zahari) (“ATS”).\r\nBeing a founding partner of ATS, his area of legal expertise\r\nencompasses corporate law, corporate secretarial, corporate\r\nfinance and banking, commercial contracts, construction\r\nand private finance initiative projects with the Government of\r\nMalaysia. He has since 1 January 2017 retired as a partner of\r\nATS after assuming his position as the Managing Director of\r\nSumatec Resources Berhad.\r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Senai-Desaru Expressway Berhad</li>\r\n  <li>Sumatec Resources Berhad</li> \r\n</ul>\n\nhorizontal\n\nbod-details\n\n'),
(710, 288, 'mfn-post-hide-content', '0'),
(711, 288, 'mfn-post-slider', '0'),
(712, 288, 'mfn-post-slider-layer', '0'),
(713, 288, 'mfn-post-custom-layout', '0'),
(714, 288, 'mfn-post-one-page', '0'),
(715, 288, 'mfn-post-hide-title', '0'),
(716, 288, 'mfn-post-remove-padding', '0'),
(717, 288, 'mfn-post-menu', '0'),
(718, 288, '_wpb_vc_js_status', 'false'),
(719, 288, '_dp_original', '211'),
(742, 295, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(743, 295, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(744, 295, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(745, 295, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(746, 295, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(747, 295, '_edit_last', '1'),
(748, 295, '_wp_page_template', 'default'),
(749, 295, 'slide_template', ''),
(750, 295, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MToiMCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo4OiJvdXJfdGVhbSI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTc6e3M6NzoiaGVhZGluZyI7czowOiIiO3M6NToiaW1hZ2UiO3M6MDoiIjtzOjU6InRpdGxlIjtzOjQ0OiJBRFZBTkNFIFBSRVNTVVJFIE1BTkFHRU1FTlQgJiBDT05UUk9MIChBUE1DKSI7czo4OiJzdWJ0aXRsZSI7czowOiIiO3M6NToicGhvbmUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTIwNzoiPGg1PkFQTUMgaXMgaW1wbGVtZW50ZWQgaW4gZXhpc3RpbmcgZGlzdHJpYnV0aW9uIHN5c3RlbXMuIFRoaXMgb2Z0ZW4gcmVmZXJzIHRvIGEgc3lzdGVtIG9yIHpvbmUgdGhhdCBpcyBjb250cm9sbGVkIGJ5IFByZXNzdXJlIFJlZHVjaW5nIFZhbHZlIChQUlYpIHdoaWNoIGNvbnRyb2xzIGFuZCByZWd1bGF0ZWQgd2F0ZXIgdG8gZW5zdXJlIGEgbW9yZSBjb25zaXN0ZW50IGFuZCBzdGFibGUgcHJlc3N1cmUgd2l0aGluIHRoZSBzeXN0ZW0uPC9oNT4NCg0KPHA+VGhlIGFkdmFuY2VkIHByZXNzdXJlIGNvbnRyb2xsZXIgZGV2aWNlIGtub3duIGFzIHdpbGwgYmUgaW5zdGFsbGVkIGF0IHRoZSBleGlzdGluZyBWYWx2ZSB3aGlsZSBhIHByZXNzdXJlIGxvZ2dlciB3aWxsIGJlIGluc3RhbGxlZCBhdCBhIGNyaXRpY2FsIHBvaW50IGluIHRoZSBwcmVzc3VyZSBtYW5hZ2VtZW50IHpvbmUuIFRoZSBzZWxlY3Rpb24gaXMgbWFkZSBieSBkZXRlcm1pbmVkIGFuZCBwcmlvcml0aXppbmcgdGhlIHRvdGFsIGxlYWthZ2UuIFRoZSBpZGVudGlmaWVkIHpvbmUgd2lsbCBiZSBzdHVkaWVkIGFuZCBsb2dnZWQgZm9yIGEgbWluaW11bSBkdXJhdGlvbiBvZiA3IGRheXMgdG8gb2J0YWluIHRoZSBmbG93IGRhdGEgYW5kIHRoZSBwcmVzc3VyZSBkYXRhLiBUaGlzIHByb2Nlc3MgaXMgaW1wb3J0YW50IGJlZm9yZSB0aGUgZXN0YWJsaXNobWVudCBvZiBhbnkgcHJlc3N1cmUgbWFuYWdlbWVudCB6b25lIGFuZCBpcyBuZWNlc3NhcnkgdG8gZGV0ZXJtaW5lIHRoZSBhcHByb3ByaWF0ZSBtb2RlIG9mIG1vZHVsYXRpb24gZm9yIHRoZSB6b25lIG1hbmFnZWQuPC9wPjxwPg0KDQpUaGUgQVBNQyBzeXN0ZW0gd2lsbCBiZSBhY3RpdmF0ZWQgdXNpbmcgc2VsZWN0ZWQgbW9kdWxhdGlvbiBlaXRoZXIgb24gY2xvc2VkIGxvb3AsIHRpbWUgbW9kdWxhdGlvbiBvciBmbG93IG1vZHVsYXRpb24gbW9kZXMuIFRoZSBjb250cm9sbGVyIHByb3ZpZGVzIGdyZWF0IGZsZXhpYmlsaXR5IGJ5IGFsbG93aW5nIHByZXNzdXJlcyB0byBiZSBtb2R1bGF0ZWQgb3IgcmVkdWNlZCBhdCBzcGVjaWZpYyB0aW1lcyBpbiB0aGUgZGF5IHRoYXQgZ2l2ZXMgbWF4aW11bSBzYXZpbmdzLiBUaGlzIHN5c3RlbSBjYW4gYWxzbyBiZSByZW1vdGVseSBjb250cm9sbGVkIGFuZCBjYW4gYmUgbW9uaXRvcmVkIGRpcmVjdGx5IHRocm91Z2ggdGhlIHNlcnZlciBwcm92aWRlZC48L3A+DQoNCiI7czo1OiJlbWFpbCI7czowOiIiO3M6ODoiZmFjZWJvb2siO3M6MDoiIjtzOjc6InR3aXR0ZXIiO3M6MDoiIjtzOjg6ImxpbmtlZGluIjtzOjA6IiI7czo1OiJ2Y2FyZCI7czowOiIiO3M6MTA6ImJsb2NrcXVvdGUiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjEwOiJob3Jpem9udGFsIjtzOjQ6ImxpbmsiO3M6MDoiIjtzOjY6InRhcmdldCI7czoxOiIwIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fX1zOjQ6ImF0dHIiO2E6Nzp7czo4OiJiZ19jb2xvciI7czowOiIiO3M6ODoiYmdfaW1hZ2UiO3M6MDoiIjtzOjExOiJiZ19wb3NpdGlvbiI7czoyMjoibm8tcmVwZWF0O2NlbnRlciB0b3A7OyI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czoxMzoiY29sdW1uX21hcmdpbiI7czowOiIiO3M6MTQ6InZlcnRpY2FsX2FsaWduIjtzOjM6InRvcCI7czo1OiJjbGFzcyI7czowOiIiO319fX19'),
(751, 295, 'mfn-page-items-seo', 'ADVANCE PRESSURE MANAGEMENT & CONTROL (APMC)\n\n<h5>APMC is implemented in existing distribution systems. This often refers to a system or zone that is controlled by Pressure Reducing Valve (PRV) which controls and regulated water to ensure a more consistent and stable pressure within the system.</h5>\n\n<p>The advanced pressure controller device known as will be installed at the existing Valve while a pressure logger will be installed at a critical point in the pressure management zone. The selection is made by determined and prioritizing the total leakage. The identified zone will be studied and logged for a minimum duration of 7 days to obtain the flow data and the pressure data. This process is important before the establishment of any pressure management zone and is necessary to determine the appropriate mode of modulation for the zone managed.</p><p>\n\nThe APMC system will be activated using selected modulation either on closed loop, time modulation or flow modulation modes. The controller provides great flexibility by allowing pressures to be modulated or reduced at specific times in the day that gives maximum savings. This system can also be remotely controlled and can be monitored directly through the server provided.</p>\n\nhorizontal\n\n'),
(752, 295, 'mfn-post-hide-content', '0'),
(753, 295, 'mfn-post-slider', '0'),
(754, 295, 'mfn-post-slider-layer', '0'),
(755, 295, 'mfn-post-custom-layout', '0'),
(756, 295, 'mfn-post-one-page', '0'),
(757, 295, 'mfn-post-hide-title', '0'),
(758, 295, 'mfn-post-remove-padding', '0'),
(759, 295, 'mfn-post-menu', '0'),
(760, 295, '_wpb_vc_js_status', 'false'),
(761, 295, '_dp_original', '211'),
(762, 297, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(763, 297, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(764, 297, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(765, 297, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(766, 297, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(767, 297, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(768, 297, '_edit_last', '1'),
(769, 297, '_wp_page_template', 'default'),
(770, 297, 'slide_template', ''),
(771, 297, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MToiMCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo4OiJvdXJfdGVhbSI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTc6e3M6NzoiaGVhZGluZyI7czowOiIiO3M6NToiaW1hZ2UiO3M6MDoiIjtzOjU6InRpdGxlIjtzOjMyOiJDT01CSU5FIENZQ0xFIEdBUyBUVVJCSU5FIChDQ0dUKSI7czo4OiJzdWJ0aXRsZSI7czowOiIiO3M6NToicGhvbmUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6OTMyOiI8aDU+QSBjb21iaW5lZCBjeWNsZSBnYXMgdHVyYmluZSB1c2VzIGJvdGggYSBnYXMgYW5kIGEgc3RlYW0gdHVyYmluZSB0b2dldGhlciB0byBwcm9kdWNlIHVwIHRvIDUwIHBlcmNlbnQgbW9yZSBlbGVjdHJpY2l0eSBmcm9tIHRoZSBzYW1lIGZ1ZWwgdGhhbiBhIHRyYWRpdGlvbmFsIHNpbXBsZS1jeWNsZSBwbGFudC4gVGhlIHdhc3RlIGhlYXQgZnJvbSB0aGUgZ2FzIHR1cmJpbmUgaXMgcm91dGVkIHRvIHRoZSBuZWFyYnkgc3RlYW0gdHVyYmluZSwgd2hpY2ggZ2VuZXJhdGVzIGV4dHJhIHBvd2VyLjwvaDU+DQo8cD5HYXMgdHVyYmluZSBidXJucyBmdWVsLiBUaGUgZ2FzIHR1cmJpbmUgY29tcHJlc3NlcyBhaXIgYW5kIG1peGVzIGl0IHdpdGggZnVlbCB0aGF0IGlzIGhlYXRlZCB0byBhIHZlcnkgaGlnaCB0ZW1wZXJhdHVyZS4gVGhlIGhvdCBhaXItZnVlbCBtaXh0dXJlIG1vdmVzIHRocm91Z2ggdGhlIGdhcyB0dXJiaW5lIGJsYWRlcywgbWFraW5nIHRoZW0gc3Bpbi4gVGhlIGZhc3Qtc3Bpbm5pbmcgdHVyYmluZSBkcml2ZXMgYSBnZW5lcmF0b3IgdGhhdCBjb252ZXJ0cyBhIHBvcnRpb24gb2YgdGhlIHNwaW5uaW5nIGVuZXJneSBpbnRvIGVsZWN0cmljaXR5LjwvcD48cD4NCkEgSGVhdCBSZWNvdmVyeSBTdGVhbSBHZW5lcmF0b3IgY2FwdHVyZXMgZXhoYXVzdCBoZWF0IGZyb20gdGhlIGdhcy4gVGhlIEhlYXQgUmVjb3ZlcnkgU3RlYW0gR2VuZXJhdG9yIGNyZWF0ZXMgc3RlYW0gZnJvbSB0aGUgZ2FzIHR1cmJpbmUgZXhoYXVzdCBoZWF0IGFuZCBkZWxpdmVycyBpdCB0byB0aGUgc3RlYW0gdHVyYmluZS4gPC9wPjxwPg0KVGhlIHN0ZWFtIHR1cmJpbmUgc2VuZHMgaXRzIGVuZXJneSB0byB0aGUgZ2VuZXJhdG9yIGRyaXZlIHNoYWZ0LCB3aGVyZSBpdCBpcyBjb252ZXJ0ZWQgaW50byBhZGRpdGlvbmFsIGVsZWN0cmljaXR5LjwvcD4NCiI7czo1OiJlbWFpbCI7czowOiIiO3M6ODoiZmFjZWJvb2siO3M6MDoiIjtzOjc6InR3aXR0ZXIiO3M6MDoiIjtzOjg6ImxpbmtlZGluIjtzOjA6IiI7czo1OiJ2Y2FyZCI7czowOiIiO3M6MTA6ImJsb2NrcXVvdGUiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjEwOiJob3Jpem9udGFsIjtzOjQ6ImxpbmsiO3M6MDoiIjtzOjY6InRhcmdldCI7czoxOiIwIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fX1zOjQ6ImF0dHIiO2E6Nzp7czo4OiJiZ19jb2xvciI7czowOiIiO3M6ODoiYmdfaW1hZ2UiO3M6MDoiIjtzOjExOiJiZ19wb3NpdGlvbiI7czoyMjoibm8tcmVwZWF0O2NlbnRlciB0b3A7OyI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czoxMzoiY29sdW1uX21hcmdpbiI7czowOiIiO3M6MTQ6InZlcnRpY2FsX2FsaWduIjtzOjM6InRvcCI7czo1OiJjbGFzcyI7czowOiIiO319fX19'),
(772, 297, 'mfn-page-items-seo', 'COMBINE CYCLE GAS TURBINE (CCGT)\n\n<h5>A combined cycle gas turbine uses both a gas and a steam turbine together to produce up to 50 percent more electricity from the same fuel than a traditional simple-cycle plant. The waste heat from the gas turbine is routed to the nearby steam turbine, which generates extra power.</h5>\n<p>Gas turbine burns fuel. The gas turbine compresses air and mixes it with fuel that is heated to a very high temperature. The hot air-fuel mixture moves through the gas turbine blades, making them spin. The fast-spinning turbine drives a generator that converts a portion of the spinning energy into electricity.</p><p>\nA Heat Recovery Steam Generator captures exhaust heat from the gas. The Heat Recovery Steam Generator creates steam from the gas turbine exhaust heat and delivers it to the steam turbine. </p><p>\nThe steam turbine sends its energy to the generator drive shaft, where it is converted into additional electricity.</p>\n\nhorizontal\n\n'),
(773, 297, 'mfn-post-hide-content', '0'),
(774, 297, 'mfn-post-slider', '0'),
(775, 297, 'mfn-post-slider-layer', '0'),
(776, 297, 'mfn-post-custom-layout', '0'),
(777, 297, 'mfn-post-one-page', '0'),
(778, 297, 'mfn-post-hide-title', '0'),
(779, 297, 'mfn-post-remove-padding', '0'),
(780, 297, 'mfn-post-menu', '0'),
(781, 297, '_wpb_vc_js_status', 'false'),
(782, 297, '_dp_original', '295'),
(783, 300, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(784, 300, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(785, 300, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(786, 300, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(787, 300, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(788, 300, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(789, 300, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(790, 300, '_edit_last', '1'),
(791, 300, '_wp_page_template', 'default'),
(792, 300, 'slide_template', ''),
(793, 300, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MToiMCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo4OiJvdXJfdGVhbSI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTc6e3M6NzoiaGVhZGluZyI7czowOiIiO3M6NToiaW1hZ2UiO3M6MDoiIjtzOjU6InRpdGxlIjtzOjI5OiJVTk1BTk5FRCBBRVJJQUwgVkVISUNMRSAoVUFWKSI7czo4OiJzdWJ0aXRsZSI7czowOiIiO3M6NToicGhvbmUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTE2NDoiPGg1PlVubWFubmVkIEFyaWFsIHZlaGljbGUgaXMgYSBkcm9uZS1saWtlIHRlY2hub2xvZ3kgdXNlZCBieSBTeWFyaWthdCBBaXIgSm9ob3IsIGEgcGFydCBvZiBSYW5oaWxs4oCZcyBXYXRlciBEaXZpc2lvbiB0byBtb25pdG9yIGZpdmUgbWFqb3Igcml2ZXIgYmFzaW5zIG9yIHdhdGVyIGNhdGNobWVudCBhcmVhcyBpbiBKb2hvciBTdGF0ZS4gSXQgY2FwdHVyZXMgaW1hZ2VzIHRvIGhpZ2hsaWdodCBwcm9ibGVtcyBpbiB0aGUgcml2ZXIgYW5kIGNhdGNobWVudCBhcmVhcy4gPC9oNT4NCg0KPHA+VGhlIG1vc3QgY29tbW9uIGNhdXNlIGlzIGxhbmQgY2xlYXJpbmcgd2hpY2ggY2F1c2VzIHRoZSByaXZlciB3YXRlciB0byBjaGFuZ2UgY29sb3VyLiBJbiBhZGRpdGlvbiB1bmNvbnRyb2xsZWQgaW5kdXN0cnkgYWN0aXZpdGllcywgY2F1c2UgdGhlIHJpdmVyIHdhdGVyIHRvIGJlY29tZSBtb3JlIGFjaWRpYywgcG9zaW5nIGNvcnJvc2l2ZSByaXNrIHRvIG91ciB0cmVhdG1lbnQgcGxhbnRzLiA8L3A+PHA+DQoNClNvbWV0aW1lcyB0aGUgc3VyZmFjZSB3YXRlciBtYXkgdHVybiBncmVlbmlzaCBpbmRpY2F0aW5nIHZvbHVtaW5vdXMgZ3Jvd3RoIG9mIGFsZ2FlIGNhdXNlZCBieSBleGNlc3NpdmUgZmVydGlsaXplciBydW4tb2ZmIGZyb20gZmFybXMuIElsbGVnYWwgbG9nZ2luZyBjYW4gYWxzbyBjYXVzZSBzaWx0aW5nLjwvcD48cD4NClRoZSBuZXcgdW5tYW5uZWQgYWVyaWFsIHZlaGljbGUgaXMgY29zdC1lZmZlY3RpdmUgYW5kIHRoZSBkcm9uZSBmbGlnaHRzIGNhbiBiZSBjb25kdWN0ZWQgbXVsdGlwbGUgdGltZXMgdG8gY29udGludW91c2x5IGlkZW50aWZ5IHRoZSBjYXVzZSBhbmQgbW9uaXRvciBmb3IgbmV3IGVuY3JvYWNobWVudC48L3A+PHA+DQoNClRoZSBpbWFnZXMgYW5kIGRhdGEgY2FwdHVyZWQgY2FuIGJlIHNoYXJlZCB3aXRoIHRoZSBsYXcgZW5mb3JjZW1lbnQgYW5kIG5lY2Vzc2FyeSBhY3Rpb24gdGFrZW4uIFJlc3BvbmRpbmcgdG8gdGhlIGNhdXNlcyBvZiBwb2xsdXRpb24gdHJhbnNsYXRlcyBpbnRvIGNvc3Qgc2F2aW5ncyBhbmQgaW1wcm92ZXMgcmF3IHdhdGVyIHF1YWxpdHkuIFRoaXMgZW5zdXJlcyBpbiBtaW5pbWFsIGRpc3J1cHRpb24gb2Ygd2F0ZXIgc3VwcGx5IHRvIHRoZSB3YXRlciBjb25zdW1lcnMuICAgICA8L3A+IA0KIjtzOjU6ImVtYWlsIjtzOjA6IiI7czo4OiJmYWNlYm9vayI7czowOiIiO3M6NzoidHdpdHRlciI7czowOiIiO3M6ODoibGlua2VkaW4iO3M6MDoiIjtzOjU6InZjYXJkIjtzOjA6IiI7czoxMDoiYmxvY2txdW90ZSI7czowOiIiO3M6NToic3R5bGUiO3M6MTA6Imhvcml6b250YWwiO3M6NDoibGluayI7czowOiIiO3M6NjoidGFyZ2V0IjtzOjE6IjAiO3M6NzoiYW5pbWF0ZSI7czowOiIiO3M6NzoiY2xhc3NlcyI7czowOiIiO319fXM6NDoiYXR0ciI7YTo3OntzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjEzOiJjb2x1bW5fbWFyZ2luIjtzOjA6IiI7czoxNDoidmVydGljYWxfYWxpZ24iO3M6MzoidG9wIjtzOjU6ImNsYXNzIjtzOjA6IiI7fX19fX0='),
(794, 300, 'mfn-page-items-seo', 'UNMANNED AERIAL VEHICLE (UAV)\n\n<h5>Unmanned Arial vehicle is a drone-like technology used by Syarikat Air Johor, a part of Ranhill’s Water Division to monitor five major river basins or water catchment areas in Johor State. It captures images to highlight problems in the river and catchment areas. </h5>\n\n<p>The most common cause is land clearing which causes the river water to change colour. In addition uncontrolled industry activities, cause the river water to become more acidic, posing corrosive risk to our treatment plants. </p><p>\n\nSometimes the surface water may turn greenish indicating voluminous growth of algae caused by excessive fertilizer run-off from farms. Illegal logging can also cause silting.</p><p>\nThe new unmanned aerial vehicle is cost-effective and the drone flights can be conducted multiple times to continuously identify the cause and monitor for new encroachment.</p><p>\n\nThe images and data captured can be shared with the law enforcement and necessary action taken. Responding to the causes of pollution translates into cost savings and improves raw water quality. This ensures in minimal disruption of water supply to the water consumers.     </p>\n\nhorizontal\n\n'),
(795, 300, 'mfn-post-hide-content', '0'),
(796, 300, 'mfn-post-slider', '0'),
(797, 300, 'mfn-post-slider-layer', '0'),
(798, 300, 'mfn-post-custom-layout', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(799, 300, 'mfn-post-one-page', '0'),
(800, 300, 'mfn-post-hide-title', '0'),
(801, 300, 'mfn-post-remove-padding', '0'),
(802, 300, 'mfn-post-menu', '0'),
(803, 300, '_wpb_vc_js_status', 'false'),
(804, 300, '_dp_original', '297'),
(805, 301, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(806, 301, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(807, 301, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(808, 301, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(809, 301, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(810, 301, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(811, 301, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(812, 301, '_edit_last', '1'),
(813, 301, '_wp_page_template', 'default'),
(814, 301, 'slide_template', 'default'),
(815, 301, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MToiMCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjQ6e2k6MDthOjM6e3M6NDoidHlwZSI7czo4OiJvdXJfdGVhbSI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTc6e3M6NzoiaGVhZGluZyI7czowOiIiO3M6NToiaW1hZ2UiO3M6MDoiIjtzOjU6InRpdGxlIjtzOjUwOiJHZW9ncmFwaGljYWwgU3lzdGVtICYgTmV0d29ya2luZyBNb2RlbGxpbmcgKCBHSVMgKSI7czo4OiJzdWJ0aXRsZSI7czowOiIiO3M6NToicGhvbmUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6NjA5OiI8aDU+R2VvZ3JhcGhpY2FsIFN5c3RlbSAmIE5ldHdvcmtpbmcgTW9kZWxsaW5nIGlzIG9uZSBvZiB0aGUgbW9zdCBlZmZlY3RpdmUgbWVhbnMgb2YgY2FwdHVyaW5nIGFuZCByZWNvcmRpbmcgdGhlIGFzc2V0cyBhc3NvY2lhdGVkIHdpdGggdGhlIHdhdGVyIHN1cHBseSBpbmR1c3RyeS4NClRoaXMgaW5mb3JtYXRpb24gaXMgdmFsdWFibGUgaW4gYnVpbGRpbmcgb2YgbmV3IG5ldHdvcmsgbW9kZWxzIGFuZCBpbmZyYXN0cnVjdHVyZS48L2g1Pg0KDQo8cD5EaWdpdGFsIG1hcHBpbmcgaXMgdGhlIHByb2Nlc3MgYnkgd2hpY2ggY29sbGVjdGVkIGRhdGEgaXMgY29tcGlsZWQgYW5kIGZvcm1hdHRlZCBpbnRvIGEgdmlydHVhbCBpbWFnZS4gVGhpcyBzb2Z0d2FyZSBpcyBrbm93biBhcyBHZW9ncmFwaGljYWwgaW5mb3JtYXRpb24gc3lzdGVtLiBCeSBnZW5lcmF0aW5nIG1hcHMgb2YgdGhlIHBpcGVkIG5ldHdvcmsgaXQgcHJvdmlkZWQgUmFuaGlsbCBhIGNvbXBsZXRlIG92ZXJ2aWV3IG9mIGFsbCBhc3BlY3RzIHJhbmdpbmcgZnJvbSB2YWx2ZXMsIHRvIHJlc2Vydm9pcnMsIHN0b3JhZ2UgdGFua3MgYW5kIHRoZSByZWxldmFudCBkaXN0YW5jZXMgaW4gYmV0d2Vlbi48L3A+DQoiO3M6NToiZW1haWwiO3M6MDoiIjtzOjg6ImZhY2Vib29rIjtzOjA6IiI7czo3OiJ0d2l0dGVyIjtzOjA6IiI7czo4OiJsaW5rZWRpbiI7czowOiIiO3M6NToidmNhcmQiO3M6MDoiIjtzOjEwOiJibG9ja3F1b3RlIjtzOjA6IiI7czo1OiJzdHlsZSI7czoxMDoiaG9yaXpvbnRhbCI7czo0OiJsaW5rIjtzOjA6IiI7czo2OiJ0YXJnZXQiO3M6MToiMCI7czo3OiJhbmltYXRlIjtzOjA6IiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7fX1pOjE7YTozOntzOjQ6InR5cGUiO3M6ODoib3VyX3RlYW0iO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjE3OntzOjc6ImhlYWRpbmciO3M6MDoiIjtzOjU6ImltYWdlIjtzOjA6IiI7czo1OiJ0aXRsZSI7czoxMDoiR2VvLUNvZGluZyI7czo4OiJzdWJ0aXRsZSI7czowOiIiO3M6NToicGhvbmUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6Mzc2OiI8cD5HZW8tQ29kaW5nIHByb3ZpZGVzIGdlb2dyYXBoaWMgY29vcmRpbmF0ZXMsICggbGF0aXR1ZGUgYW5kIGxvbmdpdHVkZSApIG9mIGFsbCBhc3BlY3RzIG9mIHRoZSB3YXRlciBzdXBwbHkgbmV0d29yay4gVGhpcyBpbmZvcm1hdGlvbiBpcyB0aGVuIGVudGVyZWQgb24gdGhlIEdlb2dyYXBoaWMgSW5mb3JtYXRpb24gU3lzdGVtLjwvcD48cD4NCkludGVncmF0aW9uIG9mIGFzc2V0IGludmVudG9yeTwvcD48cD4NCkEgY29tcGxldGUgaW52ZW50b3J5IG9mIGFzc2V0cyBpcyB0aGUgY29yZSBjb21wb25lbnQgaW4gcHJvcGVyIGNsZWFuIHdhdGVyIHN1cHBseSBuZXR3b3JrcyBpbmZyYXN0cnVjdHVyZXMgYW5kIG1hbmFnZW1lbnQgc3lzdGVtcy4gIA0KPC9wPg0KIjtzOjU6ImVtYWlsIjtzOjA6IiI7czo4OiJmYWNlYm9vayI7czowOiIiO3M6NzoidHdpdHRlciI7czowOiIiO3M6ODoibGlua2VkaW4iO3M6MDoiIjtzOjU6InZjYXJkIjtzOjA6IiI7czoxMDoiYmxvY2txdW90ZSI7czowOiIiO3M6NToic3R5bGUiO3M6MTA6Imhvcml6b250YWwiO3M6NDoibGluayI7czowOiIiO3M6NjoidGFyZ2V0IjtzOjE6IjAiO3M6NzoiYW5pbWF0ZSI7czowOiIiO3M6NzoiY2xhc3NlcyI7czowOiIiO319aToyO2E6Mzp7czo0OiJ0eXBlIjtzOjg6Im91cl90ZWFtIjtzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjY6ImZpZWxkcyI7YToxNzp7czo3OiJoZWFkaW5nIjtzOjA6IiI7czo1OiJpbWFnZSI7czowOiIiO3M6NToidGl0bGUiO3M6MTY6IkdJUyB2ZXJpZmljYXRpb24iO3M6ODoic3VidGl0bGUiO3M6MDoiIjtzOjU6InBob25lIjtzOjA6IiI7czo3OiJjb250ZW50IjtzOjIzOToiPHA+DQoNClJlZ3VsYXIgdXBkYXRpbmcgaXMgdml0YWwgdG8gZW5zdXJpbmcgdGhhdCBhbGwgdGhlIGxhdGVzdCBpbmZvcm1hdGlvbiBpcyB0cnVlIGFuZCByZWZsZWN0cyB0aGUgY3VycmVudCBzdGF0dXMgb2Ygb3BlcmF0aW5nIHJlZ2ltZS4gUmVndWxhciBvbnNpdGUgaW52ZXN0aWdhdGlvbnMgYXJlIHVuZGVydGFrZW4gYW5kIHZlcmlmaWVkIGFnYWluc3QgdGhlIGRvY3VtZW50IGluZm9ybWF0aW9uLg0KDQo8L3A+DQoiO3M6NToiZW1haWwiO3M6MDoiIjtzOjg6ImZhY2Vib29rIjtzOjA6IiI7czo3OiJ0d2l0dGVyIjtzOjA6IiI7czo4OiJsaW5rZWRpbiI7czowOiIiO3M6NToidmNhcmQiO3M6MDoiIjtzOjEwOiJibG9ja3F1b3RlIjtzOjA6IiI7czo1OiJzdHlsZSI7czoxMDoiaG9yaXpvbnRhbCI7czo0OiJsaW5rIjtzOjA6IiI7czo2OiJ0YXJnZXQiO3M6MToiMCI7czo3OiJhbmltYXRlIjtzOjA6IiI7czo3OiJjbGFzc2VzIjtzOjA6IiI7fX1pOjM7YTozOntzOjQ6InR5cGUiO3M6ODoib3VyX3RlYW0iO3M6NDoic2l6ZSI7czozOiIxLzEiO3M6NjoiZmllbGRzIjthOjE3OntzOjc6ImhlYWRpbmciO3M6MDoiIjtzOjU6ImltYWdlIjtzOjA6IiI7czo1OiJ0aXRsZSI7czoxOToiTmV0d29ya2luZyBtb2RlbGluZyI7czo4OiJzdWJ0aXRsZSI7czowOiIiO3M6NToicGhvbmUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MzU2OiI8cD4NCg0KDQoNClJhbmhpbGwgcHJvZHVjZXMgaW5kaXZpZHVhbCBtb2RlbHMgdGFpbG9yZWQgdG8gZWFjaCBhbmQgZXZlcnkgY3VzdG9tZXJzIG5lZWRzLiBXZSB1c2UgdGhlIGxhdGVzdCB0ZWNobm9sb2d5IGFuZCBlbmdhZ2UgZnVsbHkgdHJhaW5lZCBzdGFmZiBtZW1iZXJzIHRvIGJ1aWxkLCBmaWVsZCB0ZXN0IGFuZCBjYWxpYnJhdGUuIEluY29ycG9yYXRlZCBpcyBsaXZlIGZsb3cgYW5kIHByZXNzdXJlIGRhdGEgYWxvbmcgd2l0aCB1cCB0byBkYXRlIGN1c3RvbWVyIGJpbGxpbmcgcmVjb3JkcyB0byBlbnN1cmUgdGhlIG1vZGVscyBwcm92aWRlIGFuZCByZWZsZWN0aW9uIG9mIG5ldHdvcmsgZmxvd3MuDQoNCjwvcD4NCiI7czo1OiJlbWFpbCI7czowOiIiO3M6ODoiZmFjZWJvb2siO3M6MDoiIjtzOjc6InR3aXR0ZXIiO3M6MDoiIjtzOjg6ImxpbmtlZGluIjtzOjA6IiI7czo1OiJ2Y2FyZCI7czowOiIiO3M6MTA6ImJsb2NrcXVvdGUiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjEwOiJob3Jpem9udGFsIjtzOjQ6ImxpbmsiO3M6MDoiIjtzOjY6InRhcmdldCI7czoxOiIwIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fX1zOjQ6ImF0dHIiO2E6Nzp7czo4OiJiZ19jb2xvciI7czowOiIiO3M6ODoiYmdfaW1hZ2UiO3M6MDoiIjtzOjExOiJiZ19wb3NpdGlvbiI7czoyMjoibm8tcmVwZWF0O2NlbnRlciB0b3A7OyI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czoxMzoiY29sdW1uX21hcmdpbiI7czowOiIiO3M6MTQ6InZlcnRpY2FsX2FsaWduIjtzOjM6InRvcCI7czo1OiJjbGFzcyI7czowOiIiO319fX19'),
(816, 301, 'mfn-page-items-seo', 'Geographical System & Networking Modelling ( GIS )\n\n<h5>Geographical System & Networking Modelling is one of the most effective means of capturing and recording the assets associated with the water supply industry.\nThis information is valuable in building of new network models and infrastructure.</h5>\n\n<p>Digital mapping is the process by which collected data is compiled and formatted into a virtual image. This software is known as Geographical information system. By generating maps of the piped network it provided Ranhill a complete overview of all aspects ranging from valves, to reservoirs, storage tanks and the relevant distances in between.</p>\n\nhorizontal\n\nGeo-Coding\n\n<p>Geo-Coding provides geographic coordinates, ( latitude and longitude ) of all aspects of the water supply network. This information is then entered on the Geographic Information System.</p><p>\nIntegration of asset inventory</p><p>\nA complete inventory of assets is the core component in proper clean water supply networks infrastructures and management systems.  \n</p>\n\nhorizontal\n\nGIS verification\n\n<p>\n\nRegular updating is vital to ensuring that all the latest information is true and reflects the current status of operating regime. Regular onsite investigations are undertaken and verified against the document information.\n\n</p>\n\nhorizontal\n\nNetworking modeling\n\n<p>\n\n\n\nRanhill produces individual models tailored to each and every customers needs. We use the latest technology and engage fully trained staff members to build, field test and calibrate. Incorporated is live flow and pressure data along with up to date customer billing records to ensure the models provide and reflection of network flows.\n\n</p>\n\nhorizontal\n\n'),
(817, 301, 'mfn-post-hide-content', '0'),
(818, 301, 'mfn-post-slider', '0'),
(819, 301, 'mfn-post-slider-layer', '0'),
(820, 301, 'mfn-post-custom-layout', '0'),
(821, 301, 'mfn-post-one-page', '0'),
(822, 301, 'mfn-post-hide-title', '0'),
(823, 301, 'mfn-post-remove-padding', '0'),
(824, 301, 'mfn-post-menu', '0'),
(825, 301, '_wpb_vc_js_status', 'false'),
(826, 301, '_dp_original', '297'),
(827, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(828, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(829, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(830, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(831, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(832, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(833, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(834, 303, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(835, 303, '_edit_last', '1'),
(836, 303, '_wp_page_template', 'default'),
(837, 303, 'slide_template', 'default'),
(838, 303, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MToiMCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo4OiJvdXJfdGVhbSI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTc6e3M6NzoiaGVhZGluZyI7czowOiIiO3M6NToiaW1hZ2UiO3M6MDoiIjtzOjU6InRpdGxlIjtzOjMxOiJEaXNzb2x2ZWQgQWlyIEZsb2F0YXRpb24gKERBRikgIjtzOjg6InN1YnRpdGxlIjtzOjA6IiI7czo1OiJwaG9uZSI7czowOiIiO3M6NzoiY29udGVudCI7czoxMTA5OiI8aDU+DQoNCkRpc3NvbHZlZCBBaXIgRmxvdGF0aW9uIGNsYXJpZmllciB1dGlsaXNlcyBhaXIgZmxvYXRhdGlvbiB0ZWNobm9sb2d5IGFzIGNsYXJpZmljYXRpb24gbWV0aG9kLiBPdXIgY2xhcmlmaWVyIGlzIGRlc2lnbmVkIGJhc2VkIG9uIOKAmHplcm8gdmVsb2NpdHnigJkgd2F0ZXIgZGlzdHJpYnV0aW9uIGFuZCByZWNvdmVyeSBjb25jZXB0IHRvIHByb2R1Y2UgcGVyZmVjdCBjbGFyaWZpY2F0aW9uIGF0IGhpZ2ggZmxvd3Mgd2l0aCBtaW5pbXVtIGh5ZHJhdWxpYyB0dXJidWxlbmNlLiA8L2g1Pg0KDQo8cD5BZHZhbnRhZ2VzIGFuZCBrZXkgZmVhdHVyZXMgb2YgREFGIHN5c3RlbSA6PC9wPltkaXZpZGVyIGhlaWdodD0iMzAiXQ0KDQo8dWwgIGNsYXNzPSJsaXN0X2NoZWNrIj48bGk+CUhpZ2ggbG9hZGluZyByYXRlcywgc21hbGwgZm9vdHByaW50IGFuZCBzaWduaWZpY2FudGx5IGxvd2VyIGJ1aWxkaW5nIGNvc3RzLjwvbGk+PGxpPg0KCUV4Y2VsbGVudCBvaWwgYW5kIGdyZWFzZSwgY29sb3VyIGFuZCBhbGdhZSByZW1vdmFsLCBmaW5hbCB0dXJiaWRpdHkgbGVzcyB0aGFuIDEgTlRVLjwvbGk+PGxpPg0KCUluZGVwZW5kZW50IHNldHRsZWQgc2x1ZGdlIHJlbW92YWwgbWVjaGFuaXNtIGZyb20gc2N1bSByZW1vdmFsIGF0IHRoZSB0b3AsIHJlZHVjaW5nIHR1cmJ1bGVuY2UgaW4gY2xhcmlmaWVkIHdhdGVyIHpvbmUuPC9saT48bGk+DQoJTG93ZXIgY2hlbWljYWwgdXNhZ2UsIGxvdyBvcGVyYXRpb24gY29zdC48L2xpPjxsaT4NCglRdWljayBzdGFydC11cCBhbmQgdG9sZXJhbnQgb2YgY2hhbmdpbmcgcmF3IHdhdGVyIGNvbmRpdGlvbnMuPC9saT48bGk+DQoJUXVpZXQsIHNpbXBsZSBhbmQgZWFzeS10by1vcGVyYXRlIHdpdGggbWluaW1hbCBvcGVyYXRvciBpbnRlcnZlbnRpb24uPC9saT48bGk+DQoJUHJlLWFzc2VtYmxlZCBhbmQgcHJlLXRlc3RlZCBwYWNrYWdlZCBwbGFudCBvZnRlbiBzYXZlcyA1MCUgb3IgbW9yZSBvdmVyIGluLXNpdHUgY29uc3RydWN0aW9uLjwvbGk+PGxpPg0KCUF1dG9tYXRpYyBjb250cm9scyBhbmQgbW9uaXRvcmluZyBzeXN0ZW1zIGN1c3RvbWlzZWQgdG8gbWVldCBpbmRpdmlkdWFsIG5lZWRzLjwvbGk+PC91bD4NCiI7czo1OiJlbWFpbCI7czowOiIiO3M6ODoiZmFjZWJvb2siO3M6MDoiIjtzOjc6InR3aXR0ZXIiO3M6MDoiIjtzOjg6ImxpbmtlZGluIjtzOjA6IiI7czo1OiJ2Y2FyZCI7czowOiIiO3M6MTA6ImJsb2NrcXVvdGUiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjEwOiJob3Jpem9udGFsIjtzOjQ6ImxpbmsiO3M6MDoiIjtzOjY6InRhcmdldCI7czoxOiIwIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fX1zOjQ6ImF0dHIiO2E6Nzp7czo4OiJiZ19jb2xvciI7czowOiIiO3M6ODoiYmdfaW1hZ2UiO3M6MDoiIjtzOjExOiJiZ19wb3NpdGlvbiI7czoyMjoibm8tcmVwZWF0O2NlbnRlciB0b3A7OyI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czoxMzoiY29sdW1uX21hcmdpbiI7czowOiIiO3M6MTQ6InZlcnRpY2FsX2FsaWduIjtzOjM6InRvcCI7czo1OiJjbGFzcyI7czowOiIiO319fX19'),
(839, 303, 'mfn-page-items-seo', 'Dissolved Air Floatation (DAF)\n\n<h5>\n\nDissolved Air Flotation clarifier utilises air floatation technology as clarification method. Our clarifier is designed based on ‘zero velocity’ water distribution and recovery concept to produce perfect clarification at high flows with minimum hydraulic turbulence. </h5>\n\n<p>Advantages and key features of DAF system :</p>[divider height="30"]\n\n<ul  class="list_check"><li>	High loading rates, small footprint and significantly lower building costs.</li><li>\n	Excellent oil and grease, colour and algae removal, final turbidity less than 1 NTU.</li><li>\n	Independent settled sludge removal mechanism from scum removal at the top, reducing turbulence in clarified water zone.</li><li>\n	Lower chemical usage, low operation cost.</li><li>\n	Quick start-up and tolerant of changing raw water conditions.</li><li>\n	Quiet, simple and easy-to-operate with minimal operator intervention.</li><li>\n	Pre-assembled and pre-tested packaged plant often saves 50% or more over in-situ construction.</li><li>\n	Automatic controls and monitoring systems customised to meet individual needs.</li></ul>\n\nhorizontal\n\n'),
(840, 303, 'mfn-post-hide-content', '0'),
(841, 303, 'mfn-post-slider', '0'),
(842, 303, 'mfn-post-slider-layer', '0'),
(843, 303, 'mfn-post-custom-layout', '0'),
(844, 303, 'mfn-post-one-page', '0'),
(845, 303, 'mfn-post-hide-title', '0'),
(846, 303, 'mfn-post-remove-padding', '0'),
(847, 303, 'mfn-post-menu', '0'),
(848, 303, '_wpb_vc_js_status', 'false'),
(849, 303, '_dp_original', '301'),
(850, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(851, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(852, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(853, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(854, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(855, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(856, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(857, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(858, 306, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(859, 306, '_edit_last', '1'),
(860, 306, '_wp_page_template', 'default'),
(861, 306, 'slide_template', 'default'),
(862, 306, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MToiMCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo4OiJvdXJfdGVhbSI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTc6e3M6NzoiaGVhZGluZyI7czowOiIiO3M6NToiaW1hZ2UiO3M6MDoiIjtzOjU6InRpdGxlIjtzOjMxOiJTZXF1ZW50aWFsIEJhdGNoIFJlYWN0b3IgKFNCUikgIjtzOjg6InN1YnRpdGxlIjtzOjA6IiI7czo1OiJwaG9uZSI7czowOiIiO3M6NzoiY29udGVudCI7czozNTE4OiI8aDU+U2VxdWVudGlhbCBCYXRjaCBSZWFjdG9yIGlzIGEgdHlwZSBvZiBzdXNwZW5kZWQgZ3Jvd3RoIGFjdGl2YXRlZCBzbHVkZ2Ugc3lzdGVtLiBCYWN0ZXJpYeKAmXMgYXJlIGN1bHR1cmVkIGluIHRoZSB0YW5rcyB0byBkaWdlc3QgdGhlIGRpc3NvbHZlZCBvcmdhbmljIG1hdHRlci48L2g1Pg0KDQo8cD5TQlIgaXMg4oCYZmlsbCBhbmQgZHJhd+KAmSBhY3RpdmF0ZWQgc2x1ZGdlIHN5c3RlbSBpbiB3aGljaCBhZXJhdGlvbiwgc2VkaW1lbnRhdGlvbiBhbmQgc2VwYXJhdGlvbiBwcm9jZXNzZXMgYXJlIGNhcnJpZWQgb3V0IGluIHRoZSBzYW1lIHRhbmsgYnV0IHNlcXVlbnRpYWxseSBpbiBhbHRlcm5hdGUgdGFua3MuPC9wPjxwPg0KDQpTQlIgb2ZmZXJzIGhpZ2ggZmxleGliaWxpdHksIGJldHRlciBjb250cm9sLCBlYXNpZXIgbW9uaXRvcmluZywgbGVzcyBwcm9uZSB0byB1cHNldCBhbmQgaGlnaGVyIG9yZ2FuaWMgcmVtb3ZhbCBlZmZpY2llbmN5IGZvciBiaW9sb2dpY2FsIHRyZWF0bWVudC48L3A+PHA+DQoNClNCUiBzeXN0ZW0gY29uc2lzdHMgb2YgNSBwcm9jZXNzZXMgcGhhc2VzIGFzIGJlbG93PC9wPjxwPg0KPGI+MS7CoCBGaWxsIChBZXJhdGUpDQo8L2I+PGJyLz5BdCB0aGUgYmVnaW5uaW5nIG9mIHRoZSBwcm9jZXNzLCB0aGUgcmVhY3RvciBpcyBhdCB0aGUgbWluaW11bSBsZXZlbCBhbmQgaW5mbHVlbnQgZmlsbHMgdGhlIHJlYWN0b3IuIERlcGVuZGluZyBvbiB0aGUgb3BlcmF0aW5nIG1vZGUgc2VsZWN0ZWQsIG94eWdlbiBjYW4gYmUgc3VwcGxpZWQgZHVyaW5nIHRoZSBmaWxsIHBlcmlvZCBvciBhdCB0aGUgYmVnaW5uaW5nIG9mIHRoZSByZWFjdCBwZXJpb2QuPC9wPjxwPg0KIDxiPjIuwqBSZWFjdDwvYj48YnIvPsKgwqDCoMKgwqDCoMKgDQpEdXJpbmcgdGhpcyBwZXJpb2QsIGFlcmF0aW9uIHN0YXJ0cyB1bnRpbCBjb21wbGV0ZSBiaW9kZWdyYWRhdGlvbiBvZiBCT0QgYW5kIG5pdHJvZ2VuIGlzIGFjaGlldmVkLiBBZnRlciB0aGUgc3Vic3RyYXRlIGlzIGNvbnN1bWVkIGZhbWluZSBzdGFnZSBzdGFydHMuIER1cmluZyB0aGlzIHN0YWdlIHNvbWUgbWljcm9vcmdhbmlzbXMgd2lsbCBkaWUgZHVlIHRvIGxhY2sgb2YgZm9vZCBhbmQgd2lsbCBoZWxwIHJlZHVjZSB0aGUgdm9sdW1lIG9mIHNldHRsaW5nIHNsdWRnZS4gVGhlIGxlbmd0aCBvZiB0aGUgYWVyYXRpb24gcGVyaW9kIGRldGVybWluZXMgdGhlIGRlZ3JlZSBvZiBCT0QgY29uc3VtcHRpb24uDQo8Yj4zLiBTZXR0bGU8L2I+PGJyLz4NCkFmdGVyIHRoZSBwcmVzZXQgb3h5Z2VuIGNvbmNlbnRyYXRpb24gb3IgY3ljbGUgaXMgcmVhY2hlZCwgdGhlIGFlcmF0b3JzIGFyZSBzaHV0IG9mZiBhbmQgdGhlIHNldHRsaW5nIHBlcmlvZCBiZWdpbnMuIEF0IHRoaXMgc3RhZ2UsIHRoZSByZWFjdG9yIGZ1bmN0aW9ucyBhcyBhIHF1aWVzY2VudCBjbGFyaWZpZXIgd2l0aCBubyBpbnRlcm5hbCBtb3ZlbWVudCBvciBmbHVpZCBmbG93LCBzb2xpZCBzZXBhcmF0aW9uIHRha2VzIHBsYWNlLCBsZWF2aW5nIGNsZWFyIHRyZWF0ZWQgZWZmbHVlbnQgYWJvdmUgdGhlIHNsdWRnZSBibGFua2V0LjwvcD48cD4NCiA8Yj40LkRlY2FudDwvYj48YnIvPg0KRm9yIGRlY2FudCwgdGhlIGRpc2NoYXJnZSB2YWx2ZSBvcGVucyBhbmQgdGhlIGVmZmx1ZW50IHdpdGhkcmF3YWwgbWVjaGFuaXNtIGNvbGxlY3RzIHRoZSBjbGFyaWZpZWQgZWZmbHVlbnQuIFRoaXMgcmVtb3ZhbCBtdXN0IGJlIGRvbmUgd2l0aG91dCBkaXN0dXJiaW5nIHRoZSBzZXR0bGVkIHNsdWRnZS4gV2hlbiB0aGUgbWluaW11bSB3YXRlciBsZXZlbCBpcyByZWFjaGVkIHRoZSBkaXNjaGFyZ2UgdmFsdmVzIGNsb3NlLsKgPC9wPjxwPg0KIDxiPjUuSWRsZTwvYj48YnIvPg0KVGhlIHJlYWN0b3IgaXMgbm90IGluIHVzZSBhdCB0aGlzIHN0YWdlLCB1bnRpbCB0aGUgY3ljbGUgaXMgcmVwZWF0ZWQuIFRoZSB0aW1lIGluIHRoaXMgc3RhZ2UgY2FuIGJlIHVzZWQgdG8gZGUtc2x1ZGdlIGlmIG5lY2Vzc2FyeSBUaGUgZnJlcXVlbmN5IG9mIGRlLXNsdWRnaW5nIHJhbmdlcyBiZXR3ZWVuIG9uY2UgZWFjaCBjeWNsZSB0byBvbmNlIGV2ZXJ5IDIgdG8gMyBtb250aHMgZGVwZW5kaW5nIHVwb24gc3lzdGVtIGRlc2lnbi48L3A+PHA+DQoNClJhdGlvbmFsZXMgYW5kIEFkdmFudGFnZXMgb2YgU0JSPC9wPjxwPg0KS2V5IGFkdmFudGFnZXMgb2YgdGhlIFNCUiBiaW9sb2dpY2FsIHRyZWF0bWVudCBzeXN0ZW0uPC9wPg0KPHVsICBjbGFzcz0ibGlzdF9jaGVjayI+PGxpPglObyBzZWNvbmRhcnkgY2xhcmlmaWVyIGlzIHJlcXVpcmVkLCB0aHVzIG5vIGZsb2F0aW5nIHNsdWRnZSBvciBzbHVkZ2UgY2Fycnktb3ZlciBwcm9ibGVtcy48L2xpPjxsaT4NCglNb3JlIGVmZmVjdGl2ZSBzZWRpbWVudGF0aW9uIHVuZGVyIHN0YWduYW50IGNvbmRpdGlvbiByZXN1bHRpbmcgaW4gYmV0dGVyIFN1c3BlbmRlZCBTb2xpZCwgQk9EIGFuZCBDT0QgaW4gZmluYWwgZWZmbHVlbnQgcmVzdWx0cy48L2xpPjxsaT4NCglMb25nZXIgbWVhbiBjZWxsIHJldGVudGlvbiB0aW1lLCBsZXNzIHNsdWRnZSB5aWVsZCByYXRlcyBhbmQgaXMgZXF1aXZhbGVudCB0byBFeHRlbmRlZCBBZXJhdGlvbiBTeXN0ZW0uPC9saT48bGk+DQoJQmF0Y2ggc3lzdGVtIHByb3ZpZGVzIG1vcmUgZGF0YSBmb3IgYmV0dGVyIGNvbnRyb2wsIG1vbml0b3JpbmcgYW5kIHRyb3VibGUgc2hvb3RpbmcuPC9saT48bGk+DQoJT3h5Z2VuIHN1cHBseSBjYW4gYmUgY3V0IG9mZiB3aGVuIHJlYWN0aW9uIGlzIGNvbXBsZXRlIGFuZCByZWR1Y2UgZW5lcmd5IGNvbnN1bXB0aW9uLjwvbGk+PGxpPg0KCUFlcmF0aW9uIHRpbWUgKFJlYWN0aW9uIFRpbWUpIGNhbiBiZSB2YXJpZWQgYnkgY2hhbmdpbmcgdGhlIHRpbWUgYWxsb2NhdGVkIHRvIGVhY2ggc3RhZ2UgYXMgcmVxdWlyZWQuPC9saT48bGk+DQoJQmF0Y2ggc3lzdGVtIHByb3ZpZGVzIHNlbGYtZXF1YWxpemF0aW9uIGZvciBlYWNoIGJhdGNoLCB3aGljaCB3aWxsIGhvbW9nZW5pemUgdGhlIGxvYWRpbmcuIExlc3MgbWFpbnRlbmFuY2Ugb24gU0JSIHN5c3RlbSBiZWNhdXNlIG9ubHkgUExDIGFuZCBwbmV1bWF0aWMgdmFsdmVzIGFyZSBpbnZvbHZlZC48L2xpPjxsaT4NCglBcyB3aXRoIEJPRCByZW1vdmFsLCBuaXRyaWZpY2F0aW9uIGNhbiBiZSBhY2NvbXBsaXNoZWQgaW4gYXR0YWNoZWQgZ3Jvd3RoIGJpb2xvZ2ljYWwgcHJvY2Vzc2VzIGFsb25nIHdpdGggQk9EIHJlbW92YWwgaW4gdGhlIHNhbWUgc2luZ2xlIHByb2Nlc3MuPC9saT48bGk+DQpUaGUgbW9kaWZpZWQgU0JSIHN5c3RlbSBpcyBhYmxlIHRvIGVtcGxveSBkb3VibGUgYW5veGljIGRlbml0cmlmaWNhdGlvbiBwcm9jZXNzIGJ5IHVzaW5nIEJPRCBpbiB0aGUgaW5mbHVlbnQgd2FzdGV3YXRlciBhbmQgdGhlIGFpZCBvZiBhZGRpdGlvbmFsIGNhcmJvbiBzb3VyY2UuIDwvbGk+PGxpPk5pdHJhdGUgcmVtb3ZhbCBtYXkgb2NjdXJzIGluIFNCUiBkdXJpbmcgbm9uLWFlcmF0ZWQgc2V0dGxlIGFuZCBkZWNhbnQgcGVyaW9kcy48L2xpPiI7czo1OiJlbWFpbCI7czowOiIiO3M6ODoiZmFjZWJvb2siO3M6MDoiIjtzOjc6InR3aXR0ZXIiO3M6MDoiIjtzOjg6ImxpbmtlZGluIjtzOjA6IiI7czo1OiJ2Y2FyZCI7czowOiIiO3M6MTA6ImJsb2NrcXVvdGUiO3M6MDoiIjtzOjU6InN0eWxlIjtzOjEwOiJob3Jpem9udGFsIjtzOjQ6ImxpbmsiO3M6MDoiIjtzOjY6InRhcmdldCI7czoxOiIwIjtzOjc6ImFuaW1hdGUiO3M6MDoiIjtzOjc6ImNsYXNzZXMiO3M6MDoiIjt9fX1zOjQ6ImF0dHIiO2E6Nzp7czo4OiJiZ19jb2xvciI7czowOiIiO3M6ODoiYmdfaW1hZ2UiO3M6MDoiIjtzOjExOiJiZ19wb3NpdGlvbiI7czoyMjoibm8tcmVwZWF0O2NlbnRlciB0b3A7OyI7czo3OiJwYWRkaW5nIjtzOjA6IiI7czoxMzoiY29sdW1uX21hcmdpbiI7czowOiIiO3M6MTQ6InZlcnRpY2FsX2FsaWduIjtzOjM6InRvcCI7czo1OiJjbGFzcyI7czowOiIiO319fX19'),
(863, 306, 'mfn-page-items-seo', 'Sequential Batch Reactor (SBR)\n\n<h5>Sequential Batch Reactor is a type of suspended growth activated sludge system. Bacteria’s are cultured in the tanks to digest the dissolved organic matter.</h5>\n\n<p>SBR is ‘fill and draw’ activated sludge system in which aeration, sedimentation and separation processes are carried out in the same tank but sequentially in alternate tanks.</p><p>\n\nSBR offers high flexibility, better control, easier monitoring, less prone to upset and higher organic removal efficiency for biological treatment.</p><p>\n\nSBR system consists of 5 processes phases as below</p><p>\n<b>1.  Fill (Aerate)\n</b><br/>At the beginning of the process, the reactor is at the minimum level and influent fills the reactor. Depending on the operating mode selected, oxygen can be supplied during the fill period or at the beginning of the react period.</p><p>\n <b>2. React</b><br/>       \nDuring this period, aeration starts until complete biodegradation of BOD and nitrogen is achieved. After the substrate is consumed famine stage starts. During this stage some microorganisms will die due to lack of food and will help reduce the volume of settling sludge. The length of the aeration period determines the degree of BOD consumption.\n<b>3. Settle</b><br/>\nAfter the preset oxygen concentration or cycle is reached, the aerators are shut off and the settling period begins. At this stage, the reactor functions as a quiescent clarifier with no internal movement or fluid flow, solid separation takes place, leaving clear treated effluent above the sludge blanket.</p><p>\n <b>4.Decant</b><br/>\nFor decant, the discharge valve opens and the effluent withdrawal mechanism collects the clarified effluent. This removal must be done without disturbing the settled sludge. When the minimum water level is reached the discharge valves close. </p><p>\n <b>5.Idle</b><br/>\nThe reactor is not in use at this stage, until the cycle is repeated. The time in this stage can be used to de-sludge if necessary The frequency of de-sludging ranges between once each cycle to once every 2 to 3 months depending upon system design.</p><p>\n\nRationales and Advantages of SBR</p><p>\nKey advantages of the SBR biological treatment system.</p>\n<ul  class="list_check"><li>	No secondary clarifier is required, thus no floating sludge or sludge carry-over problems.</li><li>\n	More effective sedimentation under stagnant condition resulting in better Suspended Solid, BOD and COD in final effluent results.</li><li>\n	Longer mean cell retention time, less sludge yield rates and is equivalent to Extended Aeration System.</li><li>\n	Batch system provides more data for better control, monitoring and trouble shooting.</li><li>\n	Oxygen supply can be cut off when reaction is complete and reduce energy consumption.</li><li>\n	Aeration time (Reaction Time) can be varied by changing the time allocated to each stage as required.</li><li>\n	Batch system provides self-equalization for each batch, which will homogenize the loading. Less maintenance on SBR system because only PLC and pneumatic valves are involved.</li><li>\n	As with BOD removal, nitrification can be accomplished in attached growth biological processes along with BOD removal in the same single process.</li><li>\nThe modified SBR system is able to employ double anoxic denitrification process by using BOD in the influent wastewater and the aid of additional carbon source. </li><li>Nitrate removal may occurs in SBR during non-aerated settle and decant periods.</li>\n\nhorizontal\n\n'),
(864, 306, 'mfn-post-hide-content', '0'),
(865, 306, 'mfn-post-slider', '0'),
(866, 306, 'mfn-post-slider-layer', '0'),
(867, 306, 'mfn-post-custom-layout', '0'),
(868, 306, 'mfn-post-one-page', '0'),
(869, 306, 'mfn-post-hide-title', '0'),
(870, 306, 'mfn-post-remove-padding', '0'),
(871, 306, 'mfn-post-menu', '0'),
(872, 306, '_wpb_vc_js_status', 'false'),
(873, 306, '_dp_original', '303'),
(874, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(875, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(876, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(877, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(878, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(879, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(880, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(881, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(882, 308, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(883, 308, '_edit_last', '1'),
(884, 308, '_wp_page_template', 'default'),
(885, 308, 'slide_template', 'default'),
(886, 308, 'mfn-page-items', 'YToxOntpOjA7YToyOntzOjQ6ImF0dHIiO2E6MTU6e3M6NToidGl0bGUiO3M6MDoiIjtzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjEyOiJiZ192aWRlb19tcDQiO3M6MDoiIjtzOjEyOiJiZ192aWRlb19vZ3YiO3M6MDoiIjtzOjExOiJwYWRkaW5nX3RvcCI7czoyOiI1MCI7czoxNDoicGFkZGluZ19ib3R0b20iO3M6MToiMCI7czo3OiJkaXZpZGVyIjtzOjA6IiI7czoxMDoibmF2aWdhdGlvbiI7czowOiIiO3M6NToic3R5bGUiO3M6MDoiIjtzOjU6ImNsYXNzIjtzOjA6IiI7czoxMDoic2VjdGlvbl9pZCI7czowOiIiO3M6MTA6InZpc2liaWxpdHkiO3M6MDoiIjtzOjQ6ImhpZGUiO3M6MDoiIjt9czo1OiJ3cmFwcyI7YToxOntpOjA7YTozOntzOjQ6InNpemUiO3M6MzoiMS8xIjtzOjU6Iml0ZW1zIjthOjE6e2k6MDthOjM6e3M6NDoidHlwZSI7czo4OiJvdXJfdGVhbSI7czo0OiJzaXplIjtzOjM6IjEvMSI7czo2OiJmaWVsZHMiO2E6MTc6e3M6NzoiaGVhZGluZyI7czowOiIiO3M6NToiaW1hZ2UiO3M6MDoiIjtzOjU6InRpdGxlIjtzOjk6IkFxdWFzbWFydCI7czo4OiJzdWJ0aXRsZSI7czowOiIiO3M6NToicGhvbmUiO3M6MDoiIjtzOjc6ImNvbnRlbnQiO3M6MTI4MToiPGg1PkZvciB3YXRlciBidXNpbmVzcywgdGhlcmUgYXJlIHNldmVyYWwgbWV0aG9kcyBhbmQgdGVjaG5vbG9naWVzIHRoYXQgYXJlIGF2YWlsYWJsZSBhbmQgYXJlIHVzZWQgd29ybGR3aWRlIGZvciB0cmVhdGluZyByYXcgd2F0ZXIgaW50byBkcmlua2luZyBxdWFsaXR5IG9yIGluZHVzdHJpYWwgd2FzdGV3YXRlci4gPC9oNT4NCg0KPHA+QXF1YVNNQVJUIHN5c3RlbSBpcyBhIHdlYi1iYXNlIGFwcGxpY2F0aW9uIHN5c3RlbSBkZXZlbG9wZWQgYXMgYW4gb3BlcmF0aW9uYWwgdG9vbCBhbmQgaGFzIGJlY29tZSBhbiBpbnRlZ3JhbCBjb21wb25lbnQgb2YgdGhlIHJlZHVjdGlvbiBzdHJhdGVneS4gVGhpcyBzeXN0ZW0gaXMgYW4gaW50ZXJuYWwgcmVzb3VyY2UgZGV2ZWxvcGVkIGluLWhvdXNlIHRvIHByb3ZpZGUgZWZmZWN0aXZlIG1vbml0b3JpbmcgYW5kIGRlY2lzaW9uIHN1cHBvcnQgZm9yIHRoZSBOUlcgYnVzaW5lc3MuIFRoaXMgZWZmZWN0aXZlIG1vbml0b3JpbmcgYW5kIGRlY2lzaW9uIHN1cHBvcnQgaGVscHMgdGhlIE5SVyBidXNpbmVzcyB0byBtZWV0IGl0cyB0YXJnZXRzIGFuZCBhbGxvY2F0ZSBpdHMgcmVzb3VyY2VzIGVmZmVjdGl2ZWx5IGFuZCBlZmZpY2llbnRseSwgdGhlcmVieSBjcmVhdGluZyBhIGNvbXBldGl0aXZlIGFkdmFudGFnZSBmb3IgdGhlIE5SVyBidXNpbmVzcy4gVGhpcyBzeXN0ZW0gcGVyZm9ybXMgYXMgYSBkYXRhIHN0b3JhZ2UgbWFuYWdlbWVudCBzeXN0ZW0gZm9yIGRhdGEgY2FwdHVyZSwgaW5wdXQsIGhhbmRsaW5nIGFuZCBtb25pdG9yaW5nIG9mIERNQeKAmXMgZmllbGQgZGF0YSBmb3IgdGhlIGFueSBnaXZlbiBwcm9qZWN0LjwvcD48cD4NCg0KVGhlIEFxdWFTTUFSVCBzeXN0ZW0gbGlua3MgYWxsIG9mIHRoZSBETUHigJlzIHJhdyBkYXRhIGNvbGxlY3RlZCAoZnJvbSBhbnkgc29mdHdhcmUpIGFuZCBjcmVhdGVzIHJlcG9ydHMgYXQgdGhlIGNsaWNrIG9mIGEgYnV0dG9uLiBJdCBpcyBhIHNpbXBsZSBhbmQgdXNlZnVsIHRvb2wgZm9yIERNQSBtb25pdG9yaW5nLCBlaXRoZXIgZm9yIGEgbG9uZyB0ZXJtIG9yIG9uIGEgZGFpbHkgYmFzaXMsIHdoaWNoIHdvdWxkIHNhdmUgZGF0YSBhbmFseXN0IGEgc2lnbmlmaWNhbnQgYW1vdW50IG9mIHRpbWUuPC9wPjxwPg0KDQpBcXVhU01BUlQgaXMgdXNlZCBhcyBhbiBpbnRlcm5hbCBtb25pdG9yaW5nIGFuZCBkZWNpc2lvbi1tYWtpbmcgcmVzb3VyY2UgdGhhdCBoZWxwcyBSV1NCIHRvIGFjaGlldmUgY2xpZW50IHRhcmdldHMgYW5kIG9wdGltaXNlIGl0cyBjb3N0cy4NCg0KIjtzOjU6ImVtYWlsIjtzOjA6IiI7czo4OiJmYWNlYm9vayI7czowOiIiO3M6NzoidHdpdHRlciI7czowOiIiO3M6ODoibGlua2VkaW4iO3M6MDoiIjtzOjU6InZjYXJkIjtzOjA6IiI7czoxMDoiYmxvY2txdW90ZSI7czowOiIiO3M6NToic3R5bGUiO3M6MTA6Imhvcml6b250YWwiO3M6NDoibGluayI7czowOiIiO3M6NjoidGFyZ2V0IjtzOjE6IjAiO3M6NzoiYW5pbWF0ZSI7czowOiIiO3M6NzoiY2xhc3NlcyI7czowOiIiO319fXM6NDoiYXR0ciI7YTo3OntzOjg6ImJnX2NvbG9yIjtzOjA6IiI7czo4OiJiZ19pbWFnZSI7czowOiIiO3M6MTE6ImJnX3Bvc2l0aW9uIjtzOjIyOiJuby1yZXBlYXQ7Y2VudGVyIHRvcDs7IjtzOjc6InBhZGRpbmciO3M6MDoiIjtzOjEzOiJjb2x1bW5fbWFyZ2luIjtzOjA6IiI7czoxNDoidmVydGljYWxfYWxpZ24iO3M6MzoidG9wIjtzOjU6ImNsYXNzIjtzOjA6IiI7fX19fX0='),
(887, 308, 'mfn-page-items-seo', 'Aquasmart\n\n<h5>For water business, there are several methods and technologies that are available and are used worldwide for treating raw water into drinking quality or industrial wastewater. </h5>\n\n<p>AquaSMART system is a web-base application system developed as an operational tool and has become an integral component of the reduction strategy. This system is an internal resource developed in-house to provide effective monitoring and decision support for the NRW business. This effective monitoring and decision support helps the NRW business to meet its targets and allocate its resources effectively and efficiently, thereby creating a competitive advantage for the NRW business. This system performs as a data storage management system for data capture, input, handling and monitoring of DMA’s field data for the any given project.</p><p>\n\nThe AquaSMART system links all of the DMA’s raw data collected (from any software) and creates reports at the click of a button. It is a simple and useful tool for DMA monitoring, either for a long term or on a daily basis, which would save data analyst a significant amount of time.</p><p>\n\nAquaSMART is used as an internal monitoring and decision-making resource that helps RWSB to achieve client targets and optimise its costs.\n\nhorizontal\n\n'),
(888, 308, 'mfn-post-hide-content', '0'),
(889, 308, 'mfn-post-slider', '0'),
(890, 308, 'mfn-post-slider-layer', '0'),
(891, 308, 'mfn-post-custom-layout', '0'),
(892, 308, 'mfn-post-one-page', '0'),
(893, 308, 'mfn-post-hide-title', '0'),
(894, 308, 'mfn-post-remove-padding', '0'),
(895, 308, 'mfn-post-menu', '0'),
(896, 308, '_wpb_vc_js_status', 'false'),
(897, 308, '_dp_original', '303'),
(898, 3539, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(899, 3539, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(900, 3539, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(901, 3539, '_edit_last', '1'),
(902, 3539, '_wp_page_template', 'default'),
(903, 3539, 'slide_template', 'default'),
(904, 3539, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"20";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:369:"Since inception, we have set out to fulfill the basic necessities of life. Our businesses are built around the needs at large for water and power as we recognise the scarcity of those resources. We continue to grow by focusing on closing the gap while doing it sustainably. \n[divider height="30"]\nWe are listed on the main board of Bursa Malaysia with 3,265 employees.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:16:"Vision, Mission ";s:7:"content";s:529:"<h3 style="margin-bottom: 0px;"> Vision, Mission & Values</h3>\n[divider height="30"]\n\n<div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/vmv_banner.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="our-vision-mission-values/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:18:"Board of Directors";s:7:"content";s:519:"<h3 style="margin-bottom: 0px;">Board of  Directors </h3>\n[divider height="30"]\n\n<div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bod_banner.jpg"  border="0"]\n[divider height="15"]\n\n<a class="read_more" href="board-of-directors/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(905, 3539, 'mfn-page-items-seo', 'Since inception, we have set out to fulfill the basic necessities of life. Our businesses are built around the needs at large for water and power as we recognise the scarcity of those resources. We continue to grow by focusing on closing the gap while doing it sustainably. \r\n[divider height="30"]\r\nWe are listed on the main board of Bursa Malaysia with 3,265 employees.\n\nno-repeat;center top;;\n\nVision, Mission\n\n<h3 style="margin-bottom: 0px;"> Vision, Mission & Values</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/vmv_banner.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="our-vision-mission-values/">Read more</a>\n\nno-repeat;center top;;\n\nBoard of Directors\n\n<h3 style="margin-bottom: 0px;">Board of  Directors </h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bod_banner.jpg"  border="0"]\r\n[divider height="15"]\r\n\r\n<a class="read_more" href="board-of-directors/">Read more</a>\n\nno-repeat;center top;;\n\n'),
(906, 3539, 'mfn-post-hide-content', '0'),
(907, 3539, 'mfn-post-sidebar', '0'),
(908, 3539, 'mfn-post-sidebar2', '0'),
(909, 3539, 'mfn-post-slider', '0'),
(910, 3539, 'mfn-post-slider-layer', '0'),
(911, 3539, 'mfn-post-custom-layout', '0'),
(912, 3539, 'mfn-post-one-page', '0'),
(913, 3539, 'mfn-post-hide-title', '0'),
(914, 3539, 'mfn-post-remove-padding', '0'),
(915, 3539, 'mfn-post-menu', '0'),
(916, 3539, '_wpb_vc_js_status', 'false'),
(917, 3539, '_thumbnail_id', '3661'),
(918, 3539, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(919, 3539, 'mfn-post-subheader-image', ''),
(920, 3539, 'mfn-meta-seo-title', 'RANHILL'),
(921, 3539, 'mfn-meta-seo-description', 'About Us'),
(922, 3539, 'mfn-meta-seo-keywords', 'RANHILL'),
(949, 3609, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(950, 3609, '_edit_last', '1'),
(951, 3609, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(952, 3609, '_thumbnail_id', '3669'),
(953, 3609, '_wp_page_template', 'default'),
(954, 3609, 'slide_template', 'default'),
(955, 3609, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:72:"[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d"]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(956, 3609, 'mfn-page-items-seo', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d"]\n\nno-repeat;center top;;\n\n'),
(957, 3609, 'mfn-post-hide-content', '0'),
(958, 3609, 'mfn-post-slider', '0'),
(959, 3609, 'mfn-post-slider-layer', '0'),
(960, 3609, 'mfn-post-hide-title', '0'),
(961, 3609, 'mfn-post-remove-padding', '0'),
(962, 3609, 'mfn-post-custom-layout', '0'),
(963, 3609, 'mfn-post-one-page', '0'),
(964, 3609, 'mfn-post-menu', '0'),
(965, 3609, '_wpb_vc_js_status', 'false'),
(1691, 16, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1692, 16, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1693, 16, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1694, 16, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(1695, 16, '_wp_page_template', 'default'),
(1696, 16, 'slide_template', 'default'),
(1697, 16, 'mfn-post-hide-content', '0'),
(1698, 16, 'mfn-post-slider', '0'),
(1699, 16, 'mfn-post-slider-layer', '0'),
(1700, 16, 'mfn-post-custom-layout', '0'),
(1701, 16, 'mfn-post-one-page', '0'),
(1702, 16, 'mfn-post-hide-title', '0'),
(1703, 16, 'mfn-post-remove-padding', '0'),
(1704, 16, 'mfn-post-menu', '0'),
(1705, 16, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:4:"Desc";s:7:"content";s:975:"<b>Address:<br/></b>\nRanhill Holdings Berhad (1091059-K)<br/>\nBangunan Ranhill SAJ,<br/>\nJalan Garuda, <br/>\nLarkin, <br/>\n80350 Johor Bahru.<br/><br/>\n<b>Tel:</b> 07 225 5300 <br/>\n<b>Fax:</b> 07 225 5310<br/><br/>\n\n<b>Media\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\n\n<br/><br/>\n<b>Investor Relations\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\n\n\n<br/><br/>\n<b>Career\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\n</br>For internship opportunities please email us at<a href="mailto:internship@investors-watch.com/wp-staging/ranhill"> internship@investors-watch.com/wp-staging/ranhill</a>\n\n\n<br/><br/>\n<b>Sustainability Reporting</b><br/>\nIf you have any sustainability reporting enquiries please email us at\nsustainability@investors-watch.com/wp-staging/ranhill\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:360:"<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3988.4574635811286!2d103.74283931484689!3d1.4965099989086228!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da6d69c8c250f3%3A0xc95a20340d222615!2sSAJ+Holdings+Sdn+Bhd!5e0!3m2!1sen!2smy!4v1503450153374" width="100%" height="500" frameborder="0" style="border:0" allowfullscreen></iframe>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(1706, 16, 'mfn-page-items-seo', 'Desc\n\n<b>Address:<br/></b>\r\nRanhill Holdings Berhad (1091059-K)<br/>\r\nBangunan Ranhill SAJ,<br/>\r\nJalan Garuda, <br/>\r\nLarkin, <br/>\r\n80350 Johor Bahru.<br/><br/>\r\n<b>Tel:</b> 07 225 5300 <br/>\r\n<b>Fax:</b> 07 225 5310<br/><br/>\r\n\r\n<b>Media\r\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\r\n\r\n<br/><br/>\r\n<b>Investor Relations\r\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\r\n\r\n\r\n<br/><br/>\r\n<b>Career\r\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\r\n</br>For internship opportunities please email us at<a href="mailto:internship@investors-watch.com/wp-staging/ranhill"> internship@investors-watch.com/wp-staging/ranhill</a>\r\n\r\n\r\n<br/><br/>\r\n<b>Sustainability Reporting</b><br/>\r\nIf you have any sustainability reporting enquiries please email us at\r\nsustainability@investors-watch.com/wp-staging/ranhill\n\nno-repeat;center top;;\n\n<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3988.4574635811286!2d103.74283931484689!3d1.4965099989086228!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da6d69c8c250f3%3A0xc95a20340d222615!2sSAJ+Holdings+Sdn+Bhd!5e0!3m2!1sen!2smy!4v1503450153374" width="100%" height="500" frameborder="0" style="border:0" allowfullscreen></iframe>\n\nno-repeat;center top;;\n\n'),
(1707, 16, '_thumbnail_id', '3732'),
(1708, 16, '_wp_page_template', 'default'),
(1709, 16, 'slide_template', 'default'),
(1710, 16, 'mfn-post-hide-content', '0'),
(1711, 16, 'mfn-post-slider', '0'),
(1712, 16, 'mfn-post-slider-layer', '0'),
(1713, 16, 'mfn-post-custom-layout', '0'),
(1714, 16, 'mfn-post-one-page', '0'),
(1715, 16, 'mfn-post-hide-title', '0'),
(1716, 16, 'mfn-post-remove-padding', '0'),
(1717, 16, 'mfn-post-menu', '0'),
(1718, 16, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:4:"Desc";s:7:"content";s:975:"<b>Address:<br/></b>\nRanhill Holdings Berhad (1091059-K)<br/>\nBangunan Ranhill SAJ,<br/>\nJalan Garuda, <br/>\nLarkin, <br/>\n80350 Johor Bahru.<br/><br/>\n<b>Tel:</b> 07 225 5300 <br/>\n<b>Fax:</b> 07 225 5310<br/><br/>\n\n<b>Media\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\n\n<br/><br/>\n<b>Investor Relations\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\n\n\n<br/><br/>\n<b>Career\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\n</br>For internship opportunities please email us at<a href="mailto:internship@investors-watch.com/wp-staging/ranhill"> internship@investors-watch.com/wp-staging/ranhill</a>\n\n\n<br/><br/>\n<b>Sustainability Reporting</b><br/>\nIf you have any sustainability reporting enquiries please email us at\nsustainability@investors-watch.com/wp-staging/ranhill\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:360:"<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3988.4574635811286!2d103.74283931484689!3d1.4965099989086228!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da6d69c8c250f3%3A0xc95a20340d222615!2sSAJ+Holdings+Sdn+Bhd!5e0!3m2!1sen!2smy!4v1503450153374" width="100%" height="500" frameborder="0" style="border:0" allowfullscreen></iframe>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(1719, 16, 'mfn-page-items-seo', 'Desc\n\n<b>Address:<br/></b>\r\nRanhill Holdings Berhad (1091059-K)<br/>\r\nBangunan Ranhill SAJ,<br/>\r\nJalan Garuda, <br/>\r\nLarkin, <br/>\r\n80350 Johor Bahru.<br/><br/>\r\n<b>Tel:</b> 07 225 5300 <br/>\r\n<b>Fax:</b> 07 225 5310<br/><br/>\r\n\r\n<b>Media\r\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\r\n\r\n<br/><br/>\r\n<b>Investor Relations\r\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\r\n\r\n\r\n<br/><br/>\r\n<b>Career\r\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\r\n</br>For internship opportunities please email us at<a href="mailto:internship@investors-watch.com/wp-staging/ranhill"> internship@investors-watch.com/wp-staging/ranhill</a>\r\n\r\n\r\n<br/><br/>\r\n<b>Sustainability Reporting</b><br/>\r\nIf you have any sustainability reporting enquiries please email us at\r\nsustainability@investors-watch.com/wp-staging/ranhill\n\nno-repeat;center top;;\n\n<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3988.4574635811286!2d103.74283931484689!3d1.4965099989086228!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da6d69c8c250f3%3A0xc95a20340d222615!2sSAJ+Holdings+Sdn+Bhd!5e0!3m2!1sen!2smy!4v1503450153374" width="100%" height="500" frameborder="0" style="border:0" allowfullscreen></iframe>\n\nno-repeat;center top;;\n\n'),
(1720, 16, '_thumbnail_id', '3732'),
(2002, 3618, '_wp_attached_file', '2016/07/ufonts.com_futura_book-1.eot'),
(2003, 3619, '_wp_attached_file', '2016/07/ufonts.com_futura_book-bold-1.eot'),
(2004, 3620, '_wp_attached_file', '2016/07/ufonts.com_futura_book-bold.eot'),
(2005, 3621, '_wp_attached_file', '2016/07/ufonts.com_futura_book.eot'),
(2006, 3622, '_wp_attached_file', '2016/07/ufonts.com_futura_light.eot'),
(2007, 3623, '_wp_attached_file', '2016/07/ufonts.com_futura_medium.eot'),
(2008, 3624, '_wp_attached_file', '2016/07/ufonts.com_futura-book-1.ttf'),
(2009, 3625, '_wp_attached_file', '2016/07/ufonts.com_futura-book-bold-1.ttf'),
(2010, 3626, '_wp_attached_file', '2016/07/ufonts.com_futura-book-bold.ttf'),
(2011, 3627, '_wp_attached_file', '2016/07/ufonts.com_futura-book-bold.woff'),
(2012, 3628, '_wp_attached_file', '2016/07/ufonts.com_futura-book.ttf'),
(2013, 3629, '_wp_attached_file', '2016/07/ufonts.com_futura-book.woff'),
(2014, 3630, '_wp_attached_file', '2016/07/ufonts.com_futura-light.ttf'),
(2015, 3631, '_wp_attached_file', '2016/07/ufonts.com_futura-medium.ttf'),
(2016, 3632, '_wp_attached_file', '2016/07/unicode.futurab.ttf'),
(2017, 3633, '_wp_attached_file', 'revslider/spa/water.jpg'),
(2018, 3633, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1400;s:6:"height";i:787;s:4:"file";s:23:"revslider/spa/water.jpg";s:5:"sizes";a:15:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"water-150x150.jpg";s:5:"width";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:"water-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"water-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"water-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"water-260x146.jpg";s:5:"width";i:260;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:15:"water-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:16:"water-133x75.jpg";s:5:"width";i:133;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:15:"water-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"water-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:18:"water-1280x787.jpg";s:5:"width";i:1280;s:6:"height";i:787;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:18:"water-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:17:"water-768x787.jpg";s:5:"width";i:768;s:6:"height";i:787;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:18:"water-1400x750.jpg";s:5:"width";i:1400;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:17:"water-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:18:"water-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2019, 3634, '_wp_attached_file', 'revslider/spa/arrow.png'),
(2020, 3634, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:94;s:6:"height";i:94;s:4:"file";s:23:"revslider/spa/arrow.png";s:5:"sizes";a:4:{s:5:"50x50";a:4:{s:4:"file";s:15:"arrow-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:15:"arrow-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:15:"arrow-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"arrow-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2021, 3635, '_wp_attached_file', 'revslider/spa/enviroment.png'),
(2022, 3635, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:325;s:6:"height";i:257;s:4:"file";s:28:"revslider/spa/enviroment.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"enviroment-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:"enviroment-300x237.png";s:5:"width";i:300;s:6:"height";i:237;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"enviroment-185x146.png";s:5:"width";i:185;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:20:"enviroment-50x40.png";s:5:"width";i:50;s:6:"height";i:40;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"enviroment-95x75.png";s:5:"width";i:95;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:20:"enviroment-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"enviroment-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2023, 3636, '_wp_attached_file', 'revslider/spa/power.jpg'),
(2024, 3636, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1366;s:6:"height";i:768;s:4:"file";s:23:"revslider/spa/power.jpg";s:5:"sizes";a:15:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"power-150x150.jpg";s:5:"width";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:"power-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"power-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"power-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"power-260x146.jpg";s:5:"width";i:260;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:15:"power-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:16:"power-133x75.jpg";s:5:"width";i:133;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:15:"power-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"power-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:18:"power-1280x768.jpg";s:5:"width";i:1280;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:18:"power-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:17:"power-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:18:"power-1366x750.jpg";s:5:"width";i:1366;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:17:"power-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:18:"power-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2025, 3637, '_wp_attached_file', 'revslider/spa/power.png'),
(2026, 3637, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:325;s:6:"height";i:257;s:4:"file";s:23:"revslider/spa/power.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"power-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:17:"power-300x237.png";s:5:"width";i:300;s:6:"height";i:237;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"power-185x146.png";s:5:"width";i:185;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:15:"power-50x40.png";s:5:"width";i:50;s:6:"height";i:40;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:15:"power-95x75.png";s:5:"width";i:95;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:15:"power-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"power-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2029, 6, '_edit_lock', '1496134603:1'),
(2030, 43, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2031, 43, '_edit_last', '1'),
(2032, 43, 'slide_template', 'default') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2033, 43, 'mfn-post-layout', 'full-width'),
(2034, 43, 'mfn-post-bg-pos', 'no-repeat;center top;;'),
(2035, 43, 'mfn-post-logo-img', 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill.png'),
(2036, 43, 'mfn-post-header-style', 'simple,empty'),
(2037, 43, 'mfn-post-minimalist-header', '0'),
(2038, 43, 'mfn-post-sticky-header', '0'),
(2039, 43, 'mfn-post-sticky-header-style', 'white'),
(2040, 43, 'mfn-post-skin', 'red'),
(2041, 43, 'mfn-post-background-subheader', '#F7F7F7'),
(2042, 43, 'mfn-post-color-subheader', '#888888'),
(2043, 43, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2044, 3640, '_wp_attached_file', '2016/07/water_edit.jpg'),
(2045, 3640, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1366;s:6:"height";i:768;s:4:"file";s:22:"2016/07/water_edit.jpg";s:5:"sizes";a:15:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"water_edit-150x150.jpg";s:5:"width";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:"water_edit-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"water_edit-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"water_edit-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"water_edit-260x146.jpg";s:5:"width";i:260;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"water_edit-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"water_edit-133x75.jpg";s:5:"width";i:133;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"water_edit-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"water_edit-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"water_edit-1280x768.jpg";s:5:"width";i:1280;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"water_edit-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"water_edit-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:23:"water_edit-1366x750.jpg";s:5:"width";i:1366;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"water_edit-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"water_edit-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2046, 3641, '_wp_attached_file', '2016/07/power_edit.jpg'),
(2047, 3641, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1366;s:6:"height";i:768;s:4:"file";s:22:"2016/07/power_edit.jpg";s:5:"sizes";a:15:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"power_edit-150x150.jpg";s:5:"width";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:"power_edit-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"power_edit-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"power_edit-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"power_edit-260x146.jpg";s:5:"width";i:260;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"power_edit-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"power_edit-133x75.jpg";s:5:"width";i:133;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"power_edit-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"power_edit-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"power_edit-1280x768.jpg";s:5:"width";i:1280;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"power_edit-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"power_edit-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:23:"power_edit-1366x750.jpg";s:5:"width";i:1366;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"power_edit-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"power_edit-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2048, 3643, '_wp_attached_file', '2016/07/aboutus_v1.jpg'),
(2049, 3643, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:22:"2016/07/aboutus_v1.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"aboutus_v1-150x150.jpg";s:5:"width";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:"aboutus_v1-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"aboutus_v1-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"aboutus_v1-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"aboutus_v1-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"aboutus_v1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"aboutus_v1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2074, 3646, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2075, 3646, '_menu_item_type', 'post_type'),
(2076, 3646, '_menu_item_menu_item_parent', '3648'),
(2077, 3646, '_menu_item_object_id', '95'),
(2078, 3646, '_menu_item_object', 'page'),
(2079, 3646, '_menu_item_target', ''),
(2080, 3646, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2081, 3646, '_menu_item_xfn', ''),
(2082, 3646, '_menu_item_url', ''),
(2084, 3646, 'menu-item-mfn-megamenu', ''),
(2085, 3646, 'menu-item-mfn-bg', ''),
(2086, 3647, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2087, 3647, '_menu_item_type', 'post_type'),
(2088, 3647, '_menu_item_menu_item_parent', '3648'),
(2089, 3647, '_menu_item_object_id', '129'),
(2090, 3647, '_menu_item_object', 'page'),
(2091, 3647, '_menu_item_target', ''),
(2092, 3647, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2093, 3647, '_menu_item_xfn', ''),
(2094, 3647, '_menu_item_url', ''),
(2096, 3647, 'menu-item-mfn-megamenu', ''),
(2097, 3647, 'menu-item-mfn-bg', ''),
(2098, 3648, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2099, 3648, '_menu_item_type', 'post_type'),
(2100, 3648, '_menu_item_menu_item_parent', '0'),
(2101, 3648, '_menu_item_object_id', '3539'),
(2102, 3648, '_menu_item_object', 'page'),
(2103, 3648, '_menu_item_target', ''),
(2104, 3648, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2105, 3648, '_menu_item_xfn', ''),
(2106, 3648, '_menu_item_url', ''),
(2108, 3648, 'menu-item-mfn-megamenu', ''),
(2109, 3648, 'menu-item-mfn-bg', ''),
(2110, 3649, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2111, 3649, '_menu_item_type', 'post_type'),
(2112, 3649, '_menu_item_menu_item_parent', '0'),
(2113, 3649, '_menu_item_object_id', '3609'),
(2114, 3649, '_menu_item_object', 'page'),
(2115, 3649, '_menu_item_target', ''),
(2116, 3649, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2117, 3649, '_menu_item_xfn', ''),
(2118, 3649, '_menu_item_url', ''),
(2120, 3649, 'menu-item-mfn-megamenu', ''),
(2121, 3649, 'menu-item-mfn-bg', ''),
(2122, 3650, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2123, 3650, '_menu_item_type', 'post_type'),
(2124, 3650, '_menu_item_menu_item_parent', '0'),
(2125, 3650, '_menu_item_object_id', '6'),
(2126, 3650, '_menu_item_object', 'page'),
(2127, 3650, '_menu_item_target', ''),
(2128, 3650, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2129, 3650, '_menu_item_xfn', ''),
(2130, 3650, '_menu_item_url', ''),
(2132, 3650, 'menu-item-mfn-megamenu', ''),
(2133, 3650, 'menu-item-mfn-bg', ''),
(2146, 3652, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2147, 3652, '_menu_item_type', 'post_type'),
(2148, 3652, '_menu_item_menu_item_parent', '0'),
(2149, 3652, '_menu_item_object_id', '28'),
(2150, 3652, '_menu_item_object', 'page'),
(2151, 3652, '_menu_item_target', ''),
(2152, 3652, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2153, 3652, '_menu_item_xfn', ''),
(2154, 3652, '_menu_item_url', ''),
(2156, 3652, 'menu-item-mfn-megamenu', ''),
(2157, 3652, 'menu-item-mfn-bg', ''),
(2158, 3653, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2159, 3653, '_menu_item_type', 'post_type'),
(2160, 3653, '_menu_item_menu_item_parent', '3652'),
(2161, 3653, '_menu_item_object_id', '123'),
(2162, 3653, '_menu_item_object', 'page'),
(2163, 3653, '_menu_item_target', ''),
(2164, 3653, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2165, 3653, '_menu_item_xfn', ''),
(2166, 3653, '_menu_item_url', ''),
(2168, 3653, 'menu-item-mfn-megamenu', ''),
(2169, 3653, 'menu-item-mfn-bg', ''),
(2170, 3654, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2171, 3654, '_menu_item_type', 'post_type'),
(2172, 3654, '_menu_item_menu_item_parent', '3652'),
(2173, 3654, '_menu_item_object_id', '110'),
(2174, 3654, '_menu_item_object', 'page'),
(2175, 3654, '_menu_item_target', '') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2176, 3654, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2177, 3654, '_menu_item_xfn', ''),
(2178, 3654, '_menu_item_url', ''),
(2180, 3654, 'menu-item-mfn-megamenu', ''),
(2181, 3654, 'menu-item-mfn-bg', ''),
(2182, 3655, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2183, 3655, '_menu_item_type', 'post_type'),
(2184, 3655, '_menu_item_menu_item_parent', '0'),
(2185, 3655, '_menu_item_object_id', '101'),
(2186, 3655, '_menu_item_object', 'page'),
(2187, 3655, '_menu_item_target', ''),
(2188, 3655, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2189, 3655, '_menu_item_xfn', ''),
(2190, 3655, '_menu_item_url', ''),
(2192, 3655, 'menu-item-mfn-megamenu', ''),
(2193, 3655, 'menu-item-mfn-bg', ''),
(2230, 43, '_edit_lock', '1496133787:1'),
(2232, 101, '_edit_lock', '1496884821:1'),
(2233, 3539, '_edit_lock', '1518505545:1'),
(2234, 3661, '_wp_attached_file', '2016/07/about.jpg'),
(2235, 3661, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:17:"2016/07/about.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"about-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"about-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"about-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"about-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"about-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:15:"about-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:16:"about-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:15:"about-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"about-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:18:"about-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:18:"about-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:17:"about-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:17:"about-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:18:"about-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2236, 129, '_edit_lock', '1523344903:1'),
(2237, 95, '_edit_lock', '1549268500:1'),
(2238, 3664, '_wp_attached_file', '2016/04/1300x350px_bod-1_1.jpg'),
(2239, 3664, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:30:"2016/04/1300x350px_bod-1_1.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"1300x350px_bod-1_1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"1300x350px_bod-1_1-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"1300x350px_bod-1_1-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"1300x350px_bod-1_1-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"1300x350px_bod-1_1-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:28:"1300x350px_bod-1_1-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:29:"1300x350px_bod-1_1-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:28:"1300x350px_bod-1_1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:28:"1300x350px_bod-1_1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:31:"1300x350px_bod-1_1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:31:"1300x350px_bod-1_1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:30:"1300x350px_bod-1_1-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:30:"1300x350px_bod-1_1-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:31:"1300x350px_bod-1_1-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2240, 28, '_edit_lock', '1550652265:1'),
(2241, 3666, '_wp_attached_file', '2015/04/aboutushdr.jpg'),
(2242, 3666, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1486;s:6:"height";i:400;s:4:"file";s:22:"2015/04/aboutushdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"aboutushdr-150x150.jpg";s:5:"width";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:"aboutushdr-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"aboutushdr-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"aboutushdr-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"aboutushdr-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"aboutushdr-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"aboutushdr-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"aboutushdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"aboutushdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"aboutushdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"aboutushdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"aboutushdr-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"aboutushdr-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"aboutushdr-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2243, 3668, '_wp_attached_file', '2016/04/sustainability.jpg'),
(2244, 3668, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:26:"2016/04/sustainability.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"sustainability-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"sustainability-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"sustainability-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"sustainability-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"sustainability-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"sustainability-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"sustainability-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"sustainability-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"sustainability-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:27:"sustainability-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"sustainability-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:26:"sustainability-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:26:"sustainability-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"sustainability-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2245, 3669, '_wp_attached_file', '2016/07/bursa.jpg'),
(2246, 3669, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:17:"2016/07/bursa.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"bursa-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"bursa-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"bursa-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"bursa-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"bursa-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:15:"bursa-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:16:"bursa-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:15:"bursa-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"bursa-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:18:"bursa-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:18:"bursa-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:17:"bursa-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:17:"bursa-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:18:"bursa-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2247, 3670, '_wp_attached_file', '2016/07/bursanews.jpg'),
(2248, 3670, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:731;s:6:"height";i:200;s:4:"file";s:21:"2016/07/bursanews.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"bursanews-150x150.jpg";s:5:"width";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:"bursanews-300x82.jpg";s:5:"width";i:300;s:6:"height";i:82;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"bursanews-260x71.jpg";s:5:"width";i:260;s:6:"height";i:71;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"bursanews-50x14.jpg";s:5:"width";i:50;s:6:"height";i:14;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"bursanews-150x41.jpg";s:5:"width";i:150;s:6:"height";i:41;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"bursanews-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"bursanews-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2249, 3671, '_wp_attached_file', '2016/07/sustainability.jpg'),
(2250, 3671, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:26:"2016/07/sustainability.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"sustainability-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"sustainability-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"sustainability-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"sustainability-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"sustainability-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"sustainability-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"sustainability-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"sustainability-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"sustainability-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:27:"sustainability-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"sustainability-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:26:"sustainability-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:26:"sustainability-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"sustainability-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2251, 3672, '_wp_attached_file', '2016/07/sustainbility.jpg'),
(2252, 3672, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:25:"2016/07/sustainbility.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"sustainbility-150x150.jpg";s:5:"width";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:"sustainbility-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"sustainbility-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"sustainbility-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"sustainbility-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"sustainbility-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:24:"sustainbility-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"sustainbility-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"sustainbility-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:26:"sustainbility-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:26:"sustainbility-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:25:"sustainbility-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:25:"sustainbility-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:26:"sustainbility-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2253, 3672, '_edit_lock', '1469855854:1'),
(2254, 3671, '_edit_lock', '1469855403:1'),
(2255, 3673, '_wp_attached_file', '2016/04/sustainbility.jpg'),
(2256, 3673, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:25:"2016/04/sustainbility.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"sustainbility-150x150.jpg";s:5:"width";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:"sustainbility-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"sustainbility-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"sustainbility-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"sustainbility-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"sustainbility-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:24:"sustainbility-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"sustainbility-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"sustainbility-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:26:"sustainbility-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:26:"sustainbility-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:25:"sustainbility-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:25:"sustainbility-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:26:"sustainbility-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2259, 3674, '_wp_attached_file', '2016/07/corporategov.jpg'),
(2260, 3674, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:478;s:6:"height";i:245;s:4:"file";s:24:"2016/07/corporategov.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"corporategov-150x150.jpg";s:5:"width";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:"corporategov-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"corporategov-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"corporategov-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"corporategov-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"corporategov-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"corporategov-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2261, 3674, '_edit_lock', '1469855444:1'),
(2262, 101, '_thumbnail_id', '3671'),
(2263, 136, '_edit_lock', '1523934427:1'),
(2264, 3675, '_wp_attached_file', '2016/05/corporategov_hdr.jpg'),
(2265, 3675, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:400;s:4:"file";s:28:"2016/05/corporategov_hdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"corporategov_hdr-150x150.jpg";s:5:"width";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:"corporategov_hdr-300x92.jpg";s:5:"width";i:300;s:6:"height";i:92;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"corporategov_hdr-768x236.jpg";s:5:"width";i:768;s:6:"height";i:236;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"corporategov_hdr-1024x315.jpg";s:5:"width";i:1024;s:6:"height";i:315;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"corporategov_hdr-260x80.jpg";s:5:"width";i:260;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:26:"corporategov_hdr-50x15.jpg";s:5:"width";i:50;s:6:"height";i:15;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:27:"corporategov_hdr-150x46.jpg";s:5:"width";i:150;s:6:"height";i:46;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:26:"corporategov_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:26:"corporategov_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:29:"corporategov_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:29:"corporategov_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:28:"corporategov_hdr-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:28:"corporategov_hdr-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:29:"corporategov_hdr-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2266, 136, '_thumbnail_id', '3671'),
(2267, 136, 'mfn-meta-seo-description', 'Corporate Governance'),
(2268, 136, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;\r\n    font-size: 50px;}'),
(2269, 3678, '_wp_attached_file', '2016/07/corporategov-1.jpg'),
(2270, 3678, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:650;s:6:"height";i:333;s:4:"file";s:26:"2016/07/corporategov-1.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"corporategov-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"corporategov-1-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"corporategov-1-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"corporategov-1-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"corporategov-1-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"corporategov-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"corporategov-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2271, 3678, '_edit_lock', '1469855907:1'),
(2273, 140, '_edit_lock', '1495505838:1'),
(2274, 3679, '_wp_attached_file', '2016/07/goverance.jpg'),
(2275, 3679, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:21:"2016/07/goverance.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"goverance-150x150.jpg";s:5:"width";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:"goverance-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"goverance-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"goverance-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"goverance-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"goverance-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"goverance-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"goverance-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"goverance-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:22:"goverance-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:22:"goverance-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:21:"goverance-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:21:"goverance-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:22:"goverance-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2276, 140, 'mfn-meta-seo-title', 'Ranhill'),
(2277, 140, 'mfn-meta-seo-description', 'Sustainability Statement'),
(2278, 140, 'mfn-meta-seo-keywords', 'Sustainability Statement'),
(2279, 3683, '_wp_attached_file', '2016/07/sustainbility_sml.jpg'),
(2280, 3683, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:29:"2016/07/sustainbility_sml.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"sustainbility_sml-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"sustainbility_sml-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"sustainbility_sml-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:27:"sustainbility_sml-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:28:"sustainbility_sml-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:27:"sustainbility_sml-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:27:"sustainbility_sml-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2281, 3683, '_edit_lock', '1469858056:1'),
(2282, 3609, '_edit_lock', '1540542008:1'),
(2283, 3609, 'mfn-meta-seo-title', 'Ranhill'),
(2284, 3609, 'mfn-meta-seo-description', 'Bursa Announcements'),
(2285, 3609, 'mfn-meta-seo-keywords', 'Ranhill'),
(2286, 3609, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2287, 3685, '_wp_attached_file', '2016/07/News-Release-Prospectus-Launch-BM.pdf'),
(2288, 3686, '_wp_attached_file', '2016/07/News-Release-Prospectus-Launch-Chi.pdf'),
(2289, 3687, '_wp_attached_file', '2016/07/News-Release-Prospectus-Launch-ENG.pdf'),
(2290, 3688, '_wp_attached_file', '2016/07/News-Release-Ranhill-Listing-BM.pdf'),
(2291, 3689, '_wp_attached_file', '2016/07/News-Release-Ranhill-Listing-CHI.pdf'),
(2292, 3690, '_wp_attached_file', '2016/07/News-Release-Ranhill-Listing-ENG.pdf'),
(2293, 3691, '_wp_attached_file', '2016/07/News-Release-RWS-MOU.pdf'),
(2294, 3692, '_wp_attached_file', '2016/07/NR-Ranhill-Announcement-of-Extension-1.pdf'),
(2295, 3693, '_wp_attached_file', '2016/07/NR-Ranhill-Announcement-of-Extension.pdf'),
(2296, 3694, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2297, 3694, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2298, 3694, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2299, 3694, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2300, 3694, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2301, 3694, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2302, 3694, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2303, 3694, '_edit_last', '1'),
(2304, 3694, 'mfn-post-sidebar', '0'),
(2305, 3694, 'mfn-post-sidebar2', '0'),
(2306, 3694, '_wpb_vc_js_status', 'false'),
(2307, 3694, 'mfn-post-subheader-image', ''),
(2308, 3694, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:2:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:496:"<h3 style="margin-bottom: 0px;">Press Release</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/press_release_banner.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="press-release/">Read more</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:467:"<h3 style="margin-bottom: 0px;">Video</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/video-1.jpg" border="0"]\n[divider height="15"]\n\n<a class="read_more" href="video/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:4:"10px";s:13:"column_margin";s:4:"20px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(2309, 3694, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2311, 3694, '_wp_page_template', 'default'),
(2312, 3694, 'slide_template', 'default'),
(2313, 3694, 'mfn-post-hide-content', '0'),
(2314, 3694, 'mfn-post-custom-layout', '0'),
(2315, 3694, 'mfn-post-slider', '0'),
(2316, 3694, 'mfn-post-slider-layer', '0'),
(2317, 3694, 'mfn-post-menu', '0'),
(2318, 3694, 'mfn-post-one-page', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2319, 3694, 'mfn-post-hide-title', '0'),
(2320, 3694, 'mfn-post-remove-padding', '0'),
(2321, 3694, 'mfn-page-items-seo', '<h3 style="margin-bottom: 0px;">Press Release</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/press_release_banner.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="press-release/">Read more</a>\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Video</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/video-1.jpg" border="0"]\r\n[divider height="15"]\r\n\r\n<a class="read_more" href="video/">Read more</a>\n\nno-repeat;center top;;\n\n'),
(2323, 3694, '_edit_lock', '1469889632:1'),
(2324, 3694, '_dp_original', '3606'),
(2325, 3695, '_wp_attached_file', '2016/07/media.jpg'),
(2326, 3695, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1486;s:6:"height";i:400;s:4:"file";s:17:"2016/07/media.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"media-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"media-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"media-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"media-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"media-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:15:"media-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:16:"media-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:15:"media-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"media-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:18:"media-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:18:"media-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:17:"media-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:17:"media-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:18:"media-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2327, 3694, '_thumbnail_id', '3695'),
(2331, 3697, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2332, 3697, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2333, 3697, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2334, 3697, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2335, 3697, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2336, 3697, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2337, 3697, '_wp_page_template', 'default'),
(2338, 3697, 'slide_template', 'default'),
(2339, 3697, 'mfn-post-hide-content', '0'),
(2340, 3697, 'mfn-post-custom-layout', '0'),
(2341, 3697, 'mfn-post-slider', '0'),
(2342, 3697, 'mfn-post-slider-layer', '0'),
(2343, 3697, 'mfn-post-menu', '0'),
(2344, 3697, 'mfn-post-one-page', '0'),
(2345, 3697, 'mfn-post-hide-title', '0'),
(2346, 3697, 'mfn-post-remove-padding', '0'),
(2347, 3697, 'mfn-page-items-seo', 'EqXpeDgeB_0\n\n700\n\n400\n\nPgLkWVIeM44\n\n700\n\n400\n\nPgLkWVIeM44\n\n700\n\n400\n\nhBcdYSLfrFc\n\n700\n\n400\n\nUmYkdiDEY_4\n\n700\n\n400\n\nPgLkWVIeM44\n\n700\n\n400\n\nKDk9BofHMj8\n\n700\n\n400\n\n'),
(2348, 3697, '_edit_last', '1'),
(2349, 3697, 'mfn-post-sidebar', '0'),
(2350, 3697, 'mfn-post-sidebar2', '0'),
(2351, 3697, '_wpb_vc_js_status', 'false'),
(2352, 3697, 'mfn-post-subheader-image', ''),
(2353, 3697, 'mfn-page-items', 'a:2:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:1:"1";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/3";s:6:"fields";a:9:{s:5:"video";s:11:"EqXpeDgeB_0";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/3";s:6:"fields";a:9:{s:5:"video";s:11:"PgLkWVIeM44";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/3";s:6:"fields";a:9:{s:5:"video";s:11:"PgLkWVIeM44";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:4:{i:0;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/2";s:6:"fields";a:9:{s:5:"video";s:11:"hBcdYSLfrFc";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/2";s:6:"fields";a:9:{s:5:"video";s:11:"UmYkdiDEY_4";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/2";s:6:"fields";a:9:{s:5:"video";s:11:"PgLkWVIeM44";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:3;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/2";s:6:"fields";a:9:{s:5:"video";s:11:"KDk9BofHMj8";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(2355, 3697, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2356, 3697, 'mfn-meta-seo-keywords', 'Ranhill'),
(2357, 3697, 'mfn-meta-seo-title', 'Ranhill '),
(2358, 3697, 'mfn-meta-seo-description', 'Video'),
(2359, 3697, '_edit_lock', '1548743099:1'),
(2360, 3697, '_dp_original', '28'),
(2361, 3694, 'mfn-meta-seo-title', 'Ranhill'),
(2362, 3694, 'mfn-meta-seo-description', 'Media'),
(2363, 3694, 'mfn-meta-seo-keywords', 'Ranhill'),
(2364, 3699, '_wp_attached_file', '2016/07/video.jpg'),
(2365, 3699, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1486;s:6:"height";i:400;s:4:"file";s:17:"2016/07/video.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"video-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"video-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"video-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"video-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"video-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:15:"video-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:16:"video-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:15:"video-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"video-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:18:"video-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:18:"video-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:17:"video-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:17:"video-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:18:"video-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2366, 3697, '_thumbnail_id', '3699'),
(2367, 3702, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2368, 3702, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2369, 3702, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2370, 3702, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2371, 3702, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2372, 3702, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2373, 3702, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2374, 3702, '_wp_page_template', 'default'),
(2375, 3702, 'slide_template', 'default'),
(2376, 3702, 'mfn-post-hide-content', '0'),
(2377, 3702, 'mfn-post-custom-layout', '0'),
(2378, 3702, 'mfn-post-slider', '0'),
(2379, 3702, 'mfn-post-slider-layer', '0'),
(2380, 3702, 'mfn-post-menu', '0'),
(2381, 3702, 'mfn-post-one-page', '0'),
(2382, 3702, 'mfn-post-hide-title', '0'),
(2383, 3702, 'mfn-post-remove-padding', '0'),
(2384, 3702, 'mfn-page-items-seo', '12\n\nclassic\n\n3\n\npress-release\n\n'),
(2385, 3702, '_edit_last', '1'),
(2386, 3702, 'mfn-post-sidebar', '0'),
(2387, 3702, 'mfn-post-sidebar2', '0'),
(2388, 3702, '_wpb_vc_js_status', 'false'),
(2389, 3702, 'mfn-post-subheader-image', ''),
(2390, 3702, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:4:"blog";s:4:"size";s:3:"1/1";s:6:"fields";a:13:{s:5:"count";s:2:"12";s:5:"style";s:7:"classic";s:7:"columns";s:1:"3";s:8:"category";s:13:"press-release";s:14:"category_multi";s:0:"";s:10:"exclude_id";s:0:"";s:4:"more";s:1:"1";s:7:"filters";s:1:"0";s:10:"pagination";s:1:"0";s:9:"load_more";s:1:"1";s:9:"greyscale";s:1:"0";s:6:"margin";s:1:"0";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(2391, 3702, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2392, 3702, 'mfn-meta-seo-keywords', 'Ranhill'),
(2393, 3702, 'mfn-meta-seo-title', 'Ranhill '),
(2394, 3702, 'mfn-meta-seo-description', 'Video'),
(2395, 3702, '_edit_lock', '1548725422:1'),
(2398, 3702, '_dp_original', '3697'),
(2399, 3703, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2400, 3703, '_menu_item_type', 'post_type'),
(2401, 3703, '_menu_item_menu_item_parent', '0'),
(2402, 3703, '_menu_item_object_id', '3694'),
(2403, 3703, '_menu_item_object', 'page'),
(2404, 3703, '_menu_item_target', ''),
(2405, 3703, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2406, 3703, '_menu_item_xfn', ''),
(2407, 3703, '_menu_item_url', ''),
(2409, 3703, 'menu-item-mfn-megamenu', ''),
(2410, 3703, 'menu-item-mfn-bg', ''),
(2411, 3704, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2412, 3704, '_menu_item_type', 'post_type'),
(2413, 3704, '_menu_item_menu_item_parent', '3703'),
(2414, 3704, '_menu_item_object_id', '3697'),
(2415, 3704, '_menu_item_object', 'page'),
(2416, 3704, '_menu_item_target', ''),
(2417, 3704, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2418, 3704, '_menu_item_xfn', ''),
(2419, 3704, '_menu_item_url', ''),
(2421, 3704, 'menu-item-mfn-megamenu', ''),
(2422, 3704, 'menu-item-mfn-bg', ''),
(2423, 3705, '_wp_attached_file', '2016/07/news.jpg'),
(2424, 3705, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:543;s:6:"height";i:234;s:4:"file";s:16:"2016/07/news.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"news-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"news-300x129.jpg";s:5:"width";i:300;s:6:"height";i:129;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"news-260x112.jpg";s:5:"width";i:260;s:6:"height";i:112;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:14:"news-50x22.jpg";s:5:"width";i:50;s:6:"height";i:22;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:15:"news-150x65.jpg";s:5:"width";i:150;s:6:"height";i:65;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:14:"news-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:14:"news-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2425, 3706, '_wp_attached_file', '2016/07/news_hdr.jpg'),
(2426, 3706, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:20:"2016/07/news_hdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"news_hdr-150x150.jpg";s:5:"width";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:"news_hdr-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"news_hdr-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"news_hdr-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"news_hdr-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:18:"news_hdr-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:19:"news_hdr-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:18:"news_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:18:"news_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:21:"news_hdr-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:21:"news_hdr-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:20:"news_hdr-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:20:"news_hdr-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:21:"news_hdr-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2427, 3702, '_thumbnail_id', '3706') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2428, 110, '_edit_lock', '1548119093:1'),
(2429, 110, 'mfn-meta-seo-title', 'Ranhill'),
(2430, 110, 'mfn-meta-seo-description', 'Water Supply Services'),
(2431, 110, 'mfn-meta-seo-keywords', 'Ranhill'),
(2432, 3710, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2433, 3710, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2434, 3710, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2435, 3710, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2436, 3710, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2437, 3710, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2438, 3710, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2439, 3710, '_wp_page_template', 'default'),
(2440, 3710, 'slide_template', 'default'),
(2441, 3710, 'mfn-post-hide-content', '0'),
(2442, 3710, 'mfn-post-custom-layout', '0'),
(2443, 3710, 'mfn-post-slider', '0'),
(2444, 3710, 'mfn-post-slider-layer', '0'),
(2445, 3710, 'mfn-post-menu', '0'),
(2446, 3710, 'mfn-post-one-page', '0'),
(2447, 3710, 'mfn-post-hide-title', '0'),
(2448, 3710, 'mfn-post-remove-padding', '0'),
(2449, 3710, 'mfn-page-items-seo', 'Ranhill Water Technologies (Cayman) Ltd (RWT) is our subsidiary specialising in water and industrial wastewater treatment technologies.\r\nCurrently, we own water and wastewater treatment concessions in China and Thailand, 290MLD and 102 MLD respectively.\r\n[divider height="30"]\r\n\r\nOur water and wastewater treatment capacity todate is 2,378 MLD.\r\n[divider height="30"]\n\nno-repeat;center top;;\n\n<h4>China</h4>\r\nExisting concession assets <br/>\r\nTotal Capacity: 290 MLD\r\n\r\n[divider height="30"]\r\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\r\n<tbody>\r\n<tr>\r\n<td align="left"><b>Description</b></td>\r\n<td align="left"><b>Capacity</b>(1)\r\n\r\n<b>(MLD)</b></td>\r\n<td align="left"><b>Concession Type</b>(2)</td>\r\n<td align="left"><b>Expiration</b><b> of license/concession</b></td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant (Phase I)</b></td>\r\n<td align="left">30</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2038</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant</b><b> (</b><b>Phase II)</b></td>\r\n<td align="left">50</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2042</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Xinxiang Wastewater Treatment Plant</b></td>\r\n<td align="left">50</td>\r\n<td align="left">Wastewater/ TOT</td>\r\n<td align="left">2041</td>\r\n</tr>\r\n<tr>\r\n<td rowspan="2" align="left"><b>Yingkou</b><b> Wastewater Treatment and Reclamation Plant</b></td>\r\n<td align="left">30(3)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n<tr>\r\n<td align="left">30(4)</td>\r\n<td align="left">Reclaim water/ BOT</td>\r\n<td align="left">-(10)</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Hefei</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">30(5)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2036</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Changfeng</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">20(6)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2043</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Yihuang</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">5(7)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2045</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Wanzai</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">5(8)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2044</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Chongren</b><b> Wastewater</b><b> Treatment Plant</b></td>\r\n<td align="left">10(9)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Fuxin Wastewater</b><b> Treatment Plant</b></td>\r\n<td align="left">20</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Yong </b><b>Xin</b><b> County  Wastewater</b><b> Treatment Plant</b></td>\r\n<td align="left">10</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\nleft\n\nno-repeat;center top;;\n\n<h4>Thailand</h4>\r\nExisting concession assets / projects<br/>\r\nTotal Capacity: 102 MLD\r\n[divider height="30"]\r\n\r\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\r\n  <tr>\r\n    <td align="left" valign="bottom"><p><strong>Description</strong></p></td>\r\n    <td align="left" valign="bottom"><p><strong>Capacity</strong>(1)<br>\r\n        <strong>(MLD)</strong></p></td>\r\n    <td align="left" valign="bottom"><p><strong>Concession   Type</strong>(2)</p></td>\r\n    <td align="left" valign="bottom"><p><strong>Expiration   of license/concession</strong></p></td>\r\n  </tr>\r\n  <tr>\r\n    <td rowspan="3" align="left"><p><strong>Amata   Nakorn Concession</strong><br>\r\n        <strong>(Industrial   Estate)</strong></p></td>\r\n    <td align="left"><p>24</p></td>\r\n    <td align="left"><p>Wastewater/   BOT</p></td>\r\n    <td align="left"><p>2028</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p>10.5</p></td>\r\n    <td align="left"><p>Potable   water/ BOT</p></td>\r\n    <td align="left"><p>2028</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p>10</p></td>\r\n    <td align="left"><p>Reclaim   water/ BOT</p></td>\r\n    <td align="left"><p>2033</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Amata   City Potable Water Treatment Plant</strong></p></td>\r\n    <td align="left"><p>15</p></td>\r\n    <td align="left"><p>Potable  water/ BOT</p></td>\r\n    <td align="left"><p>2032</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Amata   City Wastewater Treatment Plant</strong></p></td>\r\n    <td align="left"><p>10</p></td>\r\n    <td align="left"><p>Wastewater/   BOT</p></td>\r\n    <td align="left"><p>2043</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Asian   Institute of Technology(3)</strong></p></td>\r\n    <td align="left"><p>1.5</p></td>\r\n    <td align="left"><p>Wastewater/BOT</p></td>\r\n    <td align="left"><p>2020</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Amata   Nakorn Concession</strong></p></td>\r\n    <td align="left"><p>10.5</p></td>\r\n    <td align="left"><p>Potable   water/ BTO</p></td>\r\n    <td align="left"><p>2018</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td rowspan="2" align="left"><p><strong>Amata   City Concession</strong></p></td>\r\n    <td align="left"><p>10.0</p></td>\r\n    <td align="left"><p>Wastewater/BTO</p></td>\r\n    <td align="left"><p>2017</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p>10.5</p></td>\r\n    <td align="left"><p>Potable   water/ BTO</p></td>\r\n    <td align="left"><p>2017</p></td>\r\n  </tr>\r\n</table>\n\nleft\n\nno-repeat;center top;;\n\nTo learn more please visit: <a href="http://www.ranhill-watertech.com" target="_blank">www.ranhill-watertech.com</a>\n\nleft\n\nno-repeat;center top;;\n\n'),
(2450, 3710, '_edit_last', '1'),
(2451, 3710, 'mfn-post-sidebar', '0'),
(2452, 3710, 'mfn-post-sidebar2', '0'),
(2453, 3710, '_wpb_vc_js_status', 'false'),
(2454, 3710, 'mfn-post-subheader-image', ''),
(2456, 3710, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:3:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:362:"Ranhill Water Technologies (Cayman) Ltd (RWT) is our subsidiary specialising in water and industrial wastewater treatment technologies.\nCurrently, we own water and wastewater treatment concessions in China and Thailand, 290MLD and 102 MLD respectively.\n[divider height="30"]\n\nOur water and wastewater treatment capacity todate is 2,378 MLD.\n[divider height="30"]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:2510:"<h4>China</h4>\nExisting concession assets <br/>\nTotal Capacity: 290 MLD\n\n[divider height="30"]\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\n<tbody>\n<tr>\n<td align="left"><b>Description</b></td>\n<td align="left"><b>Capacity</b>(1)\n\n<b>(MLD)</b></td>\n<td align="left"><b>Concession Type</b>(2)</td>\n<td align="left"><b>Expiration</b><b> of license/concession</b></td>\n</tr>\n<tr>\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant (Phase I)</b></td>\n<td align="left">30</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2038</td>\n</tr>\n<tr>\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant</b><b> (</b><b>Phase II)</b></td>\n<td align="left">50</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2042</td>\n</tr>\n<tr>\n<td align="left"><b>Xinxiang Wastewater Treatment Plant</b></td>\n<td align="left">50</td>\n<td align="left">Wastewater/ TOT</td>\n<td align="left">2041</td>\n</tr>\n<tr>\n<td rowspan="2" align="left"><b>Yingkou</b><b> Wastewater Treatment and Reclamation Plant</b></td>\n<td align="left">30(3)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n<tr>\n<td align="left">30(4)</td>\n<td align="left">Reclaim water/ BOT</td>\n<td align="left">-(10)</td>\n</tr>\n<tr>\n<td align="left"><b>Hefei</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">30(5)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2036</td>\n</tr>\n<tr>\n<td align="left"><b>Changfeng</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">20(6)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2043</td>\n</tr>\n<tr>\n<td align="left"><b>Yihuang</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">5(7)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2045</td>\n</tr>\n<tr>\n<td align="left"><b>Wanzai</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">5(8)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2044</td>\n</tr>\n<tr>\n<td align="left"><b>Chongren</b><b> Wastewater</b><b> Treatment Plant</b></td>\n<td align="left">10(9)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n<tr>\n<td align="left"><b>Fuxin Wastewater</b><b> Treatment Plant</b></td>\n<td align="left">20</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n<tr>\n<td align="left"><b>Yong </b><b>Xin</b><b> County  Wastewater</b><b> Treatment Plant</b></td>\n<td align="left">10</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n</tbody>\n</table>";s:5:"align";s:4:"left";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:2;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:2422:"<h4>Thailand</h4>\nExisting concession assets / projects<br/>\nTotal Capacity: 102 MLD\n[divider height="30"]\n\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\n  <tr>\n    <td align="left" valign="bottom"><p><strong>Description</strong></p></td>\n    <td align="left" valign="bottom"><p><strong>Capacity</strong>(1)<br>\n        <strong>(MLD)</strong></p></td>\n    <td align="left" valign="bottom"><p><strong>Concession   Type</strong>(2)</p></td>\n    <td align="left" valign="bottom"><p><strong>Expiration   of license/concession</strong></p></td>\n  </tr>\n  <tr>\n    <td rowspan="3" align="left"><p><strong>Amata   Nakorn Concession</strong><br>\n        <strong>(Industrial   Estate)</strong></p></td>\n    <td align="left"><p>24</p></td>\n    <td align="left"><p>Wastewater/   BOT</p></td>\n    <td align="left"><p>2028</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p>10.5</p></td>\n    <td align="left"><p>Potable   water/ BOT</p></td>\n    <td align="left"><p>2028</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p>10</p></td>\n    <td align="left"><p>Reclaim   water/ BOT</p></td>\n    <td align="left"><p>2033</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Amata   City Potable Water Treatment Plant</strong></p></td>\n    <td align="left"><p>15</p></td>\n    <td align="left"><p>Potable  water/ BOT</p></td>\n    <td align="left"><p>2032</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Amata   City Wastewater Treatment Plant</strong></p></td>\n    <td align="left"><p>10</p></td>\n    <td align="left"><p>Wastewater/   BOT</p></td>\n    <td align="left"><p>2043</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Asian   Institute of Technology(3)</strong></p></td>\n    <td align="left"><p>1.5</p></td>\n    <td align="left"><p>Wastewater/BOT</p></td>\n    <td align="left"><p>2020</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Amata   Nakorn Concession</strong></p></td>\n    <td align="left"><p>10.5</p></td>\n    <td align="left"><p>Potable   water/ BTO</p></td>\n    <td align="left"><p>2018</p></td>\n  </tr>\n  <tr>\n    <td rowspan="2" align="left"><p><strong>Amata   City Concession</strong></p></td>\n    <td align="left"><p>10.0</p></td>\n    <td align="left"><p>Wastewater/BTO</p></td>\n    <td align="left"><p>2017</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p>10.5</p></td>\n    <td align="left"><p>Potable   water/ BTO</p></td>\n    <td align="left"><p>2017</p></td>\n  </tr>\n</table>\n";s:5:"align";s:4:"left";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:116:"To learn more please visit: <a href="http://www.ranhill-watertech.com" target="_blank">www.ranhill-watertech.com</a>";s:5:"align";s:4:"left";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(2457, 3710, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2458, 3710, '_thumbnail_id', '3724'),
(2459, 3710, '_edit_lock', '1484293159:1'),
(2460, 3710, 'mfn-meta-seo-title', 'Ranhill'),
(2461, 3710, 'mfn-meta-seo-description', 'Water and wastewater treatment'),
(2462, 3710, 'mfn-meta-seo-keywords', 'Ranhill'),
(2463, 3710, '_dp_original', '110'),
(2464, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2465, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2466, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2467, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2468, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2469, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2470, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2471, 3711, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2472, 3711, '_wp_page_template', 'default'),
(2473, 3711, 'slide_template', 'default'),
(2474, 3711, 'mfn-post-hide-content', '0'),
(2475, 3711, 'mfn-post-custom-layout', '0'),
(2476, 3711, 'mfn-post-slider', '0'),
(2477, 3711, 'mfn-post-slider-layer', '0'),
(2478, 3711, 'mfn-post-menu', '0'),
(2479, 3711, 'mfn-post-one-page', '0'),
(2480, 3711, 'mfn-post-hide-title', '0'),
(2481, 3711, 'mfn-post-remove-padding', '0'),
(2482, 3711, 'mfn-page-items-seo', 'Ranhill Water Services Sdn Bhd (RWS) and its subsidiary, Premium Water Services Sdn Bhd (PWS) are the two companies involved in NRW management and reduction programme.[divider height="30"]\r\n\r\n\r\nIn Johor, we developed an “NRW Strategy & Action Plan” which outlines the strategy, initiatives and activities on reducing NRW. Through this NRW management plan, Johor has the lowest NRW perKM of water pipe length at 0.02 MLD/KM.\r\n[divider height="30"]\r\n\r\n\r\nWe have also delivered results in NRW projects done in other states in Malaysia.\n\nno-repeat;center top;;\n\n<table>\r\n<tbody>\r\n<tr>\r\n<td  style="background-color: #eeeeee;"><b>State</b></td>\r\n<td  style="background-color: #eeeeee;"><b>Original NRW</b><b> %</b></td>\r\n<td  style="background-color: #eeeeee;"><b>After Ranhill’s NRW reduction </b><b>programme</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Sg</b><b>. </b><b>Petani</b><b>, Kedah</b></td>\r\n<td><b>50% (2008)</b></td>\r\n<td><b>21% (2010)</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Melaka</b></td>\r\n<td><b>35% (2007)</b></td>\r\n<td><b>21.6% (2014)</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Hulu</b><b> Terengganu and Dungun, Terengganu</b></td>\r\n<td><b>50% (2012)</b></td>\r\n<td><b>15% (2014)</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Johor</b></td>\r\n<td><b>>40% (1999)</b></td>\r\n<td><b>25.8% (2015)</b></td>\r\n</tr>\r\n</tbody>\r\n</table>\n\nno-repeat;center top;;\n\nTo learn more please visit: <a href="http://www.rws.com.my/" target="_blank">www.rws.com.my</a>\n\nno-repeat;center top;;\n\n'),
(2483, 3711, '_edit_last', '1'),
(2484, 3711, 'mfn-post-sidebar', '0'),
(2485, 3711, 'mfn-post-sidebar2', '0'),
(2486, 3711, '_wpb_vc_js_status', 'false'),
(2487, 3711, 'mfn-post-subheader-image', ''),
(2488, 3711, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:530:"Ranhill Water Services Sdn Bhd (RWS) and its subsidiary, Premium Water Services Sdn Bhd (PWS) are the two companies involved in NRW management and reduction programme.[divider height="30"]\n\n\nIn Johor, we developed an “NRW Strategy & Action Plan” which outlines the strategy, initiatives and activities on reducing NRW. Through this NRW management plan, Johor has the lowest NRW perKM of water pipe length at 0.02 MLD/KM.\n[divider height="30"]\n\n\nWe have also delivered results in NRW projects done in other states in Malaysia.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:704:"<table>\n<tbody>\n<tr>\n<td  style="background-color: #eeeeee;"><b>State</b></td>\n<td  style="background-color: #eeeeee;"><b>Original NRW</b><b> %</b></td>\n<td  style="background-color: #eeeeee;"><b>After Ranhill’s NRW reduction </b><b>programme</b></td>\n</tr>\n<tr>\n<td><b>Sg</b><b>. </b><b>Petani</b><b>, Kedah</b></td>\n<td><b>50% (2008)</b></td>\n<td><b>21% (2010)</b></td>\n</tr>\n<tr>\n<td><b>Melaka</b></td>\n<td><b>35% (2007)</b></td>\n<td><b>21.6% (2014)</b></td>\n</tr>\n<tr>\n<td><b>Hulu</b><b> Terengganu and Dungun, Terengganu</b></td>\n<td><b>50% (2012)</b></td>\n<td><b>15% (2014)</b></td>\n</tr>\n<tr>\n<td><b>Johor</b></td>\n<td><b>>40% (1999)</b></td>\n<td><b>25.8% (2015)</b></td>\n</tr>\n</tbody>\n</table>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:95:"To learn more please visit: <a href="http://www.rws.com.my/" target="_blank">www.rws.com.my</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(2489, 3711, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2490, 3711, '_thumbnail_id', '3717'),
(2491, 3711, '_edit_lock', '1516696816:1'),
(2492, 3711, 'mfn-meta-seo-title', 'Ranhill'),
(2493, 3711, 'mfn-meta-seo-description', 'Non-Revenue Water'),
(2494, 3711, 'mfn-meta-seo-keywords', 'Ranhill'),
(2496, 3711, '_dp_original', '3710'),
(2497, 123, '_edit_lock', '1488858902:1'),
(2498, 3715, '_wp_attached_file', '2016/07/news_hdr-1.jpg'),
(2499, 3715, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:22:"2016/07/news_hdr-1.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"news_hdr-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"news_hdr-1-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"news_hdr-1-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"news_hdr-1-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"news_hdr-1-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"news_hdr-1-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"news_hdr-1-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"news_hdr-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"news_hdr-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"news_hdr-1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"news_hdr-1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"news_hdr-1-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"news_hdr-1-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"news_hdr-1-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(2500, 3716, '_wp_attached_file', '2016/07/news-1.jpg'),
(2501, 3716, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:543;s:6:"height";i:234;s:4:"file";s:18:"2016/07/news-1.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"news-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:18:"news-1-300x129.jpg";s:5:"width";i:300;s:6:"height";i:129;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:18:"news-1-260x112.jpg";s:5:"width";i:260;s:6:"height";i:112;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:16:"news-1-50x22.jpg";s:5:"width";i:50;s:6:"height";i:22;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:17:"news-1-150x65.jpg";s:5:"width";i:150;s:6:"height";i:65;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:16:"news-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:16:"news-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2502, 3717, '_wp_attached_file', '2016/07/nrw_hdr.jpg'),
(2503, 3717, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:400;s:4:"file";s:19:"2016/07/nrw_hdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"nrw_hdr-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"nrw_hdr-300x92.jpg";s:5:"width";i:300;s:6:"height";i:92;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"nrw_hdr-768x236.jpg";s:5:"width";i:768;s:6:"height";i:236;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"nrw_hdr-1024x315.jpg";s:5:"width";i:1024;s:6:"height";i:315;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:18:"nrw_hdr-260x80.jpg";s:5:"width";i:260;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:17:"nrw_hdr-50x15.jpg";s:5:"width";i:50;s:6:"height";i:15;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:18:"nrw_hdr-150x46.jpg";s:5:"width";i:150;s:6:"height";i:46;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:17:"nrw_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:17:"nrw_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:20:"nrw_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:20:"nrw_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:19:"nrw_hdr-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:19:"nrw_hdr-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:20:"nrw_hdr-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2504, 3718, '_wp_attached_file', '2016/07/nrw.jpg'),
(2505, 3718, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:15:"2016/07/nrw.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"nrw-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"nrw-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:15:"nrw-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:13:"nrw-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:14:"nrw-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:13:"nrw-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:13:"nrw-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2506, 3719, '_wp_attached_file', '2016/07/power_gen_hdr.jpg'),
(2507, 3719, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:400;s:4:"file";s:25:"2016/07/power_gen_hdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"power_gen_hdr-150x150.jpg";s:5:"width";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:"power_gen_hdr-300x92.jpg";s:5:"width";i:300;s:6:"height";i:92;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"power_gen_hdr-768x236.jpg";s:5:"width";i:768;s:6:"height";i:236;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"power_gen_hdr-1024x315.jpg";s:5:"width";i:1024;s:6:"height";i:315;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"power_gen_hdr-260x80.jpg";s:5:"width";i:260;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"power_gen_hdr-50x15.jpg";s:5:"width";i:50;s:6:"height";i:15;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:24:"power_gen_hdr-150x46.jpg";s:5:"width";i:150;s:6:"height";i:46;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"power_gen_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"power_gen_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:26:"power_gen_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:26:"power_gen_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:25:"power_gen_hdr-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:25:"power_gen_hdr-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:26:"power_gen_hdr-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2508, 3720, '_wp_attached_file', '2016/07/power_gen.jpg'),
(2509, 3720, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:21:"2016/07/power_gen.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"power_gen-150x150.jpg";s:5:"width";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:"power_gen-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"power_gen-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"power_gen-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"power_gen-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"power_gen-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"power_gen-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2510, 3721, '_wp_attached_file', '2016/07/water_services_hdr.jpg'),
(2511, 3721, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:400;s:4:"file";s:30:"2016/07/water_services_hdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"water_services_hdr-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"water_services_hdr-300x92.jpg";s:5:"width";i:300;s:6:"height";i:92;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"water_services_hdr-768x236.jpg";s:5:"width";i:768;s:6:"height";i:236;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"water_services_hdr-1024x315.jpg";s:5:"width";i:1024;s:6:"height";i:315;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"water_services_hdr-260x80.jpg";s:5:"width";i:260;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:28:"water_services_hdr-50x15.jpg";s:5:"width";i:50;s:6:"height";i:15;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:29:"water_services_hdr-150x46.jpg";s:5:"width";i:150;s:6:"height";i:46;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:28:"water_services_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:28:"water_services_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:31:"water_services_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:31:"water_services_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:30:"water_services_hdr-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:30:"water_services_hdr-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:31:"water_services_hdr-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2512, 3722, '_wp_attached_file', '2016/07/water_services.jpg'),
(2513, 3722, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:26:"2016/07/water_services.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"water_services-150x150.jpg";s:5:"width";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:"water_services-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"water_services-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"water_services-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"water_services-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"water_services-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"water_services-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2514, 3723, '_wp_attached_file', '2016/07/waterwaste.jpg'),
(2515, 3723, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:22:"2016/07/waterwaste.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"waterwaste-150x150.jpg";s:5:"width";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:"waterwaste-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"waterwaste-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"waterwaste-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"waterwaste-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"waterwaste-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"waterwaste-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2516, 3724, '_wp_attached_file', '2016/07/waterwaste_hdr.jpg'),
(2517, 3724, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:400;s:4:"file";s:26:"2016/07/waterwaste_hdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"waterwaste_hdr-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"waterwaste_hdr-300x92.jpg";s:5:"width";i:300;s:6:"height";i:92;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"waterwaste_hdr-768x236.jpg";s:5:"width";i:768;s:6:"height";i:236;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"waterwaste_hdr-1024x315.jpg";s:5:"width";i:1024;s:6:"height";i:315;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"waterwaste_hdr-260x80.jpg";s:5:"width";i:260;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"waterwaste_hdr-50x15.jpg";s:5:"width";i:50;s:6:"height";i:15;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"waterwaste_hdr-150x46.jpg";s:5:"width";i:150;s:6:"height";i:46;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"waterwaste_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"waterwaste_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:27:"waterwaste_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"waterwaste_hdr-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:26:"waterwaste_hdr-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:26:"waterwaste_hdr-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"waterwaste_hdr-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2518, 123, '_thumbnail_id', '3719'),
(2519, 123, 'mfn-meta-seo-title', 'Ranhill'),
(2520, 123, 'mfn-meta-seo-description', 'Power generation'),
(2521, 123, 'mfn-meta-seo-keywords', 'Ranhill'),
(2522, 123, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2535, 3726, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2536, 3726, '_menu_item_type', 'post_type'),
(2537, 3726, '_menu_item_menu_item_parent', '3652'),
(2538, 3726, '_menu_item_object_id', '3710'),
(2539, 3726, '_menu_item_object', 'page'),
(2540, 3726, '_menu_item_target', ''),
(2541, 3726, '_menu_item_classes', 'a:1:{i:0;s:0:"";}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2542, 3726, '_menu_item_xfn', ''),
(2543, 3726, '_menu_item_url', ''),
(2545, 3726, 'menu-item-mfn-megamenu', ''),
(2546, 3726, 'menu-item-mfn-bg', ''),
(2559, 3728, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2560, 3728, '_menu_item_type', 'post_type'),
(2561, 3728, '_menu_item_menu_item_parent', '3652'),
(2562, 3728, '_menu_item_object_id', '3711'),
(2563, 3728, '_menu_item_object', 'page'),
(2564, 3728, '_menu_item_target', ''),
(2565, 3728, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2566, 3728, '_menu_item_xfn', ''),
(2567, 3728, '_menu_item_url', ''),
(2569, 3728, 'menu-item-mfn-megamenu', ''),
(2570, 3728, 'menu-item-mfn-bg', ''),
(2571, 3729, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2572, 3729, '_menu_item_type', 'post_type'),
(2573, 3729, '_menu_item_menu_item_parent', '3703'),
(2574, 3729, '_menu_item_object_id', '3702'),
(2575, 3729, '_menu_item_object', 'page'),
(2576, 3729, '_menu_item_target', ''),
(2577, 3729, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2578, 3729, '_menu_item_xfn', ''),
(2579, 3729, '_menu_item_url', ''),
(2581, 3729, 'menu-item-mfn-megamenu', ''),
(2582, 3729, 'menu-item-mfn-bg', ''),
(2583, 16, '_edit_lock', '1537413445:1'),
(2584, 16, '_edit_last', '1'),
(2585, 16, '_wpb_vc_js_status', 'false'),
(2586, 16, 'mfn-meta-seo-title', 'Ranhill'),
(2587, 16, 'mfn-meta-seo-description', 'Contact Us'),
(2588, 16, 'mfn-meta-seo-keywords', 'Ranhill'),
(2589, 16, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(2590, 3732, '_wp_attached_file', '2016/04/contactus.jpg'),
(2591, 3732, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:400;s:4:"file";s:21:"2016/04/contactus.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"contactus-150x150.jpg";s:5:"width";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:"contactus-300x92.jpg";s:5:"width";i:300;s:6:"height";i:92;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"contactus-768x236.jpg";s:5:"width";i:768;s:6:"height";i:236;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"contactus-1024x315.jpg";s:5:"width";i:1024;s:6:"height";i:315;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"contactus-260x80.jpg";s:5:"width";i:260;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"contactus-50x15.jpg";s:5:"width";i:50;s:6:"height";i:15;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"contactus-150x46.jpg";s:5:"width";i:150;s:6:"height";i:46;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"contactus-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"contactus-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:22:"contactus-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:22:"contactus-1280x400.jpg";s:5:"width";i:1280;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:21:"contactus-768x400.jpg";s:5:"width";i:768;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:21:"contactus-960x400.jpg";s:5:"width";i:960;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:22:"contactus-1200x400.jpg";s:5:"width";i:1200;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:{}}}'),
(2592, 3733, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2593, 3733, '_menu_item_type', 'post_type'),
(2594, 3733, '_menu_item_menu_item_parent', '0'),
(2595, 3733, '_menu_item_object_id', '16'),
(2596, 3733, '_menu_item_object', 'page'),
(2597, 3733, '_menu_item_target', ''),
(2598, 3733, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2599, 3733, '_menu_item_xfn', ''),
(2600, 3733, '_menu_item_url', ''),
(2602, 3733, 'menu-item-mfn-megamenu', ''),
(2603, 3733, 'menu-item-mfn-bg', ''),
(2604, 3734, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2610, 3734, '_edit_last', '1'),
(2611, 3734, '_edit_lock', '1472454380:1'),
(2614, 3734, 'slide_template', 'default'),
(2615, 3734, 'mfn-post-hide-content', '0'),
(2616, 3734, 'mfn-post-slider', '0'),
(2617, 3734, 'mfn-post-slider-layer', '0'),
(2618, 3734, 'mfn-post-hide-title', '0'),
(2619, 3734, 'mfn-post-remove-padding', '0'),
(2620, 3734, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2621, 3734, 'mfn-post-hide-image', '0'),
(2622, 3737, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2623, 3737, '_edit_last', '1'),
(2624, 3737, '_edit_lock', '1548724610:1'),
(2627, 3737, 'slide_template', 'default'),
(2628, 3737, 'mfn-post-hide-content', '0'),
(2629, 3737, 'mfn-post-slider', '0'),
(2630, 3737, 'mfn-post-slider-layer', '0'),
(2631, 3737, 'mfn-post-hide-title', '1'),
(2632, 3737, 'mfn-post-remove-padding', '0'),
(2633, 3737, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2634, 3737, 'mfn-post-hide-image', '0'),
(2635, 3737, 'mfn-post-love', '0'),
(2636, 3734, 'mfn-post-love', '0'),
(2637, 3739, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2638, 3739, '_edit_last', '1'),
(2639, 3739, '_edit_lock', '1472454379:1'),
(2642, 3739, 'slide_template', 'default'),
(2643, 3739, 'mfn-post-hide-content', '0'),
(2644, 3739, 'mfn-post-slider', '0'),
(2645, 3739, 'mfn-post-slider-layer', '0'),
(2646, 3739, 'mfn-post-hide-title', '0'),
(2647, 3739, 'mfn-post-remove-padding', '0'),
(2648, 3739, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2649, 3739, 'mfn-post-hide-image', '0'),
(2650, 3741, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2651, 3741, '_edit_last', '1'),
(2652, 3741, '_edit_lock', '1472452806:1'),
(2655, 3741, 'slide_template', 'default'),
(2656, 3741, 'mfn-post-hide-content', '0'),
(2657, 3741, 'mfn-post-slider', '0'),
(2658, 3741, 'mfn-post-slider-layer', '0'),
(2659, 3741, 'mfn-post-hide-title', '0'),
(2660, 3741, 'mfn-post-remove-padding', '0'),
(2661, 3741, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2662, 3741, 'mfn-post-hide-image', '0'),
(2663, 3743, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2664, 3743, '_edit_last', '1'),
(2665, 3743, '_edit_lock', '1548724821:1'),
(2668, 3743, 'slide_template', 'default'),
(2669, 3743, 'mfn-post-hide-content', '0'),
(2670, 3743, 'mfn-post-slider', '0'),
(2671, 3743, 'mfn-post-slider-layer', '0'),
(2672, 3743, 'mfn-post-hide-title', '1') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2673, 3743, 'mfn-post-remove-padding', '0'),
(2674, 3743, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2675, 3743, 'mfn-post-hide-image', '0'),
(2676, 3745, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2677, 3745, '_edit_last', '1'),
(2678, 3745, '_edit_lock', '1548724676:1'),
(2681, 3745, 'slide_template', 'default'),
(2682, 3745, 'mfn-post-hide-content', '0'),
(2683, 3745, 'mfn-post-slider', '0'),
(2684, 3745, 'mfn-post-slider-layer', '0'),
(2685, 3745, 'mfn-post-hide-title', '1'),
(2686, 3745, 'mfn-post-remove-padding', '0'),
(2687, 3745, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2688, 3745, 'mfn-post-hide-image', '0'),
(2689, 3747, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2690, 3747, '_edit_last', '1'),
(2691, 3747, '_edit_lock', '1548724641:1'),
(2694, 3747, 'slide_template', 'default'),
(2695, 3747, 'mfn-post-hide-content', '0'),
(2696, 3747, 'mfn-post-slider', '0'),
(2697, 3747, 'mfn-post-slider-layer', '0'),
(2698, 3747, 'mfn-post-hide-title', '1'),
(2699, 3747, 'mfn-post-remove-padding', '0'),
(2700, 3747, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2701, 3747, 'mfn-post-hide-image', '0'),
(2702, 3749, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2703, 3747, 'mfn-post-love', '0'),
(2704, 3745, 'mfn-post-love', '0'),
(2705, 3743, 'mfn-post-love', '0'),
(2706, 3741, 'mfn-post-love', '0'),
(2707, 3739, 'mfn-post-love', '0'),
(2708, 3749, '_edit_last', '1'),
(2709, 3749, '_edit_lock', '1548724529:1'),
(2712, 3749, 'slide_template', 'default'),
(2713, 3749, 'mfn-post-hide-content', '0'),
(2714, 3749, 'mfn-post-slider', '0'),
(2715, 3749, 'mfn-post-slider-layer', '0'),
(2716, 3749, 'mfn-post-hide-title', '1'),
(2717, 3749, 'mfn-post-remove-padding', '0'),
(2718, 3749, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(2719, 3749, 'mfn-post-hide-image', '0'),
(2720, 3749, 'mfn-post-love', '0'),
(2721, 3751, '_wp_attached_file', '2016/07/enter.png'),
(2722, 3751, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:94;s:6:"height";i:94;s:4:"file";s:17:"2016/07/enter.png";s:5:"sizes";a:4:{s:5:"50x50";a:4:{s:4:"file";s:15:"enter-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:15:"enter-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:15:"enter-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:15:"enter-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2723, 3753, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2724, 3753, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2725, 3753, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2726, 3753, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2727, 3753, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2728, 3753, '_wp_page_template', 'default'),
(2729, 3753, '_wp_page_template', 'default'),
(2730, 3753, 'mfn-post-hide-content', '0'),
(2731, 3753, 'mfn-post-hide-content', '0'),
(2732, 3753, 'mfn-post-slider', 'spa'),
(2733, 3753, 'mfn-post-slider', 'spa'),
(2734, 3753, 'mfn-post-slider-layer', '0'),
(2735, 3753, 'mfn-post-slider-layer', '0'),
(2736, 3753, 'mfn-post-custom-layout', '43'),
(2737, 3753, 'mfn-post-custom-layout', '43'),
(2738, 3753, 'mfn-post-one-page', '0'),
(2739, 3753, 'mfn-post-one-page', '0'),
(2740, 3753, 'mfn-post-hide-title', '0'),
(2741, 3753, 'mfn-post-hide-title', '0'),
(2742, 3753, 'mfn-post-remove-padding', '0'),
(2743, 3753, 'mfn-post-remove-padding', '0'),
(2744, 3753, 'mfn-post-menu', '3'),
(2745, 3753, 'mfn-post-menu', '3'),
(2746, 3753, 'slide_template', 'default'),
(2747, 3753, 'slide_template', 'default'),
(2748, 3753, 'mfn-page-items-seo', 'Our Business\r\n\r\n<h2 style="margin-bottom: 0px;">Our Business</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/ourbusiness.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/our-business/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nSharing Our Expertise\r\n\r\n<h2 style="margin-bottom: 0px;">Sharing Our Expertise</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/shareexpertise.jpg" border="0"]\r\n[divider height="15"]\r\n <a href="http://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/" >Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nTechnology\r\n\r\n<h2 style="margin-bottom: 0px;">Our  Technology</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/ourtechnology_hdr.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n40\r\n\r\ndefault\r\n\r\nShare\r\n\r\n<h2 style="margin-bottom: 0px;">Share Information</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n<iframe src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250px" scrolling="no" frameborder="0"></iframe>[divider height="15"]\r\n\r\nno-repeat;center top;;\r\n\r\nMeet Our People\r\n\r\n<h2 style="margin-bottom: 0px;">Meet Our People</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetourpeople.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/meet-our-people/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nwhistleblowing\r\n\r\n<h2 style="margin-bottom: 0px;">Whistleblowing Channel</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/whisteblowing.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/whistleblowing/" >Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n'),
(2749, 3753, 'mfn-page-items-seo', 'Our Business\r\n\r\n<h2 style="margin-bottom: 0px;">Our Business</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/ourbusiness.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/our-business/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nSharing Our Expertise\r\n\r\n<h2 style="margin-bottom: 0px;">Sharing Our Expertise</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/shareexpertise.jpg" border="0"]\r\n[divider height="15"]\r\n <a href="http://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/" >Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nTechnology\r\n\r\n<h2 style="margin-bottom: 0px;">Our  Technology</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/ourtechnology_hdr.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n40\r\n\r\ndefault\r\n\r\nShare\r\n\r\n<h2 style="margin-bottom: 0px;">Share Information</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n<iframe src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250px" scrolling="no" frameborder="0"></iframe>[divider height="15"]\r\n\r\nno-repeat;center top;;\r\n\r\nMeet Our People\r\n\r\n<h2 style="margin-bottom: 0px;">Meet Our People</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetourpeople.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/meet-our-people/">Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\nwhistleblowing\r\n\r\n<h2 style="margin-bottom: 0px;">Whistleblowing Channel</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/whisteblowing.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/whistleblowing/" >Read more</a>\r\n\r\nno-repeat;center top;;\r\n\r\n'),
(2750, 3753, '_edit_last', '1'),
(2751, 3753, 'mfn-post-sidebar', '0'),
(2752, 3753, 'mfn-post-sidebar2', '0'),
(2753, 3753, '_wpb_vc_js_status', 'false'),
(2754, 3753, 'mfn-post-css', '#Top_bar #logo, .header-fixed #Top_bar #logo, .header-plain #Top_bar #logo, .header-transparent #Top_bar #logo {     height:170px; }\r\n\r\n.header-simple #Top_bar #menu {top: 40%;}'),
(2756, 3753, '_edit_lock', '1493365325:1'),
(2757, 3753, '_dp_original', '6'),
(2758, 3756, '_wp_attached_file', '2016/07/latest_power.jpg'),
(2759, 3756, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1366;s:6:"height";i:768;s:4:"file";s:24:"2016/07/latest_power.jpg";s:5:"sizes";a:15:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"latest_power-150x150.jpg";s:5:"width";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:"latest_power-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"latest_power-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"latest_power-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"latest_power-260x146.jpg";s:5:"width";i:260;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"latest_power-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"latest_power-133x75.jpg";s:5:"width";i:133;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"latest_power-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"latest_power-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:25:"latest_power-1280x768.jpg";s:5:"width";i:1280;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"latest_power-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:24:"latest_power-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:25:"latest_power-1366x750.jpg";s:5:"width";i:1366;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:24:"latest_power-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"latest_power-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2760, 3757, '_wp_attached_file', '2016/07/bod_banner.jpg'),
(2761, 3757, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:450;s:6:"height";i:250;s:4:"file";s:22:"2016/07/bod_banner.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"bod_banner-150x150.jpg";s:5:"width";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:"bod_banner-300x167.jpg";s:5:"width";i:300;s:6:"height";i:167;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"bod_banner-260x144.jpg";s:5:"width";i:260;s:6:"height";i:144;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"bod_banner-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"bod_banner-135x75.jpg";s:5:"width";i:135;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"bod_banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"bod_banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2762, 3758, '_wp_attached_file', '2016/07/vmv_banner.jpg'),
(2763, 3758, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:450;s:6:"height";i:250;s:4:"file";s:22:"2016/07/vmv_banner.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"vmv_banner-150x150.jpg";s:5:"width";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:"vmv_banner-300x167.jpg";s:5:"width";i:300;s:6:"height";i:167;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"vmv_banner-260x144.jpg";s:5:"width";i:260;s:6:"height";i:144;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"vmv_banner-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"vmv_banner-135x75.jpg";s:5:"width";i:135;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"vmv_banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"vmv_banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2764, 3758, '_edit_lock', '1469884827:1'),
(2765, 3757, '_edit_lock', '1469884882:1'),
(2766, 3760, '_wp_attached_file', '2016/07/logo_ranhill_sml.png'),
(2767, 3760, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:51;s:6:"height";i:71;s:4:"file";s:28:"2016/07/logo_ranhill_sml.png";s:5:"sizes";a:1:{s:5:"50x50";a:4:{s:4:"file";s:26:"logo_ranhill_sml-36x50.png";s:5:"width";i:36;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2768, 3762, '_wp_attached_file', '2016/07/corprate_gov.jpg'),
(2769, 3762, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:450;s:6:"height";i:250;s:4:"file";s:24:"2016/07/corprate_gov.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"corprate_gov-150x150.jpg";s:5:"width";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:"corprate_gov-300x167.jpg";s:5:"width";i:300;s:6:"height";i:167;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"corprate_gov-260x144.jpg";s:5:"width";i:260;s:6:"height";i:144;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"corprate_gov-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"corprate_gov-135x75.jpg";s:5:"width";i:135;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"corprate_gov-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"corprate_gov-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2770, 3763, '_wp_attached_file', '2016/07/sustainability_report.jpg'),
(2771, 3763, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:450;s:6:"height";i:250;s:4:"file";s:33:"2016/07/sustainability_report.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"sustainability_report-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"sustainability_report-300x167.jpg";s:5:"width";i:300;s:6:"height";i:167;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:33:"sustainability_report-260x144.jpg";s:5:"width";i:260;s:6:"height";i:144;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:31:"sustainability_report-50x28.jpg";s:5:"width";i:50;s:6:"height";i:28;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:32:"sustainability_report-135x75.jpg";s:5:"width";i:135;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:31:"sustainability_report-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:31:"sustainability_report-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2772, 3762, '_edit_lock', '1469889410:1'),
(2773, 3763, '_edit_lock', '1469888017:1'),
(2774, 3764, '_wp_attached_file', '2016/07/Board-Charter-v1-2.pdf'),
(2775, 3764, '_edit_lock', '1469889406:1'),
(2776, 3765, '_wp_attached_file', '2016/07/bursa_banner.jpg'),
(2777, 3765, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:572;s:6:"height";i:278;s:4:"file";s:24:"2016/07/bursa_banner.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"bursa_banner-150x150.jpg";s:5:"width";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:"bursa_banner-300x146.jpg";s:5:"width";i:300;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"bursa_banner-260x126.jpg";s:5:"width";i:260;s:6:"height";i:126;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"bursa_banner-50x24.jpg";s:5:"width";i:50;s:6:"height";i:24;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"bursa_banner-150x73.jpg";s:5:"width";i:150;s:6:"height";i:73;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"bursa_banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"bursa_banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2778, 3765, '_edit_lock', '1469889405:1'),
(2779, 3766, '_wp_attached_file', '2016/07/press_release_banner.jpg') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2780, 3766, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:572;s:6:"height";i:278;s:4:"file";s:32:"2016/07/press_release_banner.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"press_release_banner-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"press_release_banner-300x146.jpg";s:5:"width";i:300;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"press_release_banner-260x126.jpg";s:5:"width";i:260;s:6:"height";i:126;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:30:"press_release_banner-50x24.jpg";s:5:"width";i:50;s:6:"height";i:24;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:31:"press_release_banner-150x73.jpg";s:5:"width";i:150;s:6:"height";i:73;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:30:"press_release_banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:30:"press_release_banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2781, 3767, '_wp_attached_file', '2016/07/video-1.jpg'),
(2782, 3767, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:572;s:6:"height";i:278;s:4:"file";s:19:"2016/07/video-1.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"video-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:19:"video-1-300x146.jpg";s:5:"width";i:300;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"video-1-260x126.jpg";s:5:"width";i:260;s:6:"height";i:126;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:17:"video-1-50x24.jpg";s:5:"width";i:50;s:6:"height";i:24;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:18:"video-1-150x73.jpg";s:5:"width";i:150;s:6:"height";i:73;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:17:"video-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:17:"video-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2783, 3766, '_edit_lock', '1469889401:1'),
(2784, 3767, '_edit_lock', '1469889400:1'),
(2789, 3749, 'mfn-meta-seo-title', 'Ranhill Bullish on Growth Prospects'),
(2790, 3749, 'mfn-meta-seo-description', 'Ranhill Bullish on Growth Prospects'),
(2791, 3749, 'mfn-meta-seo-keywords', 'Ranhill Bullish on Growth Prospects'),
(2794, 3747, 'mfn-meta-seo-title', 'Ranhill成长前景看涨'),
(2795, 3747, 'mfn-meta-seo-description', 'Ranhill成长前景看涨'),
(2796, 3747, 'mfn-meta-seo-keywords', 'Ranhill成长前景看涨'),
(2799, 3745, 'mfn-meta-seo-title', 'Ranhill Yakin Dengan Prospek Perkembangan'),
(2800, 3745, 'mfn-meta-seo-description', 'Ranhill Yakin Dengan Prospek Perkembangan'),
(2801, 3745, 'mfn-meta-seo-keywords', 'Ranhill Yakin Dengan Prospek Perkembangan'),
(2804, 3743, 'mfn-meta-seo-title', 'Ranhill Adopts New Technology for Water Leak Detection'),
(2805, 3743, 'mfn-meta-seo-description', 'Ranhill Adopts New Technology for Water Leak Detection'),
(2806, 3743, 'mfn-meta-seo-keywords', 'Ranhill Adopts New Technology for Water Leak Detection'),
(2809, 3741, 'mfn-meta-seo-title', 'Ranhill Holdings Disenaraikan di Papan Utama'),
(2810, 3741, 'mfn-meta-seo-description', 'Ranhill Holdings Disenaraikan di Papan Utama'),
(2811, 3741, 'mfn-meta-seo-keywords', 'Ranhill Holdings Disenaraikan di Papan Utama'),
(2814, 3739, 'mfn-meta-seo-title', 'Ranhill Holdings Lists on Main Board'),
(2815, 3739, 'mfn-meta-seo-description', 'Ranhill Holdings Lists on Main Board'),
(2816, 3739, 'mfn-meta-seo-keywords', 'Ranhill Holdings Lists on Main Board'),
(2819, 3737, 'mfn-meta-seo-title', 'Ranhill Holdings上市主要交易板'),
(2820, 3737, 'mfn-meta-seo-description', 'Ranhill Holdings上市主要交易板'),
(2821, 3737, 'mfn-meta-seo-keywords', 'Ranhill Holdings上市主要交易板'),
(2822, 3770, '_wp_attached_file', '2016/05/CORPORATE-SUSTAINABILITY-STATEMENT.pdf'),
(2823, 6, 'mfn-meta-seo-title', 'Ranhill'),
(2824, 6, 'mfn-meta-seo-description', 'Environment and Power '),
(2825, 6, 'mfn-meta-seo-keywords', 'Environment and Power '),
(2826, 284, '_edit_lock', '1527843161:1'),
(2827, 3772, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(2828, 3772, '_menu_item_type', 'post_type'),
(2829, 3772, '_menu_item_menu_item_parent', '0'),
(2830, 3772, '_menu_item_object_id', '3753'),
(2831, 3772, '_menu_item_object', 'page'),
(2832, 3772, '_menu_item_target', ''),
(2833, 3772, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2834, 3772, '_menu_item_xfn', ''),
(2835, 3772, '_menu_item_url', ''),
(2837, 3772, 'menu-item-mfn-megamenu', ''),
(2838, 3772, 'menu-item-mfn-bg', ''),
(3103, 125, '_edit_lock', '1484536717:1'),
(3104, 3753, 'mfn-meta-seo-title', 'Home'),
(3105, 3753, 'mfn-meta-seo-description', 'Home'),
(3106, 3753, 'mfn-meta-seo-keywords', 'Home'),
(3107, 3797, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3108, 3797, '_edit_last', '1'),
(3109, 3797, '_edit_lock', '1523933797:1'),
(3110, 3797, '_wp_page_template', 'default'),
(3111, 3797, 'slide_template', 'default'),
(3112, 3797, 'mfn-post-hide-content', '0'),
(3113, 3797, 'mfn-post-slider', '0'),
(3114, 3797, 'mfn-post-slider-layer', '0'),
(3115, 3797, 'mfn-post-hide-title', '0'),
(3116, 3797, 'mfn-post-remove-padding', '0'),
(3117, 3797, 'mfn-post-custom-layout', '0'),
(3118, 3797, 'mfn-post-one-page', '0'),
(3119, 3797, 'mfn-post-menu', '2'),
(3120, 3797, '_wpb_vc_js_status', 'false'),
(3121, 3799, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3122, 3799, '_menu_item_type', 'post_type'),
(3123, 3799, '_menu_item_menu_item_parent', '0'),
(3124, 3799, '_menu_item_object_id', '3797'),
(3125, 3799, '_menu_item_object', 'page'),
(3126, 3799, '_menu_item_target', ''),
(3127, 3799, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3128, 3799, '_menu_item_xfn', ''),
(3129, 3799, '_menu_item_url', ''),
(3131, 3799, 'menu-item-mfn-megamenu', ''),
(3132, 3799, 'menu-item-mfn-bg', ''),
(3179, 272, '_edit_lock', '1478590047:1'),
(3180, 274, '_edit_lock', '1478589356:1'),
(3181, 3817, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3182, 3817, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3183, 3817, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3184, 3817, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3185, 3817, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3186, 3817, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3187, 3817, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3188, 3817, '_edit_last', '1'),
(3189, 3817, 'mfn-post-sidebar', '0'),
(3190, 3817, 'mfn-post-sidebar2', '0'),
(3191, 3817, '_wpb_vc_js_status', 'false'),
(3192, 3817, 'mfn-post-subheader-image', ''),
(3193, 3817, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:2:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:680:"<h3 style="margin-bottom: 0px;">Share Information</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" use_shortcode_attributes_only="true" src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250" scrolling="none" id="advanced_iframe" onload_scroll_top="true" hide_page_until_loaded="true" enable_responsive_iframe="true" enable_external_height_workaround="true" ][divider height="15"]\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:501:"<h3 style="margin-bottom: 0px;">Bursa Announcements </h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bursa_banner.jpg" border="0"]\n[divider height="15"]\n\n<a class="read_more" href="bursa-announcements/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:4:"10px";s:13:"column_margin";s:4:"20px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3194, 3817, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3196, 3817, '_wp_page_template', 'default'),
(3197, 3817, 'slide_template', 'default'),
(3198, 3817, 'mfn-post-hide-content', '0'),
(3199, 3817, 'mfn-post-custom-layout', '0'),
(3200, 3817, 'mfn-post-slider', '0'),
(3201, 3817, 'mfn-post-slider-layer', '0'),
(3202, 3817, 'mfn-post-menu', '0'),
(3203, 3817, 'mfn-post-one-page', '0'),
(3204, 3817, 'mfn-post-hide-title', '0'),
(3205, 3817, 'mfn-post-remove-padding', '0'),
(3206, 3817, 'mfn-page-items-seo', '<h3 style="margin-bottom: 0px;">Share Information</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" use_shortcode_attributes_only="true" src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250" scrolling="none" id="advanced_iframe" onload_scroll_top="true" hide_page_until_loaded="true" enable_responsive_iframe="true" enable_external_height_workaround="true" ][divider height="15"]\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Bursa Announcements </h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bursa_banner.jpg" border="0"]\r\n[divider height="15"]\r\n\r\n<a class="read_more" href="bursa-announcements/">Read more</a>\n\nno-repeat;center top;;\n\n'),
(3207, 3817, '_thumbnail_id', '3679'),
(3208, 3817, '_edit_lock', '1540541809:1') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3209, 3817, '_dp_original', '3606'),
(3210, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3211, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3212, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3213, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3214, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3215, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3216, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3217, 3819, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3218, 3819, '_edit_last', '1'),
(3219, 3819, 'mfn-post-sidebar', '0'),
(3220, 3819, 'mfn-post-sidebar2', '0'),
(3221, 3819, '_wpb_vc_js_status', 'false'),
(3222, 3819, 'mfn-post-subheader-image', ''),
(3223, 3819, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:2:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:496:"<h3 style="margin-bottom: 0px;">Press Release</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/press_release_banner.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="press-release/">Read more</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:467:"<h3 style="margin-bottom: 0px;">Video</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/video-1.jpg" border="0"]\n[divider height="15"]\n\n<a class="read_more" href="video/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:4:"10px";s:13:"column_margin";s:4:"20px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3224, 3819, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3225, 3819, '_wp_page_template', 'default'),
(3226, 3819, 'slide_template', ''),
(3227, 3819, 'mfn-post-hide-content', '0'),
(3228, 3819, 'mfn-post-custom-layout', '0'),
(3229, 3819, 'mfn-post-slider', '0'),
(3230, 3819, 'mfn-post-slider-layer', '0'),
(3231, 3819, 'mfn-post-menu', '0'),
(3232, 3819, 'mfn-post-one-page', '0'),
(3233, 3819, 'mfn-post-hide-title', '0'),
(3234, 3819, 'mfn-post-remove-padding', '0'),
(3235, 3819, 'mfn-page-items-seo', '<h3 style="margin-bottom: 0px;">Press Release</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/press_release_banner.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="press-release/">Read more</a>\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Video</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/video-1.jpg" border="0"]\r\n[divider height="15"]\r\n\r\n<a class="read_more" href="video/">Read more</a>\n\nno-repeat;center top;;\n\n'),
(3236, 3819, '_edit_lock', '1470276924:1'),
(3238, 3819, '_thumbnail_id', '3695'),
(3239, 3819, 'mfn-meta-seo-title', 'Ranhill'),
(3240, 3819, 'mfn-meta-seo-description', 'Media'),
(3241, 3819, 'mfn-meta-seo-keywords', 'Ranhill'),
(3242, 3819, '_dp_original', '3694'),
(3243, 295, '_edit_lock', '1470276773:1'),
(3244, 3820, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3245, 3820, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3246, 3820, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3247, 3820, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3248, 3820, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3249, 3820, '_wp_page_template', 'default'),
(3250, 3820, '_wp_page_template', 'default'),
(3251, 3820, 'slide_template', 'default'),
(3252, 3820, 'slide_template', 'default'),
(3253, 3820, 'mfn-post-hide-content', '0'),
(3254, 3820, 'mfn-post-hide-content', '0'),
(3255, 3820, 'mfn-post-slider', '0'),
(3256, 3820, 'mfn-post-slider', '0'),
(3257, 3820, 'mfn-post-slider-layer', '0'),
(3258, 3820, 'mfn-post-slider-layer', '0'),
(3259, 3820, 'mfn-post-custom-layout', '0'),
(3260, 3820, 'mfn-post-custom-layout', '0'),
(3261, 3820, 'mfn-post-one-page', '0'),
(3262, 3820, 'mfn-post-one-page', '0'),
(3263, 3820, 'mfn-post-hide-title', '0'),
(3264, 3820, 'mfn-post-hide-title', '0'),
(3265, 3820, 'mfn-post-remove-padding', '0'),
(3266, 3820, 'mfn-post-remove-padding', '0'),
(3267, 3820, 'mfn-post-menu', '0'),
(3268, 3820, 'mfn-post-menu', '0'),
(3269, 3820, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:4:"Desc";s:7:"content";s:792:"<b>Address:<br/>\n</b>13th Floor, Wisma PERKESO, <br/>\nNo 155, Jalan Tun Razak, Kampung Baru,<br/>\n50400 Kuala Lumpur, <br/>\nWilayah Persekutuan <br/>\nMalaysia<br/><br/>\n<b>Tel:</b> +60 3-2685 5000 <br/><br/>\n\n<b>Media\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\n\n<br/><br/>\n<b>Investor Relations\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\n\n\n<br/><br/>\n<b>Career\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\n\n<br/><br/>\n<b>Sustainability Reporting</b><br/>\nIf you have any sustainability reporting enquiries please email us at\nsustainability@investors-watch.com/wp-staging/ranhill\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:364:"<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d127479.18976782168!2d101.64301059031177!3d3.1670488384637157!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31cc37dc190a158d%3A0xd6d9696ed549ffb5!2sRanhill+Water+Technologies!5e0!3m2!1sen!2s!4v1469864147261" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3270, 3820, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:4:"Desc";s:7:"content";s:792:"<b>Address:<br/>\n</b>13th Floor, Wisma PERKESO, <br/>\nNo 155, Jalan Tun Razak, Kampung Baru,<br/>\n50400 Kuala Lumpur, <br/>\nWilayah Persekutuan <br/>\nMalaysia<br/><br/>\n<b>Tel:</b> +60 3-2685 5000 <br/><br/>\n\n<b>Media\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\n\n<br/><br/>\n<b>Investor Relations\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\n\n\n<br/><br/>\n<b>Career\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\n\n<br/><br/>\n<b>Sustainability Reporting</b><br/>\nIf you have any sustainability reporting enquiries please email us at\nsustainability@investors-watch.com/wp-staging/ranhill\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:364:"<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d127479.18976782168!2d101.64301059031177!3d3.1670488384637157!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31cc37dc190a158d%3A0xd6d9696ed549ffb5!2sRanhill+Water+Technologies!5e0!3m2!1sen!2s!4v1469864147261" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3271, 3820, 'mfn-page-items-seo', 'Desc\n\n<b>Address:<br/>\r\n</b>13th Floor, Wisma PERKESO, <br/>\r\nNo 155, Jalan Tun Razak, Kampung Baru,<br/>\r\n50400 Kuala Lumpur, <br/>\r\nWilayah Persekutuan <br/>\r\nMalaysia<br/><br/>\r\n<b>Tel:</b> +60 3-2685 5000 <br/><br/>\r\n\r\n<b>Media\r\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\r\n\r\n<br/><br/>\r\n<b>Investor Relations\r\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\r\n\r\n\r\n<br/><br/>\r\n<b>Career\r\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\r\n\r\n<br/><br/>\r\n<b>Sustainability Reporting</b><br/>\r\nIf you have any sustainability reporting enquiries please email us at\r\nsustainability@investors-watch.com/wp-staging/ranhill\n\nno-repeat;center top;;\n\n<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d127479.18976782168!2d101.64301059031177!3d3.1670488384637157!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31cc37dc190a158d%3A0xd6d9696ed549ffb5!2sRanhill+Water+Technologies!5e0!3m2!1sen!2s!4v1469864147261" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>\n\nno-repeat;center top;;\n\n'),
(3272, 3820, 'mfn-page-items-seo', 'Desc\n\n<b>Address:<br/>\r\n</b>13th Floor, Wisma PERKESO, <br/>\r\nNo 155, Jalan Tun Razak, Kampung Baru,<br/>\r\n50400 Kuala Lumpur, <br/>\r\nWilayah Persekutuan <br/>\r\nMalaysia<br/><br/>\r\n<b>Tel:</b> +60 3-2685 5000 <br/><br/>\r\n\r\n<b>Media\r\n</b></br>If you have any media enquiries please email us at info@investors-watch.com/wp-staging/ranhill\r\n\r\n<br/><br/>\r\n<b>Investor Relations\r\n</b></br>If you have any IR enquiries please email us at ir.info@investors-watch.com/wp-staging/ranhill\r\n\r\n\r\n<br/><br/>\r\n<b>Career\r\n</b></br>For career opportunities kindly visit  our <a href="http://www.investors-watch.com/wp-staging/ranhill/career/">career page</a>\r\n\r\n<br/><br/>\r\n<b>Sustainability Reporting</b><br/>\r\nIf you have any sustainability reporting enquiries please email us at\r\nsustainability@investors-watch.com/wp-staging/ranhill\n\nno-repeat;center top;;\n\n<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d127479.18976782168!2d101.64301059031177!3d3.1670488384637157!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31cc37dc190a158d%3A0xd6d9696ed549ffb5!2sRanhill+Water+Technologies!5e0!3m2!1sen!2s!4v1469864147261" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>\n\nno-repeat;center top;;\n\n'),
(3273, 3820, '_thumbnail_id', '3732'),
(3274, 3820, '_thumbnail_id', '3732'),
(3275, 3820, '_edit_lock', '1481878845:1'),
(3276, 3820, '_edit_last', '1'),
(3277, 3820, '_wpb_vc_js_status', 'false'),
(3278, 3820, 'mfn-meta-seo-title', 'Ranhill'),
(3279, 3820, 'mfn-meta-seo-description', 'Contact Us'),
(3280, 3820, 'mfn-meta-seo-keywords', 'Ranhill'),
(3281, 3820, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3282, 3820, '_dp_original', '16'),
(3283, 3822, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3284, 3822, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3285, 3822, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3286, 3822, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3287, 3822, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3288, 3822, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3289, 3822, '_wp_page_template', 'default'),
(3290, 3822, 'slide_template', ''),
(3291, 3822, 'mfn-post-hide-content', '0'),
(3292, 3822, 'mfn-post-custom-layout', '0'),
(3293, 3822, 'mfn-post-slider', '0'),
(3294, 3822, 'mfn-post-slider-layer', '0'),
(3295, 3822, 'mfn-post-menu', '0'),
(3296, 3822, 'mfn-post-one-page', '0'),
(3297, 3822, 'mfn-post-hide-title', '0'),
(3298, 3822, 'mfn-post-remove-padding', '0'),
(3299, 3822, 'mfn-page-items', 'a:2:{i:0;a:2:{s:4:"attr";a:15:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:0:"";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:692:"<div style="padding: 40px 6% 10px;"> \nWe are proud to say we build, own and operate our power generation assets. In our Environmental sector we provide water supply services, operate and manage wastewater treatment plants and provide specialized services in the management and optimization of water utility assets. Our operations and services are provided not only in Malaysia, but also to the Asian and International markets.\n[divider height="30"]\nPower and Environment are now the key focus points for Ranhill Holdings after five decades in the industry.  Owning assets and having well established operations in both sectors along with supporting engineering services and resources.\n\n</idv>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:7:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:15:{s:5:"title";s:0:"";s:8:"bg_color";s:7:"#4a4a4a";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"40";s:14:"padding_bottom";s:2:"30";s:7:"divider";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:7:"Heading";s:7:"content";s:283:"<h3 style="color: #fff; margin: 0 7% 60px;">Today, Ranhill has a strong and growing\npresence with operations in China, India, Thailand, Sudan, Libya\nand Saudi Arabia.</h3>\n<img class="scale-with-grid" src="http://hdprint.com.my/ranhill/wp-content/uploads/2016/05/map-1.png" alt="" />";s:5:"align";s:6:"center";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:7:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3300, 3822, 'mfn-page-items-seo', '<div style="padding: 40px 6% 10px;"> \nWe are proud to say we build, own and operate our power generation assets. In our Environmental sector we provide water supply services, operate and manage wastewater treatment plants and provide specialized services in the management and optimization of water utility assets. Our operations and services are provided not only in Malaysia, but also to the Asian and International markets.\n[divider height="30"]\nPower and Environment are now the key focus points for Ranhill Holdings after five decades in the industry.  Owning assets and having well established operations in both sectors along with supporting engineering services and resources.\n\n</idv>\n\nno-repeat;center top;;\n\nHeading\n\n<h3 style="color: #fff; margin: 0 7% 60px;">Today, Ranhill has a strong and growing\npresence with operations in China, India, Thailand, Sudan, Libya\nand Saudi Arabia.</h3>\n<img class="scale-with-grid" src="http://hdprint.com.my/ranhill/wp-content/uploads/2016/05/map-1.png" alt="" />\n\ncenter\n\nno-repeat;center top;;\n\n'),
(3301, 3822, '_edit_last', '1'),
(3302, 3822, 'mfn-post-sidebar', '0'),
(3303, 3822, 'mfn-post-sidebar2', '0'),
(3304, 3822, '_wpb_vc_js_status', 'false'),
(3305, 3822, 'mfn-post-subheader-image', ''),
(3306, 3822, 'mfn-meta-seo-title', 'About Ranhill'),
(3307, 3822, 'mfn-meta-seo-description', 'We are proud to say we build, own and operate our power generation assets. In our Environmental sector we provide water supply services, operate and manage wastewater treatment plants and provide specialized services in the management and optimization of water utility assets. Our operations and services our provided not only in Malaysia, but also to the Asian and International markets.'),
(3308, 3822, 'mfn-meta-seo-keywords', 'Ranhill'),
(3309, 3822, 'mfn-post-css', '#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -44px;\n    width: 95%;\n    color: #ffffff;\n    font-size: 50px;}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3310, 3822, '_thumbnail_id', '3545'),
(3311, 3822, '_dp_original', '26'),
(3312, 3822, '_edit_lock', '1488858448:1'),
(3313, 3824, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3314, 3824, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3315, 3824, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3316, 3824, '_edit_last', '1'),
(3317, 3824, '_thumbnail_id', '3669'),
(3318, 3824, '_wp_page_template', 'default'),
(3319, 3824, 'slide_template', 'default'),
(3320, 3824, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:364:"[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" use_shortcode_attributes_only="true" src="http://www.insage.com.my/ir/cmn/trps02/masanews_ir.aspx?Symbol=5272" width="100%"  scrolling="none" id="advanced_iframe" onload_scroll_top="true" hide_page_until_loaded="true" enable_responsive_iframe="true" enable_external_height_workaround="true" ]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3321, 3824, 'mfn-page-items-seo', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" use_shortcode_attributes_only="true" src="http://www.insage.com.my/ir/cmn/trps02/masanews_ir.aspx?Symbol=5272" width="100%"  scrolling="none" id="advanced_iframe" onload_scroll_top="true" hide_page_until_loaded="true" enable_responsive_iframe="true" enable_external_height_workaround="true" ]\n\nno-repeat;center top;;\n\n'),
(3322, 3824, 'mfn-post-hide-content', '0'),
(3323, 3824, 'mfn-post-slider', '0'),
(3324, 3824, 'mfn-post-slider-layer', '0'),
(3325, 3824, 'mfn-post-hide-title', '0'),
(3326, 3824, 'mfn-post-remove-padding', '0'),
(3327, 3824, 'mfn-post-custom-layout', '0'),
(3328, 3824, 'mfn-post-one-page', '0'),
(3329, 3824, 'mfn-post-menu', '0'),
(3330, 3824, '_wpb_vc_js_status', 'true'),
(3331, 3824, '_edit_lock', '1472203359:3'),
(3332, 3824, 'mfn-meta-seo-title', 'Ranhill'),
(3333, 3824, 'mfn-meta-seo-description', 'Bursa Announcements'),
(3334, 3824, 'mfn-meta-seo-keywords', 'Ranhill'),
(3335, 3824, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3336, 3824, '_dp_original', '3609'),
(3337, 3826, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3338, 3826, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3339, 3826, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3340, 3826, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3341, 3826, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3342, 3826, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3343, 3826, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3344, 3826, '_wp_page_template', 'default'),
(3345, 3826, 'slide_template', 'default'),
(3346, 3826, 'mfn-post-hide-content', '0'),
(3347, 3826, 'mfn-post-custom-layout', '0'),
(3348, 3826, 'mfn-post-slider', '0'),
(3349, 3826, 'mfn-post-slider-layer', '0'),
(3350, 3826, 'mfn-post-menu', '0'),
(3351, 3826, 'mfn-post-one-page', '0'),
(3352, 3826, 'mfn-post-hide-title', '0'),
(3353, 3826, 'mfn-post-remove-padding', '0'),
(3354, 3826, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:6:"VISION";s:7:"content";s:1106:"<h3>OUR VISION</h3><div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; width:300px; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n\n<h4>Enriching Lives Through Sustainable Solutions</h4>\n[divider height="30"]\n<b>ENRICHING LIVES\n</b>[divider height="10"]\n\nRanhill aspires to lift the quality of life by being in the forefront of nation building through  sustainable environment and power solutions using innovative & clean technology.\n[divider height="30"]\n<b>SUSTAINABLE SOLUTIONS</b>[divider height="10"]\n\nRanhill aspires to meet the needs for an enhanced quality of life and for a cleaner planet through innovation.[divider height="10"]\nWe subscribe to the triple bottom-line approach that entails the achievement of the Profit objective, taking into account the importance of a balanced approach to the Environment (Planet) and Communities (People) aspects. \n[divider height="30"]\nWe inspire our individuals to be innovative in providing solutions beyond customer’s expectation.\n\n";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:487:"<h3>OUR MISSION</h3><div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\nTo be a regional leader in the Environment and Power sector. \n[divider height="10"]\nWe target to have the capacity of 1,000MW clean energy by 2020 and  3,500 MLD  of water & wastewater treatment capacity by 2020 in the Asian region.\n";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:603:"<h3>OUR VALUES</h3><div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n\n<b>RESPECT</b>[divider height="10"]\nRespect for the environment, communities we serve and for our employees.\n\n[divider height="30"]\n<b>RESOURCEFUL</b> [divider height="10"]Determination in sourcing and adopting innovative solutions.\n[divider height="30"]\n<b>RESULT</b> [divider height="10"]Focused on delivering growth and value to our stakeholders\n";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3355, 3826, 'mfn-page-items-seo', 'VISION\n\n<h3>OUR VISION</h3><div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; width:300px; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n\r\n<h4>Enriching Lives Through Sustainable Solutions</h4>\r\n[divider height="30"]\r\n<b>ENRICHING LIVES\r\n</b>[divider height="10"]\r\n\r\nRanhill aspires to lift the quality of life by being in the forefront of nation building through  sustainable environment and power solutions using innovative & clean technology.\r\n[divider height="30"]\r\n<b>SUSTAINABLE SOLUTIONS</b>[divider height="10"]\r\n\r\nRanhill aspires to meet the needs for an enhanced quality of life and for a cleaner planet through innovation.[divider height="10"]\r\nWe subscribe to the triple bottom-line approach that entails the achievement of the Profit objective, taking into account the importance of a balanced approach to the Environment (Planet) and Communities (People) aspects. \r\n[divider height="30"]\r\nWe inspire our individuals to be innovative in providing solutions beyond customer’s expectation.\n\njustify\n\nno-repeat;center top;;\n\n<h3>OUR MISSION</h3><div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\nTo be a regional leader in the Environment and Power sector. \r\n[divider height="10"]\r\nWe target to have the capacity of 1,000MW clean energy by 2020 and  3,500 MLD  of water & wastewater treatment capacity by 2020 in the Asian region.\n\njustify\n\nno-repeat;center top;;\n\n<h3>OUR VALUES</h3><div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; width:300px;  height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n\r\n<b>RESPECT</b>[divider height="10"]\r\nRespect for the environment, communities we serve and for our employees.\r\n\r\n[divider height="30"]\r\n<b>RESOURCEFUL</b> [divider height="10"]Determination in sourcing and adopting innovative solutions.\r\n[divider height="30"]\r\n<b>RESULT</b> [divider height="10"]Focused on delivering growth and value to our stakeholders\n\njustify\n\nno-repeat;center top;;\n\n'),
(3356, 3826, '_edit_last', '1'),
(3357, 3826, 'mfn-post-sidebar', '0'),
(3358, 3826, 'mfn-post-sidebar2', '0'),
(3359, 3826, '_wpb_vc_js_status', 'false'),
(3360, 3826, 'mfn-post-subheader-image', ''),
(3362, 3826, '_thumbnail_id', '3661'),
(3363, 3826, 'mfn-meta-seo-title', 'Our Vision, Mission & Values'),
(3364, 3826, 'mfn-meta-seo-description', 'Rahill has a strong underlying commitment that stretches across all areas of it business as well as its staff. A strong desire to fulfill its VISION of Enriching Lives Through Sustainable Solutions. This can be seen in its approach to development of services across nations.'),
(3365, 3826, 'mfn-meta-seo-keywords', 'Our Vision, Mission & Values'),
(3366, 3826, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3367, 3826, '_edit_lock', '1518505187:1'),
(3368, 3826, '_dp_original', '129'),
(3369, 133, '_edit_lock', '1479376418:1'),
(3370, 138, '_edit_lock', '1470276895:1'),
(3371, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3372, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3373, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3374, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3375, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3376, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3377, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3378, 3831, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3379, 3831, '_wp_page_template', 'default'),
(3380, 3831, 'slide_template', ''),
(3381, 3831, 'mfn-post-hide-content', '0'),
(3382, 3831, 'mfn-post-custom-layout', '0'),
(3383, 3831, 'mfn-post-slider', '0'),
(3384, 3831, 'mfn-post-slider-layer', '0'),
(3385, 3831, 'mfn-post-menu', '0'),
(3386, 3831, 'mfn-post-one-page', '0'),
(3387, 3831, 'mfn-post-hide-title', '0'),
(3388, 3831, 'mfn-post-remove-padding', '0'),
(3389, 3831, 'mfn-page-items-seo', '12\n\nclassic\n\n3\n\npress-release\n\n'),
(3390, 3831, '_edit_last', '1'),
(3391, 3831, 'mfn-post-sidebar', '0'),
(3392, 3831, 'mfn-post-sidebar2', '0'),
(3393, 3831, '_wpb_vc_js_status', 'false'),
(3394, 3831, 'mfn-post-subheader-image', ''),
(3395, 3831, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:4:"blog";s:4:"size";s:3:"1/1";s:6:"fields";a:13:{s:5:"count";s:2:"12";s:5:"style";s:7:"classic";s:7:"columns";s:1:"3";s:8:"category";s:13:"press-release";s:14:"category_multi";s:0:"";s:10:"exclude_id";s:0:"";s:4:"more";s:1:"1";s:7:"filters";s:1:"0";s:10:"pagination";s:1:"0";s:9:"load_more";s:1:"1";s:9:"greyscale";s:1:"0";s:6:"margin";s:1:"0";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3396, 3831, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3397, 3831, 'mfn-meta-seo-keywords', 'Ranhill'),
(3398, 3831, 'mfn-meta-seo-title', 'Ranhill '),
(3399, 3831, 'mfn-meta-seo-description', 'Video'),
(3400, 3831, '_edit_lock', '1470276957:1'),
(3402, 3831, '_thumbnail_id', '3706'),
(3403, 3831, '_dp_original', '3702'),
(3404, 3832, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3405, 3832, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3406, 3832, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3407, 3832, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3408, 3832, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3409, 3832, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3410, 3832, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3411, 3832, '_wp_page_template', 'default') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3412, 3832, 'slide_template', 'default'),
(3413, 3832, 'mfn-post-hide-content', '0'),
(3414, 3832, 'mfn-post-custom-layout', '0'),
(3415, 3832, 'mfn-post-slider', '0'),
(3416, 3832, 'mfn-post-slider-layer', '0'),
(3417, 3832, 'mfn-post-menu', '0'),
(3418, 3832, 'mfn-post-one-page', '0'),
(3419, 3832, 'mfn-post-hide-title', '0'),
(3420, 3832, 'mfn-post-remove-padding', '0'),
(3421, 3832, 'mfn-page-items-seo', 'EqXpeDgeB_0\n\n700\n\n400\n\nPgLkWVIeM44\n\n700\n\n400\n\nKDk9BofHMj8\n\n700\n\n400\n\n'),
(3422, 3832, '_edit_last', '1'),
(3423, 3832, 'mfn-post-sidebar', '0'),
(3424, 3832, 'mfn-post-sidebar2', '0'),
(3425, 3832, '_wpb_vc_js_status', 'false'),
(3426, 3832, 'mfn-post-subheader-image', ''),
(3427, 3832, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/3";s:6:"fields";a:9:{s:5:"video";s:11:"EqXpeDgeB_0";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/3";s:6:"fields";a:9:{s:5:"video";s:11:"PgLkWVIeM44";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/3";s:6:"fields";a:9:{s:5:"video";s:11:"KDk9BofHMj8";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3428, 3832, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3429, 3832, 'mfn-meta-seo-keywords', 'Ranhill'),
(3430, 3832, 'mfn-meta-seo-title', 'Ranhill '),
(3431, 3832, 'mfn-meta-seo-description', 'Video'),
(3432, 3832, '_edit_lock', '1484555509:1'),
(3434, 3832, '_thumbnail_id', '3699'),
(3435, 3832, '_dp_original', '3697'),
(3436, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3437, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3438, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3439, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3440, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3441, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3442, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3443, 3835, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3444, 3835, '_wp_page_template', 'default'),
(3445, 3835, 'slide_template', ''),
(3446, 3835, 'mfn-post-hide-content', '0'),
(3447, 3835, 'mfn-post-custom-layout', '0'),
(3448, 3835, 'mfn-post-slider', '0'),
(3449, 3835, 'mfn-post-slider-layer', '0'),
(3450, 3835, 'mfn-post-menu', '0'),
(3451, 3835, 'mfn-post-one-page', '0'),
(3452, 3835, 'mfn-post-hide-title', '0'),
(3453, 3835, 'mfn-post-remove-padding', '0'),
(3454, 3835, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:4:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:797:"<h2 style="margin-bottom: 0px;"> Enhancing Governance across the Group</h2>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \nRanhill’s diverse operations across Malaysia and in overseas markets, requires us to maintain good Corporate Governance and to instil double confidence among our stakeholders.\n[divider height="30"]\n\nOur Group Human Capital conducted a series of workshops in 2015 to ensure all Ranhill employees comply and are fully aware of our various Policies and Procedures.\n[divider height="30"]\n\nAmong other areas, our employees have been trained for compliance in the following areas:\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:284:"<div style="padding: 40px 10% 40px;"> \n<ul class="list_check"><li>	Employees Competency and Career  Development</li>\n<li>	Competency based Performance Management  System</li>\n<li>	Management of Under Performance</li>\n<li>	Code of Conduct and Business Ethics\n\n\n</li></ul></div>\n\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:217:"<div style="padding: 40px 6% 40px;"> \n\n\n<ul class="list_check">\n<li>	Grievance Handling</li>\n<li>	Business Continuity Management</li>\n<li>	Fraud Risk Management</li>\n<li>	Fraud and Whistle Blowing\n\n\n</li></ul>\n\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:3;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:598:"The Board Charter has been developed to accentuate Ranhill Holdings Berhad’s Board of Directors’ commitment to governance. It adopts current ‘best-practices’, relevant rules and regulations, processes and procedures to guide the Board in the discharge of its duties and functions. This Board Charter will serve as a reference tool and benchmark to facilitate regular assessment of the Board’s performance. \n[divider height="10"] \n\nRead the Board Charter <a href="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/Board-Charter-v1-2.pdf" target="_blank">h​ere</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3455, 3835, 'mfn-page-items-seo', '<h2 style="margin-bottom: 0px;"> Enhancing Governance across the Group</h2>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \r\nRanhill’s diverse operations across Malaysia and in overseas markets, requires us to maintain good Corporate Governance and to instil double confidence among our stakeholders.\r\n[divider height="30"]\r\n\r\nOur Group Human Capital conducted a series of workshops in 2015 to ensure all Ranhill employees comply and are fully aware of our various Policies and Procedures.\r\n[divider height="30"]\r\n\r\nAmong other areas, our employees have been trained for compliance in the following areas:\n\nno-repeat;center top;;\n\n<div style="padding: 40px 10% 40px;"> \r\n<ul class="list_check"><li>	Employees Competency and Career  Development</li>\r\n<li>	Competency based Performance Management  System</li>\r\n<li>	Management of Under Performance</li>\r\n<li>	Code of Conduct and Business Ethics\r\n\r\n\r\n</li></ul></div>\r\n\r\n</div>\n\nno-repeat;center top;;\n\n<div style="padding: 40px 6% 40px;"> \r\n\r\n\r\n<ul class="list_check">\r\n<li>	Grievance Handling</li>\r\n<li>	Business Continuity Management</li>\r\n<li>	Fraud Risk Management</li>\r\n<li>	Fraud and Whistle Blowing\r\n\r\n\r\n</li></ul>\r\n\r\n</div>\n\nno-repeat;center top;;\n\nThe Board Charter has been developed to accentuate Ranhill Holdings Berhad’s Board of Directors’ commitment to governance. It adopts current ‘best-practices’, relevant rules and regulations, processes and procedures to guide the Board in the discharge of its duties and functions. This Board Charter will serve as a reference tool and benchmark to facilitate regular assessment of the Board’s performance. \r\n[divider height="10"] \r\n\r\nRead the Board Charter <a href="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/Board-Charter-v1-2.pdf" target="_blank">h​ere</a>\n\nno-repeat;center top;;\n\n'),
(3456, 3835, '_edit_last', '1'),
(3457, 3835, 'mfn-post-sidebar', '0'),
(3458, 3835, 'mfn-post-sidebar2', '0'),
(3459, 3835, '_wpb_vc_js_status', 'false'),
(3460, 3835, 'mfn-post-subheader-image', ''),
(3462, 3835, 'mfn-meta-seo-title', 'Ranhill'),
(3463, 3835, 'mfn-meta-seo-keywords', 'Ranhill'),
(3464, 3835, '_edit_lock', '1470277045:1'),
(3465, 3835, '_thumbnail_id', '3675'),
(3466, 3835, 'mfn-meta-seo-description', 'Corporate Governance'),
(3467, 3835, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(3468, 3835, '_dp_original', '136'),
(3562, 3844, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3563, 3844, '_menu_item_type', 'post_type'),
(3564, 3844, '_menu_item_menu_item_parent', '4221'),
(3565, 3844, '_menu_item_object_id', '3826'),
(3566, 3844, '_menu_item_object', 'page'),
(3567, 3844, '_menu_item_target', ''),
(3568, 3844, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3569, 3844, '_menu_item_xfn', ''),
(3570, 3844, '_menu_item_url', ''),
(3572, 3844, 'menu-item-mfn-megamenu', ''),
(3573, 3844, 'menu-item-mfn-bg', ''),
(3586, 3846, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3587, 3846, '_menu_item_type', 'post_type'),
(3588, 3846, '_menu_item_menu_item_parent', '0'),
(3589, 3846, '_menu_item_object_id', '3820'),
(3590, 3846, '_menu_item_object', 'page'),
(3591, 3846, '_menu_item_target', ''),
(3592, 3846, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3593, 3846, '_menu_item_xfn', ''),
(3594, 3846, '_menu_item_url', ''),
(3596, 3846, 'menu-item-mfn-megamenu', ''),
(3597, 3846, 'menu-item-mfn-bg', ''),
(3622, 3849, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3623, 3849, '_menu_item_type', 'post_type'),
(3624, 3849, '_menu_item_menu_item_parent', '0'),
(3625, 3849, '_menu_item_object_id', '3819'),
(3626, 3849, '_menu_item_object', 'page'),
(3627, 3849, '_menu_item_target', ''),
(3628, 3849, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3629, 3849, '_menu_item_xfn', ''),
(3630, 3849, '_menu_item_url', ''),
(3632, 3849, 'menu-item-mfn-megamenu', ''),
(3633, 3849, 'menu-item-mfn-bg', ''),
(3634, 3850, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3635, 3850, '_menu_item_type', 'post_type'),
(3636, 3850, '_menu_item_menu_item_parent', '3849'),
(3637, 3850, '_menu_item_object_id', '3831'),
(3638, 3850, '_menu_item_object', 'page'),
(3639, 3850, '_menu_item_target', ''),
(3640, 3850, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3641, 3850, '_menu_item_xfn', ''),
(3642, 3850, '_menu_item_url', ''),
(3644, 3850, 'menu-item-mfn-megamenu', ''),
(3645, 3850, 'menu-item-mfn-bg', ''),
(3646, 3851, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3647, 3851, '_menu_item_type', 'post_type'),
(3648, 3851, '_menu_item_menu_item_parent', '3862'),
(3649, 3851, '_menu_item_object_id', '127'),
(3650, 3851, '_menu_item_object', 'page'),
(3651, 3851, '_menu_item_target', ''),
(3652, 3851, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3653, 3851, '_menu_item_xfn', ''),
(3654, 3851, '_menu_item_url', ''),
(3656, 3851, 'menu-item-mfn-megamenu', ''),
(3657, 3851, 'menu-item-mfn-bg', ''),
(3658, 3852, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3659, 3852, '_menu_item_type', 'post_type'),
(3660, 3852, '_menu_item_menu_item_parent', '3862'),
(3661, 3852, '_menu_item_object_id', '125'),
(3662, 3852, '_menu_item_object', 'page'),
(3663, 3852, '_menu_item_target', ''),
(3664, 3852, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3665, 3852, '_menu_item_xfn', ''),
(3666, 3852, '_menu_item_url', ''),
(3668, 3852, 'menu-item-mfn-megamenu', ''),
(3669, 3852, 'menu-item-mfn-bg', ''),
(3682, 3854, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3683, 3854, '_menu_item_type', 'post_type'),
(3684, 3854, '_menu_item_menu_item_parent', '3853'),
(3685, 3854, '_menu_item_object_id', '145'),
(3686, 3854, '_menu_item_object', 'page'),
(3687, 3854, '_menu_item_target', ''),
(3688, 3854, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3689, 3854, '_menu_item_xfn', ''),
(3690, 3854, '_menu_item_url', ''),
(3692, 3854, 'menu-item-mfn-megamenu', ''),
(3693, 3854, 'menu-item-mfn-bg', ''),
(3694, 3855, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3695, 3855, '_menu_item_type', 'post_type'),
(3696, 3855, '_menu_item_menu_item_parent', '3853'),
(3697, 3855, '_menu_item_object_id', '3835'),
(3698, 3855, '_menu_item_object', 'page'),
(3699, 3855, '_menu_item_target', ''),
(3700, 3855, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3701, 3855, '_menu_item_xfn', ''),
(3702, 3855, '_menu_item_url', ''),
(3704, 3855, 'menu-item-mfn-megamenu', ''),
(3705, 3855, 'menu-item-mfn-bg', ''),
(3718, 3857, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3719, 3857, '_menu_item_type', 'post_type'),
(3720, 3857, '_menu_item_menu_item_parent', '3853'),
(3721, 3857, '_menu_item_object_id', '142'),
(3722, 3857, '_menu_item_object', 'page'),
(3723, 3857, '_menu_item_target', ''),
(3724, 3857, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3725, 3857, '_menu_item_xfn', ''),
(3726, 3857, '_menu_item_url', ''),
(3728, 3857, 'menu-item-mfn-megamenu', ''),
(3729, 3857, 'menu-item-mfn-bg', ''),
(3754, 3860, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3755, 3860, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3756, 3860, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3757, 3860, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3758, 3860, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3759, 3860, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3760, 3860, '_wp_page_template', 'default'),
(3761, 3860, 'slide_template', 'default'),
(3762, 3860, 'mfn-post-hide-content', '0'),
(3763, 3860, 'mfn-post-custom-layout', '0'),
(3764, 3860, 'mfn-post-slider', '0'),
(3765, 3860, 'mfn-post-slider-layer', '0'),
(3766, 3860, 'mfn-post-menu', '0'),
(3767, 3860, 'mfn-post-one-page', '0'),
(3768, 3860, 'mfn-post-hide-title', '0'),
(3769, 3860, 'mfn-post-remove-padding', '0'),
(3770, 3860, 'mfn-page-items-seo', 'We are a Malaysian conglomerate with interest in the environment and power sectors. \r\n[divider height="30"]\r\nIn the environment sector, we provide water supply services, operate water and waste water treatment plants, and provide technical services in the management and optimisation of water utility as well. In the power sector, we develop, owned and operate two power plants in Sabah.\n\njustify\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Water supply services </h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/water_services.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="water-supply-services/">Read more</a>\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Water & wastewater treatment</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/waterwaste.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="water-and-waste-water-treatment//">Read more</a>\n\nno-repeat;center top;;\n\n<h3 style="margin-bottom: 0px;">Non-Revenue Water (NRW) </h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/nrw.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="non-revenue-water/">Read more</a>\n\nno-repeat;center top;;\n\ndefault\n\n<h3 style="margin-bottom: 0px;">Clean Energy</h3>\r\n[divider height="30"]\r\n\r\n<div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/power_gen.jpg" border="0"]\r\n[divider height="15"]\r\n<a class="read_more" href="clean-energy/">Read more</a>\n\nno-repeat;center top;;\n\n'),
(3771, 3860, '_edit_last', '1'),
(3772, 3860, 'mfn-post-sidebar', '0'),
(3773, 3860, 'mfn-post-sidebar2', '0'),
(3774, 3860, '_wpb_vc_js_status', 'false'),
(3775, 3860, 'mfn-post-subheader-image', ''),
(3776, 3860, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"20";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:2:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:6:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:388:"We are a Malaysian conglomerate with interest in the environment and power sectors. \n[divider height="30"]\nIn the environment sector, we provide water supply services, operate water and waste water treatment plants, and provide technical services in the management and optimisation of water utility as well. In the power sector, we develop, owned and operate two power plants in Sabah. \n\n";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:507:"<h3 style="margin-bottom: 0px;">Water supply services </h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/water_services.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="water-supply-services/">Read more</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:521:"<h3 style="margin-bottom: 0px;">Water & wastewater treatment</h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/waterwaste.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="water-and-waste-water-treatment//">Read more</a>\n\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:3;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:493:"<h3 style="margin-bottom: 0px;">Non-Revenue Water (NRW) </h3>\n[divider height="30"]\n\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/nrw.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="non-revenue-water/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:4;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:0:"";s:5:"style";s:7:"default";s:4:"line";s:0:"";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}i:5;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:502:"<h3 style="margin-bottom: 0px;">Clean Energy</h3>\n[divider height="30"]\n\n<div style="background: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/power_gen.jpg" border="0"]\n[divider height="15"]\n<a class="read_more" href="clean-energy/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:7:"divider";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:4:"10px";s:13:"column_margin";s:4:"20px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3777, 3860, '_thumbnail_id', '3666'),
(3778, 3860, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3779, 3860, 'mfn-meta-seo-keywords', 'Ranhill'),
(3780, 3860, 'mfn-meta-seo-title', 'Ranhill '),
(3781, 3860, 'mfn-meta-seo-description', 'Our Business'),
(3782, 3860, '_edit_lock', '1550651894:1'),
(3783, 3860, '_dp_original', '28'),
(3784, 3862, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3785, 3862, '_menu_item_type', 'post_type'),
(3786, 3862, '_menu_item_menu_item_parent', '0'),
(3787, 3862, '_menu_item_object_id', '3860'),
(3788, 3862, '_menu_item_object', 'page'),
(3789, 3862, '_menu_item_target', ''),
(3790, 3862, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3791, 3862, '_menu_item_xfn', ''),
(3792, 3862, '_menu_item_url', ''),
(3794, 3862, 'menu-item-mfn-megamenu', ''),
(3795, 3862, 'menu-item-mfn-bg', ''),
(3796, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3797, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3798, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3799, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3800, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3801, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3802, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3803, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3804, 3863, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3805, 3863, '_wp_page_template', 'default'),
(3806, 3863, 'slide_template', 'default'),
(3807, 3863, 'mfn-post-hide-content', '0'),
(3808, 3863, 'mfn-post-custom-layout', '0'),
(3809, 3863, 'mfn-post-slider', '0'),
(3810, 3863, 'mfn-post-slider-layer', '0'),
(3811, 3863, 'mfn-post-menu', '0'),
(3812, 3863, 'mfn-post-one-page', '0'),
(3813, 3863, 'mfn-post-hide-title', '0'),
(3814, 3863, 'mfn-post-remove-padding', '0'),
(3815, 3863, 'mfn-page-items-seo', 'Ranhill Water Services Sdn Bhd (RWS) and its subsidiary, Premium Water Services Sdn Bhd (PWS) are the two companies involved in NRW management and reduction programme.[divider height="30"]\r\n\r\n\r\nIn Johor, we developed an “NRW Strategy & Action Plan” which outlines the strategy, initiatives and activities on reducing NRW. Through this NRW management plan, Johor has the lowest NRW perKM of water pipe length at 0.02 MLD/KM.\r\n[divider height="30"]\r\n\r\n\r\nWe have also delivered results in NRW projects done in other states in Malaysia.\n\nno-repeat;center top;;\n\n<table>\r\n<tbody>\r\n<tr>\r\n<td  style="background-color: #eeeeee;"><b>State</b></td>\r\n<td  style="background-color: #eeeeee;"><b>Original NRW</b><b> %</b></td>\r\n<td  style="background-color: #eeeeee;"><b>After Ranhill’s NRW reduction </b><b>programme</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Sg</b><b>. </b><b>Petani</b><b>, Kedah</b></td>\r\n<td><b>50% (2008)</b></td>\r\n<td><b>21% (2010)</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Melaka</b></td>\r\n<td><b>35% (2007)</b></td>\r\n<td><b>21.6% (2014)</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Hulu</b><b> Terengganu and Dungun, Terengganu</b></td>\r\n<td><b>50% (2012)</b></td>\r\n<td><b>15% (2014)</b></td>\r\n</tr>\r\n<tr>\r\n<td><b>Johor</b></td>\r\n<td><b>>40% (1999)</b></td>\r\n<td><b>25.8% (2015)</b></td>\r\n</tr>\r\n</tbody>\r\n</table>\n\nno-repeat;center top;;\n\n'),
(3816, 3863, '_edit_last', '1'),
(3817, 3863, 'mfn-post-sidebar', '0'),
(3818, 3863, 'mfn-post-sidebar2', '0'),
(3819, 3863, '_wpb_vc_js_status', 'false'),
(3820, 3863, 'mfn-post-subheader-image', ''),
(3821, 3863, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:530:"Ranhill Water Services Sdn Bhd (RWS) and its subsidiary, Premium Water Services Sdn Bhd (PWS) are the two companies involved in NRW management and reduction programme.[divider height="30"]\n\n\nIn Johor, we developed an “NRW Strategy & Action Plan” which outlines the strategy, initiatives and activities on reducing NRW. Through this NRW management plan, Johor has the lowest NRW perKM of water pipe length at 0.02 MLD/KM.\n[divider height="30"]\n\n\nWe have also delivered results in NRW projects done in other states in Malaysia.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:704:"<table>\n<tbody>\n<tr>\n<td  style="background-color: #eeeeee;"><b>State</b></td>\n<td  style="background-color: #eeeeee;"><b>Original NRW</b><b> %</b></td>\n<td  style="background-color: #eeeeee;"><b>After Ranhill’s NRW reduction </b><b>programme</b></td>\n</tr>\n<tr>\n<td><b>Sg</b><b>. </b><b>Petani</b><b>, Kedah</b></td>\n<td><b>50% (2008)</b></td>\n<td><b>21% (2010)</b></td>\n</tr>\n<tr>\n<td><b>Melaka</b></td>\n<td><b>35% (2007)</b></td>\n<td><b>21.6% (2014)</b></td>\n</tr>\n<tr>\n<td><b>Hulu</b><b> Terengganu and Dungun, Terengganu</b></td>\n<td><b>50% (2012)</b></td>\n<td><b>15% (2014)</b></td>\n</tr>\n<tr>\n<td><b>Johor</b></td>\n<td><b>>40% (1999)</b></td>\n<td><b>25.8% (2015)</b></td>\n</tr>\n</tbody>\n</table>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3822, 3863, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(3823, 3863, '_thumbnail_id', '3717'),
(3824, 3863, '_edit_lock', '1480400681:1'),
(3825, 3863, 'mfn-meta-seo-title', 'Ranhill'),
(3826, 3863, 'mfn-meta-seo-description', 'Non-Revenue Water'),
(3827, 3863, 'mfn-meta-seo-keywords', 'Ranhill'),
(3829, 3863, '_dp_original', '3711'),
(3830, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3831, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3832, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3833, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3834, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3835, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3836, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3837, 3864, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3838, 3864, '_wp_page_template', 'default'),
(3839, 3864, 'slide_template', 'default'),
(3840, 3864, 'mfn-post-hide-content', '0'),
(3841, 3864, 'mfn-post-custom-layout', '0'),
(3842, 3864, 'mfn-post-slider', '0'),
(3843, 3864, 'mfn-post-slider-layer', '0'),
(3844, 3864, 'mfn-post-menu', '0'),
(3845, 3864, 'mfn-post-one-page', '0'),
(3846, 3864, 'mfn-post-hide-title', '0'),
(3847, 3864, 'mfn-post-remove-padding', '0'),
(3848, 3864, 'mfn-page-items-seo', 'Through our subsidiary, Ranhill Powertron Sdn Bhd (RP1) and Ranhill Powertron Sdn Bhd (RPII), we operate and maintain two 190 MW combined cycle Gas Turbine (CCGT) power plants in Kota Kinabalu Industrial Park in Sabah.\r\n[divider height="30"]\r\n\r\n\r\nWe conduct routine maintenance on both the RPI & RPII power plants through our on subsidiaries Ranhill Power O&M Sdn Bhd (RPOM) and Ranhill Power O&M II Sdn Bhd (RPOMII)\n\nno-repeat;center top;;\n\n'),
(3849, 3864, '_edit_last', '1'),
(3850, 3864, 'mfn-post-sidebar', '0'),
(3851, 3864, 'mfn-post-sidebar2', '0'),
(3852, 3864, '_wpb_vc_js_status', 'false'),
(3853, 3864, 'mfn-post-subheader-image', ''),
(3854, 3864, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:413:"Through our subsidiary, Ranhill Powertron Sdn Bhd (RP1) and Ranhill Powertron Sdn Bhd (RPII), we operate and maintain two 190 MW combined cycle Gas Turbine (CCGT) power plants in Kota Kinabalu Industrial Park in Sabah.\n[divider height="30"]\n\n\nWe conduct routine maintenance on both the RPI & RPII power plants through our on subsidiaries Ranhill Power O&M Sdn Bhd (RPOM) and Ranhill Power O&M II Sdn Bhd (RPOMII)\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3856, 3864, '_edit_lock', '1476766887:1'),
(3857, 3864, '_thumbnail_id', '3719'),
(3858, 3864, 'mfn-meta-seo-title', 'Ranhill'),
(3859, 3864, 'mfn-meta-seo-description', 'Clean Energy'),
(3860, 3864, 'mfn-meta-seo-keywords', 'Ranhill'),
(3861, 3864, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3862, 3864, '_dp_original', '123'),
(3863, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3864, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3865, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3866, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3867, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3868, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3869, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3870, 3865, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3871, 3865, '_wp_page_template', 'default'),
(3872, 3865, 'slide_template', 'default'),
(3873, 3865, 'mfn-post-hide-content', '0'),
(3874, 3865, 'mfn-post-custom-layout', '0'),
(3875, 3865, 'mfn-post-slider', '0'),
(3876, 3865, 'mfn-post-slider-layer', '0'),
(3877, 3865, 'mfn-post-menu', '0'),
(3878, 3865, 'mfn-post-one-page', '0'),
(3879, 3865, 'mfn-post-hide-title', '0'),
(3880, 3865, 'mfn-post-remove-padding', '0'),
(3881, 3865, 'mfn-page-items-seo', 'Ranhill Water Technologies (Cayman) Ltd (RWT) is our subsidiary specialising in water and industrial wastewater treatment technologies.\r\nCurrently, we own water and wastewater treatment concessions in China and Thailand, 290MLD and 102 MLD respectively.\r\n[divider height="30"]\r\n\r\nOur water and wastewater treatment capacity todate is 2,378 MLD.\r\n[divider height="30"]\n\nno-repeat;center top;;\n\n<h4>China</h4>\r\nExisting concession assets <br/>\r\nTotal Capacity: 290 MLD\r\n\r\n[divider height="30"]\r\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\r\n<tbody>\r\n<tr>\r\n<td align="left"><b>Description</b></td>\r\n<td align="left"><b>Capacity</b>(1)\r\n\r\n<b>(MLD)</b></td>\r\n<td align="left"><b>Concession Type</b>(2)</td>\r\n<td align="left"><b>Expiration</b><b> of license/concession</b></td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant (Phase I)</b></td>\r\n<td align="left">30</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2038</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant</b><b> (</b><b>Phase II)</b></td>\r\n<td align="left">50</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2042</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Xinxiang Wastewater Treatment Plant</b></td>\r\n<td align="left">50</td>\r\n<td align="left">Wastewater/ TOT</td>\r\n<td align="left">2041</td>\r\n</tr>\r\n<tr>\r\n<td rowspan="2" align="left"><b>Yingkou</b><b> Wastewater Treatment and Reclamation Plant</b></td>\r\n<td align="left">30(3)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n<tr>\r\n<td align="left">30(4)</td>\r\n<td align="left">Reclaim water/ BOT</td>\r\n<td align="left">-(10)</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Hefei</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">30(5)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2036</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Changfeng</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">20(6)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2043</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Yihuang</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">5(7)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2045</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Wanzai</b><b> Wastewater Treatment Plant</b></td>\r\n<td align="left">5(8)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2044</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Chongren</b><b> Wastewater</b><b> Treatment Plant</b></td>\r\n<td align="left">10(9)</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Fuxin Wastewater</b><b> Treatment Plant</b></td>\r\n<td align="left">20</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n<tr>\r\n<td align="left"><b>Yong </b><b>Xin</b><b> County  Wastewater</b><b> Treatment Plant</b></td>\r\n<td align="left">10</td>\r\n<td align="left">Wastewater/ BOT</td>\r\n<td align="left">2046</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\nleft\n\nno-repeat;center top;;\n\n<h4>Thailand</h4>\r\nExisting concession assets / projects<br/>\r\nTotal Capacity: 102 MLD\r\n[divider height="30"]\r\n\r\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\r\n  <tr>\r\n    <td align="left" valign="bottom"><p><strong>Description</strong></p></td>\r\n    <td align="left" valign="bottom"><p><strong>Capacity</strong>(1)<br>\r\n        <strong>(MLD)</strong></p></td>\r\n    <td align="left" valign="bottom"><p><strong>Concession   Type</strong>(2)</p></td>\r\n    <td align="left" valign="bottom"><p><strong>Expiration   of license/concession</strong></p></td>\r\n  </tr>\r\n  <tr>\r\n    <td rowspan="3" align="left"><p><strong>Amata   Nakorn Concession</strong><br>\r\n        <strong>(Industrial   Estate)</strong></p></td>\r\n    <td align="left"><p>24</p></td>\r\n    <td align="left"><p>Wastewater/   BOT</p></td>\r\n    <td align="left"><p>2028</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p>10.5</p></td>\r\n    <td align="left"><p>Potable   water/ BOT</p></td>\r\n    <td align="left"><p>2028</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p>10</p></td>\r\n    <td align="left"><p>Reclaim   water/ BOT</p></td>\r\n    <td align="left"><p>2033</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Amata   City Potable Water Treatment Plant</strong></p></td>\r\n    <td align="left"><p>15</p></td>\r\n    <td align="left"><p>Potable  water/ BOT</p></td>\r\n    <td align="left"><p>2032</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Amata   City Wastewater Treatment Plant</strong></p></td>\r\n    <td align="left"><p>10</p></td>\r\n    <td align="left"><p>Wastewater/   BOT</p></td>\r\n    <td align="left"><p>2043</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Asian   Institute of Technology(3)</strong></p></td>\r\n    <td align="left"><p>1.5</p></td>\r\n    <td align="left"><p>Wastewater/BOT</p></td>\r\n    <td align="left"><p>2020</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p><strong>Amata   Nakorn Concession</strong></p></td>\r\n    <td align="left"><p>10.5</p></td>\r\n    <td align="left"><p>Potable   water/ BTO</p></td>\r\n    <td align="left"><p>2018</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td rowspan="2" align="left"><p><strong>Amata   City Concession</strong></p></td>\r\n    <td align="left"><p>10.0</p></td>\r\n    <td align="left"><p>Wastewater/BTO</p></td>\r\n    <td align="left"><p>2017</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td align="left"><p>10.5</p></td>\r\n    <td align="left"><p>Potable   water/ BTO</p></td>\r\n    <td align="left"><p>2017</p></td>\r\n  </tr>\r\n</table>\n\nleft\n\nno-repeat;center top;;\n\n'),
(3882, 3865, '_edit_last', '1'),
(3883, 3865, 'mfn-post-sidebar', '0'),
(3884, 3865, 'mfn-post-sidebar2', '0'),
(3885, 3865, '_wpb_vc_js_status', 'false'),
(3886, 3865, 'mfn-post-subheader-image', ''),
(3887, 3865, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:3:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:362:"Ranhill Water Technologies (Cayman) Ltd (RWT) is our subsidiary specialising in water and industrial wastewater treatment technologies.\nCurrently, we own water and wastewater treatment concessions in China and Thailand, 290MLD and 102 MLD respectively.\n[divider height="30"]\n\nOur water and wastewater treatment capacity todate is 2,378 MLD.\n[divider height="30"]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:2510:"<h4>China</h4>\nExisting concession assets <br/>\nTotal Capacity: 290 MLD\n\n[divider height="30"]\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\n<tbody>\n<tr>\n<td align="left"><b>Description</b></td>\n<td align="left"><b>Capacity</b>(1)\n\n<b>(MLD)</b></td>\n<td align="left"><b>Concession Type</b>(2)</td>\n<td align="left"><b>Expiration</b><b> of license/concession</b></td>\n</tr>\n<tr>\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant (Phase I)</b></td>\n<td align="left">30</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2038</td>\n</tr>\n<tr>\n<td align="left"><b>Xiaolan</b><b> Wastewater Treatment plant</b><b> (</b><b>Phase II)</b></td>\n<td align="left">50</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2042</td>\n</tr>\n<tr>\n<td align="left"><b>Xinxiang Wastewater Treatment Plant</b></td>\n<td align="left">50</td>\n<td align="left">Wastewater/ TOT</td>\n<td align="left">2041</td>\n</tr>\n<tr>\n<td rowspan="2" align="left"><b>Yingkou</b><b> Wastewater Treatment and Reclamation Plant</b></td>\n<td align="left">30(3)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n<tr>\n<td align="left">30(4)</td>\n<td align="left">Reclaim water/ BOT</td>\n<td align="left">-(10)</td>\n</tr>\n<tr>\n<td align="left"><b>Hefei</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">30(5)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2036</td>\n</tr>\n<tr>\n<td align="left"><b>Changfeng</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">20(6)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2043</td>\n</tr>\n<tr>\n<td align="left"><b>Yihuang</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">5(7)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2045</td>\n</tr>\n<tr>\n<td align="left"><b>Wanzai</b><b> Wastewater Treatment Plant</b></td>\n<td align="left">5(8)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2044</td>\n</tr>\n<tr>\n<td align="left"><b>Chongren</b><b> Wastewater</b><b> Treatment Plant</b></td>\n<td align="left">10(9)</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n<tr>\n<td align="left"><b>Fuxin Wastewater</b><b> Treatment Plant</b></td>\n<td align="left">20</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n<tr>\n<td align="left"><b>Yong </b><b>Xin</b><b> County  Wastewater</b><b> Treatment Plant</b></td>\n<td align="left">10</td>\n<td align="left">Wastewater/ BOT</td>\n<td align="left">2046</td>\n</tr>\n</tbody>\n</table>";s:5:"align";s:4:"left";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:2;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:2422:"<h4>Thailand</h4>\nExisting concession assets / projects<br/>\nTotal Capacity: 102 MLD\n[divider height="30"]\n\n<table width="100%" border="0" cellpadding="0" cellspacing="0">\n  <tr>\n    <td align="left" valign="bottom"><p><strong>Description</strong></p></td>\n    <td align="left" valign="bottom"><p><strong>Capacity</strong>(1)<br>\n        <strong>(MLD)</strong></p></td>\n    <td align="left" valign="bottom"><p><strong>Concession   Type</strong>(2)</p></td>\n    <td align="left" valign="bottom"><p><strong>Expiration   of license/concession</strong></p></td>\n  </tr>\n  <tr>\n    <td rowspan="3" align="left"><p><strong>Amata   Nakorn Concession</strong><br>\n        <strong>(Industrial   Estate)</strong></p></td>\n    <td align="left"><p>24</p></td>\n    <td align="left"><p>Wastewater/   BOT</p></td>\n    <td align="left"><p>2028</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p>10.5</p></td>\n    <td align="left"><p>Potable   water/ BOT</p></td>\n    <td align="left"><p>2028</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p>10</p></td>\n    <td align="left"><p>Reclaim   water/ BOT</p></td>\n    <td align="left"><p>2033</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Amata   City Potable Water Treatment Plant</strong></p></td>\n    <td align="left"><p>15</p></td>\n    <td align="left"><p>Potable  water/ BOT</p></td>\n    <td align="left"><p>2032</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Amata   City Wastewater Treatment Plant</strong></p></td>\n    <td align="left"><p>10</p></td>\n    <td align="left"><p>Wastewater/   BOT</p></td>\n    <td align="left"><p>2043</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Asian   Institute of Technology(3)</strong></p></td>\n    <td align="left"><p>1.5</p></td>\n    <td align="left"><p>Wastewater/BOT</p></td>\n    <td align="left"><p>2020</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p><strong>Amata   Nakorn Concession</strong></p></td>\n    <td align="left"><p>10.5</p></td>\n    <td align="left"><p>Potable   water/ BTO</p></td>\n    <td align="left"><p>2018</p></td>\n  </tr>\n  <tr>\n    <td rowspan="2" align="left"><p><strong>Amata   City Concession</strong></p></td>\n    <td align="left"><p>10.0</p></td>\n    <td align="left"><p>Wastewater/BTO</p></td>\n    <td align="left"><p>2017</p></td>\n  </tr>\n  <tr>\n    <td align="left"><p>10.5</p></td>\n    <td align="left"><p>Potable   water/ BTO</p></td>\n    <td align="left"><p>2017</p></td>\n  </tr>\n</table>\n";s:5:"align";s:4:"left";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3888, 3865, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(3889, 3865, '_thumbnail_id', '3724'),
(3890, 3865, '_edit_lock', '1478768391:1'),
(3891, 3865, 'mfn-meta-seo-title', 'Ranhill'),
(3892, 3865, 'mfn-meta-seo-description', 'Water and wastewater treatment'),
(3893, 3865, 'mfn-meta-seo-keywords', 'Ranhill'),
(3895, 3865, '_dp_original', '3710'),
(3896, 3866, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3897, 3866, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3898, 3866, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3899, 3866, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3900, 3866, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3901, 3866, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3902, 3866, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3903, 3866, '_wp_page_template', 'default') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3904, 3866, 'slide_template', 'default'),
(3905, 3866, 'mfn-post-hide-content', '0'),
(3906, 3866, 'mfn-post-custom-layout', '0'),
(3907, 3866, 'mfn-post-slider', '0'),
(3908, 3866, 'mfn-post-slider-layer', '0'),
(3909, 3866, 'mfn-post-menu', '0'),
(3910, 3866, 'mfn-post-one-page', '0'),
(3911, 3866, 'mfn-post-hide-title', '0'),
(3912, 3866, 'mfn-post-remove-padding', '0'),
(3913, 3866, 'mfn-page-items-seo', 'Ranhill, via its subsidiary SAJ Holdings Sdn Bhd (SAJ) is the exclusive provider of source-to-tap water in Johor, the second most populous state in Malaysia.\r\nWe hold an exclusive license by the Minister of Energy, Green Technology and Water Malaysia. The license enables us to complete the cycle of potable water supply services from the sourcing of raw water, treatment of water to consumers, and the management of the maintenance of the water supply. It’s a full range of customised services including billing. \r\n[divider height=30px]\r\n\r\nAs at 30 September 2016, Ranhill’s water supply operations in Johor manages:\r\n<ol><li>44 water treatment plants, with total capacity of 1,986 MLD</li><li>\r\n640 active storage and service reservoirs</li><li>\r\n21,642 KM of pipelines, of which 18,231 KM are reticulation mains, 3,247 KM of distribution mains and163 KM of raw water mains</li><li>\r\n1.1 million connections serving over 3.9 million local residents</li><oll>\n\nno-repeat;center top;;\n\n'),
(3914, 3866, '_edit_last', '1'),
(3915, 3866, 'mfn-post-sidebar', '0'),
(3916, 3866, 'mfn-post-sidebar2', '0'),
(3917, 3866, '_wpb_vc_js_status', 'false'),
(3918, 3866, 'mfn-post-subheader-image', ''),
(3920, 3866, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:956:"Ranhill, via its subsidiary SAJ Holdings Sdn Bhd (SAJ) is the exclusive provider of source-to-tap water in Johor, the second most populous state in Malaysia.\nWe hold an exclusive license by the Minister of Energy, Green Technology and Water Malaysia. The license enables us to complete the cycle of potable water supply services from the sourcing of raw water, treatment of water to consumers, and the management of the maintenance of the water supply. It’s a full range of customised services including billing. \n[divider height=30px]\n\nAs at 30 September 2016, Ranhill’s water supply operations in Johor manages:\n<ol><li>44 water treatment plants, with total capacity of 1,986 MLD</li><li>\n640 active storage and service reservoirs</li><li>\n21,642 KM of pipelines, of which 18,231 KM are reticulation mains, 3,247 KM of distribution mains and163 KM of raw water mains</li><li>\n1.1 million connections serving over 3.9 million local residents</li><oll>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(3921, 3866, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(3922, 3866, '_thumbnail_id', '3721'),
(3923, 3866, '_edit_lock', '1483426782:1'),
(3924, 3866, 'mfn-meta-seo-title', 'Ranhill'),
(3925, 3866, 'mfn-meta-seo-description', 'Water Supply services'),
(3926, 3866, 'mfn-meta-seo-keywords', 'Ranhill'),
(3927, 3866, '_dp_original', '110'),
(3928, 3871, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3929, 3871, '_menu_item_type', 'post_type'),
(3930, 3871, '_menu_item_menu_item_parent', '3862'),
(3931, 3871, '_menu_item_object_id', '3866'),
(3932, 3871, '_menu_item_object', 'page'),
(3933, 3871, '_menu_item_target', ''),
(3934, 3871, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3935, 3871, '_menu_item_xfn', ''),
(3936, 3871, '_menu_item_url', ''),
(3938, 3871, 'menu-item-mfn-megamenu', ''),
(3939, 3871, 'menu-item-mfn-bg', ''),
(3940, 3872, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3941, 3872, '_menu_item_type', 'post_type'),
(3942, 3872, '_menu_item_menu_item_parent', '3862'),
(3943, 3872, '_menu_item_object_id', '3865'),
(3944, 3872, '_menu_item_object', 'page'),
(3945, 3872, '_menu_item_target', ''),
(3946, 3872, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3947, 3872, '_menu_item_xfn', ''),
(3948, 3872, '_menu_item_url', ''),
(3950, 3872, 'menu-item-mfn-megamenu', ''),
(3951, 3872, 'menu-item-mfn-bg', ''),
(3952, 3873, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3953, 3873, '_menu_item_type', 'post_type'),
(3954, 3873, '_menu_item_menu_item_parent', '3862'),
(3955, 3873, '_menu_item_object_id', '3864'),
(3956, 3873, '_menu_item_object', 'page'),
(3957, 3873, '_menu_item_target', ''),
(3958, 3873, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3959, 3873, '_menu_item_xfn', ''),
(3960, 3873, '_menu_item_url', ''),
(3962, 3873, 'menu-item-mfn-megamenu', ''),
(3963, 3873, 'menu-item-mfn-bg', ''),
(3964, 3874, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(3965, 3874, '_menu_item_type', 'post_type'),
(3966, 3874, '_menu_item_menu_item_parent', '3862'),
(3967, 3874, '_menu_item_object_id', '3863'),
(3968, 3874, '_menu_item_object', 'page'),
(3969, 3874, '_menu_item_target', ''),
(3970, 3874, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3971, 3874, '_menu_item_xfn', ''),
(3972, 3874, '_menu_item_url', ''),
(3974, 3874, 'menu-item-mfn-megamenu', ''),
(3975, 3874, 'menu-item-mfn-bg', ''),
(4011, 3877, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4012, 3877, '_menu_item_type', 'post_type'),
(4013, 3877, '_menu_item_menu_item_parent', '3849'),
(4014, 3877, '_menu_item_object_id', '3832'),
(4015, 3877, '_menu_item_object', 'page'),
(4016, 3877, '_menu_item_target', ''),
(4017, 3877, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4018, 3877, '_menu_item_xfn', ''),
(4019, 3877, '_menu_item_url', ''),
(4021, 3877, 'menu-item-mfn-megamenu', ''),
(4022, 3877, 'menu-item-mfn-bg', ''),
(4029, 3889, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4030, 3889, '_edit_last', '1'),
(4031, 3889, '_edit_lock', '1548724489:1'),
(4032, 3890, '_wp_attached_file', '2016/08/Press-Release-RWS-NRW-Kelantan.pdf'),
(4035, 3889, 'slide_template', 'default'),
(4036, 3889, 'mfn-post-hide-content', '0'),
(4037, 3889, 'mfn-post-slider', '0'),
(4038, 3889, 'mfn-post-slider-layer', '0'),
(4039, 3889, 'mfn-post-hide-title', '1'),
(4040, 3889, 'mfn-post-remove-padding', '0'),
(4041, 3889, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4042, 3889, 'mfn-meta-seo-title', 'Ranhill Awarded NRW Contract Worth RM15.9 Million'),
(4043, 3889, 'mfn-meta-seo-description', 'Ranhill Awarded NRW Contract Worth RM15.9 Million'),
(4044, 3889, 'mfn-meta-seo-keywords', 'Ranhill Awarded NRW Contract Worth RM15.9 Million'),
(4045, 3889, 'mfn-post-hide-image', '0'),
(4046, 3889, 'mfn-post-love', '0'),
(4047, 3894, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4048, 3894, '_edit_lock', '1488859265:1'),
(4051, 3894, '_edit_last', '1'),
(4052, 3894, '_wp_page_template', 'default'),
(4053, 3894, 'slide_template', 'default'),
(4054, 3894, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:196:" We actively share our knowledge and expertise on various Thought Leadership platforms. This is part of our contribution towards capacity building and industrial development.[divider height="30"]\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:4:"blog";s:4:"size";s:3:"1/1";s:6:"fields";a:13:{s:5:"count";s:1:"6";s:5:"style";s:4:"grid";s:7:"columns";s:1:"3";s:8:"category";s:21:"sharing-our-expertise";s:14:"category_multi";s:0:"";s:10:"exclude_id";s:0:"";s:4:"more";s:1:"1";s:7:"filters";s:1:"0";s:10:"pagination";s:1:"0";s:9:"load_more";s:1:"0";s:9:"greyscale";s:1:"0";s:6:"margin";s:1:"0";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4055, 3894, 'mfn-page-items-seo', 'We actively share our knowledge and expertise on various Thought Leadership platforms. This is part of our contribution towards capacity building and industrial development.[divider height="30"]\n\nno-repeat;center top;;\n\n6\n\ngrid\n\n3\n\nsharing-our-expertise\n\n'),
(4056, 3894, 'mfn-post-hide-content', '0'),
(4057, 3894, 'mfn-post-slider', '0'),
(4058, 3894, 'mfn-post-slider-layer', '0'),
(4059, 3894, 'mfn-post-hide-title', '0'),
(4060, 3894, 'mfn-post-remove-padding', '0'),
(4061, 3894, 'mfn-post-custom-layout', '0'),
(4062, 3894, 'mfn-post-one-page', '0'),
(4063, 3894, 'mfn-post-menu', '0'),
(4064, 3894, '_wpb_vc_js_status', 'false'),
(4066, 3899, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4067, 3899, '_edit_last', '3'),
(4068, 3899, '_wp_page_template', 'default'),
(4069, 3899, 'slide_template', 'default'),
(4070, 3899, 'mfn-post-hide-content', '0'),
(4071, 3899, 'mfn-post-slider', '0'),
(4072, 3899, 'mfn-post-slider-layer', '0'),
(4073, 3899, 'mfn-post-hide-title', '0'),
(4074, 3899, 'mfn-post-remove-padding', '0'),
(4075, 3899, 'mfn-post-custom-layout', '0'),
(4076, 3899, 'mfn-post-one-page', '0'),
(4077, 3899, 'mfn-post-menu', '0'),
(4078, 3899, '_wpb_vc_js_status', 'false'),
(4079, 3899, '_edit_lock', '1493090570:1'),
(4083, 279, '_edit_lock', '1537416481:1'),
(4084, 279, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4085, 211, '_edit_lock', '1549268740:1'),
(4086, 3910, '_wp_attached_file', '2016/05/abuttalib.jpg'),
(4087, 3910, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:21:"2016/05/abuttalib.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"abuttalib-150x150.jpg";s:5:"width";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:"abuttalib-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"abuttalib-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"abuttalib-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:19:"abuttalib-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"abuttalib-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"abuttalib-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4088, 3911, '_wp_attached_file', '2016/05/datosrilim.png'),
(4089, 3911, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:22:"2016/05/datosrilim.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"datosrilim-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:"datosrilim-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"datosrilim-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:20:"datosrilim-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"datosrilim-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:20:"datosrilim-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"datosrilim-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4090, 3912, '_wp_attached_file', '2016/05/datozulifli.jpg'),
(4091, 3912, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:23:"2016/05/datozulifli.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"datozulifli-150x150.jpg";s:5:"width";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:"datozulifli-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"datozulifli-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:21:"datozulifli-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"datozulifli-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:21:"datozulifli-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:21:"datozulifli-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4092, 3913, '_wp_attached_file', '2016/05/datukdrniknorzrul-1.png'),
(4093, 3913, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:31:"2016/05/datukdrniknorzrul-1.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"datukdrniknorzrul-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:"datukdrniknorzrul-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"datukdrniknorzrul-1-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:29:"datukdrniknorzrul-1-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:29:"datukdrniknorzrul-1-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:29:"datukdrniknorzrul-1-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:29:"datukdrniknorzrul-1-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4094, 3914, '_wp_attached_file', '2016/05/datukserisawchoosoon.png'),
(4095, 3914, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:32:"2016/05/datukserisawchoosoon.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"datukserisawchoosoon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:32:"datukserisawchoosoon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"datukserisawchoosoon-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:30:"datukserisawchoosoon-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:30:"datukserisawchoosoon-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:30:"datukserisawchoosoon-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:30:"datukserisawchoosoon-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4096, 3915, '_wp_attached_file', '2016/05/davidlim-1.png'),
(4097, 3915, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:22:"2016/05/davidlim-1.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"davidlim-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:22:"davidlim-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"davidlim-1-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:20:"davidlim-1-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"davidlim-1-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:20:"davidlim-1-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"davidlim-1-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4098, 3916, '_wp_attached_file', '2016/05/tansrihamdan.png'),
(4099, 3916, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:24:"2016/05/tansrihamdan.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"tansrihamdan-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:"tansrihamdan-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"tansrihamdan-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:22:"tansrihamdan-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:22:"tansrihamdan-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:22:"tansrihamdan-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"tansrihamdan-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4100, 3917, '_wp_attached_file', '2016/05/tansrizeman.png'),
(4101, 3917, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:23:"2016/05/tansrizeman.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"tansrizeman-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:"tansrizeman-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"tansrizeman-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:21:"tansrizeman-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"tansrizeman-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:21:"tansrizeman-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:21:"tansrizeman-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4102, 3918, '_wp_attached_file', '2016/05/01.jpg'),
(4103, 3918, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/01.jpg";s:5:"sizes";a:13:{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-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"01-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"01-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"01-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"01-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"01-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"01-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"01-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"01-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"01-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"01-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"01-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4104, 3919, '_wp_attached_file', '2016/05/02.jpg'),
(4105, 3919, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/02.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"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:14:"02-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"02-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"02-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"02-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"02-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"02-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"02-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"02-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"02-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"02-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"02-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"02-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4106, 3920, '_wp_attached_file', '2016/05/03.jpg'),
(4107, 3920, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/03.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"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:14:"03-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"03-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"03-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"03-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"03-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"03-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"03-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"03-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"03-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"03-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"03-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"03-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4108, 3921, '_wp_attached_file', '2016/05/04.jpg'),
(4109, 3921, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/04.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"04-150x150.jpg";s:5:"width";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:"04-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"04-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"04-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"04-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"04-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"04-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"04-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"04-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"04-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"04-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"04-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"04-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4110, 3922, '_wp_attached_file', '2016/05/05.jpg'),
(4111, 3922, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/05.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"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:14:"05-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"05-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"05-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"05-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"05-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"05-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"05-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"05-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"05-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"05-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"05-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"05-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4112, 3923, '_wp_attached_file', '2016/05/06.jpg'),
(4113, 3923, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/06.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"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:14:"06-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"06-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"06-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"06-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"06-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"06-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"06-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"06-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"06-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"06-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"06-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"06-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4114, 3924, '_wp_attached_file', '2016/05/07.jpg'),
(4115, 3924, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/07.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"07-150x150.jpg";s:5:"width";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:"07-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"07-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"07-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"07-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"07-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"07-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"07-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"07-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"07-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"07-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"07-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"07-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4116, 3925, '_wp_attached_file', '2016/05/08.jpg'),
(4117, 3925, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:14:"2016/05/08.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"08-150x150.jpg";s:5:"width";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:"08-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:14:"08-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"08-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:12:"08-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:12:"08-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:12:"08-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:12:"08-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:14:"08-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:14:"08-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:14:"08-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:14:"08-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:14:"08-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4118, 211, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4119, 281, '_edit_lock', '1537416531:1'),
(4120, 281, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4121, 284, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4122, 282, '_edit_lock', '1537416586:1'),
(4123, 282, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4127, 288, '_edit_lock', '1537416624:1'),
(4130, 288, 'mfn-meta-seo-title', 'ABU TALIB ABDUL RAHMAN'),
(4131, 288, 'mfn-meta-seo-description', 'ABU TALIB ABDUL RAHMAN'),
(4132, 288, 'mfn-meta-seo-keywords', 'ABU TALIB ABDUL RAHMAN'),
(4133, 288, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4138, 3935, '_wp_attached_file', '2016/08/CORPORATE-SUSTAINABILITY-STATEMENT.pdf'),
(4139, 3935, '_edit_lock', '1472453024:1'),
(4140, 3936, '_wp_attached_file', '2016/08/Press-Release-RWS-NRW-Kelantan-1.pdf'),
(4141, 3936, '_edit_lock', '1472453027:1'),
(4152, 3941, '_wp_attached_file', '2016/07/News-Release-Ranhill-Listing-BM-1.pdf'),
(4157, 3944, '_wp_attached_file', '2016/08/News-Release-Prospectus-Launch-BM.pdf'),
(4158, 3945, '_wp_attached_file', '2016/08/News-Release-Prospectus-Launch-Chi.pdf'),
(4159, 3946, '_wp_attached_file', '2016/08/News-Release-Prospectus-Launch-ENG.pdf'),
(4160, 3947, '_wp_attached_file', '2016/08/News-Release-Ranhill-Listing-CHI.pdf'),
(4161, 3948, '_wp_attached_file', '2016/08/News-Release-Ranhill-Listing-ENG.pdf'),
(4162, 3949, '_wp_attached_file', '2016/08/News-Release-RWS-MOU.pdf'),
(4163, 3945, '_edit_lock', '1472454229:1'),
(4164, 3950, '_wp_attached_file', '2016/08/NR-Ranhill-Announcement-of-Extension-1.pdf'),
(4165, 3951, '_wp_attached_file', '2016/08/NR-Ranhill-Announcement-of-Extension.pdf'),
(4199, 3972, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4200, 3972, '_edit_lock', '1548724456:1'),
(4201, 3972, '_edit_last', '1'),
(4202, 3973, '_wp_attached_file', '2016/09/01092016RWHK-divestment.pdf'),
(4205, 3972, 'slide_template', 'default'),
(4206, 3972, 'mfn-post-hide-content', '0'),
(4207, 3972, 'mfn-post-slider', '0'),
(4208, 3972, 'mfn-post-slider-layer', '0'),
(4209, 3972, 'mfn-post-hide-title', '1'),
(4210, 3972, 'mfn-post-remove-padding', '0'),
(4211, 3972, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4212, 3972, 'mfn-meta-seo-title', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company'),
(4213, 3972, 'mfn-meta-seo-description', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company'),
(4214, 3972, 'mfn-meta-seo-keywords', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company'),
(4215, 3972, 'mfn-post-hide-image', '0'),
(4216, 3972, 'mfn-post-love', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4217, 3975, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4218, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4219, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4220, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4221, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4222, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4223, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4224, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4225, 3976, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4226, 3976, '_wp_page_template', 'default'),
(4227, 3976, 'slide_template', 'default'),
(4228, 3976, 'mfn-post-hide-content', '0'),
(4229, 3976, 'mfn-post-custom-layout', '0'),
(4230, 3976, 'mfn-post-slider', '0'),
(4231, 3976, 'mfn-post-slider-layer', '0'),
(4232, 3976, 'mfn-post-menu', '0'),
(4233, 3976, 'mfn-post-one-page', '0'),
(4234, 3976, 'mfn-post-hide-title', '0'),
(4235, 3976, 'mfn-post-remove-padding', '0'),
(4236, 3976, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:7:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:329:"[divider height="30"]\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make a complaint to a totally independent third party service provider via;\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:2:"30";s:5:"style";s:7:"default";s:4:"line";s:0:"";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/4";s:6:"fields";a:16:{s:3:"src";s:91:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/wecarelogo.png";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:0:"";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:3;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:87:"<h4>WE-Care channels</h4>\n\n<b>All reports are treated with utmost confidentiality \n</b>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:4;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:320:"Website: <a href="http://www.we-care.my/CreateNewCase.aspx" target="_blank">www.we-care.my</a>\n <br/>Telephone / Hotline: <a href="tel:1700-81-5333" target="_blank">1700-81-5333</a>\n<br/>\nEmail: <a href="mailto:whistle@we-care.my" target="_blank">whistle@we-care.my</a><br/>\nLetter: PO Box 11258, 50740 Kuala Lumpur<br/>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:5;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:2:"30";s:5:"style";s:7:"default";s:4:"line";s:0:"";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}i:6;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:340:"Procedures of whistleblowing policy\n[divider height="10"] \n\n[caption id="attachment_3977" align="alignnone" width="682"]<img class="wp-image-3977 size-full" src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/whistle_flow-1.jpg" alt="Procedures of whistle blowing policy" width="682" height="469" /> [/caption]";s:5:"align";s:6:"center";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4237, 3976, 'mfn-page-items-seo', '[divider height="30"]\r\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make a complaint to a totally independent third party service provider via;\n\nno-repeat;center top;;\n\n30\n\ndefault\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/wecarelogo.png" alt="wecarelogo"/>\n\n<h4>WE-Care channels</h4>\r\n\r\n<b>All reports are treated with utmost confidentiality \r\n</b>\n\nno-repeat;center top;;\n\nWebsite: <a href="http://www.we-care.my/CreateNewCase.aspx" target="_blank">www.we-care.my</a>\r\n <br/>Telephone / Hotline: <a href="tel:1700-81-5333" target="_blank">1700-81-5333</a>\r\n<br/>\r\nEmail: <a href="mailto:whistle@we-care.my" target="_blank">whistle@we-care.my</a><br/>\r\nLetter: PO Box 11258, 50740 Kuala Lumpur<br/>\n\nno-repeat;center top;;\n\n30\n\ndefault\n\nProcedures of whistleblowing policy\r\n[divider height="10"] \r\n\r\n[caption id="attachment_3977" align="alignnone" width="682"]<img class="wp-image-3977 size-full" src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/whistle_flow-1.jpg" alt="Procedures of whistle blowing policy" width="682" height="469" /> [/caption]\n\ncenter\n\nno-repeat;center top;;\n\n'),
(4238, 3976, '_edit_last', '1'),
(4239, 3976, 'mfn-post-sidebar', '0'),
(4240, 3976, 'mfn-post-sidebar2', '0'),
(4241, 3976, '_wpb_vc_js_status', 'false'),
(4242, 3976, 'mfn-post-subheader-image', ''),
(4244, 3976, 'mfn-meta-seo-title', 'Ranhill'),
(4245, 3976, 'mfn-meta-seo-keywords', 'Ranhill'),
(4246, 3976, '_edit_lock', '1496803212:1'),
(4247, 3976, '_thumbnail_id', '4183'),
(4248, 3976, 'mfn-meta-seo-description', 'Whistle blowing  '),
(4249, 3976, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(4250, 3976, '_dp_original', '136'),
(4251, 3975, '_edit_lock', '1472799917:1'),
(4252, 3977, '_wp_attached_file', '2016/09/Screen-Shot-2016-09-02-at-2.47.30-PM.png'),
(4253, 3977, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:682;s:6:"height";i:469;s:4:"file";s:48:"2016/09/Screen-Shot-2016-09-02-at-2.47.30-PM.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:48:"Screen-Shot-2016-09-02-at-2.47.30-PM-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:48:"Screen-Shot-2016-09-02-at-2.47.30-PM-300x206.png";s:5:"width";i:300;s:6:"height";i:206;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:48:"Screen-Shot-2016-09-02-at-2.47.30-PM-212x146.png";s:5:"width";i:212;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:46:"Screen-Shot-2016-09-02-at-2.47.30-PM-50x34.png";s:5:"width";i:50;s:6:"height";i:34;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:47:"Screen-Shot-2016-09-02-at-2.47.30-PM-109x75.png";s:5:"width";i:109;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:46:"Screen-Shot-2016-09-02-at-2.47.30-PM-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:46:"Screen-Shot-2016-09-02-at-2.47.30-PM-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4254, 3980, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4255, 3980, '_form', '<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Your Message / Report\n    [textarea your-message] </label>\n[recaptcha size:compact]\n\n[submit "Send"]'),
(4256, 3980, '_mail', 'a:8:{s:7:"subject";s:22:"Fraud & Whistleblowing";s:6:"sender";s:60:"[your-name] <whistle@investors-watch.com/wp-staging/ranhill>";s:4:"body";s:231:"From: [your-name] <[your-email]>\nSubject:  Ranhill Fraud & Whistleblowing \n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a  Fraud & Whistleblowing section on Ranhill (http://www.investors-watch.com/wp-staging/ranhill)";s:9:"recipient";s:46:"whistle@investors-watch.com/wp-staging/ranhill";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;}'),
(4257, 3980, '_mail_2', 'a:9:{s:6:"active";b:0;s:7:"subject";s:24:"Ranhill "[your-subject]"";s:6:"sender";s:58:"Ranhill <wordpress@investors-watch.com/wp-staging/ranhill>";s:4:"body";s:136:"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Ranhill (http://www.investors-watch.com/wp-staging/ranhill)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:28:"Reply-To: ryanlee@hdprint.my";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(4258, 3980, '_messages', 'a:23:{s:12:"mail_sent_ok";s:52:"Thank you for your message/report. 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.";}'),
(4259, 3980, '_additional_settings', ''),
(4260, 3980, '_locale', 'en_US'),
(4261, 3975, '_edit_last', '1'),
(4262, 3975, '_thumbnail_id', '3675'),
(4263, 3975, '_wp_page_template', 'default'),
(4264, 3975, 'slide_template', 'default'),
(4265, 3975, 'mfn-post-hide-content', '0'),
(4266, 3975, 'mfn-post-slider', '0'),
(4267, 3975, 'mfn-post-slider-layer', '0'),
(4268, 3975, 'mfn-post-hide-title', '0'),
(4269, 3975, 'mfn-post-remove-padding', '0'),
(4270, 3975, 'mfn-post-custom-layout', '0'),
(4271, 3975, 'mfn-meta-seo-title', 'Whistle blowing Form'),
(4272, 3975, 'mfn-meta-seo-description', 'Whistle blowing'),
(4273, 3975, 'mfn-meta-seo-keywords', 'Whistle blowing Form'),
(4274, 3975, 'mfn-post-one-page', '0'),
(4275, 3975, 'mfn-post-menu', '0'),
(4276, 3975, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4277, 3975, '_wpb_vc_js_status', 'false'),
(4278, 3987, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4279, 3987, '_menu_item_type', 'post_type'),
(4280, 3987, '_menu_item_menu_item_parent', '3655'),
(4281, 3987, '_menu_item_object_id', '3976'),
(4282, 3987, '_menu_item_object', 'page'),
(4283, 3987, '_menu_item_target', ''),
(4284, 3987, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4285, 3987, '_menu_item_xfn', ''),
(4286, 3987, '_menu_item_url', ''),
(4288, 3987, 'menu-item-mfn-megamenu', ''),
(4289, 3987, 'menu-item-mfn-bg', ''),
(4294, 3990, '_wp_attached_file', '2016/09/SAJ_Final.pdf'),
(4319, 3997, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4320, 3997, '_edit_lock', '1548724553:1'),
(4321, 3997, '_edit_last', '1'),
(4322, 3998, '_wp_attached_file', '2016/09/Media-release_RWHK-SPA.pdf'),
(4326, 3997, 'slide_template', 'default'),
(4327, 3997, 'mfn-post-hide-content', '0'),
(4328, 3997, 'mfn-post-slider', '0'),
(4329, 3997, 'mfn-post-slider-layer', '0'),
(4330, 3997, 'mfn-post-hide-title', '1'),
(4331, 3997, 'mfn-post-remove-padding', '0'),
(4332, 3997, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4333, 3997, 'mfn-meta-seo-title', 'Ranhill is on track to expand its business in China '),
(4334, 3997, 'mfn-meta-seo-description', 'Ranhill is on track to expand its business in China '),
(4335, 3997, 'mfn-meta-seo-keywords', 'Ranhill is on track to expand its business in China '),
(4336, 3997, 'mfn-post-hide-image', '0'),
(4337, 3997, 'mfn-post-love', '0'),
(4352, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4353, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4354, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4355, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4356, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4357, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4358, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4359, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4360, 4006, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4361, 4006, '_wp_page_template', 'default'),
(4362, 4006, 'slide_template', 'default'),
(4363, 4006, 'mfn-post-hide-content', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4364, 4006, 'mfn-post-custom-layout', '0'),
(4365, 4006, 'mfn-post-slider', '0'),
(4366, 4006, 'mfn-post-slider-layer', '0'),
(4367, 4006, 'mfn-post-menu', '0'),
(4368, 4006, 'mfn-post-one-page', '0'),
(4369, 4006, 'mfn-post-hide-title', '0'),
(4370, 4006, 'mfn-post-remove-padding', '0'),
(4371, 4006, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:7:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:328:"[divider height="30"]\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make a complaint to a totally independent third party service provider via\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:2:"30";s:5:"style";s:7:"default";s:4:"line";s:0:"";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}i:2;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/4";s:6:"fields";a:16:{s:3:"src";s:91:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/wecarelogo.png";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:0:"";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:3;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:87:"<h4>WE-Care channels</h4>\n\n<b>All reports are treated with utmost confidentiality \n</b>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:4;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:320:"Website: <a href="http://www.we-care.my/CreateNewCase.aspx" target="_blank">www.we-care.my</a>\n <br/>Telephone / Hotline: <a href="tel:1700-81-5333" target="_blank">1700-81-5333</a>\n<br/>\nEmail: <a href="mailto:whistle@we-care.my" target="_blank">whistle@we-care.my</a><br/>\nLetter: PO Box 11258, 50740 Kuala Lumpur<br/>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:5;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:2:"30";s:5:"style";s:7:"default";s:4:"line";s:0:"";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}i:6;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:340:"Procedures of whistleblowing policy\n[divider height="10"] \n\n[caption id="attachment_3977" align="alignnone" width="682"]<img class="wp-image-3977 size-full" src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/whistle_flow-1.jpg" alt="Procedures of whistle blowing policy" width="682" height="469" /> [/caption]";s:5:"align";s:6:"center";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4372, 4006, 'mfn-page-items-seo', '[divider height="30"]\r\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make a complaint to a totally independent third party service provider via\n\nno-repeat;center top;;\n\n30\n\ndefault\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/wecarelogo.png" alt="wecarelogo"/>\n\n<h4>WE-Care channels</h4>\r\n\r\n<b>All reports are treated with utmost confidentiality \r\n</b>\n\nno-repeat;center top;;\n\nWebsite: <a href="http://www.we-care.my/CreateNewCase.aspx" target="_blank">www.we-care.my</a>\r\n <br/>Telephone / Hotline: <a href="tel:1700-81-5333" target="_blank">1700-81-5333</a>\r\n<br/>\r\nEmail: <a href="mailto:whistle@we-care.my" target="_blank">whistle@we-care.my</a><br/>\r\nLetter: PO Box 11258, 50740 Kuala Lumpur<br/>\n\nno-repeat;center top;;\n\n30\n\ndefault\n\nProcedures of whistleblowing policy\r\n[divider height="10"] \r\n\r\n[caption id="attachment_3977" align="alignnone" width="682"]<img class="wp-image-3977 size-full" src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/whistle_flow-1.jpg" alt="Procedures of whistle blowing policy" width="682" height="469" /> [/caption]\n\ncenter\n\nno-repeat;center top;;\n\n'),
(4373, 4006, '_edit_last', '1'),
(4374, 4006, 'mfn-post-sidebar', '0'),
(4375, 4006, 'mfn-post-sidebar2', '0'),
(4376, 4006, '_wpb_vc_js_status', 'false'),
(4377, 4006, 'mfn-post-subheader-image', ''),
(4378, 4006, 'mfn-meta-seo-title', 'Ranhill'),
(4379, 4006, 'mfn-meta-seo-keywords', 'Ranhill'),
(4380, 4006, '_edit_lock', '1496801176:1'),
(4381, 4006, '_thumbnail_id', '4183'),
(4382, 4006, 'mfn-meta-seo-description', 'Whistle blowing  '),
(4383, 4006, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(4385, 4006, '_dp_original', '3976'),
(4386, 4008, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4387, 4008, '_menu_item_type', 'post_type'),
(4388, 4008, '_menu_item_menu_item_parent', '3855'),
(4389, 4008, '_menu_item_object_id', '4006'),
(4390, 4008, '_menu_item_object', 'page'),
(4391, 4008, '_menu_item_target', ''),
(4392, 4008, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4393, 4008, '_menu_item_xfn', ''),
(4394, 4008, '_menu_item_url', ''),
(4396, 4008, 'menu-item-mfn-megamenu', ''),
(4397, 4008, 'menu-item-mfn-bg', ''),
(4398, 4009, '_wp_attached_file', '2016/10/wecarelogo.png'),
(4399, 4009, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:228;s:6:"height";i:65;s:4:"file";s:22:"2016/10/wecarelogo.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"wecarelogo-150x65.png";s:5:"width";i:150;s:6:"height";i:65;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:20:"wecarelogo-50x14.png";s:5:"width";i:50;s:6:"height";i:14;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"wecarelogo-150x43.png";s:5:"width";i:150;s:6:"height";i:43;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:20:"wecarelogo-85x65.png";s:5:"width";i:85;s:6:"height";i:65;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"wecarelogo-80x65.png";s:5:"width";i:80;s:6:"height";i:65;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:{}}}'),
(4400, 4009, '_edit_lock', '1476326395:1'),
(4401, 4010, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4402, 4010, '_edit_lock', '1476767955:1'),
(4403, 4010, '_edit_last', '1'),
(4404, 4010, '_wp_page_template', 'default'),
(4405, 4010, 'slide_template', 'default'),
(4406, 4010, 'mfn-post-hide-content', '0'),
(4407, 4010, 'mfn-post-slider', '0'),
(4408, 4010, 'mfn-post-slider-layer', '0'),
(4409, 4010, 'mfn-post-hide-title', '0'),
(4410, 4010, 'mfn-post-remove-padding', '0'),
(4411, 4010, 'mfn-post-custom-layout', '0'),
(4412, 4010, 'mfn-post-one-page', '0'),
(4413, 4010, 'mfn-post-menu', '0'),
(4414, 4010, '_wpb_vc_js_status', 'false'),
(4415, 4010, '_thumbnail_id', '3675'),
(4416, 4010, 'mfn-meta-seo-title', 'Terms of use'),
(4417, 4010, 'mfn-meta-seo-description', 'Terms of use'),
(4418, 4010, 'mfn-meta-seo-keywords', 'Terms of use'),
(4419, 4010, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4420, 4012, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4421, 4012, '_edit_lock', '1476863424:1'),
(4422, 4012, '_edit_last', '1'),
(4423, 4012, '_thumbnail_id', '3675'),
(4424, 4012, '_wp_page_template', 'default'),
(4425, 4012, 'slide_template', 'default'),
(4426, 4012, 'mfn-post-hide-content', '0'),
(4427, 4012, 'mfn-post-slider', '0'),
(4428, 4012, 'mfn-post-slider-layer', '0'),
(4429, 4012, 'mfn-post-hide-title', '0'),
(4430, 4012, 'mfn-post-remove-padding', '0'),
(4431, 4012, 'mfn-post-custom-layout', '0'),
(4432, 4012, 'mfn-meta-seo-title', 'PRIVACY STATEMENT'),
(4433, 4012, 'mfn-meta-seo-description', 'PRIVACY STATEMENT'),
(4434, 4012, 'mfn-meta-seo-keywords', 'PRIVACY STATEMENT'),
(4435, 4012, 'mfn-post-one-page', '0'),
(4436, 4012, 'mfn-post-menu', '0'),
(4437, 4012, '_wpb_vc_js_status', 'false'),
(4438, 4012, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(4439, 4014, '_wp_attached_file', '2016/10/explore_.png'),
(4440, 4014, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:94;s:6:"height";i:94;s:4:"file";s:20:"2016/10/explore_.png";s:5:"sizes";a:4:{s:5:"50x50";a:4:{s:4:"file";s:18:"explore_-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:18:"explore_-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:18:"explore_-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:18:"explore_-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4441, 4015, '_wp_attached_file', '2016/10/meetourpeople.jpg'),
(4442, 4015, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:25:"2016/10/meetourpeople.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"meetourpeople-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"meetourpeople-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"meetourpeople-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"meetourpeople-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:24:"meetourpeople-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"meetourpeople-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"meetourpeople-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4443, 4015, '_edit_lock', '1476328844:1'),
(4444, 26, '_edit_lock', '1479375812:1'),
(4445, 4018, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4446, 4018, '_menu_item_type', 'post_type'),
(4447, 4018, '_menu_item_menu_item_parent', '4221'),
(4448, 4018, '_menu_item_object_id', '26'),
(4449, 4018, '_menu_item_object', 'page'),
(4450, 4018, '_menu_item_target', ''),
(4451, 4018, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4452, 4018, '_menu_item_xfn', ''),
(4453, 4018, '_menu_item_url', ''),
(4455, 4018, 'menu-item-mfn-megamenu', ''),
(4456, 4018, 'menu-item-mfn-bg', ''),
(4457, 4019, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4458, 4019, '_edit_lock', '1524633952:1'),
(4459, 4019, '_edit_last', '1'),
(4460, 4019, '_wp_page_template', 'default'),
(4461, 4019, 'slide_template', 'default'),
(4462, 4019, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:1696:"<div style="padding: 40px 6% 10px;"> \n<p>Ranhill’s Code of Conduct guide the actions of our people. We have taken great care to define them, because they in turn define us. Our goal is to have the Code of Conduct permeate our culture and guide our employees in how they treat our customers, each other and the environment.</p><p>\n\nOur Code of Conduct exists to ensure that we observe laws and regulations that affect our work, and articulates a broader set of ethical standards for use in our conduct and decision-making.\n</p><p>\nWe have conducted ethics training within the Group, and continue to roll out the training programmes to all new joiners.</p><p>\n\nWe manage our business with the highest degree of honesty, ethics and integrity. We see this as our legal and moral obligation, a condition of employment, and a source of great strength for us as a company. We are committed to conducting our business as true professionals, treating our customers and employees with respect, and instilling a sense of personal accountability for our actions.</p><p>\n\n\nWe manage our business with the highest degree of honesty, ethics and integrity. We see this as our legal and moral obligation, a condition of employment, and a source of great strength for us as a company. We are committed to conducting our business as true professionals, treating our customers and employees with respect, and instilling a sense of personal accountability for our actions.</p>\n[divider height="30"]\n\n<b>Our Values\n</b>[divider height="10"]\n<p>Our Values reflect the high standards we hold ourselves to in every aspect of our business. Ranhill Holdings Berhad values are Respect, Resourceful and Result.</p>\n\n</idv>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4463, 4019, 'mfn-page-items-seo', '<div style="padding: 40px 6% 10px;"> \r\n<p>Ranhill’s Code of Conduct guide the actions of our people. We have taken great care to define them, because they in turn define us. Our goal is to have the Code of Conduct permeate our culture and guide our employees in how they treat our customers, each other and the environment.</p><p>\r\n\r\nOur Code of Conduct exists to ensure that we observe laws and regulations that affect our work, and articulates a broader set of ethical standards for use in our conduct and decision-making.\r\n</p><p>\r\nWe have conducted ethics training within the Group, and continue to roll out the training programmes to all new joiners.</p><p>\r\n\r\nWe manage our business with the highest degree of honesty, ethics and integrity. We see this as our legal and moral obligation, a condition of employment, and a source of great strength for us as a company. We are committed to conducting our business as true professionals, treating our customers and employees with respect, and instilling a sense of personal accountability for our actions.</p><p>\r\n\r\n\r\nWe manage our business with the highest degree of honesty, ethics and integrity. We see this as our legal and moral obligation, a condition of employment, and a source of great strength for us as a company. We are committed to conducting our business as true professionals, treating our customers and employees with respect, and instilling a sense of personal accountability for our actions.</p>\r\n[divider height="30"]\r\n\r\n<b>Our Values\r\n</b>[divider height="10"]\r\n<p>Our Values reflect the high standards we hold ourselves to in every aspect of our business. Ranhill Holdings Berhad values are Respect, Resourceful and Result.</p>\r\n\r\n</idv>\n\nno-repeat;center top;;\n\n'),
(4464, 4019, 'mfn-post-hide-content', '0'),
(4465, 4019, 'mfn-post-slider', '0'),
(4466, 4019, 'mfn-post-slider-layer', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4467, 4019, 'mfn-post-hide-title', '0'),
(4468, 4019, 'mfn-post-remove-padding', '0'),
(4469, 4019, 'mfn-post-custom-layout', '0'),
(4470, 4019, 'mfn-post-one-page', '0'),
(4471, 4019, 'mfn-post-menu', '0'),
(4472, 4019, '_wpb_vc_js_status', 'false'),
(4473, 4019, '_thumbnail_id', '3675'),
(4474, 4019, 'mfn-meta-seo-title', 'Code of Conduct'),
(4475, 4019, 'mfn-meta-seo-description', 'Code of Conduct'),
(4476, 4019, 'mfn-meta-seo-keywords', 'Code of Conduct'),
(4477, 4019, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(4480, 4023, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4481, 4023, '_edit_lock', '1478761697:1'),
(4482, 4023, '_edit_last', '1'),
(4483, 4024, '_wp_attached_file', '2016/10/Chennai-water-conference.pdf'),
(4487, 4023, 'slide_template', 'default'),
(4488, 4023, 'mfn-post-hide-content', '0'),
(4489, 4023, 'mfn-post-slider', '0'),
(4490, 4023, 'mfn-post-slider-layer', '0'),
(4491, 4023, 'mfn-post-hide-title', '0'),
(4492, 4023, 'mfn-post-remove-padding', '0'),
(4493, 4023, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4494, 4023, 'mfn-post-hide-image', '1'),
(4495, 4023, 'mfn-post-love', '0'),
(4498, 4026, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4499, 4026, '_edit_lock', '1488873247:1'),
(4500, 4026, '_edit_last', '1'),
(4501, 4027, '_wp_attached_file', '2016/10/Chennai-Water-conference.jpg'),
(4502, 4027, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:36:"2016/10/Chennai-Water-conference.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Chennai-Water-conference-150x150.jpg";s:5:"width";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:"Chennai-Water-conference-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:36:"Chennai-Water-conference-219x146.jpg";s:5:"width";i:219;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:34:"Chennai-Water-conference-50x33.jpg";s:5:"width";i:50;s:6:"height";i:33;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:35:"Chennai-Water-conference-113x75.jpg";s:5:"width";i:113;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:34:"Chennai-Water-conference-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:34:"Chennai-Water-conference-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4503, 4028, '_wp_attached_file', '2016/10/rws-pic.jpg'),
(4504, 4028, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:334;s:4:"file";s:19:"2016/10/rws-pic.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"rws-pic-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"rws-pic-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"rws-pic-219x146.jpg";s:5:"width";i:219;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:17:"rws-pic-50x33.jpg";s:5:"width";i:50;s:6:"height";i:33;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:18:"rws-pic-112x75.jpg";s:5:"width";i:112;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:17:"rws-pic-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:17:"rws-pic-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4505, 4026, '_thumbnail_id', '4028'),
(4508, 4026, 'slide_template', 'default'),
(4509, 4026, 'mfn-post-hide-content', '0'),
(4510, 4026, 'mfn-post-slider', '0'),
(4511, 4026, 'mfn-post-slider-layer', '0'),
(4512, 4026, 'mfn-post-hide-title', '0'),
(4513, 4026, 'mfn-post-remove-padding', '0'),
(4514, 4026, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4515, 4026, 'mfn-post-hide-image', '1'),
(4516, 4030, '_wp_attached_file', '2016/10/rws.pdf'),
(4522, 4023, 'mfn-meta-seo-title', 'Chennai Water Conference'),
(4523, 4023, 'mfn-meta-seo-description', 'Chennai Water Conference'),
(4524, 4023, 'mfn-meta-seo-keywords', 'Chennai Water Conference'),
(4527, 4026, 'mfn-meta-seo-title', 'Non Revenue Water Specialist'),
(4528, 4026, 'mfn-meta-seo-description', 'Non Revenue Water Specialist'),
(4529, 4026, 'mfn-meta-seo-keywords', 'Non Revenue Water Specialist'),
(4530, 4026, 'mfn-post-love', '0'),
(4531, 3894, 'mfn-meta-seo-title', 'Sharing Our Expertise'),
(4532, 3894, 'mfn-meta-seo-description', 'Sharing Our Expertise'),
(4533, 3894, 'mfn-meta-seo-keywords', 'Sharing Our Expertise'),
(4534, 3894, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;\r\n    font-size: 50px;}\r\n\r\n.masonry .post-photo-wrapper {\r\n\r\n    padding: 5px;}'),
(4535, 3894, '_thumbnail_id', '4142'),
(4536, 4032, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4537, 4032, '_menu_item_type', 'post_type'),
(4538, 4032, '_menu_item_menu_item_parent', '4221'),
(4539, 4032, '_menu_item_object_id', '3894'),
(4540, 4032, '_menu_item_object', 'page'),
(4541, 4032, '_menu_item_target', ''),
(4542, 4032, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4543, 4032, '_menu_item_xfn', ''),
(4544, 4032, '_menu_item_url', ''),
(4546, 4032, 'menu-item-mfn-megamenu', ''),
(4547, 4032, 'menu-item-mfn-bg', ''),
(4548, 4033, '_wp_attached_file', '2016/10/Aquasmart_images.jpg'),
(4549, 4033, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:28:"2016/10/Aquasmart_images.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"Aquasmart_images-150x150.jpg";s:5:"width";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:"Aquasmart_images-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:28:"Aquasmart_images-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:26:"Aquasmart_images-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:27:"Aquasmart_images-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:26:"Aquasmart_images-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:26:"Aquasmart_images-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4550, 4034, '_wp_attached_file', '2016/10/APMC_image.jpg'),
(4551, 4034, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:22:"2016/10/APMC_image.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"APMC_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:22:"APMC_image-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"APMC_image-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"APMC_image-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"APMC_image-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"APMC_image-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"APMC_image-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4552, 4035, '_wp_attached_file', '2016/10/CCGT_image.jpg'),
(4553, 4035, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:22:"2016/10/CCGT_image.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"CCGT_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:22:"CCGT_image-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"CCGT_image-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"CCGT_image-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"CCGT_image-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"CCGT_image-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"CCGT_image-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4554, 4036, '_wp_attached_file', '2016/10/DAF_image.jpg'),
(4555, 4036, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:21:"2016/10/DAF_image.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"DAF_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:21:"DAF_image-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"DAF_image-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"DAF_image-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"DAF_image-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"DAF_image-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"DAF_image-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4556, 4037, '_wp_attached_file', '2016/10/GIS_image.jpg'),
(4557, 4037, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:21:"2016/10/GIS_image.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"GIS_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:21:"GIS_image-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"GIS_image-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"GIS_image-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"GIS_image-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"GIS_image-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"GIS_image-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4558, 4038, '_wp_attached_file', '2016/10/SBR_image.jpg'),
(4559, 4038, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:21:"2016/10/SBR_image.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"SBR_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:21:"SBR_image-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"SBR_image-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"SBR_image-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"SBR_image-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"SBR_image-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"SBR_image-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4560, 4034, '_edit_lock', '1476331347:1'),
(4561, 4033, '_edit_lock', '1476450841:1'),
(4562, 4039, '_wp_attached_file', '2016/10/hand.png'),
(4563, 4039, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:63;s:6:"height";i:71;s:4:"file";s:16:"2016/10/hand.png";s:5:"sizes";a:1:{s:5:"50x50";a:4:{s:4:"file";s:14:"hand-44x50.png";s:5:"width";i:44;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4564, 4040, '_wp_attached_file', '2016/10/bulb.png'),
(4565, 4040, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:63;s:6:"height";i:71;s:4:"file";s:16:"2016/10/bulb.png";s:5:"sizes";a:1:{s:5:"50x50";a:4:{s:4:"file";s:14:"bulb-44x50.png";s:5:"width";i:44;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4566, 4041, '_wp_attached_file', '2016/10/graph.png'),
(4567, 4041, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:63;s:6:"height";i:71;s:4:"file";s:17:"2016/10/graph.png";s:5:"sizes";a:1:{s:5:"50x50";a:4:{s:4:"file";s:15:"graph-44x50.png";s:5:"width";i:44;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4574, 4046, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4575, 4046, '_edit_lock', '1478761553:1'),
(4576, 4046, '_edit_last', '1'),
(4577, 4047, '_wp_attached_file', '2016/10/SAJ_Final_Page_01.jpg'),
(4578, 4047, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2573;s:6:"height";i:1819;s:4:"file";s:29:"2016/10/SAJ_Final_Page_01.jpg";s:5:"sizes";a:16:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"SAJ_Final_Page_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:29:"SAJ_Final_Page_01-300x212.jpg";s:5:"width";i:300;s:6:"height";i:212;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"SAJ_Final_Page_01-768x543.jpg";s:5:"width";i:768;s:6:"height";i:543;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"SAJ_Final_Page_01-1024x724.jpg";s:5:"width";i:1024;s:6:"height";i:724;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"SAJ_Final_Page_01-207x146.jpg";s:5:"width";i:207;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:27:"SAJ_Final_Page_01-50x35.jpg";s:5:"width";i:50;s:6:"height";i:35;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:28:"SAJ_Final_Page_01-106x75.jpg";s:5:"width";i:106;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:14:"slider-content";a:4:{s:4:"file";s:30:"SAJ_Final_Page_01-1630x860.jpg";s:5:"width";i:1630;s:6:"height";i:860;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:27:"SAJ_Final_Page_01-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:27:"SAJ_Final_Page_01-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:31:"SAJ_Final_Page_01-1280x1000.jpg";s:5:"width";i:1280;s:6:"height";i:1000;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:30:"SAJ_Final_Page_01-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:30:"SAJ_Final_Page_01-768x1200.jpg";s:5:"width";i:768;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:30:"SAJ_Final_Page_01-1920x750.jpg";s:5:"width";i:1920;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:29:"SAJ_Final_Page_01-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:30:"SAJ_Final_Page_01-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4582, 4046, 'slide_template', 'default'),
(4583, 4046, 'mfn-post-hide-content', '0'),
(4584, 4046, 'mfn-post-slider', '0'),
(4585, 4046, 'mfn-post-slider-layer', '0'),
(4586, 4046, 'mfn-post-hide-title', '0'),
(4587, 4046, 'mfn-post-remove-padding', '0'),
(4588, 4046, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4589, 4046, 'mfn-meta-seo-title', 'Carbon Footprint'),
(4590, 4046, 'mfn-meta-seo-description', 'Carbon Footprint'),
(4591, 4046, 'mfn-meta-seo-keywords', 'Carbon Footprint'),
(4592, 4046, 'mfn-post-hide-image', '1') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4593, 4046, 'mfn-post-love', '0'),
(4594, 4052, '_wp_attached_file', '2016/10/shareexpertise.jpg'),
(4595, 4052, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:26:"2016/10/shareexpertise.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"shareexpertise-150x150.jpg";s:5:"width";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:"shareexpertise-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"shareexpertise-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"shareexpertise-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"shareexpertise-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"shareexpertise-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"shareexpertise-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4596, 4053, '_wp_attached_file', '2016/10/BM-privacy-statement.pdf'),
(4597, 4056, '_wp_attached_file', '2016/10/whistle_flow.jpg'),
(4598, 4056, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:682;s:6:"height";i:469;s:4:"file";s:24:"2016/10/whistle_flow.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"whistle_flow-150x150.jpg";s:5:"width";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:"whistle_flow-300x206.jpg";s:5:"width";i:300;s:6:"height";i:206;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"whistle_flow-212x146.jpg";s:5:"width";i:212;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"whistle_flow-50x34.jpg";s:5:"width";i:50;s:6:"height";i:34;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"whistle_flow-109x75.jpg";s:5:"width";i:109;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"whistle_flow-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"whistle_flow-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4599, 4057, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4600, 4057, '_edit_lock', '1477359842:1'),
(4601, 4059, '_wp_attached_file', '2016/10/whistle_flow-1.jpg'),
(4602, 4059, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:682;s:6:"height";i:469;s:4:"file";s:26:"2016/10/whistle_flow-1.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"whistle_flow-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"whistle_flow-1-300x206.jpg";s:5:"width";i:300;s:6:"height";i:206;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"whistle_flow-1-212x146.jpg";s:5:"width";i:212;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"whistle_flow-1-50x34.jpg";s:5:"width";i:50;s:6:"height";i:34;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"whistle_flow-1-109x75.jpg";s:5:"width";i:109;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"whistle_flow-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"whistle_flow-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4603, 4057, '_edit_last', '1'),
(4620, 4065, '_wp_attached_file', '2016/10/Zulkiflee.jpg'),
(4621, 4065, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:749;s:4:"file";s:21:"2016/10/Zulkiflee.jpg";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Zulkiflee-150x150.jpg";s:5:"width";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:"Zulkiflee-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"Zulkiflee-97x146.jpg";s:5:"width";i:97;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"Zulkiflee-33x50.jpg";s:5:"width";i:33;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:19:"Zulkiflee-50x75.jpg";s:5:"width";i:50;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"Zulkiflee-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"Zulkiflee-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:21:"Zulkiflee-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:21:"Zulkiflee-500x480.jpg";s:5:"width";i:500;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4622, 4066, '_wp_attached_file', '2016/10/Poh-Ling.jpg'),
(4623, 4066, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:667;s:4:"file";s:20:"2016/10/Poh-Ling.jpg";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Poh-Ling-150x150.jpg";s:5:"width";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:"Poh-Ling-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"Poh-Ling-109x146.jpg";s:5:"width";i:109;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:18:"Poh-Ling-37x50.jpg";s:5:"width";i:37;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:18:"Poh-Ling-56x75.jpg";s:5:"width";i:56;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:18:"Poh-Ling-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:18:"Poh-Ling-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:20:"Poh-Ling-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:20:"Poh-Ling-500x480.jpg";s:5:"width";i:500;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4628, 4067, '_wp_attached_file', '2016/10/meetppl_banner.jpg'),
(4629, 4067, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:413;s:4:"file";s:26:"2016/10/meetppl_banner.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"meetppl_banner-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"meetppl_banner-300x95.jpg";s:5:"width";i:300;s:6:"height";i:95;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"meetppl_banner-768x244.jpg";s:5:"width";i:768;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"meetppl_banner-1024x325.jpg";s:5:"width";i:1024;s:6:"height";i:325;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"meetppl_banner-260x83.jpg";s:5:"width";i:260;s:6:"height";i:83;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"meetppl_banner-50x16.jpg";s:5:"width";i:50;s:6:"height";i:16;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"meetppl_banner-150x48.jpg";s:5:"width";i:150;s:6:"height";i:48;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"meetppl_banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"meetppl_banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:27:"meetppl_banner-1280x413.jpg";s:5:"width";i:1280;s:6:"height";i:413;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"meetppl_banner-1280x413.jpg";s:5:"width";i:1280;s:6:"height";i:413;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:26:"meetppl_banner-768x413.jpg";s:5:"width";i:768;s:6:"height";i:413;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:26:"meetppl_banner-960x413.jpg";s:5:"width";i:960;s:6:"height";i:413;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"meetppl_banner-1200x413.jpg";s:5:"width";i:1200;s:6:"height";i:413;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4631, 4068, '_wp_attached_file', '2016/10/meetppl_banner-1.jpg'),
(4632, 4068, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:28:"2016/10/meetppl_banner-1.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"meetppl_banner-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:27:"meetppl_banner-1-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"meetppl_banner-1-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"meetppl_banner-1-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"meetppl_banner-1-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:26:"meetppl_banner-1-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:27:"meetppl_banner-1-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:26:"meetppl_banner-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:26:"meetppl_banner-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:29:"meetppl_banner-1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:29:"meetppl_banner-1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:28:"meetppl_banner-1-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:28:"meetppl_banner-1-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:29:"meetppl_banner-1-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(4633, 3797, '_thumbnail_id', '4120'),
(4634, 3797, 'mfn-page-items', 'a:3:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:204:"<h4>Explore opportunities to take your career to the next level. Whether you are a student, a graduate or an experienced professional, discover the impact you could make with your career at Ranhill.\n</h4>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:4:"10px";s:13:"column_margin";s:4:"10px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:1:"1";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:4:"blog";s:4:"size";s:3:"1/1";s:6:"fields";a:13:{s:5:"count";s:1:"8";s:5:"style";s:7:"classic";s:7:"columns";s:1:"4";s:8:"category";s:3:"job";s:14:"category_multi";s:0:"";s:10:"exclude_id";s:0:"";s:4:"more";s:1:"1";s:7:"filters";s:1:"0";s:10:"pagination";s:1:"0";s:9:"load_more";s:1:"0";s:9:"greyscale";s:1:"0";s:6:"margin";s:1:"1";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:0:"";s:5:"style";s:7:"default";s:4:"line";s:4:"wide";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:2;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:90:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/career-bg.jpg";s:11:"bg_position";s:34:"no-repeat;center;fixed;cover;still";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:3:"180";s:14:"padding_bottom";s:3:"180";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:10:"full-width";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:243:"<h3>For careers with RANHILL, send your complete resume to <a href="mailto:employment@investors-watch.com/wp-staging/ranhill">employment@investors-watch.com/wp-staging/ranhill</a></h3>\n<h4>Your application will be treated as confidential.</h4>";s:5:"align";s:6:"center";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:10:"fadeInDown";s:7:"classes";s:11:"career-text";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4635, 3797, 'mfn-page-items-seo', '<h4>Explore opportunities to take your career to the next level. Whether you are a student, a graduate or an experienced professional, discover the impact you could make with your career at Ranhill.\r\n</h4>\n\nno-repeat;center top;;\n\n8\n\nclassic\n\n4\n\njob\n\ndefault\n\nwide\n\n<h3>For careers with RANHILL, send your complete resume to <a href="mailto:employment@investors-watch.com/wp-staging/ranhill">employment@investors-watch.com/wp-staging/ranhill</a></h3>\r\n<h4>Your application will be treated as confidential.</h4>\n\ncenter\n\nno-repeat;center top;;\n\nfadeInDown\n\ncareer-text\n\n'),
(4636, 3797, 'mfn-meta-seo-title', 'Career'),
(4637, 3797, 'mfn-meta-seo-description', 'Career'),
(4638, 3797, 'mfn-meta-seo-keywords', 'Career'),
(4639, 3797, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}\r\n\r\n\r\n.career-text h3 {\r\n    color: #fff;\r\n    font-size: 30px;  \r\n}\r\n.career-text h4 {\r\n    color: #ddd;\r\n    font-size: 22px;\r\n    margin-bottom: 0px;\r\n    font-style: italic;\r\n}\r\n.career-text a {\r\n    color: #ff0000;\r\n}\r\n.career-text a:hover {\r\n    color: #ff0000;\r\n   text-decoration:underline;\r\n}'),
(4640, 4069, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4641, 4069, '_edit_lock', '1484293563:1'),
(4642, 4069, '_edit_last', '1'),
(4645, 4069, 'slide_template', ''),
(4646, 4069, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";s:0:"";}}'),
(4647, 4069, 'mfn-page-items-seo', NULL),
(4648, 4069, 'mfn-post-hide-content', '0'),
(4649, 4069, 'mfn-post-slider', '0'),
(4650, 4069, 'mfn-post-slider-layer', '0'),
(4651, 4069, 'mfn-post-hide-title', '0'),
(4652, 4069, 'mfn-post-remove-padding', '0'),
(4653, 4069, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4654, 4069, 'mfn-post-hide-image', '0'),
(4655, 4071, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4656, 4069, 'mfn-post-love', '0'),
(4657, 4071, '_edit_lock', '1484293544:1'),
(4658, 4071, '_edit_last', '1'),
(4661, 4071, 'slide_template', ''),
(4662, 4071, 'mfn-post-hide-content', '0'),
(4663, 4071, 'mfn-post-slider', '0'),
(4664, 4071, 'mfn-post-slider-layer', '0'),
(4665, 4071, 'mfn-post-hide-title', '0'),
(4666, 4071, 'mfn-post-remove-padding', '0'),
(4667, 4071, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4668, 4071, 'mfn-post-hide-image', '0'),
(4671, 4071, 'mfn-meta-seo-title', 'Account Executive'),
(4672, 4071, 'mfn-meta-seo-description', 'Account Executive'),
(4673, 4071, 'mfn-meta-seo-keywords', 'Account Executive'),
(4676, 4069, 'mfn-meta-seo-title', 'Assistant Manager, Technical'),
(4677, 4069, 'mfn-meta-seo-description', 'Assistant Manager, Technical'),
(4678, 4069, 'mfn-meta-seo-keywords', 'Assistant Manager, Technical'),
(4679, 4071, 'mfn-post-love', '0'),
(4680, 4075, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4681, 4075, '_edit_lock', '1484293218:1'),
(4682, 4075, '_edit_last', '1'),
(4685, 4075, 'slide_template', 'default'),
(4686, 4075, 'mfn-post-hide-content', '0'),
(4687, 4075, 'mfn-post-slider', '0'),
(4688, 4075, 'mfn-post-slider-layer', '0'),
(4689, 4075, 'mfn-post-hide-title', '0'),
(4690, 4075, 'mfn-post-remove-padding', '0'),
(4691, 4075, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4692, 4075, 'mfn-meta-seo-title', 'IT Audit Executive '),
(4693, 4075, 'mfn-meta-seo-description', 'IT Audit Executive '),
(4694, 4075, 'mfn-meta-seo-keywords', 'IT Audit Executive '),
(4695, 4075, 'mfn-post-hide-image', '0'),
(4696, 4075, 'mfn-post-love', '0'),
(4697, 4077, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4698, 4077, '_edit_lock', '1484293916:1'),
(4699, 4077, '_edit_last', '1'),
(4702, 4077, 'slide_template', 'default'),
(4703, 4077, 'mfn-post-hide-content', '0'),
(4704, 4077, 'mfn-post-slider', '0'),
(4705, 4077, 'mfn-post-slider-layer', '0'),
(4706, 4077, 'mfn-post-hide-title', '0'),
(4707, 4077, 'mfn-post-remove-padding', '0'),
(4708, 4077, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4709, 4077, 'mfn-meta-seo-title', 'Manager, Group Legal & Compliance'),
(4710, 4077, 'mfn-meta-seo-description', 'Manager, Group Legal & Compliance'),
(4711, 4077, 'mfn-meta-seo-keywords', 'Manager, Group Legal & Compliance'),
(4712, 4077, 'mfn-post-hide-image', '0'),
(4713, 4079, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4714, 4077, 'mfn-post-love', '0'),
(4715, 4079, '_edit_lock', '1484293483:1'),
(4716, 4079, '_edit_last', '1'),
(4719, 4079, 'slide_template', ''),
(4720, 4079, 'mfn-post-hide-content', '0'),
(4721, 4079, 'mfn-post-slider', '0'),
(4722, 4079, 'mfn-post-slider-layer', '0'),
(4723, 4079, 'mfn-post-hide-title', '0'),
(4724, 4079, 'mfn-post-remove-padding', '0'),
(4725, 4079, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4726, 4079, 'mfn-post-hide-image', '0'),
(4729, 4079, 'mfn-meta-seo-title', 'Executive, Group Legal') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4730, 4079, 'mfn-meta-seo-description', 'Executive, Group Legal'),
(4731, 4079, 'mfn-meta-seo-keywords', 'Executive, Group Legal'),
(4738, 4079, 'mfn-post-love', '0'),
(4739, 4087, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4740, 4087, '_edit_lock', '1484293212:1'),
(4741, 4087, '_edit_last', '1'),
(4744, 4087, 'slide_template', 'default'),
(4745, 4087, 'mfn-post-hide-content', '0'),
(4746, 4087, 'mfn-post-slider', '0'),
(4747, 4087, 'mfn-post-slider-layer', '0'),
(4748, 4087, 'mfn-post-hide-title', '0'),
(4749, 4087, 'mfn-post-remove-padding', '0'),
(4750, 4087, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4751, 4087, 'mfn-meta-seo-title', 'Executive Secretarial, Group Secretarial '),
(4752, 4087, 'mfn-meta-seo-description', 'Executive Secretarial, Group Secretarial '),
(4753, 4087, 'mfn-meta-seo-keywords', 'Executive Secretarial, Group Secretarial '),
(4754, 4087, 'mfn-post-hide-image', '0'),
(4755, 4089, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4756, 4089, '_edit_lock', '1484293914:1'),
(4757, 4089, '_edit_last', '1'),
(4760, 4089, 'slide_template', ''),
(4761, 4089, 'mfn-post-hide-content', '0'),
(4762, 4089, 'mfn-post-slider', '0'),
(4763, 4089, 'mfn-post-slider-layer', '0'),
(4764, 4089, 'mfn-post-hide-title', '0'),
(4765, 4089, 'mfn-post-remove-padding', '0'),
(4766, 4089, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4767, 4089, 'mfn-meta-seo-title', 'Manager, Group Legal and Compliance Litigation'),
(4768, 4089, 'mfn-meta-seo-description', 'Manager, Group Legal and Compliance Litigation'),
(4769, 4089, 'mfn-meta-seo-keywords', 'Manager, Group Legal and Compliance Litigation'),
(4770, 4089, 'mfn-post-hide-image', '0'),
(4773, 4092, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4774, 4092, '_edit_lock', '1480047738:1'),
(4775, 4092, '_edit_last', '1'),
(4778, 4092, 'slide_template', 'default'),
(4779, 4092, 'mfn-post-hide-content', '0'),
(4780, 4092, 'mfn-post-slider', '0'),
(4781, 4092, 'mfn-post-slider-layer', '0'),
(4782, 4092, 'mfn-post-hide-title', '0'),
(4783, 4092, 'mfn-post-remove-padding', '0'),
(4784, 4092, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(4785, 4092, 'mfn-meta-seo-title', 'Assistant Manager, Corporate Finance'),
(4786, 4092, 'mfn-meta-seo-description', 'Assistant Manager, Corporate Finance'),
(4787, 4092, 'mfn-meta-seo-keywords', 'Assistant Manager, Corporate Finance'),
(4788, 4092, 'mfn-post-hide-image', '0'),
(4789, 4092, 'mfn-post-love', '0'),
(4790, 4089, 'mfn-post-love', '0'),
(4791, 4087, 'mfn-post-love', '0'),
(4793, 4095, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4794, 4095, '_edit_lock', '1481867800:1'),
(4795, 4095, '_edit_last', '1'),
(4796, 4095, '_thumbnail_id', '4120'),
(4797, 4095, '_wp_page_template', 'default'),
(4798, 4095, 'slide_template', 'default'),
(4799, 4095, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/3";s:6:"fields";a:16:{s:3:"src";s:94:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Lim-Poh-Ling-.jpg";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:0:"";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:1390:"<h4>Lim Poh Ling</h4>\n<b>Engineering Manager, based in China \n</b>[divider height="30"]\n\n<strong>Why Ranhill?</strong><br/>\nI worked as an intern before I joined Ranhill full time. It was an eye-opening experience and gave me the opportunity to meet a group of energetic and friendly people. It feels like part of a big family. Since I joined Ranhill in 2005, I have learned a lot about the nitty-gritty of working in a water treatment plant. Although the learning curve is very steep; I got the chance to travel to many interesting places in China.  \n [divider height="20"]\n\n <b>How do you find working in China?</b><br/>\nI am grateful to the opportunity given to me to be able to experience a working  life in China with  its rich culture. I have to admit that it was challenging at first but yet rewarding.  \n [divider height="20"]\n\n <b>How do you find your colleagues here at Ranhill?</b><br/>\nAt Ranhill, we are a dynamic team with complimentary background and skills having the same approach towards reaching the Company’s target \n [divider height="20"]\n<b>What is your vision and mission as an employee here at Ranhill?</b><br/>\nTo continue providing innovative solutions for cost effective treatment process.\nEnsure compliance and be recognised by customers and the society as leading expert in the region. To be the most sustainable and competitive company in our industry";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4800, 4095, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Lim-Poh-Ling-.jpg" alt="lim-poh-ling"/>\n\n<h4>Lim Poh Ling</h4>\r\n<b>Engineering Manager, based in China \r\n</b>[divider height="30"]\r\n\r\n<strong>Why Ranhill?</strong><br/>\r\nI worked as an intern before I joined Ranhill full time. It was an eye-opening experience and gave me the opportunity to meet a group of energetic and friendly people. It feels like part of a big family. Since I joined Ranhill in 2005, I have learned a lot about the nitty-gritty of working in a water treatment plant. Although the learning curve is very steep; I got the chance to travel to many interesting places in China.  \r\n [divider height="20"]\r\n\r\n <b>How do you find working in China?</b><br/>\r\nI am grateful to the opportunity given to me to be able to experience a working  life in China with  its rich culture. I have to admit that it was challenging at first but yet rewarding.  \r\n [divider height="20"]\r\n\r\n <b>How do you find your colleagues here at Ranhill?</b><br/>\r\nAt Ranhill, we are a dynamic team with complimentary background and skills having the same approach towards reaching the Company’s target \r\n [divider height="20"]\r\n<b>What is your vision and mission as an employee here at Ranhill?</b><br/>\r\nTo continue providing innovative solutions for cost effective treatment process.\r\nEnsure compliance and be recognised by customers and the society as leading expert in the region. To be the most sustainable and competitive company in our industry\n\nno-repeat;center top;;\n\n'),
(4801, 4095, 'mfn-post-hide-content', '0'),
(4802, 4095, 'mfn-post-slider', '0'),
(4803, 4095, 'mfn-post-slider-layer', '0'),
(4804, 4095, 'mfn-post-hide-title', '0'),
(4805, 4095, 'mfn-post-remove-padding', '0'),
(4806, 4095, 'mfn-post-custom-layout', '0'),
(4807, 4095, 'mfn-meta-seo-title', 'Lim Poh Ling'),
(4808, 4095, 'mfn-meta-seo-description', 'Lim Poh Ling'),
(4809, 4095, 'mfn-meta-seo-keywords', 'Lim Poh Ling'),
(4810, 4095, 'mfn-post-one-page', '0'),
(4811, 4095, 'mfn-post-menu', '0'),
(4812, 4095, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;\r\n    font-size: 50px;}'),
(4813, 4095, '_wpb_vc_js_status', 'false'),
(4814, 4097, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4815, 4097, '_edit_lock', '1480047574:1'),
(4816, 4097, '_edit_last', '1'),
(4817, 4097, '_thumbnail_id', '4120'),
(4818, 4097, '_wp_page_template', 'default'),
(4819, 4097, 'slide_template', 'default'),
(4820, 4097, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/3";s:6:"fields";a:16:{s:3:"src";s:90:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Zulkiflee.jpg";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:0:"";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:1309:"<h4>Zulkiflee Ibrahim \n</h4><b>Former Head, Group Human Capital<br/>\nCurrent GM Operations & Maintenance, Senai Desaru Expressway – Ranhill Group of Companies</b>\n[divider height="30"]\n\n<strong>Can you tell us your career progression since you joined Ranhill?</strong><br/>\nMy career in Ranhill began back in 1984 as a Technical Assistant. I joined Ranhill for a variety of reasons; the diverse range of challenging and interesting work, the amazing culture and for Ranhill’s dedication and commitment to professional development\n[divider height="20"]\n\n<strong>How do you find working at Ranhill?</strong><br/>\nRanhill is a interesting place to work as we are constantly growing, changing and developing. There has not been a single day since I began working here that has been the same. It has been an incredible journey\n[divider height="20"]\n\n<strong>What makes you to be loyal and stay with Ranhill?</strong><br/>\nThe good cooperation with the colleagues and the varying assignments. As well as the need to stay flexible and to be ready to challenge yourself everyday.\n[divider height="20"]\n\n<strong>Can you give some advice to those who intend to build their career with Ranhill?</strong><br/>\nHave pride and stay focus on your work. Work hard and don’t be afraid to take up opportunities for growth";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4821, 4097, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Zulkiflee.jpg" alt="zulkiflee"/>\n\n<h4>Zulkiflee Ibrahim \r\n</h4><b>Former Head, Group Human Capital<br/>\r\nCurrent GM Operations & Maintenance, Senai Desaru Expressway – Ranhill Group of Companies</b>\r\n[divider height="30"]\r\n\r\n<strong>Can you tell us your career progression since you joined Ranhill?</strong><br/>\r\nMy career in Ranhill began back in 1984 as a Technical Assistant. I joined Ranhill for a variety of reasons; the diverse range of challenging and interesting work, the amazing culture and for Ranhill’s dedication and commitment to professional development\r\n[divider height="20"]\r\n\r\n<strong>How do you find working at Ranhill?</strong><br/>\r\nRanhill is a interesting place to work as we are constantly growing, changing and developing. There has not been a single day since I began working here that has been the same. It has been an incredible journey\r\n[divider height="20"]\r\n\r\n<strong>What makes you to be loyal and stay with Ranhill?</strong><br/>\r\nThe good cooperation with the colleagues and the varying assignments. As well as the need to stay flexible and to be ready to challenge yourself everyday.\r\n[divider height="20"]\r\n\r\n<strong>Can you give some advice to those who intend to build their career with Ranhill?</strong><br/>\r\nHave pride and stay focus on your work. Work hard and don’t be afraid to take up opportunities for growth\n\nno-repeat;center top;;\n\n'),
(4822, 4097, 'mfn-post-hide-content', '0'),
(4823, 4097, 'mfn-post-slider', '0'),
(4824, 4097, 'mfn-post-slider-layer', '0'),
(4825, 4097, 'mfn-post-hide-title', '0'),
(4826, 4097, 'mfn-post-remove-padding', '0'),
(4827, 4097, 'mfn-post-custom-layout', '0'),
(4828, 4097, 'mfn-meta-seo-title', 'Zulkiflee Ibrahim '),
(4829, 4097, 'mfn-meta-seo-description', 'Zulkiflee Ibrahim '),
(4830, 4097, 'mfn-meta-seo-keywords', 'Zulkiflee Ibrahim '),
(4831, 4097, 'mfn-post-one-page', '0'),
(4832, 4097, 'mfn-post-menu', '0'),
(4833, 4097, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;\r\n    font-size: 50px;}'),
(4834, 4097, '_wpb_vc_js_status', 'false'),
(4835, 4099, '_wp_attached_file', '2016/10/Yee-Kok-Hong.jpg'),
(4836, 4099, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:749;s:4:"file";s:24:"2016/10/Yee-Kok-Hong.jpg";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"Yee-Kok-Hong-150x150.jpg";s:5:"width";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:"Yee-Kok-Hong-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"Yee-Kok-Hong-97x146.jpg";s:5:"width";i:97;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"Yee-Kok-Hong-33x50.jpg";s:5:"width";i:33;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:22:"Yee-Kok-Hong-50x75.jpg";s:5:"width";i:50;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"Yee-Kok-Hong-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"Yee-Kok-Hong-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:24:"Yee-Kok-Hong-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:24:"Yee-Kok-Hong-500x480.jpg";s:5:"width";i:500;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4837, 4100, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4838, 4100, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4839, 4100, '_thumbnail_id', '4120'),
(4840, 4100, '_wp_page_template', 'default'),
(4841, 4100, 'slide_template', 'default'),
(4842, 4100, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/3";s:6:"fields";a:16:{s:3:"src";s:95:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Yee-Kok-Hong-1.jpg";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:0:"";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:1458:"<h4>Yee Kok Hong</h4>\n<b>Senior Executive</b>\n<b>Group Accounting & Finance \n</b>\n[divider height="30"]\n\n<strong>Why Ranhill?</strong><br/>\nRanhill’s interest in the Environment and Power Industry gave me the confidence to join the company as I believe it to be a sustainable conglomerate, as power and water are the necessities of everyday.\n[divider height="20"]\n<b>\nWhat type of work do you do in Ranhill?</b><br/>\nMy role at the Group Accounting and Finance team focused primarily on the preparation of the Group’s analysis of the Intercompanies’ Balances, Related Party Transactions Disclosures and the Group Level Risk Management.[divider height="20"]\n<b>What is the best part of your job?</b><br/>\nRanhill focuses on the development of its people and building a culture of innovation. Ranhill has helped me to improve my business management skills and has provided me with a good learning ground to learn and understand the Groups financials. I was given the opportunity to analyse the group data, identify the problems & rooms for improvement and provide appropriate solutions.[divider height="20"]\n\n<b>How do you find the work culture and environment here at Ranhill?</b><br/>\n              The culture is good as the people are friendly and willing to share their knowledge and experience. Additionally, Ranhill social-gatherings such as birthday celebration, paintball, badminton and health awareness programme have brought employees closer.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4843, 4100, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Yee-Kok-Hong-1.jpg" alt="yee-kok-hong"/>\n\n<h4>Yee Kok Hong</h4>\r\n<b>Senior Executive</b>\r\n<b>Group Accounting & Finance \r\n</b>\r\n[divider height="30"]\r\n\r\n<strong>Why Ranhill?</strong><br/>\r\nRanhill’s interest in the Environment and Power Industry gave me the confidence to join the company as I believe it to be a sustainable conglomerate, as power and water are the necessities of everyday.\r\n[divider height="20"]\r\n<b>\r\nWhat type of work do you do in Ranhill?</b><br/>\r\nMy role at the Group Accounting and Finance team focused primarily on the preparation of the Group’s analysis of the Intercompanies’ Balances, Related Party Transactions Disclosures and the Group Level Risk Management.[divider height="20"]\r\n<b>What is the best part of your job?</b><br/>\r\nRanhill focuses on the development of its people and building a culture of innovation. Ranhill has helped me to improve my business management skills and has provided me with a good learning ground to learn and understand the Groups financials. I was given the opportunity to analyse the group data, identify the problems & rooms for improvement and provide appropriate solutions.[divider height="20"]\r\n\r\n<b>How do you find the work culture and environment here at Ranhill?</b><br/>\r\n              The culture is good as the people are friendly and willing to share their knowledge and experience. Additionally, Ranhill social-gatherings such as birthday celebration, paintball, badminton and health awareness programme have brought employees closer.\n\nno-repeat;center top;;\n\n'),
(4844, 4100, 'mfn-post-hide-content', '0') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4845, 4100, 'mfn-post-slider', '0'),
(4846, 4100, 'mfn-post-slider-layer', '0'),
(4847, 4100, 'mfn-post-hide-title', '0'),
(4848, 4100, 'mfn-post-remove-padding', '0'),
(4849, 4100, 'mfn-post-custom-layout', '0'),
(4850, 4100, 'mfn-meta-seo-title', 'Yee Kok Hong'),
(4851, 4100, 'mfn-meta-seo-description', 'Yee Kok Hong'),
(4852, 4100, 'mfn-meta-seo-keywords', 'Yee Kok Hong'),
(4853, 4100, 'mfn-post-one-page', '0'),
(4854, 4100, 'mfn-post-menu', '0'),
(4855, 4100, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;\r\n    font-size: 50px;}'),
(4856, 4100, '_wpb_vc_js_status', 'false'),
(4857, 4100, '_dp_original', '4097'),
(4858, 4100, '_edit_lock', '1480047433:1'),
(4859, 4100, '_edit_last', '1'),
(4860, 4103, '_wp_attached_file', '2016/10/carbon.jpg'),
(4861, 4103, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:18:"2016/10/carbon.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"carbon-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"carbon-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:18:"carbon-219x146.jpg";s:5:"width";i:219;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:16:"carbon-50x33.jpg";s:5:"width";i:50;s:6:"height";i:33;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:17:"carbon-113x75.jpg";s:5:"width";i:113;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:16:"carbon-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:16:"carbon-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4864, 4105, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4865, 4105, '_menu_item_type', 'post_type'),
(4866, 4105, '_menu_item_menu_item_parent', '3855'),
(4867, 4105, '_menu_item_object_id', '4019'),
(4868, 4105, '_menu_item_object', 'page'),
(4869, 4105, '_menu_item_target', ''),
(4870, 4105, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4871, 4105, '_menu_item_xfn', ''),
(4872, 4105, '_menu_item_url', ''),
(4874, 4105, 'menu-item-mfn-megamenu', ''),
(4875, 4105, 'menu-item-mfn-bg', ''),
(4876, 142, '_edit_lock', '1478597029:1'),
(4877, 301, '_edit_lock', '1478597029:1'),
(4878, 4106, '_wp_attached_file', '2016/10/Yee-Kok-Hong-1.jpg'),
(4879, 4106, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:749;s:4:"file";s:26:"2016/10/Yee-Kok-Hong-1.jpg";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"Yee-Kok-Hong-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"Yee-Kok-Hong-1-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"Yee-Kok-Hong-1-97x146.jpg";s:5:"width";i:97;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"Yee-Kok-Hong-1-33x50.jpg";s:5:"width";i:33;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:24:"Yee-Kok-Hong-1-50x75.jpg";s:5:"width";i:50;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"Yee-Kok-Hong-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"Yee-Kok-Hong-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:26:"Yee-Kok-Hong-1-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:26:"Yee-Kok-Hong-1-500x480.jpg";s:5:"width";i:500;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4888, 4114, '_wp_attached_file', '2016/10/carbonfootprint.jpg'),
(4889, 4114, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:27:"2016/10/carbonfootprint.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"carbonfootprint-150x150.jpg";s:5:"width";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:"carbonfootprint-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"carbonfootprint-219x146.jpg";s:5:"width";i:219;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:25:"carbonfootprint-50x33.jpg";s:5:"width";i:50;s:6:"height";i:33;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:26:"carbonfootprint-113x75.jpg";s:5:"width";i:113;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:25:"carbonfootprint-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:25:"carbonfootprint-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4890, 4115, '_wp_attached_file', '2016/10/waterreclamation.jpg'),
(4891, 4115, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:28:"2016/10/waterreclamation.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"waterreclamation-150x150.jpg";s:5:"width";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:"waterreclamation-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:28:"waterreclamation-219x146.jpg";s:5:"width";i:219;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:26:"waterreclamation-50x33.jpg";s:5:"width";i:50;s:6:"height";i:33;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:27:"waterreclamation-113x75.jpg";s:5:"width";i:113;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:26:"waterreclamation-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:26:"waterreclamation-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4892, 4023, '_thumbnail_id', '4115'),
(4895, 4046, '_thumbnail_id', '4114'),
(4898, 4116, '_wp_attached_file', '2016/10/shared.jpg'),
(4899, 4116, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:18:"2016/10/shared.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"shared-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"shared-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:18:"shared-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:16:"shared-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:17:"shared-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:16:"shared-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:16:"shared-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4900, 4117, '_wp_attached_file', '2016/07/ourbusiness.jpg'),
(4901, 4117, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:23:"2016/07/ourbusiness.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"ourbusiness-150x150.jpg";s:5:"width";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:"ourbusiness-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"ourbusiness-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:21:"ourbusiness-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:22:"ourbusiness-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:21:"ourbusiness-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:21:"ourbusiness-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4902, 4118, '_wp_attached_file', '2016/10/gis.jpg'),
(4903, 4118, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:15:"2016/10/gis.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"gis-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"gis-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:15:"gis-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:13:"gis-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:14:"gis-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:13:"gis-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:13:"gis-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4904, 4120, '_wp_attached_file', '2016/10/meetppl.jpg'),
(4905, 4120, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:19:"2016/10/meetppl.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"meetppl-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"meetppl-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"meetppl-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"meetppl-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:18:"meetppl-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:17:"meetppl-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:18:"meetppl-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:17:"meetppl-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:17:"meetppl-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:20:"meetppl-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:20:"meetppl-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:19:"meetppl-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:19:"meetppl-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:20:"meetppl-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(4906, 4121, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(4907, 4121, '_edit_lock', '1480049985:1'),
(4908, 4121, '_edit_last', '1'),
(4912, 4121, '_wp_page_template', 'default'),
(4913, 4121, 'slide_template', 'default'),
(4914, 4121, 'mfn-page-items', 'a:6:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:9:"aquasmart";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/3";s:6:"fields";a:16:{s:3:"src";s:97:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Aquasmart_images.jpg";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:0:"";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:173:"<b>Aqua SMART</b> – Within our water business we aim to use several treatment processes to turn raw water or industrial wastewater into safe and wholesome drinking water.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:3:"GIS";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:226:"<b>GIS (Geographic Information System)</b> – It is essentially used as a system designed to analyze, evaluate and present all types of spatial or geographical data in relation to our assets within the water supply industry.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:2;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:3:"DAF";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:388:"<b>DAF (Dissolve Air Flotation)</b> – A water treatment process that filters wastewaters through the removal of suspended substances such as oil or solids. Our clarifier/ filter is designed based on ‘zero velocity’ water distribution and recovery concept. Its main function is to produce high quality filtrated water at high flows whilst minimizing the use of hydraulic turbulence.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:3;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:4:"CCGT";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:353:"<b>CCGT ( Combined Cycle Gas Turbine )</b> - A power plant which uses both a gas and a steam turbine, to produce up to 50 percent more electricity from the same fuel, as oppose to a traditional simple-cycle plant. The excess heat produced from the gas turbine is then transmitted to the nearby steam turbine, which ultimately generates more electricity.";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:4;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:4:"APMC";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:275:"<b>APMC (Advance Pressure Management and Control ) </b>- An innovative system designed to adjust and control the pressure of water going into a District Metering Area. It is implemented to reduce the pressure of water without affecting service levels during off peak demand.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:5;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:3:"SBR";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:389:"<b>SBR ( Sequential Batch Reactor ) </b>- It is often described as an activated sludge process designed to operate under non-steady state conditions. There is a degree of flexibility associated with Sequential Batch Reactors as it carries out functions of equalization aeration and sedimentation in a time sequence, as oppose to the conventional space sequence of continuous-flow systems.\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(4915, 4121, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Aquasmart_images.jpg" alt="aquasmart_images"/>\n\n<b>Aqua SMART</b> – Within our water business we aim to use several treatment processes to turn raw water or industrial wastewater into safe and wholesome drinking water.\n\nno-repeat;center top;;\n\n<b>GIS (Geographic Information System)</b> – It is essentially used as a system designed to analyze, evaluate and present all types of spatial or geographical data in relation to our assets within the water supply industry.\n\nno-repeat;center top;;\n\n<b>DAF (Dissolve Air Flotation)</b> – A water treatment process that filters wastewaters through the removal of suspended substances such as oil or solids. Our clarifier/ filter is designed based on ‘zero velocity’ water distribution and recovery concept. Its main function is to produce high quality filtrated water at high flows whilst minimizing the use of hydraulic turbulence.\n\nno-repeat;center top;;\n\n<b>CCGT ( Combined Cycle Gas Turbine )</b> - A power plant which uses both a gas and a steam turbine, to produce up to 50 percent more electricity from the same fuel, as oppose to a traditional simple-cycle plant. The excess heat produced from the gas turbine is then transmitted to the nearby steam turbine, which ultimately generates more electricity.\n\nno-repeat;center top;;\n\n<b>APMC (Advance Pressure Management and Control ) </b>- An innovative system designed to adjust and control the pressure of water going into a District Metering Area. It is implemented to reduce the pressure of water without affecting service levels during off peak demand.\n\nno-repeat;center top;;\n\n<b>SBR ( Sequential Batch Reactor ) </b>- It is often described as an activated sludge process designed to operate under non-steady state conditions. There is a degree of flexibility associated with Sequential Batch Reactors as it carries out functions of equalization aeration and sedimentation in a time sequence, as oppose to the conventional space sequence of continuous-flow systems.\n\nno-repeat;center top;;\n\n'),
(4916, 4121, 'mfn-post-hide-content', '0'),
(4917, 4121, 'mfn-post-slider', '0'),
(4918, 4121, 'mfn-post-slider-layer', '0'),
(4919, 4121, 'mfn-post-hide-title', '0'),
(4920, 4121, 'mfn-post-remove-padding', '0'),
(4921, 4121, 'mfn-post-custom-layout', '0'),
(4922, 4121, 'mfn-meta-seo-title', 'Our Technology'),
(4923, 4121, 'mfn-meta-seo-description', 'Our Technology'),
(4924, 4121, 'mfn-meta-seo-keywords', 'Our Technology'),
(4925, 4121, 'mfn-post-one-page', '0'),
(4926, 4121, 'mfn-post-menu', '0'),
(4927, 4121, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(4928, 4121, '_wpb_vc_js_status', 'false'),
(4931, 4127, '_wp_attached_file', '2016/11/technology.jpg'),
(4932, 4127, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:22:"2016/11/technology.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"technology-150x150.jpg";s:5:"width";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:"technology-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"technology-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"technology-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"technology-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"technology-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"technology-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"technology-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"technology-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"technology-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"technology-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"technology-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"technology-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"technology-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(4934, 4129, '_wp_attached_file', '2016/11/DISSOLVED-AIR-FLOATATION-DAF.jpg'),
(4935, 4129, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:40:"2016/11/DISSOLVED-AIR-FLOATATION-DAF.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:40:"DISSOLVED-AIR-FLOATATION-DAF-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:40:"DISSOLVED-AIR-FLOATATION-DAF-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:40:"DISSOLVED-AIR-FLOATATION-DAF-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:38:"DISSOLVED-AIR-FLOATATION-DAF-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:39:"DISSOLVED-AIR-FLOATATION-DAF-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:38:"DISSOLVED-AIR-FLOATATION-DAF-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:38:"DISSOLVED-AIR-FLOATATION-DAF-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4940, 4131, '_wp_attached_file', '2016/10/yee_sml-1.jpg'),
(4941, 4131, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:441;s:6:"height";i:484;s:4:"file";s:21:"2016/10/yee_sml-1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"yee_sml-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"yee_sml-1-273x300.jpg";s:5:"width";i:273;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"yee_sml-1-133x146.jpg";s:5:"width";i:133;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"yee_sml-1-46x50.jpg";s:5:"width";i:46;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:19:"yee_sml-1-68x75.jpg";s:5:"width";i:68;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"yee_sml-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"yee_sml-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:21:"yee_sml-1-441x480.jpg";s:5:"width";i:441;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4958, 4142, '_wp_attached_file', '2016/10/sharedexpert.jpg'),
(4959, 4142, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:24:"2016/10/sharedexpert.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"sharedexpert-150x150.jpg";s:5:"width";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:"sharedexpert-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"sharedexpert-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"sharedexpert-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"sharedexpert-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"sharedexpert-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"sharedexpert-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"sharedexpert-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"sharedexpert-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:25:"sharedexpert-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"sharedexpert-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:24:"sharedexpert-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:24:"sharedexpert-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"sharedexpert-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(4960, 4143, '_wp_attached_file', '2016/07/ourtechnology_hdr.jpg'),
(4961, 4143, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:29:"2016/07/ourtechnology_hdr.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"ourtechnology_hdr-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"ourtechnology_hdr-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"ourtechnology_hdr-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:27:"ourtechnology_hdr-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:28:"ourtechnology_hdr-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:27:"ourtechnology_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:27:"ourtechnology_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5014, 4154, '_wp_attached_file', '2016/11/notice.egm_.gif'),
(5015, 4154, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:484;s:6:"height";i:155;s:4:"file";s:23:"2016/11/notice.egm_.gif";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"notice.egm_-150x150.gif";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/gif";}s:6:"medium";a:4:{s:4:"file";s:22:"notice.egm_-300x96.gif";s:5:"width";i:300;s:6:"height";i:96;s:9:"mime-type";s:9:"image/gif";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"notice.egm_-260x83.gif";s:5:"width";i:260;s:6:"height";i:83;s:9:"mime-type";s:9:"image/gif";}s:5:"50x50";a:4:{s:4:"file";s:21:"notice.egm_-50x16.gif";s:5:"width";i:50;s:6:"height";i:16;s:9:"mime-type";s:9:"image/gif";}s:14:"clients-slider";a:4:{s:4:"file";s:22:"notice.egm_-150x48.gif";s:5:"width";i:150;s:6:"height";i:48;s:9:"mime-type";s:9:"image/gif";}s:12:"testimonials";a:4:{s:4:"file";s:21:"notice.egm_-85x85.gif";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/gif";}s:9:"blog-navi";a:4:{s:4:"file";s:21:"notice.egm_-80x80.gif";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/gif";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5016, 4155, '_wp_attached_file', '2016/11/notice_egm_.gif'),
(5017, 4155, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:318;s:6:"height";i:308;s:4:"file";s:23:"2016/11/notice_egm_.gif";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"notice_egm_-150x150.gif";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/gif";}s:6:"medium";a:4:{s:4:"file";s:23:"notice_egm_-300x291.gif";s:5:"width";i:300;s:6:"height";i:291;s:9:"mime-type";s:9:"image/gif";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"notice_egm_-151x146.gif";s:5:"width";i:151;s:6:"height";i:146;s:9:"mime-type";s:9:"image/gif";}s:5:"50x50";a:4:{s:4:"file";s:21:"notice_egm_-50x48.gif";s:5:"width";i:50;s:6:"height";i:48;s:9:"mime-type";s:9:"image/gif";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"notice_egm_-77x75.gif";s:5:"width";i:77;s:6:"height";i:75;s:9:"mime-type";s:9:"image/gif";}s:12:"testimonials";a:4:{s:4:"file";s:21:"notice_egm_-85x85.gif";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/gif";}s:9:"blog-navi";a:4:{s:4:"file";s:21:"notice_egm_-80x80.gif";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/gif";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5020, 4159, '_wp_attached_file', '2016/05/technology.jpg'),
(5021, 4159, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:22:"2016/05/technology.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"technology-150x150.jpg";s:5:"width";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:"technology-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"technology-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"technology-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"technology-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"technology-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"technology-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"technology-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"technology-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"technology-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"technology-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"technology-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"technology-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"technology-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(5022, 4160, '_wp_attached_file', '2016/05/ourtechnology_hdr.jpg'),
(5023, 4160, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:29:"2016/05/ourtechnology_hdr.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"ourtechnology_hdr-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"ourtechnology_hdr-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"ourtechnology_hdr-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:27:"ourtechnology_hdr-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:28:"ourtechnology_hdr-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:27:"ourtechnology_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:27:"ourtechnology_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5024, 4161, '_wp_attached_file', '2016/05/technology-1.jpg'),
(5025, 4161, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:24:"2016/05/technology-1.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"technology-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"technology-1-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"technology-1-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"technology-1-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"technology-1-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"technology-1-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"technology-1-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"technology-1-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"technology-1-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:25:"technology-1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"technology-1-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:24:"technology-1-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:24:"technology-1-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"technology-1-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(5026, 4162, '_wp_attached_file', '2016/04/bod_24112016.jpg'),
(5027, 4162, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:24:"2016/04/bod_24112016.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"bod_24112016-150x150.jpg";s:5:"width";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:"bod_24112016-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"bod_24112016-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"bod_24112016-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"bod_24112016-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"bod_24112016-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"bod_24112016-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"bod_24112016-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"bod_24112016-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:25:"bod_24112016-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"bod_24112016-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:24:"bod_24112016-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:24:"bod_24112016-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"bod_24112016-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(5075, 4177, '_wp_attached_file', '2016/08/whisteblowing.jpg'),
(5076, 4177, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:25:"2016/08/whisteblowing.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"whisteblowing-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"whisteblowing-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"whisteblowing-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"whisteblowing-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:24:"whisteblowing-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"whisteblowing-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"whisteblowing-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5077, 4178, '_wp_attached_file', '2016/08/ourtechnology_hdr.jpg') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5078, 4178, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:29:"2016/08/ourtechnology_hdr.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"ourtechnology_hdr-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"ourtechnology_hdr-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"ourtechnology_hdr-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:27:"ourtechnology_hdr-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:28:"ourtechnology_hdr-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:27:"ourtechnology_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:27:"ourtechnology_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5079, 4179, '_wp_attached_file', '2016/08/technology.jpg'),
(5080, 4179, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:22:"2016/08/technology.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"technology-150x150.jpg";s:5:"width";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:"technology-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"technology-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"technology-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"technology-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"technology-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"technology-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"technology-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"technology-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"technology-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"technology-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"technology-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"technology-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"technology-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(5081, 4183, '_wp_attached_file', '2016/10/technology_hdr.jpg'),
(5082, 4183, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:26:"2016/10/technology_hdr.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"technology_hdr-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"technology_hdr-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"technology_hdr-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"technology_hdr-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"technology_hdr-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"technology_hdr-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"technology_hdr-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"technology_hdr-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"technology_hdr-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:27:"technology_hdr-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"technology_hdr-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:26:"technology_hdr-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:26:"technology_hdr-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"technology_hdr-1200x350.jpg";s:5:"width";i:1200;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:{}}}'),
(5083, 125, '_thumbnail_id', '4179'),
(5084, 4184, '_wp_attached_file', '2016/05/DISSOLVED-AIR-FLOATATION-DAF.jpg'),
(5085, 4184, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:390;s:6:"height";i:200;s:4:"file";s:40:"2016/05/DISSOLVED-AIR-FLOATATION-DAF.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:40:"DISSOLVED-AIR-FLOATATION-DAF-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:40:"DISSOLVED-AIR-FLOATATION-DAF-300x154.jpg";s:5:"width";i:300;s:6:"height";i:154;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:40:"DISSOLVED-AIR-FLOATATION-DAF-260x133.jpg";s:5:"width";i:260;s:6:"height";i:133;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:38:"DISSOLVED-AIR-FLOATATION-DAF-50x26.jpg";s:5:"width";i:50;s:6:"height";i:26;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:39:"DISSOLVED-AIR-FLOATATION-DAF-146x75.jpg";s:5:"width";i:146;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:38:"DISSOLVED-AIR-FLOATATION-DAF-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:38:"DISSOLVED-AIR-FLOATATION-DAF-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5086, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5087, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5088, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5089, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5090, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5091, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5092, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5093, 4185, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5094, 4185, '_wp_page_template', 'default'),
(5095, 4185, 'slide_template', ''),
(5096, 4185, 'mfn-post-hide-content', '0'),
(5097, 4185, 'mfn-post-custom-layout', '0'),
(5098, 4185, 'mfn-post-slider', '0'),
(5099, 4185, 'mfn-post-slider-layer', '0'),
(5100, 4185, 'mfn-post-menu', '0'),
(5101, 4185, 'mfn-post-one-page', '0'),
(5102, 4185, 'mfn-post-hide-title', '0'),
(5103, 4185, 'mfn-post-remove-padding', '0'),
(5104, 4185, 'mfn-page-items-seo', 'EqXpeDgeB_0\n\n700\n\n400\n\nUlpQFv9j18E\n\n700\n\n400\n\n'),
(5105, 4185, 'mfn-post-sidebar', '0'),
(5106, 4185, 'mfn-post-sidebar2', '0'),
(5107, 4185, '_wpb_vc_js_status', 'false'),
(5108, 4185, 'mfn-post-subheader-image', ''),
(5109, 4185, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/2";s:6:"fields";a:9:{s:5:"video";s:11:"EqXpeDgeB_0";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:5:"video";s:4:"size";s:3:"1/2";s:6:"fields";a:9:{s:5:"video";s:11:"UlpQFv9j18E";s:10:"parameters";s:0:"";s:3:"mp4";s:0:"";s:3:"ogv";s:0:"";s:11:"placeholder";s:0:"";s:16:"html5_parameters";s:0:"";s:5:"width";s:3:"700";s:6:"height";s:3:"400";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5110, 4185, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(5111, 4185, 'mfn-meta-seo-keywords', 'Ranhill'),
(5112, 4185, 'mfn-meta-seo-title', 'Ranhill '),
(5113, 4185, 'mfn-meta-seo-description', 'Video'),
(5114, 4185, '_thumbnail_id', '3699'),
(5116, 4185, '_dp_original', '3832'),
(5117, 4185, '_edit_lock', '1480405306:1'),
(5118, 4186, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5119, 4186, '_edit_lock', '1548724388:1'),
(5120, 4186, '_edit_last', '1'),
(5121, 4187, '_wp_attached_file', '2016/12/Media-release_MOU-IWK.pdf'),
(5124, 4186, 'slide_template', 'default'),
(5125, 4186, 'mfn-post-hide-content', '0'),
(5126, 4186, 'mfn-post-slider', '0'),
(5127, 4186, 'mfn-post-slider-layer', '0'),
(5128, 4186, 'mfn-post-hide-title', '1'),
(5129, 4186, 'mfn-post-remove-padding', '0'),
(5130, 4186, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(5131, 4186, 'mfn-meta-seo-title', 'Ranhill signs MOU with IWK '),
(5132, 4186, 'mfn-meta-seo-description', 'Ranhill signs MOU with IWK '),
(5133, 4186, 'mfn-meta-seo-keywords', 'Ranhill signs MOU with IWK '),
(5134, 4186, 'mfn-post-hide-image', '0'),
(5135, 4186, 'mfn-post-love', '0'),
(5140, 4190, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5141, 4190, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5142, 4190, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5143, 4190, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5144, 4190, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5145, 4190, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5146, 4190, '_thumbnail_id', '4569'),
(5147, 4190, '_wp_page_template', 'default'),
(5148, 4190, 'slide_template', 'default'),
(5149, 4190, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:94:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/Loong-Mei-Yin.jpg";s:5:"title";s:13:"LOONG MEI YIN";s:8:"subtitle";s:42:"Non Independent and Non Executive Director";s:5:"phone";s:0:"";s:7:"content";s:1976:"<h5>LOONG MEI YIN, aged 48, was appointed to our Board as a Non Independent and Non Executive Director on 16 November 2016.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Strategy And Investment Committee (Member) </li> \n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Science degree, majoring in Accounting, Finance and Computer Science from Monash University, Australia</li>\n  <li>Chartered Financial Analyst (CFA) charter holder</li> \n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\nLoong Mei Yin is the Deputy CEO and a co-founder of TAEL\nPartners Ltd, a regional ASEAN-centric private equity firm\nestablished in 2007. She brings with her more than 20 years\nof financial industry experience, in areas of private equity and\ninvestment banking. She started her career in banking in 1992\nwith a commercial bank, and subsequently joined Schroders\nMalaysia in 1994. During her tenure with Schroders, she led the\nexecution of domestic/ cross-border debt and equity capital\nmarket transactions for a diverse base of business groups.\nLoong joined United Overseas Bank in 1999 and her last\nposition was Executive Director with UOB Asia in 2007. After\nbeing part of the Malaysian capital markets team, she went on\nto spearhead the Thai investment banking team. During this\nperiod, she was instrumental in partnering with Thai families\nto consolidate their business platforms and drive growth and\nexpansion.\n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Nil</li>\n</ul>\n\n<p style="margin-bottom:4px">Note:</p>\n<p><i>* Excluded 1 board meeting held which she had abstained from attending due\nto her interest on the related party proposal</i></p>\n<p>\n  <i>Loong Mei Yin is a corporate representative of Cheval Infrastructure Fund L.P\n(acting via its general partner, TAEL Management Co. (Cayman Ltd) (“Cheval”) on\nthe board of Ranhill. Cheval is presently a Major Shareholder of Ranhill.\n </i>\n</p>\n\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5150, 4190, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/Loong-Mei-Yin.jpg" alt="loong-mei-yin"/>\n\nLOONG MEI YIN\n\nNon Independent and Non Executive Director\n\n<h5>LOONG MEI YIN, aged 48, was appointed to our Board as a Non Independent and Non Executive Director on 16 November 2016.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Strategy And Investment Committee (Member) </li> \r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Science degree, majoring in Accounting, Finance and Computer Science from Monash University, Australia</li>\r\n  <li>Chartered Financial Analyst (CFA) charter holder</li> \r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\nLoong Mei Yin is the Deputy CEO and a co-founder of TAEL\r\nPartners Ltd, a regional ASEAN-centric private equity firm\r\nestablished in 2007. She brings with her more than 20 years\r\nof financial industry experience, in areas of private equity and\r\ninvestment banking. She started her career in banking in 1992\r\nwith a commercial bank, and subsequently joined Schroders\r\nMalaysia in 1994. During her tenure with Schroders, she led the\r\nexecution of domestic/ cross-border debt and equity capital\r\nmarket transactions for a diverse base of business groups.\r\nLoong joined United Overseas Bank in 1999 and her last\r\nposition was Executive Director with UOB Asia in 2007. After\r\nbeing part of the Malaysian capital markets team, she went on\r\nto spearhead the Thai investment banking team. During this\r\nperiod, she was instrumental in partnering with Thai families\r\nto consolidate their business platforms and drive growth and\r\nexpansion.\r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Nil</li>\r\n</ul>\r\n\r\n<p style="margin-bottom:4px">Note:</p>\r\n<p><i>* Excluded 1 board meeting held which she had abstained from attending due\r\nto her interest on the related party proposal</i></p>\r\n<p>\r\n  <i>Loong Mei Yin is a corporate representative of Cheval Infrastructure Fund L.P\r\n(acting via its general partner, TAEL Management Co. (Cayman Ltd) (“Cheval”) on\r\nthe board of Ranhill. Cheval is presently a Major Shareholder of Ranhill.\r\n </i>\r\n</p>\n\nhorizontal\n\nbod-details\n\n'),
(5151, 4190, 'mfn-post-hide-content', '0'),
(5152, 4190, 'mfn-post-slider', '0'),
(5153, 4190, 'mfn-post-slider-layer', '0'),
(5154, 4190, 'mfn-post-custom-layout', '0'),
(5155, 4190, 'mfn-post-one-page', '0'),
(5156, 4190, 'mfn-post-hide-title', '0'),
(5157, 4190, 'mfn-post-remove-padding', '0'),
(5158, 4190, 'mfn-post-menu', '0'),
(5159, 4190, '_wpb_vc_js_status', 'false'),
(5161, 4190, 'mfn-meta-seo-title', 'LOONG MEI YIN'),
(5162, 4190, 'mfn-meta-seo-description', 'LOONG MEI YIN'),
(5163, 4190, 'mfn-meta-seo-keywords', 'LOONG MEI YIN'),
(5164, 4190, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(5165, 4190, '_dp_original', '288'),
(5166, 4190, '_edit_lock', '1537416662:1'),
(5167, 4190, '_edit_last', '1'),
(5168, 4192, '_wp_attached_file', '2016/04/Loong-Mei-Yin.jpg'),
(5169, 4192, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:25:"2016/04/Loong-Mei-Yin.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"Loong-Mei-Yin-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"Loong-Mei-Yin-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"Loong-Mei-Yin-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"Loong-Mei-Yin-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"Loong-Mei-Yin-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5170, 4195, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5171, 4195, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5172, 4195, '_thumbnail_id', '4120'),
(5173, 4195, '_wp_page_template', 'default'),
(5174, 4195, 'slide_template', 'default'),
(5175, 4195, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/3";s:6:"fields";a:16:{s:3:"src";s:101:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/RMS-Sivasubramaniyam.jpg";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:0:"";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"2/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:1545:"<h4> RMS Sivasubramaniyam</h4>\n[divider height="30"]\n\n<strong>Why choose Ranhill?</strong><br/>\nRanhill is the best place to work simply because I love the people I work beside. They are my family; immaterial of status, gender, ethnic or position. My co-workers and Management team are social, knowledgeable, supportive and caring. Ranhill has given me so much in life that, amongst others, has paid me well and I just love the job I do.\n [divider height="20"]\n\n <b>Which dept are you attached to and your job description?</b><br/>\nPresently, attached to Business Development in the power division, working along colleagues of dynamic mix of characters, style, traits and personality. My job description summarized elongates from reviewing technical proposals for power-related project/participating in tender submissions, networking with other power players, facilitation on project development activities to staff development in teaching English. [divider height="20"]\n\n <b>What is the best part of your job?</b><br/>\nThe boundaryless career that allows room for self-development with 360-degree feedback from multiple stakeholders, the personality and work ethics of people I work with ranging from Senior Management to Administration staff, and the working hours in relation to Work-Life balance.  [divider height="20"]\n<b>How do you find the work culture and environment in Ranhill?</b><br/>\nIt’s a mixed race work culture that promotes 1 Malaysia concept. The working environment is regarded as employee-friendly, safe and conducive. ";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5176, 4195, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/RMS-Sivasubramaniyam.jpg" alt="rms-sivasubramaniyam"/>\n\n<h4> RMS Sivasubramaniyam</h4>\r\n[divider height="30"]\r\n\r\n<strong>Why choose Ranhill?</strong><br/>\r\nRanhill is the best place to work simply because I love the people I work beside. They are my family; immaterial of status, gender, ethnic or position. My co-workers and Management team are social, knowledgeable, supportive and caring. Ranhill has given me so much in life that, amongst others, has paid me well and I just love the job I do.\r\n [divider height="20"]\r\n\r\n <b>Which dept are you attached to and your job description?</b><br/>\r\nPresently, attached to Business Development in the power division, working along colleagues of dynamic mix of characters, style, traits and personality. My job description summarized elongates from reviewing technical proposals for power-related project/participating in tender submissions, networking with other power players, facilitation on project development activities to staff development in teaching English. [divider height="20"]\r\n\r\n <b>What is the best part of your job?</b><br/>\r\nThe boundaryless career that allows room for self-development with 360-degree feedback from multiple stakeholders, the personality and work ethics of people I work with ranging from Senior Management to Administration staff, and the working hours in relation to Work-Life balance.  [divider height="20"]\r\n<b>How do you find the work culture and environment in Ranhill?</b><br/>\r\nIt’s a mixed race work culture that promotes 1 Malaysia concept. The working environment is regarded as employee-friendly, safe and conducive.\n\nno-repeat;center top;;\n\n'),
(5177, 4195, 'mfn-post-hide-content', '0'),
(5178, 4195, 'mfn-post-slider', '0'),
(5179, 4195, 'mfn-post-slider-layer', '0'),
(5180, 4195, 'mfn-post-hide-title', '0'),
(5181, 4195, 'mfn-post-remove-padding', '0'),
(5182, 4195, 'mfn-post-custom-layout', '0'),
(5183, 4195, 'mfn-meta-seo-title', ' RMS Sivasubramaniyam'),
(5184, 4195, 'mfn-meta-seo-description', ' RMS Sivasubramaniyam'),
(5185, 4195, 'mfn-meta-seo-keywords', ' RMS Sivasubramaniyam'),
(5186, 4195, 'mfn-post-one-page', '0'),
(5187, 4195, 'mfn-post-menu', '0'),
(5188, 4195, 'mfn-post-css', '@media only screen and (max-width: 479px){\r\n#Subheader .title{\r\n    font-size: 20px;}}\r\n\r\n#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;\r\n    font-size: 50px;}'),
(5189, 4195, '_wpb_vc_js_status', 'false'),
(5190, 4195, '_dp_original', '4095'),
(5191, 4196, '_wp_attached_file', '2016/10/RMS-Sivasubramaniyam.jpg'),
(5192, 4196, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:749;s:4:"file";s:32:"2016/10/RMS-Sivasubramaniyam.jpg";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"RMS-Sivasubramaniyam-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"RMS-Sivasubramaniyam-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"RMS-Sivasubramaniyam-97x146.jpg";s:5:"width";i:97;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:30:"RMS-Sivasubramaniyam-33x50.jpg";s:5:"width";i:33;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:30:"RMS-Sivasubramaniyam-50x75.jpg";s:5:"width";i:50;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:30:"RMS-Sivasubramaniyam-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:30:"RMS-Sivasubramaniyam-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:32:"RMS-Sivasubramaniyam-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:32:"RMS-Sivasubramaniyam-500x480.jpg";s:5:"width";i:500;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5193, 4197, '_wp_attached_file', '2016/10/RMS-Sivasubramaniyam_sml.jpg'),
(5194, 4197, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:441;s:6:"height";i:484;s:4:"file";s:36:"2016/10/RMS-Sivasubramaniyam_sml.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"RMS-Sivasubramaniyam_sml-150x150.jpg";s:5:"width";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:"RMS-Sivasubramaniyam_sml-273x300.jpg";s:5:"width";i:273;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:36:"RMS-Sivasubramaniyam_sml-133x146.jpg";s:5:"width";i:133;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:34:"RMS-Sivasubramaniyam_sml-46x50.jpg";s:5:"width";i:46;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:34:"RMS-Sivasubramaniyam_sml-68x75.jpg";s:5:"width";i:68;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:34:"RMS-Sivasubramaniyam_sml-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:34:"RMS-Sivasubramaniyam_sml-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:36:"RMS-Sivasubramaniyam_sml-441x480.jpg";s:5:"width";i:441;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5195, 4195, '_edit_lock', '1481867805:1'),
(5196, 4195, '_edit_last', '1'),
(5197, 4199, '_wp_attached_file', '2016/10/Lim-Poh-Ling-.jpg'),
(5198, 4199, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:467;s:6:"height";i:641;s:4:"file";s:25:"2016/10/Lim-Poh-Ling-.jpg";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"Lim-Poh-Ling--150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"Lim-Poh-Ling--219x300.jpg";s:5:"width";i:219;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"Lim-Poh-Ling--106x146.jpg";s:5:"width";i:106;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"Lim-Poh-Ling--36x50.jpg";s:5:"width";i:36;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"Lim-Poh-Ling--55x75.jpg";s:5:"width";i:55;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"Lim-Poh-Ling--85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"Lim-Poh-Ling--80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"Lim-Poh-Ling--467x500.jpg";s:5:"width";i:467;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"Lim-Poh-Ling--467x480.jpg";s:5:"width";i:467;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5211, 4207, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5212, 4207, '_edit_last', '1'),
(5213, 4207, '_edit_lock', '1484293912:1'),
(5216, 4207, 'slide_template', 'default'),
(5217, 4207, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";s:0:"";s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5218, 4207, 'mfn-page-items-seo', NULL),
(5219, 4207, 'mfn-post-hide-content', '0'),
(5220, 4207, 'mfn-post-slider', '0'),
(5221, 4207, 'mfn-post-slider-layer', '0'),
(5222, 4207, 'mfn-post-hide-title', '0'),
(5223, 4207, 'mfn-post-remove-padding', '0'),
(5224, 4207, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(5225, 4207, 'mfn-post-hide-image', '0'),
(5228, 4207, 'mfn-meta-seo-title', 'Audit Manager @Corporate Assurance Division'),
(5229, 4207, 'mfn-meta-seo-description', 'Audit Manager @Corporate Assurance Division'),
(5230, 4207, 'mfn-meta-seo-keywords', 'Audit Manager @Corporate Assurance Division'),
(5233, 4210, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5234, 4210, '_menu_item_type', 'custom'),
(5235, 4210, '_menu_item_menu_item_parent', '3853'),
(5236, 4210, '_menu_item_object_id', '4210'),
(5237, 4210, '_menu_item_object', 'custom'),
(5238, 4210, '_menu_item_target', ''),
(5239, 4210, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5240, 4210, '_menu_item_xfn', ''),
(5241, 4210, '_menu_item_url', 'http://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/'),
(5243, 4210, 'menu-item-mfn-megamenu', ''),
(5244, 4210, 'menu-item-mfn-bg', ''),
(5257, 4212, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5258, 4212, '_menu_item_type', 'post_type'),
(5259, 4212, '_menu_item_menu_item_parent', '0'),
(5260, 4212, '_menu_item_object_id', '3609'),
(5261, 4212, '_menu_item_object', 'page'),
(5262, 4212, '_menu_item_target', ''),
(5263, 4212, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5264, 4212, '_menu_item_xfn', ''),
(5265, 4212, '_menu_item_url', ''),
(5267, 4212, 'menu-item-mfn-megamenu', ''),
(5268, 4212, 'menu-item-mfn-bg', ''),
(5269, 4207, 'mfn-post-love', '0'),
(5273, 4217, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5274, 4218, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5275, 4218, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5276, 4218, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5277, 4218, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5278, 4218, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5279, 4218, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5280, 4218, '_wp_page_template', 'default'),
(5281, 4218, '_wp_page_template', 'default'),
(5282, 4218, 'mfn-post-hide-content', '0'),
(5283, 4218, 'mfn-post-hide-content', '0'),
(5284, 4218, 'mfn-post-slider', 'staging'),
(5285, 4218, 'mfn-post-slider', 'staging'),
(5286, 4218, 'mfn-post-slider-layer', '0'),
(5287, 4218, 'mfn-post-slider-layer', '0'),
(5288, 4218, 'mfn-post-custom-layout', '43'),
(5289, 4218, 'mfn-post-custom-layout', '43'),
(5290, 4218, 'mfn-post-one-page', '0'),
(5291, 4218, 'mfn-post-one-page', '0'),
(5292, 4218, 'mfn-post-hide-title', '0'),
(5293, 4218, 'mfn-post-hide-title', '0'),
(5294, 4218, 'mfn-post-remove-padding', '0'),
(5295, 4218, 'mfn-post-remove-padding', '0'),
(5296, 4218, 'mfn-post-menu', '3'),
(5297, 4218, 'mfn-post-menu', '3'),
(5298, 4218, 'slide_template', 'default'),
(5299, 4218, 'slide_template', 'default'),
(5300, 4218, 'mfn-page-items-seo', 'Our Business\n\n<h2 style="margin-bottom: 0px;">Our Business</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/ourbusiness.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/our-business/">Read more</a>\n\nno-repeat;center top;;\n\nSharing Our Expertise\n\n<h2 style="margin-bottom: 0px;">Sharing Our Expertise</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/shareexpertise.jpg" border="0"]\r\n[divider height="15"]\r\n <a href="http://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/" >Read more</a>\n\nno-repeat;center top;;\n\nTechnology\n\n<h2 style="margin-bottom: 0px;">Our  Technology</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/ourtechnology_hdr.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/">Read more</a>\n\nno-repeat;center top;;\n\n40\n\ndefault\n\nShare\n\n<h2 style="margin-bottom: 0px;">Share Information</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n<iframe src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250px" scrolling="no" frameborder="0"></iframe>[divider height="15"]\n\nno-repeat;center top;;\n\nMeet Our People\n\n<h2 style="margin-bottom: 0px;">Meet Our People</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetourpeople.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/meet-our-people/">Read more</a>\n\nno-repeat;center top;;\n\nwhistleblowing\n\n<h2 style="margin-bottom: 0px;">Whistleblowing Channel</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/whisteblowing.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/whistleblowing/" >Read more</a>\n\nno-repeat;center top;;\n\n'),
(5301, 4218, 'mfn-page-items-seo', 'Our Business\n\n<h2 style="margin-bottom: 0px;">Our Business</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/ourbusiness.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/our-business/">Read more</a>\n\nno-repeat;center top;;\n\nSharing Our Expertise\n\n<h2 style="margin-bottom: 0px;">Sharing Our Expertise</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/shareexpertise.jpg" border="0"]\r\n[divider height="15"]\r\n <a href="http://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/" >Read more</a>\n\nno-repeat;center top;;\n\nTechnology\n\n<h2 style="margin-bottom: 0px;">Our  Technology</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/ourtechnology_hdr.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/">Read more</a>\n\nno-repeat;center top;;\n\n40\n\ndefault\n\nShare\n\n<h2 style="margin-bottom: 0px;">Share Information</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n<iframe src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250px" scrolling="no" frameborder="0"></iframe>[divider height="15"]\n\nno-repeat;center top;;\n\nMeet Our People\n\n<h2 style="margin-bottom: 0px;">Meet Our People</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetourpeople.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/meet-our-people/">Read more</a>\n\nno-repeat;center top;;\n\nwhistleblowing\n\n<h2 style="margin-bottom: 0px;">Whistleblowing Channel</h2>\r\n[divider height="10"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\r\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/whisteblowing.jpg" border="0"]\r\n[divider height="15"]\r\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/whistleblowing/" >Read more</a>\n\nno-repeat;center top;;\n\n'),
(5302, 4218, 'mfn-post-sidebar', '0'),
(5303, 4218, 'mfn-post-sidebar2', '0'),
(5304, 4218, '_wpb_vc_js_status', 'false'),
(5305, 4218, 'mfn-post-css', '#Top_bar #logo, .header-fixed #Top_bar #logo, .header-plain #Top_bar #logo, .header-transparent #Top_bar #logo {     height:170px; }\r\n\r\n.header-simple #Top_bar #menu {top: 40%;}'),
(5306, 4218, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:10:"full-width";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:7:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:12:"Our Business";s:7:"content";s:519:"<h2 style="margin-bottom: 0px;">Our Business</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/ourbusiness.jpg" border="0"]\n[divider height="15"]\n<a href="http://www.investors-watch.com/wp-staging/ranhill/our-business/">Read more</a>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:21:"Sharing Our Expertise";s:7:"content";s:544:"<h2 style="margin-bottom: 0px;">Sharing Our Expertise</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/shareexpertise.jpg" border="0"]\n[divider height="15"]\n <a href="http://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/" >Read more</a> \n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:10:"Technology";s:7:"content";s:552:"<h2 style="margin-bottom: 0px;">Our  Technology</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/ourtechnology_hdr.jpg" border="0"]\n[divider height="15"]\n<a href="http://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/">Read more</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:3;a:3:{s:4:"type";s:7:"divider";s:4:"size";s:3:"1/1";s:6:"fields";a:5:{s:6:"height";s:2:"40";s:5:"style";s:7:"default";s:4:"line";s:0:"";s:10:"themecolor";s:1:"0";s:7:"classes";s:0:"";}}i:4;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:5:"Share";s:7:"content";s:453:"<h2 style="margin-bottom: 0px;">Share Information</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n<iframe src="http://www.insage.com.my/IR/RANHILL/stockQuote.aspx" width="100%" height="250px" scrolling="no" frameborder="0"></iframe>[divider height="15"]\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:5;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:15:"Meet Our People";s:7:"content";s:528:"<h2 style="margin-bottom: 0px;">Meet Our People</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetourpeople.jpg" border="0"]\n[divider height="15"]\n<a href="http://www.investors-watch.com/wp-staging/ranhill/meet-our-people/">Read more</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:6;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:14:"whistleblowing";s:7:"content";s:544:"<h2 style="margin-bottom: 0px;">Whistleblowing Channel</h2>\n[divider height="10"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"]\n[image src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/whisteblowing.jpg" border="0"]\n[divider height="15"]\n<a href="http://www.investors-watch.com/wp-staging/ranhill/about-us/whistleblowing/" >Read more</a>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5308, 4218, 'mfn-meta-seo-title', 'Home'),
(5309, 4218, 'mfn-meta-seo-description', 'Home'),
(5310, 4218, 'mfn-meta-seo-keywords', 'Home'),
(5311, 4218, '_dp_original', '3753'),
(5312, 4217, '_edit_last', '1'),
(5313, 4217, '_edit_lock', '1488859318:1'),
(5314, 4219, '_wp_attached_file', '2017/01/Screen-Shot-2017-01-16-at-10.03.01-AM.png'),
(5315, 4219, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:542;s:6:"height";i:298;s:4:"file";s:49:"2017/01/Screen-Shot-2017-01-16-at-10.03.01-AM.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"Screen-Shot-2017-01-16-at-10.03.01-AM-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:49:"Screen-Shot-2017-01-16-at-10.03.01-AM-300x165.png";s:5:"width";i:300;s:6:"height";i:165;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:49:"Screen-Shot-2017-01-16-at-10.03.01-AM-260x143.png";s:5:"width";i:260;s:6:"height";i:143;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:47:"Screen-Shot-2017-01-16-at-10.03.01-AM-50x27.png";s:5:"width";i:50;s:6:"height";i:27;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:48:"Screen-Shot-2017-01-16-at-10.03.01-AM-136x75.png";s:5:"width";i:136;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:47:"Screen-Shot-2017-01-16-at-10.03.01-AM-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:47:"Screen-Shot-2017-01-16-at-10.03.01-AM-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5316, 4217, '_thumbnail_id', '4219'),
(5319, 4217, 'slide_template', 'default'),
(5320, 4217, 'mfn-post-hide-content', '0'),
(5321, 4217, 'mfn-post-slider', '0'),
(5322, 4217, 'mfn-post-slider-layer', '0'),
(5323, 4217, 'mfn-post-hide-title', '0'),
(5324, 4217, 'mfn-post-remove-padding', '0'),
(5325, 4217, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(5326, 4217, 'mfn-post-hide-image', '1'),
(5327, 4217, 'mfn-post-love', '0'),
(5330, 4221, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5331, 4221, '_menu_item_type', 'post_type'),
(5332, 4221, '_menu_item_menu_item_parent', '0'),
(5333, 4221, '_menu_item_object_id', '3539'),
(5334, 4221, '_menu_item_object', 'page') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5335, 4221, '_menu_item_target', ''),
(5336, 4221, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5337, 4221, '_menu_item_xfn', ''),
(5338, 4221, '_menu_item_url', ''),
(5340, 4221, 'menu-item-mfn-megamenu', ''),
(5341, 4221, 'menu-item-mfn-bg', ''),
(5348, 3539, '_jetpack_dont_email_post_to_subs', '1'),
(5349, 110, '_jetpack_dont_email_post_to_subs', '1'),
(5350, 123, '_jetpack_dont_email_post_to_subs', '1'),
(5351, 16, '_jetpack_dont_email_post_to_subs', '1'),
(5352, 4026, '_jetpack_dont_email_post_to_subs', '1'),
(5355, 4026, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/3";s:6:"fields";a:16:{s:3:"src";s:88:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws-pic.jpg";s:5:"width";s:0:"";s:6:"height";s:3:"400";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:84:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws.pdf";s:6:"target";s:1:"1";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:18:"The NRW specialist";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}i:1;a:3:{s:4:"type";s:5:"image";s:4:"size";s:3:"1/3";s:6:"fields";a:16:{s:3:"src";s:118:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/Screen-Shot-2017-01-16-at-10.03.01-AM.png";s:5:"width";s:0:"";s:6:"height";s:3:"400";s:5:"align";s:0:"";s:6:"border";s:1:"0";s:6:"margin";s:0:"";s:13:"margin_bottom";s:0:"";s:10:"link_image";s:0:"";s:4:"link";s:93:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/NRW Handbook.pdf";s:6:"target";s:1:"1";s:5:"hover";s:0:"";s:3:"alt";s:0:"";s:7:"caption";s:42:"The Manager’s Non-Revenue Water Handbook";s:9:"greyscale";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5356, 4026, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws-pic.jpg" alt="rws-pic"/>\n\n400\n\n<a href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws.pdf">http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws.pdf</a>\n\nThe NRW specialist\n\n<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/Screen-Shot-2017-01-16-at-10.03.01-AM.png" alt="Screen Shot 2017-01-16 at 10.03.01 AM"/>\n\n400\n\n<a href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/NRW Handbook.pdf">http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/NRW Handbook.pdf</a>\n\nThe Manager’s Non-Revenue Water Handbook\n\n'),
(5365, 129, '_jetpack_dont_email_post_to_subs', '1'),
(5366, 4229, '_menu_item_type', 'post_type'),
(5367, 4229, '_menu_item_menu_item_parent', '3648'),
(5368, 4229, '_menu_item_object_id', '3894'),
(5369, 4229, '_menu_item_object', 'page'),
(5370, 4229, '_menu_item_target', ''),
(5371, 4229, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5372, 4229, '_menu_item_xfn', ''),
(5373, 4229, '_menu_item_url', ''),
(5375, 4229, 'menu-item-mfn-megamenu', ''),
(5376, 4229, 'menu-item-mfn-bg', ''),
(5377, 3650, '_jetpack_dont_email_post_to_subs', '1'),
(5378, 3648, '_jetpack_dont_email_post_to_subs', '1'),
(5379, 3647, '_jetpack_dont_email_post_to_subs', '1'),
(5380, 3646, '_jetpack_dont_email_post_to_subs', '1'),
(5382, 4229, '_publicize_pending', '1'),
(5383, 3652, '_jetpack_dont_email_post_to_subs', '1'),
(5384, 3654, '_jetpack_dont_email_post_to_subs', '1'),
(5385, 3726, '_jetpack_dont_email_post_to_subs', '1'),
(5386, 3728, '_jetpack_dont_email_post_to_subs', '1'),
(5387, 3653, '_jetpack_dont_email_post_to_subs', '1'),
(5388, 3655, '_jetpack_dont_email_post_to_subs', '1'),
(5391, 3987, '_jetpack_dont_email_post_to_subs', '1'),
(5392, 3649, '_jetpack_dont_email_post_to_subs', '1'),
(5393, 3703, '_jetpack_dont_email_post_to_subs', '1'),
(5394, 3729, '_jetpack_dont_email_post_to_subs', '1'),
(5395, 3704, '_jetpack_dont_email_post_to_subs', '1'),
(5396, 3733, '_jetpack_dont_email_post_to_subs', '1'),
(5397, 4231, '_menu_item_type', 'post_type'),
(5398, 4231, '_menu_item_menu_item_parent', '3648'),
(5399, 4231, '_menu_item_object_id', '3797'),
(5400, 4231, '_menu_item_object', 'page'),
(5401, 4231, '_menu_item_target', ''),
(5402, 4231, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5403, 4231, '_menu_item_xfn', ''),
(5404, 4231, '_menu_item_url', ''),
(5406, 4231, 'menu-item-mfn-megamenu', ''),
(5407, 4231, 'menu-item-mfn-bg', ''),
(5408, 4229, '_jetpack_dont_email_post_to_subs', '1'),
(5409, 4231, '_publicize_pending', '1'),
(5410, 3797, '_jetpack_dont_email_post_to_subs', '1'),
(5411, 4234, '_wp_attached_file', '2017/04/logo_ranhill.png'),
(5412, 4234, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:209;s:4:"file";s:24:"2017/04/logo_ranhill.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"logo_ranhill-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"logo_ranhill-105x146.png";s:5:"width";i:105;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:22:"logo_ranhill-36x50.png";s:5:"width";i:36;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:22:"logo_ranhill-54x75.png";s:5:"width";i:54;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:22:"logo_ranhill-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"logo_ranhill-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5417, 4237, '_edit_last', '1'),
(5418, 4237, '_edit_lock', '1542166496:1'),
(5421, 4237, '_wp_page_template', 'default'),
(5422, 4237, 'slide_template', 'default'),
(5423, 4237, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:94:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/karim-big-img.jpg";s:5:"title";s:21:"DATUK ABDULLAH KARIM ";s:8:"subtitle";s:41:"Senior Independent Non-Executive Director";s:5:"phone";s:0:"";s:7:"content";s:2052:"<h5>DATUK ABDULLAH KARIM , aged 66, was appointed to our Board as Independent and Non Executive Director on 31 March 2017.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Nominating And Remuneration Committee (Member)</li>    \n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Science degree in Mechanical Engineering from the University of Western Australia</li>\n  <li>Diploma in Gas Engineering from the Illionis Institute of Technology, USA</li>\n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\nDatuk Abdullah Karim has over 39 years experience in the oil\nand gas (O&G) industry, having had a long career with Petroliam\nNasional Berhad (“PETRONAS”) which he joined in 1977. From\nJuly 2012 till his retirement in July 2016, he was Vice President\n(VP)/Venture Director, LNG Projects where he was tasked to\noversee the design and construction of two offshore Floating\nLNG Plants (FLNG); and the additional onshore LNG Plant\n(Train-9) in Bintulu, Sarawak.\n<br/><br/>\nDatuk Abdullah has also served as Project Engineer (1981) and\nGeneral Manager Engineering Division (1991) of PETRONAS\nCarigali Sdn Bhd . He became the Executive Assistant to the\nPresident of PETRONAS (1994) after which he was the MD/\nCEO of OGP Technical Services an Engineering and Project\nManagement subsidiary company of PETRONAS until 1999.\n<br/><br/>\nIn 1999, he became the MD/CEO of Malaysia LNG Group\nof Companies, responsible for marketing of LNG and the\noperations of PETRONAS LNG Complex in Bintulu. During his\ntenure, the Company had successfully built the additional third\nLNG Plant in the Complex.\n<br/><br/>\nHe was also VP, Exploration & Production Business (2004),\nbefore being appointed in 2007 as the MD/CEO of PETRONAS\nCarigali, a wholly owned subsidiary of PETRONAS involved in\nO&G exploration, development and production in Malaysia as\nwell as in 23 countries worldwide till 2012.\n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Icon Offshore Berhad</li>\n  <li>Uzma Berhad</li> \n</ul>\n\n";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5424, 4237, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/karim-big-img.jpg" alt="karim-big-img"/>\n\nDATUK ABDULLAH KARIM\n\nSenior Independent Non-Executive Director\n\n<h5>DATUK ABDULLAH KARIM , aged 66, was appointed to our Board as Independent and Non Executive Director on 31 March 2017.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Nominating And Remuneration Committee (Member)</li>    \r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Science degree in Mechanical Engineering from the University of Western Australia</li>\r\n  <li>Diploma in Gas Engineering from the Illionis Institute of Technology, USA</li>\r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\nDatuk Abdullah Karim has over 39 years experience in the oil\r\nand gas (O&G) industry, having had a long career with Petroliam\r\nNasional Berhad (“PETRONAS”) which he joined in 1977. From\r\nJuly 2012 till his retirement in July 2016, he was Vice President\r\n(VP)/Venture Director, LNG Projects where he was tasked to\r\noversee the design and construction of two offshore Floating\r\nLNG Plants (FLNG); and the additional onshore LNG Plant\r\n(Train-9) in Bintulu, Sarawak.\r\n<br/><br/>\r\nDatuk Abdullah has also served as Project Engineer (1981) and\r\nGeneral Manager Engineering Division (1991) of PETRONAS\r\nCarigali Sdn Bhd . He became the Executive Assistant to the\r\nPresident of PETRONAS (1994) after which he was the MD/\r\nCEO of OGP Technical Services an Engineering and Project\r\nManagement subsidiary company of PETRONAS until 1999.\r\n<br/><br/>\r\nIn 1999, he became the MD/CEO of Malaysia LNG Group\r\nof Companies, responsible for marketing of LNG and the\r\noperations of PETRONAS LNG Complex in Bintulu. During his\r\ntenure, the Company had successfully built the additional third\r\nLNG Plant in the Complex.\r\n<br/><br/>\r\nHe was also VP, Exploration & Production Business (2004),\r\nbefore being appointed in 2007 as the MD/CEO of PETRONAS\r\nCarigali, a wholly owned subsidiary of PETRONAS involved in\r\nO&G exploration, development and production in Malaysia as\r\nwell as in 23 countries worldwide till 2012.\r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Icon Offshore Berhad</li>\r\n  <li>Uzma Berhad</li> \r\n</ul>\n\nhorizontal\n\nbod-details\n\n'),
(5425, 4237, 'mfn-post-hide-content', '0'),
(5426, 4237, 'mfn-post-slider', '0'),
(5427, 4237, 'mfn-post-slider-layer', '0'),
(5428, 4237, 'mfn-post-hide-title', '0'),
(5429, 4237, 'mfn-post-remove-padding', '0'),
(5430, 4237, 'mfn-post-custom-layout', '0'),
(5431, 4237, 'mfn-post-one-page', '0'),
(5432, 4237, 'mfn-post-menu', '0'),
(5433, 4237, '_thumbnail_id', '4569'),
(5434, 4237, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #ffffff;}'),
(5453, 4244, '_wp_attached_file', '2017/04/karim-img.jpg'),
(5454, 4244, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:21:"2017/04/karim-img.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"karim-img-150x150.jpg";s:5:"width";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:"karim-img-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"karim-img-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"karim-img-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:19:"karim-img-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"karim-img-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"karim-img-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5457, 4246, '_wp_attached_file', '2016/04/izaddeen-img.jpg'),
(5458, 4246, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:24:"2016/04/izaddeen-img.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"izaddeen-img-150x150.jpg";s:5:"width";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:"izaddeen-img-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"izaddeen-img-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:22:"izaddeen-img-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:22:"izaddeen-img-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:22:"izaddeen-img-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:22:"izaddeen-img-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5463, 4249, '_wp_attached_file', '2017/04/izaddeen-big-img.jpg'),
(5464, 4249, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:28:"2017/04/izaddeen-big-img.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"izaddeen-big-img-150x150.jpg";s:5:"width";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:"izaddeen-big-img-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"izaddeen-big-img-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:28:"izaddeen-big-img-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:26:"izaddeen-big-img-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:26:"izaddeen-big-img-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:26:"izaddeen-big-img-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:26:"izaddeen-big-img-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:28:"izaddeen-big-img-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:28:"izaddeen-big-img-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:28:"izaddeen-big-img-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:28:"izaddeen-big-img-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:28:"izaddeen-big-img-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5465, 4251, '_wp_attached_file', '2017/04/karim-big-img.jpg'),
(5466, 4251, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:25:"2017/04/karim-big-img.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"karim-big-img-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"karim-big-img-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"karim-big-img-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"karim-big-img-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"karim-big-img-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"karim-big-img-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"karim-big-img-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"karim-big-img-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"karim-big-img-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:25:"karim-big-img-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:25:"karim-big-img-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:25:"karim-big-img-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"karim-big-img-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5467, 43, 'mfn-post-responsive-logo-img', 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/logo_ranhill_sml.png'),
(5469, 4253, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5470, 4253, '_edit_last', '1'),
(5471, 4253, '_wp_page_template', 'default'),
(5472, 4253, 'slide_template', 'default'),
(5473, 4253, 'mfn-post-hide-content', '0'),
(5474, 4253, 'mfn-post-slider', 'spa'),
(5475, 4253, 'mfn-post-slider-layer', '0'),
(5476, 4253, 'mfn-post-hide-title', '0'),
(5477, 4253, 'mfn-post-remove-padding', '0'),
(5478, 4253, 'mfn-post-custom-layout', '43'),
(5479, 4253, 'mfn-post-one-page', '0'),
(5480, 4253, 'mfn-post-menu', '0'),
(5481, 4253, '_wpb_vc_js_status', 'true'),
(5482, 4253, '_edit_lock', '1493447935:1'),
(5483, 4253, 'mfn-meta-seo-title', 'Ranhill'),
(5484, 4253, 'mfn-meta-seo-description', 'Environment and Power '),
(5485, 4253, 'mfn-meta-seo-keywords', 'Environment and Power '),
(5486, 4253, 'mfn-post-css', '@media (min-width:768px)\r\n{\r\n   #Top_bar #logo, .header-fixed #Top_bar #logo, .header-plain #Top_bar #logo, .header-transparent #Top_bar #logo {     height:170px; }\r\n\r\n}\r\n\r\n     .header-simple #Top_bar #menu {top: 40%;}'),
(5487, 4257, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5488, 4257, '_edit_last', '1'),
(5489, 4257, 'slide_template', 'default'),
(5490, 4257, 'include_html', 'yes'),
(5491, 4257, 'where_show', 'show_cust'),
(5492, 4257, 'pop_posts', ''),
(5493, 4257, 'pop_class', ''),
(5494, 4257, 'exit_intent', ''),
(5495, 4257, 'pop_location', 'center'),
(5496, 4257, 'auto_size', ''),
(5497, 4257, '_width1', '500'),
(5498, 4257, '_height1', '500'),
(5499, 4257, 'pop_top', '200'),
(5500, 4257, 'pop_right', ''),
(5501, 4257, 'pop_bottom', ''),
(5502, 4257, 'pop_left', ''),
(5503, 4257, 'add_close', 'yes'),
(5504, 4257, 'close_out', 'yes'),
(5505, 4257, 'show_count', ''),
(5506, 4257, 'wait_time', ''),
(5507, 4257, '_edit_lock', '1493365446:1'),
(5508, 4257, 'pop_impressions', '2'),
(5511, 4261, '_wp_attached_file', '2017/04/agm-popup.jpg'),
(5512, 4261, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:450;s:4:"file";s:21:"2017/04/agm-popup.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"agm-popup-150x150.jpg";s:5:"width";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:"agm-popup-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"agm-popup-195x146.jpg";s:5:"width";i:195;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"agm-popup-50x38.jpg";s:5:"width";i:50;s:6:"height";i:38;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"agm-popup-100x75.jpg";s:5:"width";i:100;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"agm-popup-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"agm-popup-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5513, 4264, '_wp_attached_file', '2017/05/ranhill-welcomes-US-ambassador.pdf'),
(5514, 4265, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5515, 4265, '_edit_last', '1'),
(5516, 4265, '_edit_lock', '1548724358:1'),
(5519, 4265, 'slide_template', 'default'),
(5520, 4265, 'mfn-post-hide-content', '0'),
(5521, 4265, 'mfn-post-slider', '0'),
(5522, 4265, 'mfn-post-slider-layer', '0'),
(5523, 4265, 'mfn-post-hide-title', '1'),
(5524, 4265, 'mfn-post-remove-padding', '0'),
(5525, 4265, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(5526, 4265, 'mfn-meta-seo-title', 'Ranhill welcomes US Ambassador to its clean energy power plant in Sabah'),
(5527, 4265, 'mfn-meta-seo-description', 'Ranhill welcomes US Ambassador to its clean energy power plant in Sabah'),
(5528, 4265, 'mfn-meta-seo-keywords', 'Ranhill welcomes US Ambassador to its clean energy power plant in Sabah'),
(5529, 4265, 'mfn-post-hide-image', '0'),
(5532, 4265, 'mfn-post-love', '0'),
(5555, 4271, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5654, 4298, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5655, 4298, '_edit_last', '1'),
(5656, 4298, '_edit_lock', '1494585257:1'),
(5657, 4298, '_wp_page_template', 'default'),
(5658, 4298, 'slide_template', 'default'),
(5659, 4298, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:490:"<label class="dropDownRight">\n            Year  :  <select class="selectpicker dropDownArrow" data-style="btn-primary" onchange="location = this.value;">\n                      <option value="http://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-statement/">2016</option>\n                       <option selected="selected"  value="http://www.investors-watch.com/wp-staging/ranhill/sustainability-statement-2015/">2015</option>\n         </select>\n        </label>";s:5:"align";s:5:"right";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:176:"<em><strong>PDF Version</strong></em>\n\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/CORPORATE-SUSTAINABILITY-STATEMENT.pdf"]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:4:"50px";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5660, 4298, 'mfn-page-items-seo', '<label class="dropDownRight">\r\n            Year  :  <select class="selectpicker dropDownArrow" data-style="btn-primary" onchange="location = this.value;">\r\n                      <option value="http://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-statement/">2016</option>\r\n                       <option selected="selected"  value="http://www.investors-watch.com/wp-staging/ranhill/sustainability-statement-2015/">2015</option>\r\n         </select>\r\n        </label>\n\nright\n\nno-repeat;center top;;\n\n<em><strong>PDF Version</strong></em>\r\n\r\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/CORPORATE-SUSTAINABILITY-STATEMENT.pdf"]\n\nno-repeat;center top;;\n\n50px\n\n'),
(5661, 4298, 'mfn-post-hide-content', '0'),
(5662, 4298, 'mfn-post-slider', '0'),
(5663, 4298, 'mfn-post-slider-layer', '0'),
(5664, 4298, 'mfn-post-hide-title', '0'),
(5665, 4298, 'mfn-post-remove-padding', '0'),
(5666, 4298, 'mfn-post-custom-layout', '0'),
(5667, 4298, 'mfn-meta-seo-title', 'Ranhill'),
(5668, 4298, 'mfn-meta-seo-description', 'Sustainability Statement'),
(5669, 4298, 'mfn-meta-seo-keywords', 'Sustainability Statement'),
(5670, 4298, 'mfn-post-one-page', '0'),
(5671, 4298, 'mfn-post-menu', '0'),
(5672, 4298, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;}\r\n\r\n\r\n.select-style {\r\n    border: 1px solid #ccc;\r\n    width: 120px;\r\n    border-radius: 3px;\r\n    overflow: hidden;\r\n    background: #fafafa url("img/icon-select.png") no-repeat 90% 50%;\r\n}\r\n\r\n.select-style select {\r\n    padding: 5px 8px;\r\n    width: 130%;\r\n    border: none;\r\n    box-shadow: none;\r\n    background: transparent;\r\n    background-image: none;\r\n    -webkit-appearance: none;\r\n}\r\n\r\n.select-style select:focus {\r\n    outline: none;\r\n}'),
(5673, 4298, '_wpb_vc_js_status', 'false'),
(5687, 4298, '_thumbnail_id', '3671'),
(5690, 4305, '_wp_attached_file', '2017/05/arrow-dropdown.png'),
(5691, 4305, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:15;s:6:"height";i:10;s:4:"file";s:26:"2017/05/arrow-dropdown.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:{}}}'),
(5713, 4323, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5714, 4323, '_edit_last', '1'),
(5715, 4323, '_edit_lock', '1523625892:1'),
(5716, 4323, '_wp_page_template', 'default'),
(5717, 4323, 'slide_template', 'default'),
(5718, 4323, 'mfn-post-hide-content', '0'),
(5719, 4323, 'mfn-post-slider', '0'),
(5720, 4323, 'mfn-post-slider-layer', '0'),
(5721, 4323, 'mfn-post-hide-title', '0'),
(5722, 4323, 'mfn-post-remove-padding', '0'),
(5723, 4323, 'mfn-post-custom-layout', '0'),
(5724, 4323, 'mfn-post-one-page', '0'),
(5725, 4323, 'mfn-post-menu', '0'),
(5726, 4323, '_wpb_vc_js_status', 'false'),
(5727, 4323, 'mfn-page-items', 'a:2:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"10";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:1:"1";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:168:"<em><strong>PDF Version</strong></em>\n\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/Sustainability-Report-2016.pdf"]";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:4:"50px";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"20";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:290:"<div class="pdfbox">\n     <h4>Sustainability Report 2017</h4>\n     <a href="/wp-content/uploads/2018/04/Sustainability-Report-2017.pdf" download="Sustainability-Report-2017" target="_blank">\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:4:"50px";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:339:"<div class="pdfbox">\n     <h4>Sustainability Report 2016</h4>\n     <a href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/Sustainability-Report-2016.pdf" download="Sustainability-Report-2016" target="_blank">\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:4:"50px";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5728, 4323, 'mfn-page-items-seo', '<em><strong>PDF Version</strong></em>\r\n\r\n[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/Sustainability-Report-2016.pdf"]\n\nno-repeat;center top;;\n\n50px\n\n<div class="pdfbox">\r\n     <h4>Sustainability Report 2017</h4>\r\n     <a href="/wp-content/uploads/2018/04/Sustainability-Report-2017.pdf" download="Sustainability-Report-2017" target="_blank">\r\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\n50px\n\nzoomIn\n\n<div class="pdfbox">\r\n     <h4>Sustainability Report 2016</h4>\r\n     <a href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/Sustainability-Report-2016.pdf" download="Sustainability-Report-2016" target="_blank">\r\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\n50px\n\nzoomIn\n\n'),
(5729, 4323, 'mfn-meta-seo-title', 'Ranhill'),
(5730, 4323, 'mfn-meta-seo-description', 'Sustainability Report'),
(5731, 4323, 'mfn-meta-seo-keywords', 'Sustainability Report'),
(5732, 4323, 'mfn-post-css', '#Subheader .title {\r\n    display: block;\r\n    position: absolute;\r\n      top: -44px;\r\n    width: 95%;\r\n    color: #333333;}'),
(5733, 4323, '_thumbnail_id', '3671'),
(5746, 4229, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5747, 4231, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5748, 4326, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5749, 4326, '_menu_item_type', 'post_type'),
(5750, 4326, '_menu_item_menu_item_parent', '3655'),
(5751, 4326, '_menu_item_object_id', '4323'),
(5752, 4326, '_menu_item_object', 'page'),
(5753, 4326, '_menu_item_target', ''),
(5754, 4326, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5755, 4326, '_menu_item_xfn', ''),
(5756, 4326, '_menu_item_url', ''),
(5758, 4326, 'menu-item-mfn-megamenu', ''),
(5759, 4326, 'menu-item-mfn-bg', ''),
(5760, 4327, '_wp_attached_file', '2017/05/sustainability-report.jpg'),
(5761, 4327, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:720;s:6:"height";i:324;s:4:"file";s:33:"2017/05/sustainability-report.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"sustainability-report-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"sustainability-report-300x135.jpg";s:5:"width";i:300;s:6:"height";i:135;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:33:"sustainability-report-260x117.jpg";s:5:"width";i:260;s:6:"height";i:117;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:31:"sustainability-report-50x23.jpg";s:5:"width";i:50;s:6:"height";i:23;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:32:"sustainability-report-150x68.jpg";s:5:"width";i:150;s:6:"height";i:68;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:31:"sustainability-report-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:31:"sustainability-report-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1404825599";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5762, 4328, '_wp_attached_file', '2017/05/sustainability-satement-2016.pdf') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5764, 4330, '_wp_attached_file', '2017/05/futura-book.woff'),
(5765, 4331, '_wp_attached_file', '2017/05/futura-book.svg'),
(5766, 4332, '_wp_attached_file', '2017/05/futura-book-bold.woff'),
(5767, 4333, '_wp_attached_file', '2017/05/futura-book-bold.svg'),
(5841, 4237, '_wpb_vc_js_status', 'false'),
(5842, 4237, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5845, 4411, '_wp_attached_file', '2017/06/Sustainability-Report-2016.pdf'),
(5846, 4412, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5847, 4412, '_edit_last', '1'),
(5848, 4412, '_edit_lock', '1548724325:1'),
(5849, 4413, '_wp_attached_file', '2017/06/ranhill-declares-dividend-of-7.8-sen-for-FY2016.pdf'),
(5852, 4412, 'slide_template', 'default'),
(5853, 4412, 'mfn-post-hide-content', '0'),
(5854, 4412, 'mfn-post-slider', '0'),
(5855, 4412, 'mfn-post-slider-layer', '0'),
(5856, 4412, 'mfn-post-hide-title', '1'),
(5857, 4412, 'mfn-post-remove-padding', '0'),
(5858, 4412, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(5859, 4412, 'mfn-meta-seo-title', 'Ranhill declares dividend of 7.8 sen for FY2016'),
(5860, 4412, 'mfn-meta-seo-description', 'Ranhill declares dividend of 7.8 sen for FY2016'),
(5861, 4412, 'mfn-meta-seo-keywords', 'Ranhill declares dividend of 7.8 sen for FY2016'),
(5862, 4412, 'mfn-post-hide-image', '0'),
(5863, 4412, 'mfn-post-love', '0'),
(5864, 4415, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5865, 4415, '_edit_last', '1'),
(5866, 4415, '_edit_lock', '1548724300:1'),
(5867, 4416, '_wp_attached_file', '2017/06/ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay.pdf'),
(5870, 4415, 'slide_template', 'default'),
(5871, 4415, 'mfn-post-hide-content', '0'),
(5872, 4415, 'mfn-post-slider', '0'),
(5873, 4415, 'mfn-post-slider-layer', '0'),
(5874, 4415, 'mfn-post-hide-title', '1'),
(5875, 4415, 'mfn-post-remove-padding', '0'),
(5876, 4415, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(5877, 4415, 'mfn-meta-seo-title', 'Ranhill helps preserving the environment by cleaning-up Likas Bay'),
(5878, 4415, 'mfn-meta-seo-description', 'Ranhill helps preserving the environment by cleaning-up Likas Bay'),
(5879, 4415, 'mfn-meta-seo-keywords', 'Ranhill helps preserving the environment by cleaning-up Likas Bay'),
(5880, 4415, 'mfn-post-hide-image', '0'),
(5881, 4415, 'mfn-post-love', '0'),
(5895, 4431, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5896, 4431, '_edit_last', '1'),
(5897, 4431, '_edit_lock', '1535614422:1'),
(5901, 4431, '_wp_page_template', 'default'),
(5902, 4431, 'slide_template', 'default'),
(5903, 4431, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"20";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:598:"The Board Charter has been developed to accentuate Ranhill Holdings Berhad’s Board of Directors’ commitment to governance. It adopts current ‘best-practices’, relevant rules and regulations, processes and procedures to guide the Board in the discharge of its duties and functions. This Board Charter will serve as a reference tool and benchmark to facilitate regular assessment of the Board’s performance. \n[divider height="10"] \n\nRead the Board Charter <a href="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/Board-Charter-v1-2.pdf" target="_blank">h​ere</a>\n";s:5:"align";s:7:"justify";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5904, 4431, 'mfn-page-items-seo', 'The Board Charter has been developed to accentuate Ranhill Holdings Berhad’s Board of Directors’ commitment to governance. It adopts current ‘best-practices’, relevant rules and regulations, processes and procedures to guide the Board in the discharge of its duties and functions. This Board Charter will serve as a reference tool and benchmark to facilitate regular assessment of the Board’s performance. \r\n[divider height="10"] \r\n\r\nRead the Board Charter <a href="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/Board-Charter-v1-2.pdf" target="_blank">h​ere</a>\n\njustify\n\nno-repeat;center top;;\n\n'),
(5905, 4431, 'mfn-post-hide-content', '0'),
(5906, 4431, 'mfn-post-slider', '0'),
(5907, 4431, 'mfn-post-slider-layer', '0'),
(5908, 4431, 'mfn-post-hide-title', '0'),
(5909, 4431, 'mfn-post-remove-padding', '0'),
(5910, 4431, 'mfn-post-custom-layout', '0'),
(5911, 4431, 'mfn-meta-seo-title', 'Board Charter '),
(5912, 4431, 'mfn-meta-seo-description', 'RANHIL Board Charter '),
(5913, 4431, 'mfn-meta-seo-keywords', 'Board Charter '),
(5914, 4431, 'mfn-post-one-page', '0'),
(5915, 4431, 'mfn-post-menu', '0'),
(5916, 4431, '_wpb_vc_js_status', 'false'),
(5923, 4436, '_wp_attached_file', '2017/06/board-charter-banner.jpg'),
(5924, 4436, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:430;s:4:"file";s:32:"2017/06/board-charter-banner.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"board-charter-banner-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"board-charter-banner-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"board-charter-banner-768x206.jpg";s:5:"width";i:768;s:6:"height";i:206;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:33:"board-charter-banner-1024x275.jpg";s:5:"width";i:1024;s:6:"height";i:275;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"board-charter-banner-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:30:"board-charter-banner-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:31:"board-charter-banner-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:30:"board-charter-banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:30:"board-charter-banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:33:"board-charter-banner-1280x430.jpg";s:5:"width";i:1280;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:33:"board-charter-banner-1280x430.jpg";s:5:"width";i:1280;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:32:"board-charter-banner-768x430.jpg";s:5:"width";i:768;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:32:"board-charter-banner-960x430.jpg";s:5:"width";i:960;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:33:"board-charter-banner-1200x430.jpg";s:5:"width";i:1200;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5925, 4431, '_thumbnail_id', '4436'),
(5944, 4444, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5945, 4444, '_edit_last', '1'),
(5946, 4444, '_edit_lock', '1497409444:1'),
(5947, 4445, '_wp_attached_file', '2017/06/sustainability-policies-banner.jpg'),
(5948, 4445, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:430;s:4:"file";s:42:"2017/06/sustainability-policies-banner.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"sustainability-policies-banner-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"sustainability-policies-banner-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:42:"sustainability-policies-banner-768x206.jpg";s:5:"width";i:768;s:6:"height";i:206;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:43:"sustainability-policies-banner-1024x275.jpg";s:5:"width";i:1024;s:6:"height";i:275;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:41:"sustainability-policies-banner-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:40:"sustainability-policies-banner-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:41:"sustainability-policies-banner-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:40:"sustainability-policies-banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:40:"sustainability-policies-banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:43:"sustainability-policies-banner-1280x430.jpg";s:5:"width";i:1280;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:43:"sustainability-policies-banner-1280x430.jpg";s:5:"width";i:1280;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:42:"sustainability-policies-banner-768x430.jpg";s:5:"width";i:768;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:42:"sustainability-policies-banner-960x430.jpg";s:5:"width";i:960;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:43:"sustainability-policies-banner-1200x430.jpg";s:5:"width";i:1200;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5949, 4444, '_thumbnail_id', '4445'),
(5950, 4444, '_wp_page_template', 'default'),
(5951, 4444, 'slide_template', 'default'),
(5952, 4444, 'mfn-page-items', 'a:2:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:1:"0";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:1:"1";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:340:"<p>\n“As our core business hinged on management of water and power, we aspire to forge a leading and exemplary role in sustainability by taking the economic, environmental and social factors into account at every level we operate in.”\n</p>\n\n<h6>\nTAN SRI HAMDAN MOHAMAD<br/>\nPresident / Chief Executive<br/>\nRanhill Holdings Berhad\n</h6>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}i:1;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"20";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:3:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:386:"<div class="pdfbox">\n     <h4>Business Continuity Management Policy & Procedures</h4>\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/business-continuity-management-policy.pdf" download="Business Continuity Management Policy">\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:394:"<div class="pdfbox">\n     <h4>Code of Conduct and Business Ethics Policy & Procedures</h4>\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/code-of-conduct-and-business-ethics-policy.pdf" download="Code of Conduct and Business Ethics Policy"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:4:"30px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:1;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:2:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:369:"<div class="pdfbox">\n     <h4>Health, Safety & Environment Policy & Procedures</h4>\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/health-safety-environment-policy.pdf" download="Health, Safety & Environment Policy"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:353:"<div class="pdfbox">\n     <h4>Sexual Harassment Policy & Procedures</h4>\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/sexual-harassment-policy.pdf" download="Sexual Harassment Policy & Procedures"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>\n";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:4:"30px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}i:2;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:383:"<div class="pdfbox">\n     <h4>Succession Planning and Management Policy & Procedures</h4>\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/succession-planning-and-management.pdf" download="Succession Planning and Management Policy"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:4:"30px";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(5953, 4444, 'mfn-page-items-seo', '<p>\r\n“As our core business hinged on management of water and power, we aspire to forge a leading and exemplary role in sustainability by taking the economic, environmental and social factors into account at every level we operate in.”\r\n</p>\r\n\r\n<h6>\r\nTAN SRI HAMDAN MOHAMAD<br/>\r\nPresident / Chief Executive<br/>\r\nRanhill Holdings Berhad\r\n</h6>\n\nno-repeat;center top;;\n\n<div class="pdfbox">\r\n     <h4>Business Continuity Management Policy & Procedures</h4>\r\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/business-continuity-management-policy.pdf" download="Business Continuity Management Policy">\r\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\nzoomIn\n\n<div class="pdfbox">\r\n     <h4>Code of Conduct and Business Ethics Policy & Procedures</h4>\r\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/code-of-conduct-and-business-ethics-policy.pdf" download="Code of Conduct and Business Ethics Policy"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\nzoomIn\n\n<div class="pdfbox">\r\n     <h4>Health, Safety & Environment Policy & Procedures</h4>\r\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/health-safety-environment-policy.pdf" download="Health, Safety & Environment Policy"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\nzoomIn\n\n<div class="pdfbox">\r\n     <h4>Sexual Harassment Policy & Procedures</h4>\r\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/sexual-harassment-policy.pdf" download="Sexual Harassment Policy & Procedures"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\nzoomIn\n\n<div class="pdfbox">\r\n     <h4>Succession Planning and Management Policy & Procedures</h4>\r\n     <a target="_blank" href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/succession-planning-and-management.pdf" download="Succession Planning and Management Policy"><button type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\nzoomIn\n\n'),
(5954, 4444, 'mfn-post-hide-content', '0'),
(5955, 4444, 'mfn-post-slider', '0'),
(5956, 4444, 'mfn-post-slider-layer', '0'),
(5957, 4444, 'mfn-post-hide-title', '0'),
(5958, 4444, 'mfn-post-remove-padding', '0'),
(5959, 4444, 'mfn-post-custom-layout', '0'),
(5960, 4444, 'mfn-meta-seo-title', 'Sustainability  policies'),
(5961, 4444, 'mfn-meta-seo-description', 'Ranhill Sustainability  policies'),
(5962, 4444, 'mfn-meta-seo-keywords', 'Sustainability  policies'),
(5963, 4444, 'mfn-post-one-page', '0'),
(5964, 4444, 'mfn-post-menu', '0'),
(5965, 4444, '_wpb_vc_js_status', 'false'),
(5966, 4444, 'mfn-post-css', ''),
(5967, 4447, '_wp_attached_file', '2017/06/business-continuity-management-policy.pdf'),
(5968, 4448, '_wp_attached_file', '2017/06/code-of-conduct-and-business-ethics-policy.pdf'),
(5969, 4449, '_wp_attached_file', '2017/06/health-safety-environment-policy.pdf'),
(5970, 4450, '_wp_attached_file', '2017/06/sexual-harassment-policy.pdf'),
(5971, 4451, '_wp_attached_file', '2017/06/succession-planning-and-management.pdf'),
(5974, 4453, '_wp_attached_file', '2017/06/sustainability-sr2016-img.jpg'),
(5975, 4453, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:926;s:6:"height";i:450;s:4:"file";s:37:"2017/06/sustainability-sr2016-img.jpg";s:5:"sizes";a:9:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"sustainability-sr2016-img-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:37:"sustainability-sr2016-img-300x146.jpg";s:5:"width";i:300;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:37:"sustainability-sr2016-img-768x373.jpg";s:5:"width";i:768;s:6:"height";i:373;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:37:"sustainability-sr2016-img-260x126.jpg";s:5:"width";i:260;s:6:"height";i:126;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:35:"sustainability-sr2016-img-50x24.jpg";s:5:"width";i:50;s:6:"height";i:24;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:36:"sustainability-sr2016-img-150x73.jpg";s:5:"width";i:150;s:6:"height";i:73;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:35:"sustainability-sr2016-img-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:35:"sustainability-sr2016-img-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:37:"sustainability-sr2016-img-768x450.jpg";s:5:"width";i:768;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5976, 4454, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(5977, 4454, '_menu_item_type', 'post_type'),
(5978, 4454, '_menu_item_menu_item_parent', '3655'),
(5979, 4454, '_menu_item_object_id', '4444'),
(5980, 4454, '_menu_item_object', 'page'),
(5981, 4454, '_menu_item_target', ''),
(5982, 4454, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5983, 4454, '_menu_item_xfn', ''),
(5984, 4454, '_menu_item_url', '') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5986, 4454, 'menu-item-mfn-megamenu', ''),
(5987, 4454, 'menu-item-mfn-bg', ''),
(6051, 4498, '_wp_attached_file', '2016/08/career-bg.jpg'),
(6052, 4498, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1248;s:4:"file";s:21:"2016/08/career-bg.jpg";s:5:"sizes";a:16:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"career-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:21:"career-bg-300x195.jpg";s:5:"width";i:300;s:6:"height";i:195;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"career-bg-768x499.jpg";s:5:"width";i:768;s:6:"height";i:499;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:22:"career-bg-1024x666.jpg";s:5:"width";i:1024;s:6:"height";i:666;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"career-bg-225x146.jpg";s:5:"width";i:225;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"career-bg-50x33.jpg";s:5:"width";i:50;s:6:"height";i:33;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:20:"career-bg-115x75.jpg";s:5:"width";i:115;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:14:"slider-content";a:4:{s:4:"file";s:22:"career-bg-1630x860.jpg";s:5:"width";i:1630;s:6:"height";i:860;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"career-bg-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"career-bg-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"career-bg-1280x1000.jpg";s:5:"width";i:1280;s:6:"height";i:1000;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:22:"career-bg-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"career-bg-768x1200.jpg";s:5:"width";i:768;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:22:"career-bg-1920x750.jpg";s:5:"width";i:1920;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:21:"career-bg-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:22:"career-bg-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"4.5";s:6:"credit";s:0:"";s:6:"camera";s:7:"SLT-A58";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1515685498";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"35";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:4:"0.04";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6058, 4506, '_wp_attached_file', '2016/04/tan-sri-mohamed-small.png'),
(6059, 4506, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:33:"2016/04/tan-sri-mohamed-small.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"tan-sri-mohamed-small-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:33:"tan-sri-mohamed-small-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:33:"tan-sri-mohamed-small-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:31:"tan-sri-mohamed-small-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:31:"tan-sri-mohamed-small-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:31:"tan-sri-mohamed-small-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:31:"tan-sri-mohamed-small-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6060, 4507, '_wp_attached_file', '2016/04/tan-sri-hamdan-small.png'),
(6061, 4507, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:32:"2016/04/tan-sri-hamdan-small.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"tan-sri-hamdan-small-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:32:"tan-sri-hamdan-small-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"tan-sri-hamdan-small-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:30:"tan-sri-hamdan-small-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:30:"tan-sri-hamdan-small-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:30:"tan-sri-hamdan-small-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:30:"tan-sri-hamdan-small-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6062, 4508, '_wp_attached_file', '2016/04/dato-sri-lim-small.png'),
(6063, 4508, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:30:"2016/04/dato-sri-lim-small.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"dato-sri-lim-small-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:30:"dato-sri-lim-small-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:30:"dato-sri-lim-small-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:28:"dato-sri-lim-small-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:28:"dato-sri-lim-small-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:28:"dato-sri-lim-small-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:28:"dato-sri-lim-small-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6064, 4509, '_wp_attached_file', '2016/04/tan-sri-saw-small.png'),
(6065, 4509, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:29:"2016/04/tan-sri-saw-small.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"tan-sri-saw-small-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:29:"tan-sri-saw-small-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"tan-sri-saw-small-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:27:"tan-sri-saw-small-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:27:"tan-sri-saw-small-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:27:"tan-sri-saw-small-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:27:"tan-sri-saw-small-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6066, 4510, '_wp_attached_file', '2016/04/lim-hun-soon-small.png'),
(6067, 4510, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:30:"2016/04/lim-hun-soon-small.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"lim-hun-soon-small-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:30:"lim-hun-soon-small-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:30:"lim-hun-soon-small-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:28:"lim-hun-soon-small-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:28:"lim-hun-soon-small-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:28:"lim-hun-soon-small-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:28:"lim-hun-soon-small-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6068, 4511, '_wp_attached_file', '2016/04/datuk-seri-small.png'),
(6069, 4511, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:28:"2016/04/datuk-seri-small.png";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"datuk-seri-small-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:28:"datuk-seri-small-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:28:"datuk-seri-small-146x146.png";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:26:"datuk-seri-small-50x50.png";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:26:"datuk-seri-small-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:26:"datuk-seri-small-85x85.png";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:26:"datuk-seri-small-80x80.png";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6070, 4512, '_wp_attached_file', '2016/04/zulkifli-ibrahim-small.jpg'),
(6071, 4512, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:34:"2016/04/zulkifli-ibrahim-small.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"zulkifli-ibrahim-small-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:34:"zulkifli-ibrahim-small-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"zulkifli-ibrahim-small-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:32:"zulkifli-ibrahim-small-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:32:"zulkifli-ibrahim-small-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:32:"zulkifli-ibrahim-small-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:32:"zulkifli-ibrahim-small-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6072, 4513, '_wp_attached_file', '2016/04/abu-talib-small.jpg'),
(6073, 4513, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:27:"2016/04/abu-talib-small.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"abu-talib-small-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:27:"abu-talib-small-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"abu-talib-small-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:25:"abu-talib-small-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"abu-talib-small-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:25:"abu-talib-small-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:25:"abu-talib-small-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6074, 4514, '_wp_attached_file', '2016/05/tan-sri-mohamed-big.jpg'),
(6075, 4514, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:31:"2016/05/tan-sri-mohamed-big.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:29:"tan-sri-mohamed-big-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:29:"tan-sri-mohamed-big-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:29:"tan-sri-mohamed-big-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:29:"tan-sri-mohamed-big-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:31:"tan-sri-mohamed-big-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6076, 4515, '_wp_attached_file', '2018/02/home_blogger2_sep.png'),
(6077, 4515, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1240;s:6:"height";i:3;s:4:"file";s:29:"2018/02/home_blogger2_sep.png";s:5:"sizes";a:12:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"home_blogger2_sep-150x3.png";s:5:"width";i:150;s:6:"height";i:3;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"home_blogger2_sep-300x1.png";s:5:"width";i:300;s:6:"height";i:1;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:27:"home_blogger2_sep-768x2.png";s:5:"width";i:768;s:6:"height";i:2;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:28:"home_blogger2_sep-1024x2.png";s:5:"width";i:1024;s:6:"height";i:2;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"home_blogger2_sep-260x1.png";s:5:"width";i:260;s:6:"height";i:1;s:9:"mime-type";s:9:"image/png";}s:5:"50x50";a:4:{s:4:"file";s:26:"home_blogger2_sep-50x1.png";s:5:"width";i:50;s:6:"height";i:1;s:9:"mime-type";s:9:"image/png";}s:14:"clients-slider";a:4:{s:4:"file";s:27:"home_blogger2_sep-150x1.png";s:5:"width";i:150;s:6:"height";i:1;s:9:"mime-type";s:9:"image/png";}s:12:"testimonials";a:4:{s:4:"file";s:26:"home_blogger2_sep-85x3.png";s:5:"width";i:85;s:6:"height";i:3;s:9:"mime-type";s:9:"image/png";}s:9:"blog-navi";a:4:{s:4:"file";s:26:"home_blogger2_sep-80x3.png";s:5:"width";i:80;s:6:"height";i:3;s:9:"mime-type";s:9:"image/png";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:27:"home_blogger2_sep-768x3.png";s:5:"width";i:768;s:6:"height";i:3;s:9:"mime-type";s:9:"image/png";}s:14:"blog-portfolio";a:4:{s:4:"file";s:27:"home_blogger2_sep-960x3.png";s:5:"width";i:960;s:6:"height";i:3;s:9:"mime-type";s:9:"image/png";}s:11:"blog-single";a:4:{s:4:"file";s:28:"home_blogger2_sep-1200x3.png";s:5:"width";i:1200;s:6:"height";i:3;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:{}}}'),
(6079, 4517, '_wp_attached_file', '2016/04/dummy-bod-big.jpg'),
(6080, 4517, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:25:"2016/04/dummy-bod-big.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"dummy-bod-big-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"dummy-bod-big-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"dummy-bod-big-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"dummy-bod-big-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"dummy-bod-big-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"dummy-bod-big-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"dummy-bod-big-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"dummy-bod-big-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"dummy-bod-big-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:25:"dummy-bod-big-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:25:"dummy-bod-big-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:25:"dummy-bod-big-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"dummy-bod-big-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6081, 4518, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(6082, 4518, '_edit_last', '1'),
(6083, 4518, '_edit_lock', '1542166435:1'),
(6084, 4518, '_thumbnail_id', '4569'),
(6085, 4518, '_wp_page_template', 'default'),
(6086, 4518, 'slide_template', 'default'),
(6087, 4518, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"50";s:14:"padding_bottom";s:1:"0";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:8:"our_team";s:4:"size";s:3:"1/1";s:6:"fields";a:17:{s:7:"heading";s:0:"";s:5:"image";s:94:"http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/03/leow-peen-big.jpg";s:5:"title";s:14:"LEOW PEEN FONG";s:8:"subtitle";s:34:"Independent Non Executive Director";s:5:"phone";s:0:"";s:7:"content";s:1873:"<h5>Leow Peen Fong, aged 61, was appointed to our Board as an Independent and Non Executive Director on 2 March 2018.</h5>\n\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\n<ul class="bod-list">\n  <li>Audit Committee (Member)</li>\n</ul>\n\n<h3>QUALIFICATION</h3>\n<ul class="bod-list">\n  <li>Bachelor of Arts (Economics), University Malaya</li>\n  <li>Diploma in Public Administration, INTAN</li>\n <li>Masters of Arts (Development Economics), Williams College, USA</li>\n<li>Advanced Management Program, INSEAD</li>\n</ul>\n\n\n<h3>SKILLS AND EXPERIENCE</h3>\n<p>\n Leow Peen Fong brings with her over 30 years of technical and managerial experience. She first started in the Ministry of Health from 1981 to 1988 and later served under the Ministry of Finance (MOF) from 1988 to 2007.  At MOF, she held various technical and management roles in several divisions including the Finance and the MOF Inc Companies Coordinating, Privatisation and Public Enterprises Division where she was involved with the restructuring of the public transport sector, corporate debt restructuring of several privatized projects during the Asian financial crisis of 1997/1998 and the water industry reforms.  Following her involvement with the water industry reforms from its conception, she was appointed as the Director  of Regulatory Reforms & Integration Division of the Suruhanjaya Perkhidmatan Air Negara  ("SPAN"), the national regulator for water services, in 2007 and promoted to Executive Director, Economic and Social Regulatory Department (2011-2016) and Chief Operating Officer (2016-2017).  At SPAN she was involved in determining the policy and direction  as well as the implementation of the Malaysian water services industry reforms under the framework of the Water Services Industry Act 2006.  \n</p>\n\n\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\n<ul class="bod-list">\n  <li>Nil</li>  \n</ul>";s:5:"email";s:0:"";s:8:"facebook";s:0:"";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:5:"vcard";s:0:"";s:10:"blockquote";s:0:"";s:5:"style";s:10:"horizontal";s:4:"link";s:0:"";s:6:"target";s:1:"0";s:7:"animate";s:0:"";s:7:"classes";s:11:"bod-details";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(6088, 4518, 'mfn-page-items-seo', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/03/leow-peen-big.jpg" alt="leow-peen-big"/>\n\nLEOW PEEN FONG\n\nIndependent Non Executive Director\n\n<h5>Leow Peen Fong, aged 61, was appointed to our Board as an Independent and Non Executive Director on 2 March 2018.</h5>\r\n\r\n<h3>BOARD OF COMMITTEE MEMBERSHIPS</h3>\r\n<ul class="bod-list">\r\n  <li>Audit Committee (Member)</li>\r\n</ul>\r\n\r\n<h3>QUALIFICATION</h3>\r\n<ul class="bod-list">\r\n  <li>Bachelor of Arts (Economics), University Malaya</li>\r\n  <li>Diploma in Public Administration, INTAN</li>\r\n <li>Masters of Arts (Development Economics), Williams College, USA</li>\r\n<li>Advanced Management Program, INSEAD</li>\r\n</ul>\r\n\r\n\r\n<h3>SKILLS AND EXPERIENCE</h3>\r\n<p>\r\n Leow Peen Fong brings with her over 30 years of technical and managerial experience. She first started in the Ministry of Health from 1981 to 1988 and later served under the Ministry of Finance (MOF) from 1988 to 2007.  At MOF, she held various technical and management roles in several divisions including the Finance and the MOF Inc Companies Coordinating, Privatisation and Public Enterprises Division where she was involved with the restructuring of the public transport sector, corporate debt restructuring of several privatized projects during the Asian financial crisis of 1997/1998 and the water industry reforms.  Following her involvement with the water industry reforms from its conception, she was appointed as the Director  of Regulatory Reforms & Integration Division of the Suruhanjaya Perkhidmatan Air Negara  ("SPAN"), the national regulator for water services, in 2007 and promoted to Executive Director, Economic and Social Regulatory Department (2011-2016) and Chief Operating Officer (2016-2017).  At SPAN she was involved in determining the policy and direction  as well as the implementation of the Malaysian water services industry reforms under the framework of the Water Services Industry Act 2006.  \r\n</p>\r\n\r\n\r\n<h3>DIRECTORSHIPS IN OTHER PUBLIC COMPANIES</h3>\r\n<ul class="bod-list">\r\n  <li>Nil</li>  \r\n</ul>\n\nhorizontal\n\nbod-details\n\n'),
(6089, 4518, 'mfn-post-hide-content', '0'),
(6090, 4518, 'mfn-post-slider', '0'),
(6091, 4518, 'mfn-post-slider-layer', '0'),
(6092, 4518, 'mfn-post-hide-title', '0'),
(6093, 4518, 'mfn-post-remove-padding', '0'),
(6094, 4518, 'mfn-post-custom-layout', '0'),
(6095, 4518, 'mfn-post-one-page', '0'),
(6096, 4518, 'mfn-post-menu', '0'),
(6097, 4518, '_wpb_vc_js_status', 'false'),
(6098, 4521, '_wp_attached_file', '2016/04/women-dummy-bod.jpg'),
(6099, 4521, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:27:"2016/04/women-dummy-bod.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"women-dummy-bod-150x150.jpg";s:5:"width";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:"women-dummy-bod-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"women-dummy-bod-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"women-dummy-bod-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:25:"women-dummy-bod-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"women-dummy-bod-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:25:"women-dummy-bod-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:25:"women-dummy-bod-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"women-dummy-bod-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:27:"women-dummy-bod-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:27:"women-dummy-bod-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:27:"women-dummy-bod-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"women-dummy-bod-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6102, 4525, '_wp_attached_file', '2018/04/Sustainability-Report-2017.pdf'),
(6103, 4526, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(6104, 4526, '_edit_last', '1'),
(6105, 4526, '_edit_lock', '1523626479:1'),
(6106, 4526, '_wp_page_template', 'default'),
(6107, 4526, 'slide_template', 'default'),
(6108, 4526, 'mfn-post-hide-content', '0'),
(6109, 4526, 'mfn-post-slider', '0'),
(6110, 4526, 'mfn-post-slider-layer', '0'),
(6111, 4526, 'mfn-post-hide-title', '0'),
(6112, 4526, 'mfn-post-remove-padding', '0'),
(6113, 4526, 'mfn-post-custom-layout', '0'),
(6114, 4526, 'mfn-post-one-page', '0'),
(6115, 4526, 'mfn-post-menu', '0'),
(6116, 4526, '_wpb_vc_js_status', 'false'),
(6117, 4528, '_wp_attached_file', '2018/04/CG-Report-2017.pdf'),
(6118, 4526, '_thumbnail_id', '3671'),
(6119, 4526, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"30";s:14:"padding_bottom";s:2:"20";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:1:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/2";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:290:"<div class="pdfbox">\n     <h4>Corporate Governance Report 2017</h4>\n     <a href="/wp-content/uploads/2018/04/CG-Report-2017.pdf" download="Corporate Governance Report 2017" target="_blank">\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\n</div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:4:"50px";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(6120, 4526, 'mfn-page-items-seo', '<div class="pdfbox">\r\n     <h4>Corporate Governance Report 2017</h4>\r\n     <a href="/wp-content/uploads/2018/04/CG-Report-2017.pdf" download="Corporate Governance Report 2017" target="_blank">\r\n     <button  type="button"><span>Download <i class="icon-download"></i></span></button></a>\r\n</div>\n\nno-repeat;center top;;\n\n50px\n\nzoomIn\n\n'),
(6133, 4530, '_wp_attached_file', '2016/04/leow-peen.jpg'),
(6134, 4530, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:21:"2016/04/leow-peen.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"leow-peen-150x150.jpg";s:5:"width";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:"leow-peen-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"leow-peen-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:19:"leow-peen-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:19:"leow-peen-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:19:"leow-peen-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:19:"leow-peen-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6135, 4531, '_wp_attached_file', '2018/03/leow-peen-big.jpg'),
(6136, 4531, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:25:"2018/03/leow-peen-big.jpg";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"leow-peen-big-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"leow-peen-big-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"leow-peen-big-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"leow-peen-big-146x146.jpg";s:5:"width";i:146;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:23:"leow-peen-big-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:23:"leow-peen-big-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:23:"leow-peen-big-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:23:"leow-peen-big-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:25:"leow-peen-big-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:25:"leow-peen-big-768x800.jpg";s:5:"width";i:768;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:25:"leow-peen-big-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:25:"leow-peen-big-800x750.jpg";s:5:"width";i:800;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:25:"leow-peen-big-800x480.jpg";s:5:"width";i:800;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6137, 4532, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(6138, 4532, '_edit_last', '1'),
(6139, 4532, '_wp_page_template', 'default'),
(6140, 4532, 'slide_template', 'default'),
(6141, 4532, 'mfn-post-hide-content', '0'),
(6142, 4532, 'mfn-post-slider', '0'),
(6143, 4532, 'mfn-post-slider-layer', '0'),
(6144, 4532, 'mfn-post-hide-title', '0'),
(6145, 4532, 'mfn-post-remove-padding', '0'),
(6146, 4532, 'mfn-post-custom-layout', '0'),
(6147, 4532, 'mfn-post-one-page', '0'),
(6148, 4532, 'mfn-post-menu', '0'),
(6149, 4532, '_wpb_vc_js_status', 'false'),
(6150, 4532, '_edit_lock', '1523934589:1'),
(6151, 4535, '_wp_attached_file', '2018/04/box-bg4.jpg'),
(6152, 4535, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:426;s:4:"file";s:19:"2018/04/box-bg4.jpg";s:5:"sizes";a:7:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"box-bg4-150x150.jpg";s:5:"width";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:"box-bg4-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"box-bg4-219x146.jpg";s:5:"width";i:219;s:6:"height";i:146;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:17:"box-bg4-50x33.jpg";s:5:"width";i:50;s:6:"height";i:33;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:18:"box-bg4-113x75.jpg";s:5:"width";i:113;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:17:"box-bg4-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:17:"box-bg4-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6155, 4532, 'mfn-page-items', 'a:1:{i:0;a:2:{s:4:"attr";a:17:{s:5:"title";s:0:"";s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:12:"bg_video_mp4";s:0:"";s:12:"bg_video_ogv";s:0:"";s:11:"padding_top";s:2:"20";s:14:"padding_bottom";s:2:"20";s:7:"divider";s:0:"";s:9:"decor_top";s:0:"";s:12:"decor_bottom";s:0:"";s:10:"navigation";s:0:"";s:5:"style";s:0:"";s:5:"class";s:0:"";s:10:"section_id";s:0:"";s:10:"visibility";s:0:"";s:4:"hide";s:0:"";}s:5:"wraps";a:1:{i:0;a:3:{s:4:"size";s:3:"1/1";s:5:"items";a:3:{i:0;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/1";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:371:"Ranhill Holdings Berhad (“Ranhill” or “the Group”) is committed to a high level of corporate governance which is essential for sustainable long-term performance and value creation. Our Corporate Governance Overview Statement (“CG Overview” or “Statement”) sets out the principles and features of the Group’s corporate governance framework and practices.";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:0:"";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:1;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:370:"<div class="box-wrapper">\n                   <div class="pdf-box">\n                        <h4>Board Charter</h4>                        \n                   </div>\n                   <div class="download-wrapper">\n                         <a href="/wp-content/pdf/board-charter.pdf" download="Board Charter" target="_blank">Download</a>\n                   </div>\n </div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}i:2;a:3:{s:4:"type";s:6:"column";s:4:"size";s:3:"1/3";s:6:"fields";a:11:{s:5:"title";s:0:"";s:7:"content";s:398:"<div class="box-wrapper">\n                   <div class="pdf-box">\n                        <h4>Corporate Governance Report</h4>                        \n                   </div>\n                   <div class="download-wrapper">\n                         <a href="/wp-content/pdf/CG-report2017.pdf" download="Corporate Governance Report" target="_blank">Download</a>\n                   </div>\n </div>";s:5:"align";s:0:"";s:9:"column_bg";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:13:"margin_bottom";s:0:"";s:7:"padding";s:0:"";s:7:"animate";s:6:"zoomIn";s:7:"classes";s:0:"";s:5:"style";s:0:"";}}}s:4:"attr";a:8:{s:8:"bg_color";s:0:"";s:8:"bg_image";s:0:"";s:11:"bg_position";s:22:"no-repeat;center top;;";s:7:"move_up";s:0:"";s:7:"padding";s:0:"";s:13:"column_margin";s:0:"";s:14:"vertical_align";s:3:"top";s:5:"class";s:0:"";}}}}}'),
(6156, 4532, 'mfn-page-items-seo', 'Ranhill Holdings Berhad (“Ranhill” or “the Group”) is committed to a high level of corporate governance which is essential for sustainable long-term performance and value creation. Our Corporate Governance Overview Statement (“CG Overview” or “Statement”) sets out the principles and features of the Group’s corporate governance framework and practices.\n\nno-repeat;center top;;\n\n<div class="box-wrapper">\r\n                   <div class="pdf-box">\r\n                        <h4>Board Charter</h4>                        \r\n                   </div>\r\n                   <div class="download-wrapper">\r\n                         <a href="/wp-content/pdf/board-charter.pdf" download="Board Charter" target="_blank">Download</a>\r\n                   </div>\r\n </div>\n\nno-repeat;center top;;\n\nzoomIn\n\n<div class="box-wrapper">\r\n                   <div class="pdf-box">\r\n                        <h4>Corporate Governance Report</h4>                        \r\n                   </div>\r\n                   <div class="download-wrapper">\r\n                         <a href="/wp-content/pdf/CG-report2017.pdf" download="Corporate Governance Report" target="_blank">Download</a>\r\n                   </div>\r\n </div>\n\nno-repeat;center top;;\n\nzoomIn\n\n'),
(6160, 4538, '_wp_attached_file', '2018/04/reports-banner.jpg'),
(6161, 4538, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:975;s:4:"file";s:26:"2018/04/reports-banner.jpg";s:5:"sizes";a:16:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"reports-banner-150x150.jpg";s:5:"width";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:"reports-banner-300x152.jpg";s:5:"width";i:300;s:6:"height";i:152;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"reports-banner-768x390.jpg";s:5:"width";i:768;s:6:"height";i:390;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"reports-banner-1024x520.jpg";s:5:"width";i:1024;s:6:"height";i:520;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"reports-banner-260x132.jpg";s:5:"width";i:260;s:6:"height";i:132;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"reports-banner-50x25.jpg";s:5:"width";i:50;s:6:"height";i:25;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"reports-banner-148x75.jpg";s:5:"width";i:148;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:14:"slider-content";a:4:{s:4:"file";s:27:"reports-banner-1630x860.jpg";s:5:"width";i:1630;s:6:"height";i:860;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"reports-banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"reports-banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:27:"reports-banner-1280x975.jpg";s:5:"width";i:1280;s:6:"height";i:975;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"reports-banner-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:26:"reports-banner-768x975.jpg";s:5:"width";i:768;s:6:"height";i:975;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:27:"reports-banner-1920x750.jpg";s:5:"width";i:1920;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:26:"reports-banner-960x750.jpg";s:5:"width";i:960;s:6:"height";i:750;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"reports-banner-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6162, 4532, '_thumbnail_id', '4538'),
(6163, 4539, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(6164, 4539, '_menu_item_type', 'post_type'),
(6165, 4539, '_menu_item_menu_item_parent', '3648'),
(6166, 4539, '_menu_item_object_id', '4532'),
(6167, 4539, '_menu_item_object', 'page'),
(6168, 4539, '_menu_item_target', ''),
(6169, 4539, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(6170, 4539, '_menu_item_xfn', ''),
(6171, 4539, '_menu_item_url', ''),
(6173, 4539, 'menu-item-mfn-megamenu', ''),
(6174, 4539, 'menu-item-mfn-bg', '') ;
INSERT INTO `wp2o_postmeta` ( `meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6193, 4551, '_wp_attached_file', '2016/04/bod-banner.jpg'),
(6194, 4551, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1937;s:6:"height";i:646;s:4:"file";s:22:"2016/04/bod-banner.jpg";s:5:"sizes";a:16:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"bod-banner-150x150.jpg";s:5:"width";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:"bod-banner-300x100.jpg";s:5:"width";i:300;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"bod-banner-768x256.jpg";s:5:"width";i:768;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"bod-banner-1024x342.jpg";s:5:"width";i:1024;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"bod-banner-260x87.jpg";s:5:"width";i:260;s:6:"height";i:87;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:20:"bod-banner-50x17.jpg";s:5:"width";i:50;s:6:"height";i:17;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:21:"bod-banner-150x50.jpg";s:5:"width";i:150;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"slider-content";a:4:{s:4:"file";s:23:"bod-banner-1630x646.jpg";s:5:"width";i:1630;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:20:"bod-banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:20:"bod-banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:23:"bod-banner-1280x646.jpg";s:5:"width";i:1280;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:23:"bod-banner-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:22:"bod-banner-768x646.jpg";s:5:"width";i:768;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:23:"bod-banner-1920x646.jpg";s:5:"width";i:1920;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:22:"bod-banner-960x646.jpg";s:5:"width";i:960;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:23:"bod-banner-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6195, 95, '_thumbnail_id', '4569'),
(6197, 4553, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(6198, 4553, '_menu_item_type', 'post_type'),
(6199, 4553, '_menu_item_menu_item_parent', '3648'),
(6200, 4553, '_menu_item_object_id', '4019'),
(6201, 4553, '_menu_item_object', 'page'),
(6202, 4553, '_menu_item_target', ''),
(6203, 4553, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(6204, 4553, '_menu_item_xfn', ''),
(6205, 4553, '_menu_item_url', ''),
(6207, 4553, 'menu-item-mfn-megamenu', ''),
(6208, 4553, 'menu-item-mfn-bg', ''),
(6213, 4556, '_wp_attached_file', '2016/04/bod-banner-new.jpg'),
(6214, 4556, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1937;s:6:"height";i:646;s:4:"file";s:26:"2016/04/bod-banner-new.jpg";s:5:"sizes";a:16:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"bod-banner-new-150x150.jpg";s:5:"width";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:"bod-banner-new-300x100.jpg";s:5:"width";i:300;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"bod-banner-new-768x256.jpg";s:5:"width";i:768;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:27:"bod-banner-new-1024x342.jpg";s:5:"width";i:1024;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"bod-banner-new-260x87.jpg";s:5:"width";i:260;s:6:"height";i:87;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:24:"bod-banner-new-50x17.jpg";s:5:"width";i:50;s:6:"height";i:17;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:25:"bod-banner-new-150x50.jpg";s:5:"width";i:150;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"slider-content";a:4:{s:4:"file";s:27:"bod-banner-new-1630x646.jpg";s:5:"width";i:1630;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:24:"bod-banner-new-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:24:"bod-banner-new-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:27:"bod-banner-new-1280x646.jpg";s:5:"width";i:1280;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:27:"bod-banner-new-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:26:"bod-banner-new-768x646.jpg";s:5:"width";i:768;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:27:"bod-banner-new-1920x646.jpg";s:5:"width";i:1920;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:26:"bod-banner-new-960x646.jpg";s:5:"width";i:960;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:27:"bod-banner-new-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6215, 4557, '_wp_attached_file', '2016/05/bod-inner-page-banner.jpg'),
(6216, 4557, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1300;s:6:"height";i:350;s:4:"file";s:33:"2016/05/bod-inner-page-banner.jpg";s:5:"sizes";a:14:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"bod-inner-page-banner-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"bod-inner-page-banner-300x81.jpg";s:5:"width";i:300;s:6:"height";i:81;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"bod-inner-page-banner-768x207.jpg";s:5:"width";i:768;s:6:"height";i:207;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"bod-inner-page-banner-1024x276.jpg";s:5:"width";i:1024;s:6:"height";i:276;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"bod-inner-page-banner-260x70.jpg";s:5:"width";i:260;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:31:"bod-inner-page-banner-50x13.jpg";s:5:"width";i:50;s:6:"height";i:13;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:32:"bod-inner-page-banner-150x40.jpg";s:5:"width";i:150;s:6:"height";i:40;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:31:"bod-inner-page-banner-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:31:"bod-inner-page-banner-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:34:"bod-inner-page-banner-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:34:"bod-inner-page-banner-1280x350.jpg";s:5:"width";i:1280;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:33:"bod-inner-page-banner-768x350.jpg";s:5:"width";i:768;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:33:"bod-inner-page-banner-960x350.jpg";s:5:"width";i:960;s:6:"height";i:350;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:34:"bod-inner-page-banner-1200x350.jpg";s:5:"width";i:1200;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:"1";s:8:"keywords";a:0:{}}}'),
(6230, 4566, '_wp_attached_file', '2016/04/ranhill-bod-new.jpg'),
(6231, 4566, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1937;s:6:"height";i:646;s:4:"file";s:27:"2016/04/ranhill-bod-new.jpg";s:5:"sizes";a:16:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"ranhill-bod-new-150x150.jpg";s:5:"width";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:"ranhill-bod-new-300x100.jpg";s:5:"width";i:300;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"ranhill-bod-new-768x256.jpg";s:5:"width";i:768;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"ranhill-bod-new-1024x342.jpg";s:5:"width";i:1024;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"ranhill-bod-new-260x87.jpg";s:5:"width";i:260;s:6:"height";i:87;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:25:"ranhill-bod-new-50x17.jpg";s:5:"width";i:50;s:6:"height";i:17;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:26:"ranhill-bod-new-150x50.jpg";s:5:"width";i:150;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"slider-content";a:4:{s:4:"file";s:28:"ranhill-bod-new-1630x646.jpg";s:5:"width";i:1630;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:25:"ranhill-bod-new-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:25:"ranhill-bod-new-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:28:"ranhill-bod-new-1280x646.jpg";s:5:"width";i:1280;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:28:"ranhill-bod-new-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:27:"ranhill-bod-new-768x646.jpg";s:5:"width";i:768;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:28:"ranhill-bod-new-1920x646.jpg";s:5:"width";i:1920;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:27:"ranhill-bod-new-960x646.jpg";s:5:"width";i:960;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:28:"ranhill-bod-new-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(6238, 4569, '_wp_attached_file', '2016/04/bod-banner-2018.jpg'),
(6239, 4569, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1937;s:6:"height";i:646;s:4:"file";s:27:"2016/04/bod-banner-2018.jpg";s:5:"sizes";a:16:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"bod-banner-2018-150x150.jpg";s:5:"width";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:"bod-banner-2018-300x100.jpg";s:5:"width";i:300;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"bod-banner-2018-768x256.jpg";s:5:"width";i:768;s:6:"height";i:256;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"bod-banner-2018-1024x342.jpg";s:5:"width";i:1024;s:6:"height";i:342;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"bod-banner-2018-260x87.jpg";s:5:"width";i:260;s:6:"height";i:87;s:9:"mime-type";s:10:"image/jpeg";}s:5:"50x50";a:4:{s:4:"file";s:25:"bod-banner-2018-50x17.jpg";s:5:"width";i:50;s:6:"height";i:17;s:9:"mime-type";s:10:"image/jpeg";}s:14:"clients-slider";a:4:{s:4:"file";s:26:"bod-banner-2018-150x50.jpg";s:5:"width";i:150;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:14:"slider-content";a:4:{s:4:"file";s:28:"bod-banner-2018-1630x646.jpg";s:5:"width";i:1630;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:12:"testimonials";a:4:{s:4:"file";s:25:"bod-banner-2018-85x85.jpg";s:5:"width";i:85;s:6:"height";i:85;s:9:"mime-type";s:10:"image/jpeg";}s:9:"blog-navi";a:4:{s:4:"file";s:25:"bod-banner-2018-80x80.jpg";s:5:"width";i:80;s:6:"height";i:80;s:9:"mime-type";s:10:"image/jpeg";}s:12:"portfolio-mf";a:4:{s:4:"file";s:28:"bod-banner-2018-1280x646.jpg";s:5:"width";i:1280;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-w";a:4:{s:4:"file";s:28:"bod-banner-2018-1280x500.jpg";s:5:"width";i:1280;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-mf-t";a:4:{s:4:"file";s:27:"bod-banner-2018-768x646.jpg";s:5:"width";i:768;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"portfolio-list";a:4:{s:4:"file";s:28:"bod-banner-2018-1920x646.jpg";s:5:"width";i:1920;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:14:"blog-portfolio";a:4:{s:4:"file";s:27:"bod-banner-2018-960x646.jpg";s:5:"width";i:960;s:6:"height";i:646;s:9:"mime-type";s:10:"image/jpeg";}s:11:"blog-single";a:4:{s:4:"file";s:28:"bod-banner-2018-1200x480.jpg";s:5:"width";i:1200;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6250, 4579, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}'),
(6251, 4579, '_edit_last', '1'),
(6252, 4579, '_edit_lock', '1548724260:1'),
(6254, 4579, 'slide_template', 'default'),
(6255, 4579, 'mfn-post-hide-content', '0'),
(6256, 4579, 'mfn-post-slider', '0'),
(6257, 4579, 'mfn-post-slider-layer', '0'),
(6258, 4579, 'mfn-post-hide-title', '1'),
(6259, 4579, 'mfn-post-remove-padding', '0'),
(6260, 4579, 'mfn-post-intro', 'a:1:{s:9:"post-meta";s:1:"1";}'),
(6261, 4579, 'mfn-post-hide-image', '0'),
(6262, 4579, 'mfn-post-love', '0'),
(6265, 4582, '_wp_attached_file', '2019/01/new-thailand-reclamation-water-treatment-palnt.pdf'),
(6297, 4588, '_vc_post_settings', 'a:1:{s:10:"vc_grid_id";a:0:{}}') ;

#
# End of data contents of table `wp2o_postmeta`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_posts`
#

DROP TABLE IF EXISTS `wp2o_posts`;


#
# Table structure of table `wp2o_posts`
#

CREATE TABLE `wp2o_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=4591 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_posts`
#
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4, 1, '2016-07-30 01:16:35', '2016-07-30 01:16: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>\nRanhill "[your-subject]"\n[your-name] <wordpress@investors-watch.com/wp-staging/ranhill>\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 Ranhill (http://investors-watch.com/wp-staging/ranhill/new)\nryanlee@hdprint.my\nReply-To: [your-email]\n\n0\n0\n\nRanhill "[your-subject]"\nRanhill <wordpress@investors-watch.com/wp-staging/ranhill>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Ranhill (http://investors-watch.com/wp-staging/ranhill/new)\n[your-email]\nReply-To: ryanlee@hdprint.my\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2016-07-30 01:16:35', '2016-07-30 01:16:35', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?post_type=wpcf7_contact_form&p=4', 0, 'wpcf7_contact_form', '', 0),
(6, 1, '2016-04-12 08:52:00', '2016-04-12 08:52:01', '', 'Home', '', 'publish', 'closed', 'open', '', 'home', '', '', '2017-05-30 06:17:57', '2017-05-30 06:17:57', '', 0, 'http://themes.muffingroup.com/be/print/?page_id=2', 0, 'page', '', 0),
(16, 1, '2016-04-12 10:08:15', '2016-04-12 10:08:15', '', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2018-09-20 01:46:17', '2018-09-20 01:46:17', '', 0, 'http://themes.muffingroup.com/be/print/?page_id=16', 0, 'page', '', 0),
(26, 1, '2015-04-03 08:53:46', '2015-04-03 08:53:46', '', 'Our History', '', 'publish', 'open', 'closed', '', 'our-history', '', '', '2016-11-17 08:45:28', '2016-11-17 08:45:28', '', 3539, 'http://themes.muffingroup.com/be/factory/?page_id=26', 0, 'page', '', 0),
(28, 1, '2015-04-03 08:54:14', '2015-04-03 08:54:14', '', 'Our Businesses', '', 'publish', 'open', 'closed', '', 'our-business', '', '', '2019-02-20 08:44:23', '2019-02-20 08:44:23', '', 0, 'http://themes.muffingroup.com/be/factory/?page_id=28', 0, 'page', '', 0),
(43, 1, '2016-07-29 08:27:30', '2016-07-29 08:27:30', '', 'homepage', '', 'publish', 'closed', 'closed', '', 'homepage', '', '', '2017-04-25 06:45:40', '2017-04-25 06:45:40', '', 0, 'http://investors-watch.com/wp-staging/ranhill/v1/?post_type=layout&#038;p=43', 0, 'layout', '', 0),
(95, 1, '2016-04-27 07:33:23', '2016-04-27 07:33:23', '', 'Board of Directors', '', 'publish', 'closed', 'closed', '', 'board-of-directors', '', '', '2019-02-04 08:22:30', '2019-02-04 08:22:30', '', 3539, 'http://hdprint.com.my/ranhill/?page_id=95', 0, 'page', '', 0),
(101, 1, '2016-04-27 08:44:47', '2016-04-27 08:44:47', '', 'Sustainability', '', 'publish', 'open', 'closed', '', 'sustainability', '', '', '2017-06-08 01:22:35', '2017-06-08 01:22:35', '', 0, 'http://hdprint.com.my/ranhill/?page_id=101', 0, 'page', '', 0),
(110, 1, '2016-04-27 08:56:07', '2016-04-27 08:56:07', '', 'Water Supply Services', '', 'publish', 'open', 'closed', '', 'water-supply-services', '', '', '2019-01-22 00:52:06', '2019-01-22 00:52:06', '', 28, 'http://hdprint.com.my/ranhill/?page_id=110', 0, 'page', '', 0),
(123, 1, '2016-05-02 09:20:44', '2016-05-02 09:20:44', '', 'Clean Energy', '', 'publish', 'closed', 'closed', '', 'clean-energy', '', '', '2017-03-07 03:55:00', '2017-03-07 03:55:00', '', 28, 'http://hdprint.com.my/ranhill/?page_id=123', 0, 'page', '', 0),
(125, 1, '2016-05-02 09:21:13', '2016-05-02 09:21:13', '', 'Our Technology', '', 'publish', 'closed', 'closed', '', 'our-technology', '', '', '2017-01-16 02:56:08', '2017-01-16 02:56:08', '', 3860, 'http://hdprint.com.my/ranhill/?page_id=125', 0, 'page', '', 0),
(127, 1, '2016-05-02 09:21:55', '2016-05-02 09:21:55', '', 'Our signature projects', '', 'publish', 'closed', 'closed', '', 'our-signature-projects', '', '', '2016-08-04 02:03:34', '2016-08-04 02:03:34', '', 3753, 'http://hdprint.com.my/ranhill/?page_id=127', 0, 'page', '', 0),
(129, 1, '2016-05-02 09:22:20', '2016-05-02 09:22:20', '', 'Our Vision, Mission & Values', '', 'publish', 'closed', 'closed', '', 'our-vision-mission-values', '', '', '2018-04-10 02:54:47', '2018-04-10 02:54:47', '', 26, 'http://hdprint.com.my/ranhill/?page_id=129', 0, 'page', '', 0),
(133, 1, '2016-05-02 09:27:29', '2016-05-02 09:27:29', '', 'History', '', 'publish', 'closed', 'closed', '', 'history', '', '', '2016-08-04 02:14:30', '2016-08-04 02:14:30', '', 3822, 'http://hdprint.com.my/ranhill/?page_id=133', 0, 'page', '', 0),
(136, 1, '2016-05-02 09:31:46', '2016-05-02 09:31:46', '', 'Corporate Governance', '', 'publish', 'closed', 'closed', '', 'governance', '', '', '2017-06-07 01:41:02', '2017-06-07 01:41:02', '', 101, 'http://hdprint.com.my/ranhill/?page_id=136', 0, 'page', '', 0),
(138, 1, '2016-05-02 09:33:54', '2016-05-02 09:33:54', '', 'Awards & Recognition', '', 'publish', 'closed', 'closed', '', 'awards-recognition', '', '', '2016-08-04 02:14:55', '2016-08-04 02:14:55', '', 3822, 'http://hdprint.com.my/ranhill/?page_id=138', 0, 'page', '', 0),
(140, 1, '2016-05-02 09:34:23', '2016-05-02 09:34:23', '', 'Sustainability Statement', '', 'publish', 'closed', 'closed', '', 'sustainability-statement', '', '', '2017-05-12 09:07:07', '2017-05-12 09:07:07', '', 101, 'http://hdprint.com.my/ranhill/?page_id=140', 0, 'page', '', 0),
(142, 1, '2016-05-02 09:35:24', '2016-05-02 09:35:24', '', 'Social', '', 'publish', 'closed', 'closed', '', 'social', '', '', '2016-08-04 02:02:55', '2016-08-04 02:02:55', '', 3753, 'http://hdprint.com.my/ranhill/?page_id=142', 0, 'page', '', 0),
(145, 1, '2016-05-02 09:35:47', '2016-05-02 09:35:47', '', 'Circular Economy', '', 'publish', 'closed', 'closed', '', 'circular-economy', '', '', '2016-08-04 02:02:54', '2016-08-04 02:02:54', '', 3753, 'http://hdprint.com.my/ranhill/?page_id=145', 0, 'page', '', 0),
(148, 1, '2016-05-02 09:36:28', '2016-05-02 09:36:28', '', 'Ranhill Thought Leadership', '', 'publish', 'closed', 'closed', '', 'ranhill-thought-leadership', '', '', '2016-08-04 02:02:55', '2016-08-04 02:02:55', '', 3753, 'http://hdprint.com.my/ranhill/?page_id=148', 0, 'page', '', 0),
(211, 1, '2016-05-24 05:49:49', '2016-05-24 05:49:49', '', 'TAN SRI MOHAMED AZMAN YAHYA', '', 'publish', 'closed', 'closed', '', 'tan-sri-mohamed-azman-yahya', '', '', '2019-02-04 08:25:38', '2019-02-04 08:25:38', '', 95, 'http://hdprint.com.my/rh/?page_id=211', 0, 'page', '', 0),
(272, 1, '2016-05-25 07:10:32', '2016-05-25 07:10:32', '', 'Amata City Water & Wastewater Treatment Plant', '', 'publish', 'closed', 'closed', '', 'amata-city-water-wastewater-treatment-plant', '', '', '2016-11-08 07:15:41', '2016-11-08 07:15:41', '', 127, 'http://hdprint.com.my/rh/?page_id=272', 0, 'page', '', 0),
(274, 1, '2016-07-28 02:17:11', '2016-07-28 02:17:11', '', 'Yingkao wastewater treatment and reclaimed plant China', '', 'publish', 'closed', 'closed', '', 'yingkao-wastewater-treatment-and-reclaimed-plant-china', '', '', '2016-08-04 02:10:51', '2016-08-04 02:10:51', '', 127, 'http://hdprint.com.my/rh/?page_id=274', 0, 'page', '', 0),
(279, 1, '2016-05-25 08:08:05', '2016-05-25 08:08:05', '', 'TAN SRI HAMDAN MOHAMAD', '', 'publish', 'closed', 'closed', '', 'tan-sri-hamdan-mohamad', '', '', '2018-09-20 04:10:12', '2018-09-20 04:10:12', '', 95, 'http://hdprint.com.my/rh/?page_id=279', 0, 'page', '', 0),
(281, 1, '2016-05-25 08:09:45', '2016-05-25 08:09:45', '', 'DATO SRI LIM HAW KUANG', '', 'publish', 'closed', 'closed', '', 'dato-sri-lim-haw-kuang', '', '', '2018-09-20 04:11:01', '2018-09-20 04:11:01', '', 95, 'http://hdprint.com.my/rh/?page_id=281', 0, 'page', '', 0),
(282, 1, '2016-05-25 08:12:52', '2016-05-25 08:12:52', '', 'LIM HUN SOON', '', 'publish', 'closed', 'closed', '', 'lim-hun-soon', '', '', '2018-09-20 04:11:53', '2018-09-20 04:11:53', '', 95, 'http://hdprint.com.my/rh/?page_id=282', 0, 'page', '', 0),
(284, 1, '2016-05-25 08:11:22', '2016-05-25 08:11:22', '', 'TAN SRI SAW CHOO BOON', '', 'publish', 'closed', 'closed', '', 'tan-sri-saw-choo-boon', '', '', '2018-06-01 08:54:41', '2018-06-01 08:54:41', '', 95, 'http://hdprint.com.my/rh/?page_id=284', 0, 'page', '', 0),
(288, 1, '2016-05-25 08:15:51', '2016-05-25 08:15:51', '', 'ABU TALIB ABDUL RAHMAN', '', 'publish', 'closed', 'closed', '', 'dato-zulkifli-ibrahim', '', '', '2018-09-20 04:12:35', '2018-09-20 04:12:35', '', 95, 'http://hdprint.com.my/rh/?page_id=288', 0, 'page', '', 0),
(295, 1, '2016-05-25 08:23:07', '2016-05-25 08:23:07', '', 'Advance Pressure Management & Control (APMC)', '', 'publish', 'closed', 'closed', '', 'advance-pressure-management-control-apmc', '', '', '2016-08-04 02:12:53', '2016-08-04 02:12:53', '', 125, 'http://hdprint.com.my/rh/?page_id=295', 0, 'page', '', 0),
(297, 1, '2016-05-25 08:26:13', '2016-05-25 08:26:13', '', 'Combine Cycle Gas Turbine (CCGT)', '', 'publish', 'closed', 'closed', '', 'combine-cycle-gas-turbine-ccgt', '', '', '2016-08-04 02:10:39', '2016-08-04 02:10:39', '', 125, 'http://hdprint.com.my/rh/?page_id=297', 0, 'page', '', 0),
(300, 1, '2016-05-25 08:32:36', '2016-05-25 08:32:36', '', 'Unmanned Aerial Vehicle (UAV)', '', 'publish', 'closed', 'closed', '', 'unmanned-aerial-vehicle-uav', '', '', '2016-05-25 08:32:36', '2016-05-25 08:32:36', '', 125, 'http://hdprint.com.my/rh/?page_id=300', 0, 'page', '', 0),
(301, 1, '2016-05-25 08:35:10', '2016-05-25 08:35:10', '', 'Geographical System & Networking Modelling ( GIS )', '', 'publish', 'closed', 'closed', '', 'geographical-system-networking-modelling-gis', '', '', '2016-08-04 02:10:39', '2016-08-04 02:10:39', '', 125, 'http://hdprint.com.my/rh/?page_id=301', 0, 'page', '', 0),
(303, 1, '2016-05-25 08:39:07', '2016-05-25 08:39:07', '', 'Dissolved Air Floatation (DAF)', '', 'publish', 'closed', 'closed', '', 'dissolved-air-floatation-daf', '', '', '2016-08-04 02:10:39', '2016-08-04 02:10:39', '', 125, 'http://hdprint.com.my/rh/?page_id=303', 0, 'page', '', 0),
(306, 1, '2016-05-25 08:42:17', '2016-05-25 08:42:17', '', 'Sequential Batch Reactor (SBR)', '', 'publish', 'closed', 'closed', '', 'sequential-batch-reactor-sbr', '', '', '2016-08-04 02:10:39', '2016-08-04 02:10:39', '', 125, 'http://hdprint.com.my/rh/?page_id=306', 0, 'page', '', 0),
(308, 1, '2016-05-25 08:44:00', '2016-05-25 08:44:00', '', 'Aquasmart', '', 'publish', 'closed', 'closed', '', 'aquasmart', '', '', '2016-08-04 02:10:39', '2016-08-04 02:10:39', '', 125, 'http://hdprint.com.my/rh/?page_id=308', 0, 'page', '', 0),
(3539, 1, '2016-07-12 08:17:55', '2016-07-12 08:17:55', '', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2018-02-13 07:05:43', '2018-02-13 07:05:43', '', 0, 'http://hdprint.com.my/ranhill/?page_id=3539', 0, 'page', '', 0),
(3609, 1, '2016-07-29 15:43:09', '2016-07-29 15:43:09', '', 'Investor Relations', '', 'publish', 'closed', 'closed', '', 'investor-relations', '', '', '2018-10-26 08:20:07', '2018-10-26 08:20:07', '', 0, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3609', 0, 'page', '', 0),
(3618, 1, '2016-07-30 01:26:34', '2016-07-30 01:26:34', '', 'ufonts.com_futura_book-1', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura_book-1', '', '', '2016-07-30 01:26:34', '2016-07-30 01:26:34', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura_book-1.eot', 0, 'attachment', 'font/eot', 0),
(3619, 1, '2016-07-30 01:26:35', '2016-07-30 01:26:35', '', 'ufonts.com_futura_book-bold-1', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura_book-bold-1', '', '', '2016-07-30 01:26:35', '2016-07-30 01:26:35', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura_book-bold-1.eot', 0, 'attachment', 'font/eot', 0),
(3620, 1, '2016-07-30 01:26:36', '2016-07-30 01:26:36', '', 'ufonts.com_futura_book-bold', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura_book-bold', '', '', '2016-07-30 01:26:36', '2016-07-30 01:26:36', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura_book-bold.eot', 0, 'attachment', 'font/eot', 0),
(3621, 1, '2016-07-30 01:26:36', '2016-07-30 01:26:36', '', 'ufonts.com_futura_book', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura_book', '', '', '2016-07-30 01:26:36', '2016-07-30 01:26:36', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura_book.eot', 0, 'attachment', 'font/eot', 0),
(3622, 1, '2016-07-30 01:26:37', '2016-07-30 01:26:37', '', 'ufonts.com_futura_light', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura_light', '', '', '2016-07-30 01:26:37', '2016-07-30 01:26:37', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura_light.eot', 0, 'attachment', 'font/eot', 0),
(3623, 1, '2016-07-30 01:26:38', '2016-07-30 01:26:38', '', 'ufonts.com_futura_medium', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura_medium', '', '', '2016-07-30 01:26:38', '2016-07-30 01:26:38', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura_medium.eot', 0, 'attachment', 'font/eot', 0),
(3624, 1, '2016-07-30 01:26:39', '2016-07-30 01:26:39', '', 'ufonts.com_futura-book-1', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-book-1', '', '', '2016-07-30 01:26:39', '2016-07-30 01:26:39', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-book-1.ttf', 0, 'attachment', 'font/ttf', 0),
(3625, 1, '2016-07-30 01:26:39', '2016-07-30 01:26:39', '', 'ufonts.com_futura-book-bold-1', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-book-bold-1', '', '', '2016-07-30 01:26:39', '2016-07-30 01:26:39', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-book-bold-1.ttf', 0, 'attachment', 'font/ttf', 0),
(3626, 1, '2016-07-30 01:26:40', '2016-07-30 01:26:40', '', 'ufonts.com_futura-book-bold', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-book-bold', '', '', '2016-07-30 01:26:40', '2016-07-30 01:26:40', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-book-bold.ttf', 0, 'attachment', 'font/ttf', 0),
(3627, 1, '2016-07-30 01:26:41', '2016-07-30 01:26:41', '', 'ufonts.com_futura-book-bold', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-book-bold-2', '', '', '2016-07-30 01:26:41', '2016-07-30 01:26:41', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-book-bold.woff', 0, 'attachment', 'font/woff', 0),
(3628, 1, '2016-07-30 01:26:41', '2016-07-30 01:26:41', '', 'ufonts.com_futura-book', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-book', '', '', '2016-07-30 01:26:41', '2016-07-30 01:26:41', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-book.ttf', 0, 'attachment', 'font/ttf', 0),
(3629, 1, '2016-07-30 01:26:42', '2016-07-30 01:26:42', '', 'ufonts.com_futura-book', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-book-2', '', '', '2016-07-30 01:26:42', '2016-07-30 01:26:42', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-book.woff', 0, 'attachment', 'font/woff', 0),
(3630, 1, '2016-07-30 01:26:43', '2016-07-30 01:26:43', '', 'ufonts.com_futura-light', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-light', '', '', '2016-07-30 01:26:43', '2016-07-30 01:26:43', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-light.ttf', 0, 'attachment', 'font/ttf', 0),
(3631, 1, '2016-07-30 01:26:43', '2016-07-30 01:26:43', '', 'ufonts.com_futura-medium', '', 'inherit', 'open', 'closed', '', 'ufonts-com_futura-medium', '', '', '2016-07-30 01:26:43', '2016-07-30 01:26:43', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/ufonts.com_futura-medium.ttf', 0, 'attachment', 'font/ttf', 0),
(3632, 1, '2016-07-30 01:26:44', '2016-07-30 01:26:44', '', 'unicode.futurab', '', 'inherit', 'open', 'closed', '', 'unicode-futurab', '', '', '2016-07-30 01:26:44', '2016-07-30 01:26:44', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/unicode.futurab.ttf', 0, 'attachment', 'font/ttf', 0),
(3633, 1, '2016-07-30 03:12:05', '2016-07-30 03:12:05', '', 'water.jpg', '', 'inherit', 'closed', 'closed', '', 'water-jpg', '', '', '2016-07-30 03:12:05', '2016-07-30 03:12:05', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/revslider/spa/water.jpg', 0, 'attachment', 'image/jpeg', 0),
(3634, 1, '2016-07-30 03:12:06', '2016-07-30 03:12:06', '', 'arrow.png', '', 'inherit', 'closed', 'closed', '', 'arrow-png', '', '', '2016-07-30 03:12:06', '2016-07-30 03:12:06', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/revslider/spa/arrow.png', 0, 'attachment', 'image/png', 0),
(3635, 1, '2016-07-30 03:12:06', '2016-07-30 03:12:06', '', 'enviroment.png', '', 'inherit', 'closed', 'closed', '', 'enviroment-png', '', '', '2016-07-30 03:12:06', '2016-07-30 03:12:06', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/revslider/spa/enviroment.png', 0, 'attachment', 'image/png', 0),
(3636, 1, '2016-07-30 03:12:06', '2016-07-30 03:12:06', '', 'power.jpg', '', 'inherit', 'closed', 'closed', '', 'power-jpg', '', '', '2016-07-30 03:12:06', '2016-07-30 03:12:06', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/revslider/spa/power.jpg', 0, 'attachment', 'image/jpeg', 0),
(3637, 1, '2016-07-30 03:12:07', '2016-07-30 03:12:07', '', 'power.png', '', 'inherit', 'closed', 'closed', '', 'power-png', '', '', '2016-07-30 03:12:07', '2016-07-30 03:12:07', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/revslider/spa/power.png', 0, 'attachment', 'image/png', 0),
(3640, 1, '2016-07-30 03:23:37', '2016-07-30 03:23:37', '', 'water_edit', '', 'inherit', 'open', 'closed', '', 'water_edit', '', '', '2016-07-30 03:23:37', '2016-07-30 03:23:37', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/water_edit.jpg', 0, 'attachment', 'image/jpeg', 0),
(3641, 1, '2016-07-30 03:30:25', '2016-07-30 03:30:25', '', 'power_edit', '', 'inherit', 'open', 'closed', '', 'power_edit', '', '', '2016-07-30 03:30:25', '2016-07-30 03:30:25', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/power_edit.jpg', 0, 'attachment', 'image/jpeg', 0),
(3642, 1, '2016-07-30 03:34:11', '2016-07-30 03:34:11', '', 'Home', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2016-07-30 03:34:11', '2016-07-30 03:34:11', '', 6, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/6-revision-v1/', 0, 'revision', '', 0),
(3643, 1, '2016-07-30 03:38:19', '2016-07-30 03:38:19', '', 'aboutus_v1', '', 'inherit', 'open', 'closed', '', 'aboutus_v1', '', '', '2016-07-30 03:38:19', '2016-07-30 03:38:19', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/aboutus_v1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3646, 1, '2016-07-30 03:40:42', '2016-07-30 03:40:42', ' ', '', '', 'publish', 'closed', 'closed', '', '3646', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 3539, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3646', 4, 'nav_menu_item', '', 0),
(3647, 1, '2016-07-30 03:40:42', '2016-07-30 03:40:42', ' ', '', '', 'publish', 'closed', 'closed', '', '3647', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 26, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3647', 3, 'nav_menu_item', '', 0),
(3648, 1, '2016-07-30 03:40:41', '2016-07-30 03:40:41', ' ', '', '', 'publish', 'closed', 'closed', '', '3648', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3648', 2, 'nav_menu_item', '', 0),
(3649, 1, '2016-07-30 03:40:42', '2016-07-30 03:40:42', ' ', '', '', 'publish', 'closed', 'closed', '', '3649', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3649', 18, 'nav_menu_item', '', 0),
(3650, 1, '2016-07-30 03:40:41', '2016-07-30 03:40:41', ' ', '', '', 'publish', 'closed', 'closed', '', '3650', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3650', 1, 'nav_menu_item', '', 0),
(3652, 1, '2016-07-30 03:40:42', '2016-07-30 03:40:42', ' ', 'Our Businesses', '', 'publish', 'closed', 'closed', '', '3652', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3652', 9, 'nav_menu_item', '', 0),
(3653, 1, '2016-07-30 03:40:42', '2016-07-30 03:40:42', ' ', '', '', 'publish', 'closed', 'closed', '', '3653', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3653', 13, 'nav_menu_item', '', 0),
(3654, 1, '2016-07-30 03:40:42', '2016-07-30 03:40:42', ' ', '', '', 'publish', 'closed', 'closed', '', '3654', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3654', 10, 'nav_menu_item', '', 0),
(3655, 1, '2016-07-30 03:40:42', '2016-07-30 03:40:42', ' ', '', '', 'publish', 'closed', 'closed', '', '3655', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3655', 14, 'nav_menu_item', '', 0),
(3659, 1, '2016-07-30 04:13:31', '2016-07-30 04:13:31', '', 'Sustainability', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2016-07-30 04:13:31', '2016-07-30 04:13:31', '', 101, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/101-revision-v1/', 0, 'revision', '', 0),
(3660, 1, '2016-07-30 04:16:29', '2016-07-30 04:16:29', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '3539-revision-v1', '', '', '2016-07-30 04:16:29', '2016-07-30 04:16:29', '', 3539, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3539-revision-v1/', 0, 'revision', '', 0),
(3661, 1, '2016-07-30 04:17:14', '2016-07-30 04:17:14', '', 'about', '', 'inherit', 'open', 'closed', '', 'about', '', '', '2016-07-30 04:17:14', '2016-07-30 04:17:14', '', 3539, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/about.jpg', 0, 'attachment', 'image/jpeg', 0),
(3663, 1, '2016-07-30 04:40:48', '2016-07-30 04:40:48', '', 'Our Vision, Mission & Values', '', 'inherit', 'closed', 'closed', '', '129-revision-v1', '', '', '2016-07-30 04:40:48', '2016-07-30 04:40:48', '', 129, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/129-revision-v1/', 0, 'revision', '', 0),
(3664, 1, '2016-07-30 04:45:13', '2016-07-30 04:45:13', '', '1300x350px_bod-1_1', '', 'inherit', 'open', 'closed', '', '1300x350px_bod-1_1', '', '', '2016-07-30 04:45:13', '2016-07-30 04:45:13', '', 95, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/04/1300x350px_bod-1_1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3665, 1, '2016-07-30 04:46:30', '2016-07-30 04:46:30', '', 'Board of Directors', '', 'inherit', 'closed', 'closed', '', '95-revision-v1', '', '', '2016-07-30 04:46:30', '2016-07-30 04:46:30', '', 95, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/95-revision-v1/', 0, 'revision', '', 0),
(3666, 1, '2016-07-30 04:59:12', '2016-07-30 04:59:12', '', 'aboutushdr', '', 'inherit', 'open', 'closed', '', 'aboutushdr', '', '', '2016-07-30 04:59:12', '2016-07-30 04:59:12', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2015/04/aboutushdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(3667, 1, '2016-07-30 04:59:25', '2016-07-30 04:59:25', '', 'Our Business', '', 'inherit', 'closed', 'closed', '', '28-revision-v1', '', '', '2016-07-30 04:59:25', '2016-07-30 04:59:25', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/28-revision-v1/', 0, 'revision', '', 0),
(3668, 1, '2016-07-30 05:05:19', '2016-07-30 05:05:19', '', 'sustainability', '', 'inherit', 'open', 'closed', '', 'sustainability-2', '', '', '2016-07-30 05:05:19', '2016-07-30 05:05:19', '', 101, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/04/sustainability.jpg', 0, 'attachment', 'image/jpeg', 0),
(3669, 1, '2016-07-30 05:06:13', '2016-07-30 05:06:13', '', 'bursa', '', 'inherit', 'open', 'closed', '', 'bursa', '', '', '2016-07-30 05:06:13', '2016-07-30 05:06:13', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/bursa.jpg', 0, 'attachment', 'image/jpeg', 0),
(3670, 1, '2016-07-30 05:06:15', '2016-07-30 05:06:15', '', 'bursanews', '', 'inherit', 'open', 'closed', '', 'bursanews', '', '', '2016-07-30 05:06:15', '2016-07-30 05:06:15', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/bursanews.jpg', 0, 'attachment', 'image/jpeg', 0),
(3671, 1, '2016-07-30 05:06:16', '2016-07-30 05:06:16', '', 'sustainability', '', 'inherit', 'open', 'closed', '', 'sustainability-3', '', '', '2016-07-30 05:06:16', '2016-07-30 05:06:16', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/sustainability.jpg', 0, 'attachment', 'image/jpeg', 0),
(3672, 1, '2016-07-30 05:06:18', '2016-07-30 05:06:18', '', 'sustainbility', '', 'inherit', 'open', 'closed', '', 'sustainbility', '', '', '2016-07-30 05:06:18', '2016-07-30 05:06:18', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/sustainbility.jpg', 0, 'attachment', 'image/jpeg', 0),
(3673, 1, '2016-07-30 05:09:17', '2016-07-30 05:09:17', '', 'sustainbility', '', 'inherit', 'open', 'closed', '', 'sustainbility-2', '', '', '2016-07-30 05:09:17', '2016-07-30 05:09:17', '', 101, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/04/sustainbility.jpg', 0, 'attachment', 'image/jpeg', 0),
(3674, 1, '2016-07-30 05:11:42', '2016-07-30 05:11:42', '', 'corporategov', '', 'inherit', 'open', 'closed', '', 'corporategov', '', '', '2016-07-30 05:11:42', '2016-07-30 05:11:42', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/corporategov.jpg', 0, 'attachment', 'image/jpeg', 0),
(3675, 1, '2016-07-30 05:17:50', '2016-07-30 05:17:50', '', 'corporategov_hdr', '', 'inherit', 'open', 'closed', '', 'corporategov_hdr', '', '', '2016-07-30 05:17:50', '2016-07-30 05:17:50', '', 136, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/05/corporategov_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(3676, 1, '2016-07-30 05:18:00', '2016-07-30 05:18:00', '', 'Corporate Governance', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2016-07-30 05:18:00', '2016-07-30 05:18:00', '', 136, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/136-revision-v1/', 0, 'revision', '', 0),
(3678, 1, '2016-07-30 05:20:40', '2016-07-30 05:20:40', '', 'corporategov', '', 'inherit', 'open', 'closed', '', 'corporategov-2', '', '', '2016-07-30 05:20:40', '2016-07-30 05:20:40', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/corporategov-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3679, 1, '2016-07-30 05:23:21', '2016-07-30 05:23:21', '', 'goverance', '', 'inherit', 'open', 'closed', '', 'goverance', '', '', '2016-07-30 05:23:21', '2016-07-30 05:23:21', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/goverance.jpg', 0, 'attachment', 'image/jpeg', 0),
(3682, 1, '2016-07-30 05:27:05', '2016-07-30 05:27:05', '', 'Sustainability Statement', '', 'inherit', 'closed', 'closed', '', '140-revision-v1', '', '', '2016-07-30 05:27:05', '2016-07-30 05:27:05', '', 140, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/140-revision-v1/', 0, 'revision', '', 0),
(3683, 1, '2016-07-30 05:49:02', '2016-07-30 05:49:02', '', 'sustainbility_sml', '', 'inherit', 'open', 'closed', '', 'sustainbility_sml', '', '', '2016-07-30 05:49:02', '2016-07-30 05:49:02', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/sustainbility_sml.jpg', 0, 'attachment', 'image/jpeg', 0),
(3684, 1, '2016-07-30 05:54:27', '2016-07-30 05:54:27', '', 'Bursa Announcements', '', 'inherit', 'closed', 'closed', '', '3609-revision-v1', '', '', '2016-07-30 05:54:27', '2016-07-30 05:54:27', '', 3609, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3609-revision-v1/', 0, 'revision', '', 0),
(3685, 1, '2016-07-30 05:55:54', '2016-07-30 05:55:54', '', 'News Release - Prospectus Launch BM', '', 'inherit', 'open', 'closed', '', 'news-release-prospectus-launch-bm', '', '', '2016-07-30 08:03:49', '2016-07-30 08:03:49', '', 3745, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-BM.pdf', 0, 'attachment', 'application/pdf', 0),
(3686, 1, '2016-07-30 05:55:55', '2016-07-30 05:55:55', '', 'News Release - Prospectus Launch Chi', '', 'inherit', 'open', 'closed', '', 'news-release-prospectus-launch-chi', '', '', '2016-07-30 08:07:32', '2016-07-30 08:07:32', '', 3747, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-Chi.pdf', 0, 'attachment', 'application/pdf', 0),
(3687, 1, '2016-07-30 05:55:57', '2016-07-30 05:55:57', '', 'News Release - Prospectus Launch ENG', '', 'inherit', 'open', 'closed', '', 'news-release-prospectus-launch-eng', '', '', '2016-07-30 08:08:23', '2016-07-30 08:08:23', '', 3749, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-ENG.pdf', 0, 'attachment', 'application/pdf', 0),
(3688, 1, '2016-07-30 05:55:58', '2016-07-30 05:55:58', '', 'News Release - Ranhill Listing BM', '', 'inherit', 'open', 'closed', '', 'news-release-ranhill-listing-bm', '', '', '2016-07-30 08:02:36', '2016-07-30 08:02:36', '', 3741, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-BM.pdf', 0, 'attachment', 'application/pdf', 0),
(3689, 1, '2016-07-30 05:56:00', '2016-07-30 05:56:00', '', 'News Release - Ranhill Listing CHI', '', 'inherit', 'open', 'closed', '', 'news-release-ranhill-listing-chi', '', '', '2016-07-30 08:00:21', '2016-07-30 08:00:21', '', 3737, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-CHI.pdf', 0, 'attachment', 'application/pdf', 0),
(3690, 1, '2016-07-30 05:56:00', '2016-07-30 05:56:00', '', 'News Release - Ranhill Listing ENG', '', 'inherit', 'open', 'closed', '', 'news-release-ranhill-listing-eng', '', '', '2016-07-30 08:02:03', '2016-07-30 08:02:03', '', 3739, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-ENG.pdf', 0, 'attachment', 'application/pdf', 0),
(3691, 1, '2016-07-30 05:56:02', '2016-07-30 05:56:02', '', 'News Release - RWS MOU', '', 'inherit', 'open', 'closed', '', 'news-release-rws-mou', '', '', '2016-07-30 08:03:13', '2016-07-30 08:03:13', '', 3743, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-RWS-MOU.pdf', 0, 'attachment', 'application/pdf', 0),
(3692, 1, '2016-07-30 05:56:03', '2016-07-30 05:56:03', '', 'NR - Ranhill Announcement of Extension (1)', '', 'inherit', 'open', 'closed', '', 'nr-ranhill-announcement-of-extension-1', '', '', '2016-07-30 07:58:38', '2016-07-30 07:58:38', '', 3734, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/NR-Ranhill-Announcement-of-Extension-1.pdf', 0, 'attachment', 'application/pdf', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3693, 1, '2016-07-30 05:56:06', '2016-07-30 05:56:06', '', 'NR - Ranhill Announcement of Extension', '', 'inherit', 'open', 'closed', '', 'nr-ranhill-announcement-of-extension', '', '', '2016-07-30 05:56:06', '2016-07-30 05:56:06', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/NR-Ranhill-Announcement-of-Extension.pdf', 0, 'attachment', 'application/pdf', 0),
(3694, 1, '2016-07-30 06:16:58', '2016-07-30 06:16:58', '', 'Media', '', 'publish', 'open', 'closed', '', 'media', '', '', '2016-07-30 14:32:23', '2016-07-30 14:32:23', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?page_id=3694', 0, 'page', '', 0),
(3695, 1, '2016-07-30 06:03:20', '2016-07-30 06:03:20', '', 'media', '', 'inherit', 'open', 'closed', '', 'media', '', '', '2016-07-30 06:03:20', '2016-07-30 06:03:20', '', 3694, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/media.jpg', 0, 'attachment', 'image/jpeg', 0),
(3697, 1, '2016-07-30 06:20:41', '2016-07-30 06:20:41', '', 'Video', '', 'publish', 'open', 'closed', '', 'video', '', '', '2019-01-29 06:24:58', '2019-01-29 06:24:58', '', 3694, 'http://investors-watch.com/wp-staging/ranhill/new/?page_id=3697', 0, 'page', '', 0),
(3698, 1, '2016-07-30 06:16:58', '2016-07-30 06:16:58', '', 'Media', '', 'inherit', 'closed', 'closed', '', '3694-revision-v1', '', '', '2016-07-30 06:16:58', '2016-07-30 06:16:58', '', 3694, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3694-revision-v1/', 0, 'revision', '', 0),
(3699, 1, '2016-07-30 06:18:35', '2016-07-30 06:18:35', '', 'video', '', 'inherit', 'open', 'closed', '', 'video', '', '', '2016-07-30 06:18:35', '2016-07-30 06:18:35', '', 3697, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/video.jpg', 0, 'attachment', 'image/jpeg', 0),
(3700, 1, '2016-07-30 06:20:41', '2016-07-30 06:20:41', '', 'VIdeo', '', 'inherit', 'closed', 'closed', '', '3697-revision-v1', '', '', '2016-07-30 06:20:41', '2016-07-30 06:20:41', '', 3697, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3697-revision-v1/', 0, 'revision', '', 0),
(3701, 1, '2016-07-30 06:22:41', '2016-07-30 06:22:41', '', 'Video', '', 'inherit', 'closed', 'closed', '', '3697-revision-v1', '', '', '2016-07-30 06:22:41', '2016-07-30 06:22:41', '', 3697, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3697-revision-v1/', 0, 'revision', '', 0),
(3702, 1, '2016-07-30 06:29:16', '2016-07-30 06:29:16', '', 'Press Releases', '', 'publish', 'open', 'closed', '', 'press-releases', '', '', '2019-01-29 01:30:21', '2019-01-29 01:30:21', '', 3694, 'http://investors-watch.com/wp-staging/ranhill/new/?page_id=3702', 0, 'page', '', 0),
(3703, 1, '2016-07-30 06:26:07', '2016-07-30 06:26:07', ' ', '', '', 'publish', 'closed', 'closed', '', '3703', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3703', 19, 'nav_menu_item', '', 0),
(3704, 1, '2016-07-30 06:26:07', '2016-07-30 06:26:07', ' ', '', '', 'publish', 'closed', 'closed', '', '3704', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 3694, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3704', 21, 'nav_menu_item', '', 0),
(3705, 1, '2016-07-30 06:26:21', '2016-07-30 06:26:21', '', 'news', '', 'inherit', 'open', 'closed', '', 'news', '', '', '2016-07-30 06:26:21', '2016-07-30 06:26:21', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/news.jpg', 0, 'attachment', 'image/jpeg', 0),
(3706, 1, '2016-07-30 06:29:08', '2016-07-30 06:29:08', '', 'news_hdr', '', 'inherit', 'open', 'closed', '', 'news_hdr', '', '', '2016-07-30 06:29:08', '2016-07-30 06:29:08', '', 3702, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/news_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(3707, 1, '2016-07-30 06:29:16', '2016-07-30 06:29:16', '', 'Press Release', '', 'inherit', 'closed', 'closed', '', '3702-revision-v1', '', '', '2016-07-30 06:29:16', '2016-07-30 06:29:16', '', 3702, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3702-revision-v1/', 0, 'revision', '', 0),
(3709, 1, '2016-07-30 06:41:34', '2016-07-30 06:41:34', '', 'Water Supply services', '', 'inherit', 'closed', 'closed', '', '110-revision-v1', '', '', '2016-07-30 06:41:34', '2016-07-30 06:41:34', '', 110, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/110-revision-v1/', 0, 'revision', '', 0),
(3710, 1, '2016-07-30 06:41:59', '2016-07-30 06:41:59', '', 'Water and wastewater treatment', '', 'publish', 'open', 'closed', '', 'water-and-waste-water-treatment', '', '', '2017-01-13 06:39:36', '2017-01-13 06:39:36', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/?page_id=3710', 0, 'page', '', 0),
(3711, 1, '2016-07-30 06:42:21', '2016-07-30 06:42:21', '', 'Non-Revenue Water', '', 'publish', 'open', 'closed', '', 'non-revenue-water', '', '', '2018-01-23 08:40:15', '2018-01-23 08:40:15', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/?page_id=3711', 0, 'page', '', 0),
(3712, 1, '2016-07-30 06:44:28', '2016-07-30 06:44:28', '', 'Water and waste water treatment', '', 'inherit', 'closed', 'closed', '', '3710-revision-v1', '', '', '2016-07-30 06:44:28', '2016-07-30 06:44:28', '', 3710, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3710-revision-v1/', 0, 'revision', '', 0),
(3713, 1, '2016-07-30 06:44:47', '2016-07-30 06:44:47', '', 'Non-Revenue Water', '', 'inherit', 'closed', 'closed', '', '3711-revision-v1', '', '', '2016-07-30 06:44:47', '2016-07-30 06:44:47', '', 3711, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3711-revision-v1/', 0, 'revision', '', 0),
(3714, 1, '2016-07-30 06:49:15', '2016-07-30 06:49:15', '', 'Power generation', '', 'inherit', 'closed', 'closed', '', '123-revision-v1', '', '', '2016-07-30 06:49:15', '2016-07-30 06:49:15', '', 123, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/123-revision-v1/', 0, 'revision', '', 0),
(3715, 1, '2016-07-30 07:08:18', '2016-07-30 07:08:18', '', 'news_hdr', '', 'inherit', 'open', 'closed', '', 'news_hdr-2', '', '', '2016-07-30 07:08:18', '2016-07-30 07:08:18', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/news_hdr-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3716, 1, '2016-07-30 07:08:19', '2016-07-30 07:08:19', '', 'news', '', 'inherit', 'open', 'closed', '', 'news-2', '', '', '2016-07-30 07:08:19', '2016-07-30 07:08:19', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/news-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3717, 1, '2016-07-30 07:08:19', '2016-07-30 07:08:19', '', 'nrw_hdr', '', 'inherit', 'open', 'closed', '', 'nrw_hdr', '', '', '2016-07-30 07:08:19', '2016-07-30 07:08:19', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/nrw_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(3718, 1, '2016-07-30 07:08:21', '2016-07-30 07:08:21', '', 'nrw', '', 'inherit', 'open', 'closed', '', 'nrw', '', '', '2016-07-30 07:08:21', '2016-07-30 07:08:21', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/nrw.jpg', 0, 'attachment', 'image/jpeg', 0),
(3719, 1, '2016-07-30 07:08:21', '2016-07-30 07:08:21', '', 'power_gen_hdr', '', 'inherit', 'open', 'closed', '', 'power_gen_hdr', '', '', '2016-07-30 07:08:21', '2016-07-30 07:08:21', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/power_gen_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(3720, 1, '2016-07-30 07:08:22', '2016-07-30 07:08:22', '', 'power_gen', '', 'inherit', 'open', 'closed', '', 'power_gen', '', '', '2016-07-30 07:08:22', '2016-07-30 07:08:22', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/power_gen.jpg', 0, 'attachment', 'image/jpeg', 0),
(3721, 1, '2016-07-30 07:08:26', '2016-07-30 07:08:26', '', 'water_services_hdr', '', 'inherit', 'open', 'closed', '', 'water_services_hdr', '', '', '2016-07-30 07:08:26', '2016-07-30 07:08:26', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/water_services_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(3722, 1, '2016-07-30 07:08:31', '2016-07-30 07:08:31', '', 'water_services', '', 'inherit', 'open', 'closed', '', 'water_services', '', '', '2016-07-30 07:08:31', '2016-07-30 07:08:31', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/water_services.jpg', 0, 'attachment', 'image/jpeg', 0),
(3723, 1, '2016-07-30 07:08:31', '2016-07-30 07:08:31', '', 'waterwaste', '', 'inherit', 'open', 'closed', '', 'waterwaste', '', '', '2016-07-30 07:08:31', '2016-07-30 07:08:31', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/waterwaste.jpg', 0, 'attachment', 'image/jpeg', 0),
(3724, 1, '2016-07-30 07:08:32', '2016-07-30 07:08:32', '', 'waterwaste_hdr', '', 'inherit', 'open', 'closed', '', 'waterwaste_hdr', '', '', '2016-07-30 07:08:32', '2016-07-30 07:08:32', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/waterwaste_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(3726, 1, '2016-07-30 07:26:21', '2016-07-30 07:26:21', ' ', 'Water and Wastewater Treatment', '', 'publish', 'closed', 'closed', '', '3726', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3726', 11, 'nav_menu_item', '', 0),
(3728, 1, '2016-07-30 07:26:21', '2016-07-30 07:26:21', ' ', '', '', 'publish', 'closed', 'closed', '', '3728', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 28, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3728', 12, 'nav_menu_item', '', 0),
(3729, 1, '2016-07-30 07:30:40', '2016-07-30 07:30:40', ' ', '', '', 'publish', 'closed', 'closed', '', '3729', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 3694, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3729', 20, 'nav_menu_item', '', 0),
(3730, 1, '2016-07-30 07:31:41', '2016-07-30 07:31:41', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2016-07-30 07:31:41', '2016-07-30 07:31:41', '', 16, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/16-revision-v1/', 0, 'revision', '', 0),
(3732, 1, '2016-07-30 07:38:48', '2016-07-30 07:38:48', '', 'contactus', '', 'inherit', 'open', 'closed', '', 'contactus', '', '', '2016-07-30 07:38:48', '2016-07-30 07:38:48', '', 16, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/04/contactus.jpg', 0, 'attachment', 'image/jpeg', 0),
(3733, 1, '2016-07-30 07:51:57', '2016-07-30 07:51:57', ' ', '', '', 'publish', 'closed', 'closed', '', '3733', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3733', 22, 'nav_menu_item', '', 0),
(3734, 1, '2016-07-30 07:58:48', '2016-07-30 07:58:48', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/NR-Ranhill-Announcement-of-Extension-1.pdf"]', 'Ranhill Extends Public Offer Period', '', 'publish', 'open', 'open', '', 'ranhill-extends-public-offer-period', '', '', '2016-08-29 06:47:03', '2016-08-29 06:47:03', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3734', 0, 'post', '', 0),
(3736, 1, '2016-07-30 07:58:48', '2016-07-30 07:58:48', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/NR-Ranhill-Announcement-of-Extension-1.pdf"]', 'Ranhill Extends Public Offer Period', '', 'inherit', 'closed', 'closed', '', '3734-revision-v1', '', '', '2016-07-30 07:58:48', '2016-07-30 07:58:48', '', 3734, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3734-revision-v1/', 0, 'revision', '', 0),
(3737, 1, '2016-07-30 08:00:38', '2016-07-30 08:00:38', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-CHI.pdf"]', 'Ranhill Holdings上市主要交易板', '', 'publish', 'open', 'open', '', 'ranhill-holdings%e4%b8%8a%e5%b8%82%e4%b8%bb%e8%a6%81%e4%ba%a4%e6%98%93%e6%9d%bf', '', '', '2019-01-29 01:18:27', '2019-01-29 01:18:27', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3737', 0, 'post', '', 0),
(3738, 1, '2016-07-30 08:00:38', '2016-07-30 08:00:38', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-CHI.pdf"]', 'Ranhill Holdings上市主要交易板', '', 'inherit', 'closed', 'closed', '', '3737-revision-v1', '', '', '2016-07-30 08:00:38', '2016-07-30 08:00:38', '', 3737, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3737-revision-v1/', 0, 'revision', '', 0),
(3739, 1, '2016-07-30 08:02:08', '2016-07-30 08:02:08', '[pdf-embedder url="http://www.ranhill.com.m/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-ENG.pdf"]', 'Ranhill Holdings Lists on Main Board', '', 'publish', 'open', 'open', '', 'ranhill-holdings-lists-on-main-board', '', '', '2016-08-29 06:46:58', '2016-08-29 06:46:58', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3739', 0, 'post', '', 0),
(3740, 1, '2016-07-30 08:02:08', '2016-07-30 08:02:08', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-ENG.pdf"]', 'Ranhill Holdings Lists on Main Board', '', 'inherit', 'closed', 'closed', '', '3739-revision-v1', '', '', '2016-07-30 08:02:08', '2016-07-30 08:02:08', '', 3739, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3739-revision-v1/', 0, 'revision', '', 0),
(3741, 1, '2016-07-30 08:02:39', '2016-07-30 08:02:39', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-BM-1.pdf" title="News-Release-Ranhill-Listing-BM"]', 'Ranhill Holdings Disenaraikan di Papan Utama', '', 'publish', 'open', 'open', '', 'ranhill-holdings-disenaraikan-di-papan-utama', '', '', '2016-08-29 06:38:18', '2016-08-29 06:38:18', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3741', 0, 'post', '', 0),
(3742, 1, '2016-07-30 08:02:39', '2016-07-30 08:02:39', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-BM.pdf"]', 'Ranhill Holdings Disenaraikan di Papan Utama', '', 'inherit', 'closed', 'closed', '', '3741-revision-v1', '', '', '2016-07-30 08:02:39', '2016-07-30 08:02:39', '', 3741, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3741-revision-v1/', 0, 'revision', '', 0),
(3743, 1, '2016-07-30 08:03:16', '2016-07-30 08:03:16', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-RWS-MOU.pdf"]', 'Ranhill Adopts New Technology for Water Leak Detection', '', 'publish', 'open', 'open', '', 'ranhill-adopts-new-technology-for-water-leak-detection', '', '', '2019-01-29 01:20:39', '2019-01-29 01:20:39', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3743', 0, 'post', '', 0),
(3744, 1, '2016-07-30 08:03:16', '2016-07-30 08:03:16', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-RWS-MOU.pdf"]', 'Ranhill Adopts New Technology for Water Leak Detection', '', 'inherit', 'closed', 'closed', '', '3743-revision-v1', '', '', '2016-07-30 08:03:16', '2016-07-30 08:03:16', '', 3743, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3743-revision-v1/', 0, 'revision', '', 0),
(3745, 1, '2016-07-30 08:03:53', '2016-07-30 08:03:53', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-BM.pdf"]', 'Ranhill Yakin Dengan Prospek Perkembangan', '', 'publish', 'open', 'open', '', 'ranhill-yakin-dengan-prospek-perkembangan', '', '', '2019-01-29 01:20:04', '2019-01-29 01:20:04', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3745', 0, 'post', '', 0),
(3746, 1, '2016-07-30 08:03:53', '2016-07-30 08:03:53', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-BM.pdf"]', 'Ranhill Yakin Dengan Prospek Perkembangan', '', 'inherit', 'closed', 'closed', '', '3745-revision-v1', '', '', '2016-07-30 08:03:53', '2016-07-30 08:03:53', '', 3745, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3745-revision-v1/', 0, 'revision', '', 0),
(3747, 1, '2016-07-30 08:07:36', '2016-07-30 08:07:36', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-Chi.pdf"]', 'Ranhill成长前景看涨', '', 'publish', 'open', 'open', '', 'ranhill%e6%88%90%e9%95%bf%e5%89%8d%e6%99%af%e7%9c%8b%e6%b6%a8', '', '', '2019-01-29 01:19:32', '2019-01-29 01:19:32', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3747', 0, 'post', '', 0),
(3748, 1, '2016-07-30 08:07:36', '2016-07-30 08:07:36', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-Chi.pdf"]', 'Ranhill成长前景看涨', '', 'inherit', 'closed', 'closed', '', '3747-revision-v1', '', '', '2016-07-30 08:07:36', '2016-07-30 08:07:36', '', 3747, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3747-revision-v1/', 0, 'revision', '', 0),
(3749, 1, '2016-07-30 08:08:29', '2016-07-30 08:08:29', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-ENG.pdf"]', 'Ranhill Bullish on Growth Prospects', '', 'publish', 'open', 'open', '', 'ranhill-bullish-on-growth-prospects', '', '', '2019-01-29 01:17:34', '2019-01-29 01:17:34', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?p=3749', 0, 'post', '', 0),
(3750, 1, '2016-07-30 08:08:29', '2016-07-30 08:08:29', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-ENG.pdf"]', 'Ranhill Bullish on Growth Prospects', '', 'inherit', 'closed', 'closed', '', '3749-revision-v1', '', '', '2016-07-30 08:08:29', '2016-07-30 08:08:29', '', 3749, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3749-revision-v1/', 0, 'revision', '', 0),
(3751, 1, '2016-07-30 12:58:14', '2016-07-30 12:58:14', '', 'enter', '', 'inherit', 'open', 'closed', '', 'enter', '', '', '2016-07-30 12:58:14', '2016-07-30 12:58:14', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/enter.png', 0, 'attachment', 'image/png', 0),
(3752, 1, '2017-05-30 06:06:35', '2017-05-30 06:06:35', '', 'Home', '', 'inherit', 'closed', 'closed', '', '6-autosave-v1', '', '', '2017-05-30 06:06:35', '2017-05-30 06:06:35', '', 6, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/6-autosave-v1/', 0, 'revision', '', 0),
(3753, 1, '2016-07-30 12:59:47', '2016-07-30 12:59:47', '', 'Home', '', 'publish', 'closed', 'closed', '', 'staging', '', '', '2017-01-16 08:36:10', '2017-01-16 08:36:10', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/?page_id=3753', 0, 'page', '', 0),
(3754, 1, '2016-07-30 13:00:17', '2016-07-30 13:00:17', '', 'Home - with 3 cols', '', 'inherit', 'closed', 'closed', '', '3753-revision-v1', '', '', '2016-07-30 13:00:17', '2016-07-30 13:00:17', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3753-revision-v1/', 0, 'revision', '', 0),
(3755, 1, '2016-07-30 13:02:52', '2016-07-30 13:02:52', '', 'Water and wastewater treatment', '', 'inherit', 'closed', 'closed', '', '3710-revision-v1', '', '', '2016-07-30 13:02:52', '2016-07-30 13:02:52', '', 3710, 'http://investors-watch.com/wp-staging/ranhill/new/2016/07/30/3710-revision-v1/', 0, 'revision', '', 0),
(3756, 1, '2016-07-30 13:07:44', '2016-07-30 13:07:44', '', 'latest_power', '', 'inherit', 'open', 'closed', '', 'latest_power', '', '', '2016-07-30 13:07:44', '2016-07-30 13:07:44', '', 0, 'http://investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/latest_power.jpg', 0, 'attachment', 'image/jpeg', 0),
(3757, 1, '2016-07-30 13:22:15', '2016-07-30 13:22:15', '', 'bod_banner', '', 'inherit', 'open', 'closed', '', 'bod_banner', '', '', '2016-07-30 13:22:15', '2016-07-30 13:22:15', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bod_banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(3758, 1, '2016-07-30 13:22:16', '2016-07-30 13:22:16', '', 'vmv_banner', '', 'inherit', 'open', 'closed', '', 'vmv_banner', '', '', '2016-07-30 13:22:16', '2016-07-30 13:22:16', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/vmv_banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(3759, 1, '2016-07-30 13:45:20', '2016-07-30 13:45:20', '', 'Our Business', '', 'inherit', 'closed', 'closed', '', '28-autosave-v1', '', '', '2016-07-30 13:45:20', '2016-07-30 13:45:20', '', 28, 'http://investors-watch.com/wp-staging/ranhill/28-autosave-v1/', 0, 'revision', '', 0),
(3760, 1, '2016-07-30 13:50:56', '2016-07-30 13:50:56', '', 'logo_ranhill_sml', '', 'inherit', 'open', 'closed', '', 'logo_ranhill_sml', '', '', '2016-07-30 13:50:56', '2016-07-30 13:50:56', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/logo_ranhill_sml.png', 0, 'attachment', 'image/png', 0),
(3762, 1, '2016-07-30 14:13:32', '2016-07-30 14:13:32', '', 'corprate_gov', '', 'inherit', 'open', 'closed', '', 'corprate_gov', '', '', '2016-07-30 14:13:32', '2016-07-30 14:13:32', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/corprate_gov.jpg', 0, 'attachment', 'image/jpeg', 0),
(3763, 1, '2016-07-30 14:13:33', '2016-07-30 14:13:33', '', 'sustainability_report', '', 'inherit', 'open', 'closed', '', 'sustainability_report', '', '', '2016-07-30 14:13:33', '2016-07-30 14:13:33', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/sustainability_report.jpg', 0, 'attachment', 'image/jpeg', 0),
(3764, 1, '2016-07-30 14:27:27', '2016-07-30 14:27:27', '', 'Board Charter v1 (2)', '', 'inherit', 'open', 'closed', '', 'board-charter-v1-2', '', '', '2016-07-30 14:27:27', '2016-07-30 14:27:27', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/Board-Charter-v1-2.pdf', 0, 'attachment', 'application/pdf', 0),
(3765, 1, '2016-07-30 14:29:31', '2016-07-30 14:29:31', '', 'bursa_banner', '', 'inherit', 'open', 'closed', '', 'bursa_banner', '', '', '2016-07-30 14:29:31', '2016-07-30 14:29:31', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/bursa_banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(3766, 1, '2016-07-30 14:31:44', '2016-07-30 14:31:44', '', 'press_release_banner', '', 'inherit', 'open', 'closed', '', 'press_release_banner', '', '', '2016-07-30 14:31:44', '2016-07-30 14:31:44', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/press_release_banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(3767, 1, '2016-07-30 14:31:45', '2016-07-30 14:31:45', '', 'video', '', 'inherit', 'open', 'closed', '', 'video-2', '', '', '2016-07-30 14:31:45', '2016-07-30 14:31:45', '', 0, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/video-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3770, 1, '2016-07-30 15:18:32', '2016-07-30 15:18:32', '', 'CORPORATE SUSTAINABILITY STATEMENT', '', 'inherit', 'open', 'closed', '', 'corporate-sustainability-statement', '', '', '2016-07-30 15:18:32', '2016-07-30 15:18:32', '', 140, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/CORPORATE-SUSTAINABILITY-STATEMENT.pdf', 0, 'attachment', 'application/pdf', 0),
(3771, 1, '2016-07-31 19:22:02', '2016-07-31 19:22:02', '', 'TAN SRI SAW CHOO BOON', '', 'inherit', 'closed', 'closed', '', '284-revision-v1', '', '', '2016-07-31 19:22:02', '2016-07-31 19:22:02', '', 284, 'http://investors-watch.com/wp-staging/ranhill/284-revision-v1/', 0, 'revision', '', 0),
(3772, 1, '2016-08-04 01:24:43', '2016-08-04 01:24:43', ' ', '', '', 'publish', 'closed', 'closed', '', 'home-2', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 0, 'http://investors-watch.com/wp-staging/ranhill/?p=3772', 1, 'nav_menu_item', '', 0),
(3795, 1, '2016-08-04 01:33:23', '2016-08-04 01:33:23', '', 'Home', '', 'inherit', 'closed', 'closed', '', '3753-revision-v1', '', '', '2016-08-04 01:33:23', '2016-08-04 01:33:23', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/3753-revision-v1/', 0, 'revision', '', 0),
(3796, 1, '2016-08-04 01:33:34', '2016-08-04 01:33:34', '', 'Our Technology', '', 'inherit', 'closed', 'closed', '', '125-revision-v1', '', '', '2016-08-04 01:33:34', '2016-08-04 01:33:34', '', 125, 'http://investors-watch.com/wp-staging/ranhill/125-revision-v1/', 0, 'revision', '', 0),
(3797, 1, '2016-08-04 01:52:21', '2016-08-04 01:52:21', '', 'Career', '', 'publish', 'closed', 'closed', '', 'career', '', '', '2018-01-22 02:08:21', '2018-01-22 02:08:21', '', 0, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3797', 0, 'page', '', 0),
(3798, 1, '2016-08-04 01:52:21', '2016-08-04 01:52:21', '', 'Career', '', 'inherit', 'closed', 'closed', '', '3797-revision-v1', '', '', '2016-08-04 01:52:21', '2016-08-04 01:52:21', '', 3797, 'http://investors-watch.com/wp-staging/ranhill/3797-revision-v1/', 0, 'revision', '', 0),
(3799, 1, '2016-08-04 01:52:50', '2016-08-04 01:52:50', ' ', '', '', 'publish', 'closed', 'closed', '', '3799', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 0, 'http://investors-watch.com/wp-staging/ranhill/?p=3799', 26, 'nav_menu_item', '', 0),
(3802, 1, '2016-08-04 02:00:20', '2016-08-04 02:00:20', '', 'Circular Economy', '', 'inherit', 'closed', 'closed', '', '145-revision-v1', '', '', '2016-08-04 02:00:20', '2016-08-04 02:00:20', '', 145, 'http://investors-watch.com/wp-staging/ranhill/145-revision-v1/', 0, 'revision', '', 0),
(3803, 1, '2016-08-04 02:00:20', '2016-08-04 02:00:20', '', 'Ranhill Thought Leadership', '', 'inherit', 'closed', 'closed', '', '148-revision-v1', '', '', '2016-08-04 02:00:20', '2016-08-04 02:00:20', '', 148, 'http://investors-watch.com/wp-staging/ranhill/148-revision-v1/', 0, 'revision', '', 0),
(3804, 1, '2016-08-04 02:00:20', '2016-08-04 02:00:20', '', 'Social', '', 'inherit', 'closed', 'closed', '', '142-revision-v1', '', '', '2016-08-04 02:00:20', '2016-08-04 02:00:20', '', 142, 'http://investors-watch.com/wp-staging/ranhill/142-revision-v1/', 0, 'revision', '', 0),
(3807, 1, '2016-08-04 02:03:34', '2016-08-04 02:03:34', '', 'Our signature projects', '', 'inherit', 'closed', 'closed', '', '127-revision-v1', '', '', '2016-08-04 02:03:34', '2016-08-04 02:03:34', '', 127, 'http://investors-watch.com/wp-staging/ranhill/127-revision-v1/', 0, 'revision', '', 0),
(3808, 1, '2016-08-04 02:03:34', '2016-08-04 02:03:34', '', 'Amata City Water & Wastewater Treatment Plant', '', 'inherit', 'closed', 'closed', '', '272-revision-v1', '', '', '2016-08-04 02:03:34', '2016-08-04 02:03:34', '', 272, 'http://investors-watch.com/wp-staging/ranhill/272-revision-v1/', 0, 'revision', '', 0),
(3809, 1, '2016-08-04 02:03:34', '2016-08-04 02:03:34', '', 'Yingkao wastewater treatment and reclaimed plant China', '', 'inherit', 'closed', 'closed', '', '274-revision-v1', '', '', '2016-08-04 02:03:34', '2016-08-04 02:03:34', '', 274, 'http://investors-watch.com/wp-staging/ranhill/274-revision-v1/', 0, 'revision', '', 0),
(3810, 1, '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 'Advance Pressure Management & Control (APMC)', '', 'inherit', 'closed', 'closed', '', '295-revision-v1', '', '', '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 295, 'http://investors-watch.com/wp-staging/ranhill/295-revision-v1/', 0, 'revision', '', 0),
(3811, 1, '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 'Aquasmart', '', 'inherit', 'closed', 'closed', '', '308-revision-v1', '', '', '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 308, 'http://investors-watch.com/wp-staging/ranhill/308-revision-v1/', 0, 'revision', '', 0),
(3812, 1, '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 'Combine Cycle Gas Turbine (CCGT)', '', 'inherit', 'closed', 'closed', '', '297-revision-v1', '', '', '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 297, 'http://investors-watch.com/wp-staging/ranhill/297-revision-v1/', 0, 'revision', '', 0),
(3813, 1, '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 'Dissolved Air Floatation (DAF)', '', 'inherit', 'closed', 'closed', '', '303-revision-v1', '', '', '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 303, 'http://investors-watch.com/wp-staging/ranhill/303-revision-v1/', 0, 'revision', '', 0),
(3814, 1, '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 'Geographical System & Networking Modelling ( GIS )', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 301, 'http://investors-watch.com/wp-staging/ranhill/301-revision-v1/', 0, 'revision', '', 0),
(3815, 1, '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 'Sequential Batch Reactor (SBR)', '', 'inherit', 'closed', 'closed', '', '306-revision-v1', '', '', '2016-08-04 02:03:58', '2016-08-04 02:03:58', '', 306, 'http://investors-watch.com/wp-staging/ranhill/306-revision-v1/', 0, 'revision', '', 0),
(3817, 1, '2016-08-04 02:10:58', '2016-08-04 02:10:58', '', 'Investor Relations', '', 'publish', 'open', 'closed', '', 'investor-relations', '', '', '2016-08-16 01:45:35', '2016-08-16 01:45:35', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3817', 0, 'page', '', 0),
(3818, 1, '2016-08-04 02:11:35', '2016-08-04 02:11:35', '', 'Investor Relations', '', 'inherit', 'closed', 'closed', '', '3817-revision-v1', '', '', '2016-08-04 02:11:35', '2016-08-04 02:11:35', '', 3817, 'http://investors-watch.com/wp-staging/ranhill/3817-revision-v1/', 0, 'revision', '', 0),
(3819, 1, '2016-08-04 02:11:46', '2016-08-04 02:11:46', '', 'Media', '', 'publish', 'open', 'closed', '', 'media', '', '', '2016-08-04 02:15:24', '2016-08-04 02:15:24', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3819', 0, 'page', '', 0),
(3820, 1, '2016-08-04 02:12:58', '2016-08-04 02:12:58', '', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2016-12-16 09:00:44', '2016-12-16 09:00:44', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3820', 0, 'page', '', 0),
(3821, 1, '2016-08-04 02:13:13', '2016-08-04 02:13:13', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '3820-revision-v1', '', '', '2016-08-04 02:13:13', '2016-08-04 02:13:13', '', 3820, 'http://investors-watch.com/wp-staging/ranhill/3820-revision-v1/', 0, 'revision', '', 0),
(3822, 1, '2016-08-04 02:13:18', '2016-08-04 02:13:18', '', 'About Ranhill', '', 'publish', 'open', 'closed', '', 'about-ranhill', '', '', '2016-08-04 02:13:29', '2016-08-04 02:13:29', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3822', 0, 'page', '', 0),
(3823, 1, '2016-08-04 02:13:29', '2016-08-04 02:13:29', '', 'About Ranhill', '', 'inherit', 'closed', 'closed', '', '3822-revision-v1', '', '', '2016-08-04 02:13:29', '2016-08-04 02:13:29', '', 3822, 'http://investors-watch.com/wp-staging/ranhill/3822-revision-v1/', 0, 'revision', '', 0),
(3824, 1, '2016-08-04 02:13:35', '2016-08-04 02:13:35', '', 'Bursa Announcements', '', 'publish', 'closed', 'closed', '', 'bursa-announcements', '', '', '2016-08-16 01:46:12', '2016-08-16 01:46:12', '', 3817, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3824', 0, 'page', '', 0),
(3825, 1, '2016-08-04 02:13:49', '2016-08-04 02:13:49', '', 'Bursa Announcements', '', 'inherit', 'closed', 'closed', '', '3824-revision-v1', '', '', '2016-08-04 02:13:49', '2016-08-04 02:13:49', '', 3824, 'http://investors-watch.com/wp-staging/ranhill/3824-revision-v1/', 0, 'revision', '', 0),
(3826, 1, '2016-08-04 02:13:55', '2016-08-04 02:13:55', '', 'Our Vision, Mission & Values', '', 'publish', 'closed', 'closed', '', 'our-vision-mission-values', '', '', '2016-11-10 02:01:53', '2016-11-10 02:01:53', '', 3822, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3826', 0, 'page', '', 0),
(3827, 1, '2016-08-04 02:14:11', '2016-08-04 02:14:11', '', 'Our Vision, Mission & Values', '', 'inherit', 'closed', 'closed', '', '3826-revision-v1', '', '', '2016-08-04 02:14:11', '2016-08-04 02:14:11', '', 3826, 'http://investors-watch.com/wp-staging/ranhill/3826-revision-v1/', 0, 'revision', '', 0),
(3828, 1, '2016-08-04 02:14:30', '2016-08-04 02:14:30', '', 'History', '', 'inherit', 'closed', 'closed', '', '133-revision-v1', '', '', '2016-08-04 02:14:30', '2016-08-04 02:14:30', '', 133, 'http://investors-watch.com/wp-staging/ranhill/133-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3829, 1, '2016-08-04 02:14:55', '2016-08-04 02:14:55', '', 'Awards & Recognition', '', 'inherit', 'closed', 'closed', '', '138-revision-v1', '', '', '2016-08-04 02:14:55', '2016-08-04 02:14:55', '', 138, 'http://investors-watch.com/wp-staging/ranhill/138-revision-v1/', 0, 'revision', '', 0),
(3830, 1, '2016-08-04 02:15:24', '2016-08-04 02:15:24', '', 'Media', '', 'inherit', 'closed', 'closed', '', '3819-revision-v1', '', '', '2016-08-04 02:15:24', '2016-08-04 02:15:24', '', 3819, 'http://investors-watch.com/wp-staging/ranhill/3819-revision-v1/', 0, 'revision', '', 0),
(3831, 1, '2016-08-04 02:15:35', '2016-08-04 02:15:35', '', 'Press Release', '', 'publish', 'open', 'closed', '', 'press-release', '', '', '2016-08-04 02:15:57', '2016-08-04 02:15:57', '', 3819, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3831', 0, 'page', '', 0),
(3832, 1, '2016-08-04 02:15:39', '2016-08-04 02:15:39', '', 'Video', '', 'publish', 'open', 'closed', '', 'video', '', '', '2017-01-13 07:21:17', '2017-01-13 07:21:17', '', 3819, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3832', 0, 'page', '', 0),
(3833, 1, '2016-08-04 02:15:57', '2016-08-04 02:15:57', '', 'Press Release', '', 'inherit', 'closed', 'closed', '', '3831-revision-v1', '', '', '2016-08-04 02:15:57', '2016-08-04 02:15:57', '', 3831, 'http://investors-watch.com/wp-staging/ranhill/3831-revision-v1/', 0, 'revision', '', 0),
(3834, 1, '2016-08-04 02:16:05', '2016-08-04 02:16:05', '', 'Video', '', 'inherit', 'closed', 'closed', '', '3832-revision-v1', '', '', '2016-08-04 02:16:05', '2016-08-04 02:16:05', '', 3832, 'http://investors-watch.com/wp-staging/ranhill/3832-revision-v1/', 0, 'revision', '', 0),
(3835, 1, '2016-08-04 02:17:07', '2016-08-04 02:17:07', '', 'Corporate Governance', '', 'publish', 'closed', 'closed', '', 'corporate-governance', '', '', '2016-08-04 02:17:25', '2016-08-04 02:17:25', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3835', 0, 'page', '', 0),
(3836, 1, '2016-08-04 02:17:25', '2016-08-04 02:17:25', '', 'Corporate Governance', '', 'inherit', 'closed', 'closed', '', '3835-revision-v1', '', '', '2016-08-04 02:17:25', '2016-08-04 02:17:25', '', 3835, 'http://investors-watch.com/wp-staging/ranhill/3835-revision-v1/', 0, 'revision', '', 0),
(3844, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3844', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3822, 'http://investors-watch.com/wp-staging/ranhill/?p=3844', 3, 'nav_menu_item', '', 0),
(3846, 1, '2016-08-04 02:21:33', '2016-08-04 02:21:33', ' ', '', '', 'publish', 'closed', 'closed', '', '3846', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?p=3846', 27, 'nav_menu_item', '', 0),
(3849, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3849', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?p=3849', 23, 'nav_menu_item', '', 0),
(3850, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3850', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3819, 'http://investors-watch.com/wp-staging/ranhill/?p=3850', 24, 'nav_menu_item', '', 0),
(3851, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3851', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?p=3851', 12, 'nav_menu_item', '', 0),
(3852, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3852', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?p=3852', 13, 'nav_menu_item', '', 0),
(3854, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3854', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3805, 'http://investors-watch.com/wp-staging/ranhill/?p=3854', 17, 'nav_menu_item', '', 0),
(3855, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3855', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3805, 'http://investors-watch.com/wp-staging/ranhill/?p=3855', 18, 'nav_menu_item', '', 0),
(3857, 1, '2016-08-04 02:21:32', '2016-08-04 02:21:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3857', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3805, 'http://investors-watch.com/wp-staging/ranhill/?p=3857', 16, 'nav_menu_item', '', 0),
(3860, 1, '2016-08-04 02:21:58', '2016-08-04 02:21:58', '', 'Our Businesses', '', 'publish', 'open', 'closed', '', 'our-business', '', '', '2019-02-20 08:38:19', '2019-02-20 08:38:19', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3860', 0, 'page', '', 0),
(3861, 1, '2016-08-04 02:22:33', '2016-08-04 02:22:33', '', 'Our Business', '', 'inherit', 'closed', 'closed', '', '3860-revision-v1', '', '', '2016-08-04 02:22:33', '2016-08-04 02:22:33', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/3860-revision-v1/', 0, 'revision', '', 0),
(3862, 1, '2016-08-04 02:23:16', '2016-08-04 02:23:16', ' ', '', '', 'publish', 'closed', 'closed', '', '3862', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3753, 'http://investors-watch.com/wp-staging/ranhill/?p=3862', 7, 'nav_menu_item', '', 0),
(3863, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Non-Revenue Water', '', 'publish', 'open', 'closed', '', 'non-revenue-water', '', '', '2016-11-29 06:20:20', '2016-11-29 06:20:20', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3863', 0, 'page', '', 0),
(3864, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Clean Energy', '', 'publish', 'closed', 'closed', '', 'clean-energy', '', '', '2016-08-04 02:35:48', '2016-08-04 02:35:48', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3864', 0, 'page', '', 0),
(3865, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Water and wastewater treatment', '', 'publish', 'open', 'closed', '', 'water-and-wastewater-treatment', '', '', '2016-11-10 08:32:17', '2016-11-10 08:32:17', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3865', 0, 'page', '', 0),
(3866, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Water Supply services', '', 'publish', 'open', 'closed', '', 'water-supply-services', '', '', '2017-01-03 06:59:40', '2017-01-03 06:59:40', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?page_id=3866', 0, 'page', '', 0),
(3867, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Non-Revenue Water', '', 'inherit', 'closed', 'closed', '', '3863-revision-v1', '', '', '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 3863, 'http://investors-watch.com/wp-staging/ranhill/3863-revision-v1/', 0, 'revision', '', 0),
(3868, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Power generation', '', 'inherit', 'closed', 'closed', '', '3864-revision-v1', '', '', '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 3864, 'http://investors-watch.com/wp-staging/ranhill/3864-revision-v1/', 0, 'revision', '', 0),
(3869, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Water and wastewater treatment', '', 'inherit', 'closed', 'closed', '', '3865-revision-v1', '', '', '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 3865, 'http://investors-watch.com/wp-staging/ranhill/3865-revision-v1/', 0, 'revision', '', 0),
(3870, 1, '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 'Water Supply services', '', 'inherit', 'closed', 'closed', '', '3866-revision-v1', '', '', '2016-08-04 02:25:45', '2016-08-04 02:25:45', '', 3866, 'http://investors-watch.com/wp-staging/ranhill/3866-revision-v1/', 0, 'revision', '', 0),
(3871, 1, '2016-08-04 02:26:26', '2016-08-04 02:26:26', ' ', 'Water Supply Services', '', 'publish', 'closed', 'closed', '', '3871', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?p=3871', 8, 'nav_menu_item', '', 0),
(3872, 1, '2016-08-04 02:26:26', '2016-08-04 02:26:26', ' ', 'Water and Wastewater Treatment', '', 'publish', 'closed', 'closed', '', '3872', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?p=3872', 9, 'nav_menu_item', '', 0),
(3873, 1, '2016-08-04 02:26:26', '2016-08-04 02:26:26', ' ', '', '', 'publish', 'closed', 'closed', '', '3873', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?p=3873', 11, 'nav_menu_item', '', 0),
(3874, 1, '2016-08-04 02:26:26', '2016-08-04 02:26:26', ' ', '', '', 'publish', 'closed', 'closed', '', '3874', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3860, 'http://investors-watch.com/wp-staging/ranhill/?p=3874', 10, 'nav_menu_item', '', 0),
(3877, 1, '2016-08-04 02:29:32', '2016-08-04 02:29:32', ' ', '', '', 'publish', 'closed', 'closed', '', '3877', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3819, 'http://investors-watch.com/wp-staging/ranhill/?p=3877', 25, 'nav_menu_item', '', 0),
(3878, 1, '2016-08-04 02:35:37', '2016-08-04 02:35:37', '', 'Clean Energy', '', 'inherit', 'closed', 'closed', '', '3864-autosave-v1', '', '', '2016-08-04 02:35:37', '2016-08-04 02:35:37', '', 3864, 'http://investors-watch.com/wp-staging/ranhill/3864-autosave-v1/', 0, 'revision', '', 0),
(3879, 1, '2016-08-04 02:35:48', '2016-08-04 02:35:48', '', 'Clean Energy', '', 'inherit', 'closed', 'closed', '', '3864-revision-v1', '', '', '2016-08-04 02:35:48', '2016-08-04 02:35:48', '', 3864, 'http://investors-watch.com/wp-staging/ranhill/3864-revision-v1/', 0, 'revision', '', 0),
(3886, 1, '2016-08-15 04:23:06', '2016-08-15 04:23:06', '', 'Bursa Announcementshttp://investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', '', 'inherit', 'closed', 'closed', '', '3824-autosave-v1', '', '', '2016-08-15 04:23:06', '2016-08-15 04:23:06', '', 3824, 'http://investors-watch.com/wp-staging/ranhill/3824-autosave-v1/', 0, 'revision', '', 0),
(3889, 1, '2016-08-17 06:16:19', '2016-08-17 06:16:19', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/Press-Release-RWS-NRW-Kelantan-1.pdf" title="Press Release - RWS NRW Kelantan"]', 'Ranhill Awarded NRW Contract Worth RM15.9 Million', '', 'publish', 'open', 'open', '', 'ranhill-awarded-nrw-contract-worth-rm15-9-million', '', '', '2019-01-29 01:16:54', '2019-01-29 01:16:54', '', 0, 'http://investors-watch.com/wp-staging/ranhill/?p=3889', 0, 'post', '', 0),
(3890, 1, '2016-08-17 06:15:38', '2016-08-17 06:15:38', '', 'Press Release - RWS NRW Kelantan', '', 'inherit', 'open', 'closed', '', 'press-release-rws-nrw-kelantan', '', '', '2016-08-17 06:15:38', '2016-08-17 06:15:38', '', 3889, 'http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/Press-Release-RWS-NRW-Kelantan.pdf', 0, 'attachment', 'application/pdf', 0),
(3891, 1, '2016-08-17 06:16:19', '2016-08-17 06:16:19', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/Press-Release-RWS-NRW-Kelantan.pdf" title="Press Release - RWS NRW Kelantan"]', 'Ranhill Awarded NRW Contract Worth RM15.9 Million', '', 'inherit', 'closed', 'closed', '', '3889-revision-v1', '', '', '2016-08-17 06:16:19', '2016-08-17 06:16:19', '', 3889, 'http://investors-watch.com/wp-staging/ranhill/3889-revision-v1/', 0, 'revision', '', 0),
(3893, 1, '2016-08-26 07:46:47', '2016-08-26 07:46:47', '', 'Investor Relations', '', 'inherit', 'closed', 'closed', '', '3609-revision-v1', '', '', '2016-08-26 07:46:47', '2016-08-26 07:46:47', '', 3609, 'http://www.investors-watch.com/wp-staging/ranhill/3609-revision-v1/', 0, 'revision', '', 0),
(3894, 1, '2016-10-13 03:45:02', '2016-10-13 03:45:02', '', 'Sharing Our Expertise', '', 'publish', 'closed', 'closed', '', 'sharing-our-expertise', '', '', '2017-01-16 02:21:34', '2017-01-16 02:21:34', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=3894', 0, 'page', '', 0),
(3897, 1, '2016-08-26 07:50:25', '2016-08-26 07:50:25', '', '', '', 'inherit', 'closed', 'closed', '', '3894-revision-v1', '', '', '2016-08-26 07:50:25', '2016-08-26 07:50:25', '', 3894, 'http://www.investors-watch.com/wp-staging/ranhill/3894-revision-v1/', 0, 'revision', '', 0),
(3899, 1, '2016-08-26 08:04:41', '0000-00-00 00:00:00', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d"]', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-08-26 08:04:41', '2016-08-26 08:04:41', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=3899', 0, 'page', '', 0),
(3900, 1, '2016-08-26 07:51:05', '2016-08-26 07:51:05', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" use_shortcode_attributes_only="true" src="http://www.insage.com.my/IR/RANHILL" width="100%"  scrolling="none" id="advanced_iframe" onload_scroll_top="true" hide_page_until_loaded="true" enable_responsive_iframe="true" enable_external_height_workaround="true" ]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 07:51:05', '2016-08-26 07:51:05', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3901, 1, '2016-08-26 07:51:30', '2016-08-26 07:51:30', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" use_shortcode_attributes_only="true" src="http://www.insage.com.my/IR/RANHILL" ]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 07:51:30', '2016-08-26 07:51:30', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3902, 1, '2016-08-26 07:52:38', '2016-08-26 07:52:38', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" src="http://www.insage.com.my/ir/ranhill/"]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 07:52:38', '2016-08-26 07:52:38', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3903, 1, '2016-08-26 07:55:05', '2016-08-26 07:55:05', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d"]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 07:55:05', '2016-08-26 07:55:05', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3904, 1, '2016-08-26 07:55:37', '2016-08-26 07:55:37', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" height="1400"]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 07:55:37', '2016-08-26 07:55:37', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3905, 1, '2016-08-26 07:55:58', '2016-08-26 07:55:58', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" src="http://insage.com.my/ir/ranhill/" height="1400"]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 07:55:58', '2016-08-26 07:55:58', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3906, 1, '2016-08-26 07:56:17', '2016-08-26 07:56:17', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d" src="http://insage.com.my/ir/ranhill/" height="1300"]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 07:56:17', '2016-08-26 07:56:17', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3907, 1, '2016-08-26 08:04:36', '2016-08-26 08:04:36', '[advanced_iframe securitykey="9aed5192cb8b13ad410d79f4bdd731e96a72502d"]', '', '', 'inherit', 'closed', 'closed', '', '3899-revision-v1', '', '', '2016-08-26 08:04:36', '2016-08-26 08:04:36', '', 3899, 'http://www.investors-watch.com/wp-staging/ranhill/3899-revision-v1/', 0, 'revision', '', 0),
(3908, 1, '2016-08-29 05:37:20', '2016-08-29 05:37:20', '', 'TAN SRI HAMDAN MOHAMAD', '', 'inherit', 'closed', 'closed', '', '279-autosave-v1', '', '', '2016-08-29 05:37:20', '2016-08-29 05:37:20', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/279-autosave-v1/', 0, 'revision', '', 0),
(3909, 1, '2016-08-29 05:37:56', '2016-08-29 05:37:56', '', 'TAN SRI HAMDAN MOHAMAD', '', 'inherit', 'closed', 'closed', '', '279-revision-v1', '', '', '2016-08-29 05:37:56', '2016-08-29 05:37:56', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/279-revision-v1/', 0, 'revision', '', 0),
(3910, 1, '2016-08-29 05:45:51', '2016-08-29 05:45:51', '', 'abuttalib', '', 'inherit', 'open', 'closed', '', 'abuttalib', '', '', '2016-08-29 05:45:51', '2016-08-29 05:45:51', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/abuttalib.jpg', 0, 'attachment', 'image/jpeg', 0),
(3911, 1, '2016-08-29 05:45:52', '2016-08-29 05:45:52', '', 'datosrilim', '', 'inherit', 'open', 'closed', '', 'datosrilim', '', '', '2016-08-29 05:45:52', '2016-08-29 05:45:52', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/datosrilim.png', 0, 'attachment', 'image/png', 0),
(3912, 1, '2016-08-29 05:45:53', '2016-08-29 05:45:53', '', 'datozulifli', '', 'inherit', 'open', 'closed', '', 'datozulifli', '', '', '2016-08-29 05:45:53', '2016-08-29 05:45:53', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/datozulifli.jpg', 0, 'attachment', 'image/jpeg', 0),
(3913, 1, '2016-08-29 05:45:54', '2016-08-29 05:45:54', '', 'datukdrniknorzrul-1', '', 'inherit', 'open', 'closed', '', 'datukdrniknorzrul-1', '', '', '2016-08-29 05:45:54', '2016-08-29 05:45:54', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/datukdrniknorzrul-1.png', 0, 'attachment', 'image/png', 0),
(3914, 1, '2016-08-29 05:45:55', '2016-08-29 05:45:55', '', 'datukserisawchoosoon', '', 'inherit', 'open', 'closed', '', 'datukserisawchoosoon', '', '', '2016-08-29 05:45:55', '2016-08-29 05:45:55', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/datukserisawchoosoon.png', 0, 'attachment', 'image/png', 0),
(3915, 1, '2016-08-29 05:45:56', '2016-08-29 05:45:56', '', 'davidlim-1', '', 'inherit', 'open', 'closed', '', 'davidlim-1', '', '', '2016-08-29 05:45:56', '2016-08-29 05:45:56', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/davidlim-1.png', 0, 'attachment', 'image/png', 0),
(3916, 1, '2016-08-29 05:45:57', '2016-08-29 05:45:57', '', 'tansrihamdan', '', 'inherit', 'open', 'closed', '', 'tansrihamdan', '', '', '2016-08-29 05:45:57', '2016-08-29 05:45:57', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/tansrihamdan.png', 0, 'attachment', 'image/png', 0),
(3917, 1, '2016-08-29 05:45:58', '2016-08-29 05:45:58', '', 'tansrizeman', '', 'inherit', 'open', 'closed', '', 'tansrizeman', '', '', '2016-08-29 05:45:58', '2016-08-29 05:45:58', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/tansrizeman.png', 0, 'attachment', 'image/png', 0),
(3918, 1, '2016-08-29 05:48:07', '2016-08-29 05:48:07', '', '01', '', 'inherit', 'open', 'closed', '', '01', '', '', '2016-08-29 05:48:07', '2016-08-29 05:48:07', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/01.jpg', 0, 'attachment', 'image/jpeg', 0),
(3919, 1, '2016-08-29 05:48:10', '2016-08-29 05:48:10', '', '02', '', 'inherit', 'open', 'closed', '', '02', '', '', '2016-08-29 05:48:10', '2016-08-29 05:48:10', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/02.jpg', 0, 'attachment', 'image/jpeg', 0),
(3920, 1, '2016-08-29 05:48:11', '2016-08-29 05:48:11', '', '03', '', 'inherit', 'open', 'closed', '', '03', '', '', '2016-08-29 05:48:11', '2016-08-29 05:48:11', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/03.jpg', 0, 'attachment', 'image/jpeg', 0),
(3921, 1, '2016-08-29 05:48:12', '2016-08-29 05:48:12', '', '04', '', 'inherit', 'open', 'closed', '', '04', '', '', '2016-08-29 05:48:12', '2016-08-29 05:48:12', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/04.jpg', 0, 'attachment', 'image/jpeg', 0),
(3922, 1, '2016-08-29 05:48:14', '2016-08-29 05:48:14', '', '05', '', 'inherit', 'open', 'closed', '', '05', '', '', '2016-08-29 05:48:14', '2016-08-29 05:48:14', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/05.jpg', 0, 'attachment', 'image/jpeg', 0),
(3923, 1, '2016-08-29 05:48:15', '2016-08-29 05:48:15', '', '06', '', 'inherit', 'open', 'closed', '', '06', '', '', '2016-08-29 05:48:15', '2016-08-29 05:48:15', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpg', 0, 'attachment', 'image/jpeg', 0),
(3924, 1, '2016-08-29 05:48:16', '2016-08-29 05:48:16', '', '07', '', 'inherit', 'open', 'closed', '', '07', '', '', '2016-08-29 05:48:16', '2016-08-29 05:48:16', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/07.jpg', 0, 'attachment', 'image/jpeg', 0),
(3925, 1, '2016-08-29 05:48:17', '2016-08-29 05:48:17', '', '08', '', 'inherit', 'open', 'closed', '', '08', '', '', '2016-08-29 05:48:17', '2016-08-29 05:48:17', '', 279, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/08.jpg', 0, 'attachment', 'image/jpeg', 0),
(3926, 1, '2016-08-29 05:49:08', '2016-08-29 05:49:08', '', 'TAN SRI MOHAMED AZMAN YAHYA', '', 'inherit', 'closed', 'closed', '', '211-revision-v1', '', '', '2016-08-29 05:49:08', '2016-08-29 05:49:08', '', 211, 'http://www.investors-watch.com/wp-staging/ranhill/211-revision-v1/', 0, 'revision', '', 0),
(3927, 1, '2016-08-29 05:53:23', '2016-08-29 05:53:23', '', 'DATO SRI LIM HAW KUANG', '', 'inherit', 'closed', 'closed', '', '281-revision-v1', '', '', '2016-08-29 05:53:23', '2016-08-29 05:53:23', '', 281, 'http://www.investors-watch.com/wp-staging/ranhill/281-revision-v1/', 0, 'revision', '', 0),
(3928, 1, '2016-08-29 05:56:42', '2016-08-29 05:56:42', '', 'TAN SRI SAW CHOO BOON', '', 'inherit', 'closed', 'closed', '', '284-autosave-v1', '', '', '2016-08-29 05:56:42', '2016-08-29 05:56:42', '', 284, 'http://www.investors-watch.com/wp-staging/ranhill/284-autosave-v1/', 0, 'revision', '', 0),
(3929, 1, '2016-08-29 05:59:29', '2016-08-29 05:59:29', '', 'LIM HUN SOON', '', 'inherit', 'closed', 'closed', '', '282-revision-v1', '', '', '2016-08-29 05:59:29', '2016-08-29 05:59:29', '', 282, 'http://www.investors-watch.com/wp-staging/ranhill/282-revision-v1/', 0, 'revision', '', 0),
(3933, 1, '2016-08-29 06:10:53', '2016-08-29 06:10:53', '', 'ABU TALIB ABDUL RAHMAN', '', 'inherit', 'closed', 'closed', '', '288-revision-v1', '', '', '2016-08-29 06:10:53', '2016-08-29 06:10:53', '', 288, 'http://www.investors-watch.com/wp-staging/ranhill/288-revision-v1/', 0, 'revision', '', 0),
(3935, 1, '2016-08-29 06:14:52', '2016-08-29 06:14:52', '', 'CORPORATE SUSTAINABILITY STATEMENT', '', 'inherit', 'open', 'closed', '', 'corporate-sustainability-statement-2', '', '', '2016-08-29 06:14:52', '2016-08-29 06:14:52', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/CORPORATE-SUSTAINABILITY-STATEMENT.pdf', 0, 'attachment', 'application/pdf', 0),
(3936, 1, '2016-08-29 06:21:08', '2016-08-29 06:21:08', '', 'Press Release - RWS NRW Kelantan', '', 'inherit', 'open', 'closed', '', 'press-release-rws-nrw-kelantan-2', '', '', '2016-08-29 06:21:08', '2016-08-29 06:21:08', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/Press-Release-RWS-NRW-Kelantan-1.pdf', 0, 'attachment', 'application/pdf', 0),
(3937, 1, '2016-08-29 06:21:37', '2016-08-29 06:21:37', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/Press-Release-RWS-NRW-Kelantan-1.pdf" title="Press Release - RWS NRW Kelantan"]', 'Ranhill Awarded NRW Contract Worth RM15.9 Million', '', 'inherit', 'closed', 'closed', '', '3889-revision-v1', '', '', '2016-08-29 06:21:37', '2016-08-29 06:21:37', '', 3889, 'http://www.investors-watch.com/wp-staging/ranhill/3889-revision-v1/', 0, 'revision', '', 0),
(3938, 1, '2016-08-29 06:22:22', '2016-08-29 06:22:22', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/News-Release-RWS-MOU.pdf"]', 'Ranhill Adopts New Technology for Water Leak Detection', '', 'inherit', 'closed', 'closed', '', '3743-revision-v1', '', '', '2016-08-29 06:22:22', '2016-08-29 06:22:22', '', 3743, 'http://www.investors-watch.com/wp-staging/ranhill/3743-revision-v1/', 0, 'revision', '', 0),
(3939, 1, '2016-08-29 06:35:23', '2016-08-29 06:35:23', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-BM.pdf"]', 'Ranhill Holdings Disenaraikan di Papan Utama', '', 'inherit', 'closed', 'closed', '', '3741-revision-v1', '', '', '2016-08-29 06:35:23', '2016-08-29 06:35:23', '', 3741, 'http://www.investors-watch.com/wp-staging/ranhill/3741-revision-v1/', 0, 'revision', '', 0),
(3940, 1, '2016-08-29 06:38:15', '2016-08-29 06:38:15', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-BM-1.pdf" title="News-Release-Ranhill-Listing-BM"]', 'Ranhill Holdings Disenaraikan di Papan Utama', '', 'inherit', 'closed', 'closed', '', '3741-autosave-v1', '', '', '2016-08-29 06:38:15', '2016-08-29 06:38:15', '', 3741, 'http://www.investors-watch.com/wp-staging/ranhill/3741-autosave-v1/', 0, 'revision', '', 0),
(3941, 1, '2016-08-29 06:38:10', '2016-08-29 06:38:10', '', 'News-Release-Ranhill-Listing-BM', '', 'inherit', 'open', 'closed', '', 'news-release-ranhill-listing-bm-2', '', '', '2016-08-29 06:38:10', '2016-08-29 06:38:10', '', 3741, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-BM-1.pdf', 0, 'attachment', 'application/pdf', 0),
(3942, 1, '2016-08-29 06:38:18', '2016-08-29 06:38:18', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/News-Release-Ranhill-Listing-BM-1.pdf" title="News-Release-Ranhill-Listing-BM"]', 'Ranhill Holdings Disenaraikan di Papan Utama', '', 'inherit', 'closed', 'closed', '', '3741-revision-v1', '', '', '2016-08-29 06:38:18', '2016-08-29 06:38:18', '', 3741, 'http://www.investors-watch.com/wp-staging/ranhill/3741-revision-v1/', 0, 'revision', '', 0),
(3943, 1, '2016-08-29 06:39:09', '2016-08-29 06:39:09', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-ENG.pdf"]', 'Ranhill Bullish on Growth Prospects', '', 'inherit', 'closed', 'closed', '', '3749-revision-v1', '', '', '2016-08-29 06:39:09', '2016-08-29 06:39:09', '', 3749, 'http://www.investors-watch.com/wp-staging/ranhill/3749-revision-v1/', 0, 'revision', '', 0),
(3944, 1, '2016-08-29 06:39:23', '2016-08-29 06:39:23', '', 'News-Release-Prospectus-Launch-BM', '', 'inherit', 'open', 'closed', '', 'news-release-prospectus-launch-bm-2', '', '', '2016-08-29 06:39:23', '2016-08-29 06:39:23', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-BM.pdf', 0, 'attachment', 'application/pdf', 0),
(3945, 1, '2016-08-29 06:39:26', '2016-08-29 06:39:26', '', 'News-Release-Prospectus-Launch-Chi', '', 'inherit', 'open', 'closed', '', 'news-release-prospectus-launch-chi-2', '', '', '2016-08-29 06:39:26', '2016-08-29 06:39:26', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-Chi.pdf', 0, 'attachment', 'application/pdf', 0),
(3946, 1, '2016-08-29 06:39:27', '2016-08-29 06:39:27', '', 'News-Release-Prospectus-Launch-ENG', '', 'inherit', 'open', 'closed', '', 'news-release-prospectus-launch-eng-2', '', '', '2016-08-29 06:39:27', '2016-08-29 06:39:27', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-ENG.pdf', 0, 'attachment', 'application/pdf', 0),
(3947, 1, '2016-08-29 06:39:28', '2016-08-29 06:39:28', '', 'News-Release-Ranhill-Listing-CHI', '', 'inherit', 'open', 'closed', '', 'news-release-ranhill-listing-chi-2', '', '', '2016-08-29 06:39:28', '2016-08-29 06:39:28', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-CHI.pdf', 0, 'attachment', 'application/pdf', 0),
(3948, 1, '2016-08-29 06:39:29', '2016-08-29 06:39:29', '', 'News-Release-Ranhill-Listing-ENG', '', 'inherit', 'open', 'closed', '', 'news-release-ranhill-listing-eng-2', '', '', '2016-08-29 06:40:25', '2016-08-29 06:40:25', '', 3749, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-ENG.pdf', 0, 'attachment', 'application/pdf', 0),
(3949, 1, '2016-08-29 06:39:31', '2016-08-29 06:39:31', '', 'News-Release-RWS-MOU', '', 'inherit', 'open', 'closed', '', 'news-release-rws-mou-2', '', '', '2016-08-29 06:39:31', '2016-08-29 06:39:31', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-RWS-MOU.pdf', 0, 'attachment', 'application/pdf', 0),
(3950, 1, '2016-08-29 06:39:34', '2016-08-29 06:39:34', '', 'NR-Ranhill-Announcement-of-Extension-1', '', 'inherit', 'open', 'closed', '', 'nr-ranhill-announcement-of-extension-1-2', '', '', '2016-08-29 06:39:34', '2016-08-29 06:39:34', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/NR-Ranhill-Announcement-of-Extension-1.pdf', 0, 'attachment', 'application/pdf', 0),
(3951, 1, '2016-08-29 06:39:35', '2016-08-29 06:39:35', '', 'NR-Ranhill-Announcement-of-Extension', '', 'inherit', 'open', 'closed', '', 'nr-ranhill-announcement-of-extension-2', '', '', '2016-08-29 06:39:35', '2016-08-29 06:39:35', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/NR-Ranhill-Announcement-of-Extension.pdf', 0, 'attachment', 'application/pdf', 0),
(3952, 1, '2016-08-29 06:40:00', '2016-08-29 06:40:00', '[pdf-embedder url="http://investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-ENG.pdf"]', 'Ranhill Bullish on Growth Prospects', '', 'inherit', 'closed', 'closed', '', '3749-revision-v1', '', '', '2016-08-29 06:40:00', '2016-08-29 06:40:00', '', 3749, 'http://www.investors-watch.com/wp-staging/ranhill/3749-revision-v1/', 0, 'revision', '', 0),
(3953, 1, '2016-08-29 06:40:36', '2016-08-29 06:40:36', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-ENG.pdf"]', 'Ranhill Bullish on Growth Prospects', '', 'inherit', 'closed', 'closed', '', '3749-revision-v1', '', '', '2016-08-29 06:40:36', '2016-08-29 06:40:36', '', 3749, 'http://www.investors-watch.com/wp-staging/ranhill/3749-revision-v1/', 0, 'revision', '', 0),
(3955, 1, '2016-08-29 06:44:37', '2016-08-29 06:44:37', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-Chi.pdf"]', 'Ranhill成长前景看涨', '', 'inherit', 'closed', 'closed', '', '3747-autosave-v1', '', '', '2016-08-29 06:44:37', '2016-08-29 06:44:37', '', 3747, 'http://www.investors-watch.com/wp-staging/ranhill/3747-autosave-v1/', 0, 'revision', '', 0),
(3956, 1, '2016-08-29 06:44:26', '2016-08-29 06:44:26', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-Chi.pdf"]', 'Ranhill成长前景看涨', '', 'inherit', 'closed', 'closed', '', '3747-revision-v1', '', '', '2016-08-29 06:44:26', '2016-08-29 06:44:26', '', 3747, 'http://www.investors-watch.com/wp-staging/ranhill/3747-revision-v1/', 0, 'revision', '', 0),
(3957, 1, '2016-08-29 06:44:31', '2016-08-29 06:44:31', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/07/News-Release-Prospectus-Launch-BM.pdf"]', 'Ranhill Yakin Dengan Prospek Perkembangan', '', 'inherit', 'closed', 'closed', '', '3745-revision-v1', '', '', '2016-08-29 06:44:31', '2016-08-29 06:44:31', '', 3745, 'http://www.investors-watch.com/wp-staging/ranhill/3745-revision-v1/', 0, 'revision', '', 0),
(3958, 1, '2016-08-29 06:44:40', '2016-08-29 06:44:40', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-Chi.pdf"]', 'Ranhill成长前景看涨', '', 'inherit', 'closed', 'closed', '', '3747-revision-v1', '', '', '2016-08-29 06:44:40', '2016-08-29 06:44:40', '', 3747, 'http://www.investors-watch.com/wp-staging/ranhill/3747-revision-v1/', 0, 'revision', '', 0),
(3959, 1, '2016-08-29 06:44:47', '2016-08-29 06:44:47', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-BM.pdf"]', 'Ranhill Yakin Dengan Prospek Perkembangan', '', 'inherit', 'closed', 'closed', '', '3745-revision-v1', '', '', '2016-08-29 06:44:47', '2016-08-29 06:44:47', '', 3745, 'http://www.investors-watch.com/wp-staging/ranhill/3745-revision-v1/', 0, 'revision', '', 0),
(3960, 1, '2016-08-29 06:44:57', '2016-08-29 06:44:57', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-RWS-MOU.pdf"]', 'Ranhill Adopts New Technology for Water Leak Detection', '', 'inherit', 'closed', 'closed', '', '3743-revision-v1', '', '', '2016-08-29 06:44:57', '2016-08-29 06:44:57', '', 3743, 'http://www.investors-watch.com/wp-staging/ranhill/3743-revision-v1/', 0, 'revision', '', 0),
(3961, 1, '2016-08-29 06:45:05', '2016-08-29 06:45:05', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-ENG.pdf"]', 'Ranhill Holdings Lists on Main Board', '', 'inherit', 'closed', 'closed', '', '3739-revision-v1', '', '', '2016-08-29 06:45:05', '2016-08-29 06:45:05', '', 3739, 'http://www.investors-watch.com/wp-staging/ranhill/3739-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3962, 1, '2016-08-29 06:45:13', '2016-08-29 06:45:13', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/08/NR-Ranhill-Announcement-of-Extension-1.pdf"]', 'Ranhill Extends Public Offer Period', '', 'inherit', 'closed', 'closed', '', '3734-revision-v1', '', '', '2016-08-29 06:45:13', '2016-08-29 06:45:13', '', 3734, 'http://www.investors-watch.com/wp-staging/ranhill/3734-revision-v1/', 0, 'revision', '', 0),
(3963, 1, '2016-08-29 06:45:22', '2016-08-29 06:45:22', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/new/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-CHI.pdf"]', 'Ranhill Holdings上市主要交易板', '', 'inherit', 'closed', 'closed', '', '3737-revision-v1', '', '', '2016-08-29 06:45:22', '2016-08-29 06:45:22', '', 3737, 'http://www.investors-watch.com/wp-staging/ranhill/3737-revision-v1/', 0, 'revision', '', 0),
(3964, 1, '2016-08-29 06:46:42', '2016-08-29 06:46:42', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-Chi.pdf"]', 'Ranhill成长前景看涨', '', 'inherit', 'closed', 'closed', '', '3747-revision-v1', '', '', '2016-08-29 06:46:42', '2016-08-29 06:46:42', '', 3747, 'http://www.investors-watch.com/wp-staging/ranhill/3747-revision-v1/', 0, 'revision', '', 0),
(3965, 1, '2016-08-29 06:46:49', '2016-08-29 06:46:49', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Prospectus-Launch-BM.pdf"]', 'Ranhill Yakin Dengan Prospek Perkembangan', '', 'inherit', 'closed', 'closed', '', '3745-revision-v1', '', '', '2016-08-29 06:46:49', '2016-08-29 06:46:49', '', 3745, 'http://www.investors-watch.com/wp-staging/ranhill/3745-revision-v1/', 0, 'revision', '', 0),
(3966, 1, '2016-08-29 06:46:58', '2016-08-29 06:46:58', '[pdf-embedder url="http://www.ranhill.com.m/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-ENG.pdf"]', 'Ranhill Holdings Lists on Main Board', '', 'inherit', 'closed', 'closed', '', '3739-revision-v1', '', '', '2016-08-29 06:46:58', '2016-08-29 06:46:58', '', 3739, 'http://www.investors-watch.com/wp-staging/ranhill/3739-revision-v1/', 0, 'revision', '', 0),
(3967, 1, '2016-08-29 06:47:03', '2016-08-29 06:47:03', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/NR-Ranhill-Announcement-of-Extension-1.pdf"]', 'Ranhill Extends Public Offer Period', '', 'inherit', 'closed', 'closed', '', '3734-revision-v1', '', '', '2016-08-29 06:47:03', '2016-08-29 06:47:03', '', 3734, 'http://www.investors-watch.com/wp-staging/ranhill/3734-revision-v1/', 0, 'revision', '', 0),
(3968, 1, '2016-08-29 06:47:09', '2016-08-29 06:47:09', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/News-Release-Ranhill-Listing-CHI.pdf"]', 'Ranhill Holdings上市主要交易板', '', 'inherit', 'closed', 'closed', '', '3737-revision-v1', '', '', '2016-08-29 06:47:09', '2016-08-29 06:47:09', '', 3737, 'http://www.investors-watch.com/wp-staging/ranhill/3737-revision-v1/', 0, 'revision', '', 0),
(3972, 1, '2016-09-01 06:50:16', '2016-09-01 06:50:16', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/01092016RWHK-divestment.pdf" title="Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company"]', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company', '', 'publish', 'open', 'open', '', 'ranhill-signs-term-sheet-to-divest-60-of-its-water-treatment-operations-to-siic-environment-an-sgx-st-mainboard-listed-company', '', '', '2019-01-29 01:16:26', '2019-01-29 01:16:26', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=3972', 0, 'post', '', 0),
(3973, 1, '2016-09-01 06:49:49', '2016-09-01 06:49:49', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company\n', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company\n', 'inherit', 'open', 'closed', '', '01092016rwhk-divestment', '', '', '2016-09-01 06:50:03', '2016-09-01 06:50:03', '', 3972, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/01092016RWHK-divestment.pdf', 0, 'attachment', 'application/pdf', 0),
(3974, 1, '2016-09-01 06:50:16', '2016-09-01 06:50:16', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/01092016RWHK-divestment.pdf" title="Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company"]', 'Ranhill signs term sheet to divest 60% of its water treatment operations to SIIC Environment, an SGX-ST Mainboard-listed company', '', 'inherit', 'closed', 'closed', '', '3972-revision-v1', '', '', '2016-09-01 06:50:16', '2016-09-01 06:50:16', '', 3972, 'http://www.investors-watch.com/wp-staging/ranhill/3972-revision-v1/', 0, 'revision', '', 0),
(3975, 1, '2016-09-02 06:59:56', '2016-09-02 06:59:56', '<h2 style="margin-bottom: 0px;">Fraud Report Form\r\n</h2>\r\n[divider height="30"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \r\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make complaint [divider height="30"] \r\n\r\n[contact-form-7 id="3980" title="Whistle blowing"]', 'Fraud Report Form', '', 'publish', 'closed', 'closed', '', 'whistle-blowing-form', '', '', '2016-09-02 07:06:52', '2016-09-02 07:06:52', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=3975', 0, 'page', '', 0),
(3976, 1, '2016-09-02 06:52:33', '2016-09-02 06:52:33', '', 'Whistleblowing', '', 'publish', 'closed', 'closed', '', 'whistle-blowing', '', '', '2017-01-16 02:55:29', '2017-01-16 02:55:29', '', 26, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=3976', 0, 'page', '', 0),
(3977, 1, '2016-09-02 06:48:51', '2016-09-02 06:48:51', '', 'Screen Shot 2016-09-02 at 2.47.30 PM', '', 'inherit', 'open', 'closed', '', 'screen-shot-2016-09-02-at-2-47-30-pm', '', '', '2016-09-02 06:48:51', '2016-09-02 06:48:51', '', 3976, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/Screen-Shot-2016-09-02-at-2.47.30-PM.png', 0, 'attachment', 'image/png', 0),
(3978, 1, '2016-09-02 06:52:33', '2016-09-02 06:52:33', '', 'Whistle blowing', '', 'inherit', 'closed', 'closed', '', '3976-revision-v1', '', '', '2016-09-02 06:52:33', '2016-09-02 06:52:33', '', 3976, 'http://www.investors-watch.com/wp-staging/ranhill/3976-revision-v1/', 0, 'revision', '', 0),
(3980, 1, '2016-09-02 06:59:03', '2016-09-02 06:59:03', '<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Your Message / Report\r\n    [textarea your-message] </label>\r\n[recaptcha size:compact]\r\n\r\n[submit "Send"]\nFraud & Whistleblowing\n[your-name] <whistle@investors-watch.com/wp-staging/ranhill>\nFrom: [your-name] <[your-email]>\r\nSubject:  Ranhill Fraud & Whistleblowing \r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a  Fraud & Whistleblowing section on Ranhill (http://www.investors-watch.com/wp-staging/ranhill)\nwhistle@investors-watch.com/wp-staging/ranhill\nReply-To: [your-email]\n\n\n\n\nRanhill "[your-subject]"\nRanhill <wordpress@investors-watch.com/wp-staging/ranhill>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Ranhill (http://www.investors-watch.com/wp-staging/ranhill)\n[your-email]\nReply-To: ryanlee@hdprint.my\n\n\n\nThank you for your message/report. 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.', 'Whistle blowing', '', 'publish', 'closed', 'closed', '', 'whistle-blowing', '', '', '2016-09-02 07:03:26', '2016-09-02 07:03:26', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?post_type=wpcf7_contact_form&#038;p=3980', 0, 'wpcf7_contact_form', '', 0),
(3981, 1, '2016-09-02 06:59:56', '2016-09-02 06:59:56', '[contact-form-7 id="3980" title="Whistle blowing"]', 'Whistle blowing form', '', 'inherit', 'closed', 'closed', '', '3975-revision-v1', '', '', '2016-09-02 06:59:56', '2016-09-02 06:59:56', '', 3975, 'http://www.investors-watch.com/wp-staging/ranhill/3975-revision-v1/', 0, 'revision', '', 0),
(3982, 1, '2016-09-02 07:06:51', '2016-09-02 07:06:51', '<h2 style="margin-bottom: 0px;">Fraud Report Form\n</h2>\n[divider height="30"]\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make complaint [divider height="30"] \n\n[contact-form-7 id="3980" title="Whistle blowing"]', 'Fraud Report Form', '', 'inherit', 'closed', 'closed', '', '3975-autosave-v1', '', '', '2016-09-02 07:06:51', '2016-09-02 07:06:51', '', 3975, 'http://www.investors-watch.com/wp-staging/ranhill/3975-autosave-v1/', 0, 'revision', '', 0),
(3983, 1, '2016-09-02 07:01:14', '2016-09-02 07:01:14', '[divider height="30"]\r\n\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \r\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make complaint [divider height="30"] \r\n\r\n[contact-form-7 id="3980" title="Whistle blowing"]', 'Whistle blowing form', '', 'inherit', 'closed', 'closed', '', '3975-revision-v1', '', '', '2016-09-02 07:01:14', '2016-09-02 07:01:14', '', 3975, 'http://www.investors-watch.com/wp-staging/ranhill/3975-revision-v1/', 0, 'revision', '', 0),
(3984, 1, '2016-09-02 07:04:00', '2016-09-02 07:04:00', '[divider height="30"]\r\nFraud Report Form\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \r\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make complaint [divider height="30"] \r\n\r\n[contact-form-7 id="3980" title="Whistle blowing"]', 'Whistle blowing form', '', 'inherit', 'closed', 'closed', '', '3975-revision-v1', '', '', '2016-09-02 07:04:00', '2016-09-02 07:04:00', '', 3975, 'http://www.investors-watch.com/wp-staging/ranhill/3975-revision-v1/', 0, 'revision', '', 0),
(3985, 1, '2016-09-02 07:05:41', '2016-09-02 07:05:41', '[divider height="30"]\r\nFraud Report Form\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \r\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make complaint [divider height="30"] \r\n\r\n[contact-form-7 id="3980" title="Whistle blowing"]', 'Fraud Report Form', '', 'inherit', 'closed', 'closed', '', '3975-revision-v1', '', '', '2016-09-02 07:05:41', '2016-09-02 07:05:41', '', 3975, 'http://www.investors-watch.com/wp-staging/ranhill/3975-revision-v1/', 0, 'revision', '', 0),
(3986, 1, '2016-09-02 07:06:52', '2016-09-02 07:06:52', '<h2 style="margin-bottom: 0px;">Fraud Report Form\r\n</h2>\r\n[divider height="30"]\r\n<div style="background: url(http://hdprint.com.my/ranhill/wp-content/uploads/2016/07/home_blogger2_sep.png) no-repeat left top; height: 3px;"></div>\r\n<hr class="no_line" style="margin: 0 auto 30px;">[divider height="30"] \r\nAny employee or member of the public who has knowledge or aware of any improper conduct (misconduct or criminal offence) committed or about to be committed within Ranhill Holdings Berhad and its Group of Companies is encouraged to make complaint [divider height="30"] \r\n\r\n[contact-form-7 id="3980" title="Whistle blowing"]', 'Fraud Report Form', '', 'inherit', 'closed', 'closed', '', '3975-revision-v1', '', '', '2016-09-02 07:06:52', '2016-09-02 07:06:52', '', 3975, 'http://www.investors-watch.com/wp-staging/ranhill/3975-revision-v1/', 0, 'revision', '', 0),
(3987, 1, '2016-09-02 07:09:20', '2016-09-02 07:09:20', ' ', '', '', 'publish', 'closed', 'closed', '', '3987', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 26, 'http://www.investors-watch.com/wp-staging/ranhill/?p=3987', 17, 'nav_menu_item', '', 0),
(3990, 1, '2016-09-14 02:23:24', '2016-09-14 02:23:24', '', 'saj_final', '', 'inherit', 'open', 'closed', '', 'saj_final', '', '', '2016-10-18 04:57:28', '2016-10-18 04:57:28', '', 4046, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/SAJ_Final.pdf', 0, 'attachment', 'application/pdf', 0),
(3997, 1, '2016-09-28 03:08:50', '2016-09-28 03:08:50', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/Media-release_RWHK-SPA.pdf" title="media-release_rwhk-spa"]', 'Ranhill is on track to expand its business in China', '', 'publish', 'open', 'open', '', 'ranhill-is-on-track-to-expand-its-business-in-china', '', '', '2019-01-29 01:15:51', '2019-01-29 01:15:51', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=3997', 0, 'post', '', 0),
(3998, 1, '2016-09-28 03:08:22', '2016-09-28 03:08:22', '', 'media-release_rwhk-spa', '', 'inherit', 'open', 'closed', '', 'media-release_rwhk-spa', '', '', '2016-09-28 03:08:22', '2016-09-28 03:08:22', '', 3997, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/Media-release_RWHK-SPA.pdf', 0, 'attachment', 'application/pdf', 0),
(3999, 1, '2016-09-28 03:08:50', '2016-09-28 03:08:50', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/Media-release_RWHK-SPA.pdf" title="media-release_rwhk-spa"]', 'Ranhill is on track to expand its business in China', '', 'inherit', 'closed', 'closed', '', '3997-revision-v1', '', '', '2016-09-28 03:08:50', '2016-09-28 03:08:50', '', 3997, 'http://www.investors-watch.com/wp-staging/ranhill/3997-revision-v1/', 0, 'revision', '', 0),
(4006, 1, '2016-10-13 02:18:05', '2016-10-13 02:18:05', '', 'Whistleblowing', '', 'publish', 'closed', 'closed', '', 'whistleblowing', '', '', '2016-11-29 06:15:44', '2016-11-29 06:15:44', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4006', 0, 'page', '', 0),
(4007, 1, '2016-10-13 02:18:05', '2016-10-13 02:18:05', '', 'Whistle blowing', '', 'inherit', 'closed', 'closed', '', '4006-revision-v1', '', '', '2016-10-13 02:18:05', '2016-10-13 02:18:05', '', 4006, 'http://www.investors-watch.com/wp-staging/ranhill/4006-revision-v1/', 0, 'revision', '', 0),
(4008, 1, '2016-10-13 02:19:27', '2016-10-13 02:19:27', ' ', '', '', 'publish', 'closed', 'closed', '', '4008', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4008', 19, 'nav_menu_item', '', 0),
(4009, 1, '2016-10-13 02:25:44', '2016-10-13 02:25:44', '', 'wecarelogo', '', 'inherit', 'open', 'closed', '', 'wecarelogo', '', '', '2016-10-13 02:25:44', '2016-10-13 02:25:44', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/wecarelogo.png', 0, 'attachment', 'image/png', 0),
(4010, 1, '2016-10-13 02:41:33', '2016-10-13 02:41:33', '<strong>1. Copyright</strong>\r\nAll materials contained in this site are the copyrighted property of Ranhil Holdings Berhad under contemporary Intellectual Property legislation. Materials include, but not limited, to the presentation, content framework and information contained therein.\r\n\r\n<strong>2. Trademark</strong>\r\nThe Ranhill Holdings Berhad name and logotype together with its emblem are registered trademarks of Ranhill Holdings Berhad. All rights reserved. Other trademarks that appear on this site are the property of their respective owners.\r\n\r\n<strong>3. Restriction</strong>\r\nAll materials as stated hereunder shall not be permitted to be reproduced, republished, uploaded, posted, transmitted, modified, and distributed without first obtaining the express consent from Ranhill Holdings Berhad.\r\n\r\n<strong>4. Disclaim Of Liability</strong>\r\nRanhill Holdings Berhad does not warrant or represent that the information contained in this site is accurate, complete, correctly sequenced, reliable or timely, or that the site will be uninterrupted or free of errors and/ or viruses. Use of the site is at the sole risk of users.\r\n\r\n<strong>5. Indemnity\r\n</strong>Any user of this site shall indemnify Ranhill Holdings Berhad against any and all claims ,demands ,writs, summons, actions suits, proceedings, judgments, orders ,decrees, damages costs ,losses and expenses of any nature whatsoever arising out of the use of this site by the use.\r\n\r\n<strong>6. General</strong>\r\n\r\nRanhill Holdings Berhad retains the right to amend, change, modify or alter the terms and conditions herein contained or any part thereof, or to impose new conditions including but not limited to , adding fees or charges for use of certain services. The user shall be responsible to refer to any changed terms on accessing the site hereof.', 'Terms of use', '', 'publish', 'closed', 'closed', '', 'terms-of-use', '', '', '2016-10-18 05:17:54', '2016-10-18 05:17:54', '', 3753, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4010', 0, 'page', '', 0),
(4011, 1, '2016-10-13 02:41:33', '2016-10-13 02:41:33', '<strong>1. Copyright</strong>\r\nAll materials contained in this site are the copyrighted property of Ranhil Holdings Berhad under contemporary Intellectual Property legislation. Materials include, but not limited, to the presentation, content framework and information contained therein.\r\n\r\n<strong>2. Trademark</strong>\r\nThe Ranhill Holdings Berhad name and logotype together with its emblem are registered trademarks of Ranhill Holdings Berhad. All rights reserved. Other trademarks that appear on this site are the property of their respective owners.\r\n\r\n<strong>3. Restriction</strong>\r\nAll materials as stated hereunder shall not be permitted to be reproduced, republished, uploaded, posted, transmitted, modified, and distributed without first obtaining the express consent from Ranhill Holdings Berhad.\r\n\r\n<strong>4. Disclaim Of Liability</strong>\r\nRanhill Holdings Berhad does not warrant or represent that the information contained in this site is accurate, complete, correctly sequenced, reliable or timely, or that the site will be uninterrupted or free of errors and/ or viruses. Use of the site is at the sole risk of users.\r\n\r\n<strong>5. Indemnity</strong>\r\nAny user of this site shall indemnify Ranhill Holdings Berhad against any and all claims demands writs summons actions suits proceedings judgments orders decrees damages costs losses and expenses of any nature whatsoever arising out of the use of this site by the use.\r\n\r\n<strong>6. General</strong>\r\nRanhill Holdings Berhad retains the right to amend, change, modify or alter the terms and conditions herein contained or any part thereof, or to impose new conditions including but not limited to , adding fees or charges for use of certain services. The user shall be responsible to refer to any changed terms on accessing the site hereof.', 'Terms of use', '', 'inherit', 'closed', 'closed', '', '4010-revision-v1', '', '', '2016-10-13 02:41:33', '2016-10-13 02:41:33', '', 4010, 'http://www.investors-watch.com/wp-staging/ranhill/4010-revision-v1/', 0, 'revision', '', 0),
(4012, 1, '2016-10-13 02:48:13', '2016-10-13 02:48:13', 'Ranhill Holdings Berhad, Ranhill Group of Companies and Ranhill Group of Companies’ associates, jointly controlled entities and affiliates (collectively, "Group"), respects the privacy of individuals with regard to personal data. This Privacy Statement is formulated in accordance with the Personal Data Protection Act 2010 ("Act"). For the purpose of this Privacy Statement, "Personal Data" shall have the meaning as ascribed to it in the Act. For the purposes of this Privacy Statement, “we”, “our” or “us” shall refer to any of the companies within the Group and “you” shall refer to yourself and such other persons or companies represented by you of which you are providing the Personal Data.\r\n\r\n<strong>Personal information collection</strong>\r\n\r\nYour Personal Data are collected from various sources including but not limited to:-\r\n<ul>\r\n 	<li>information you have provided to us via info@investors-watch.com/wp-staging/ranhill, ir_info@investors-watch.com/wp-staging/ranhill, and/or by whatsoever manner;</li>\r\n 	<li>information from third parties including referral; and</li>\r\n 	<li>information obtained independently by us from other lawful sources.</li>\r\n</ul>\r\nBy providing any of your Personal Data to the Group, you hereby agree that the Group shall collect, retain and use your Personal Data for the following purposes:\r\n<ul>\r\n 	<li>carrying out and/or discharging our contractual obligations;</li>\r\n 	<li>providing you with services offered by the Group;</li>\r\n 	<li>processing your application/form;</li>\r\n 	<li>processing invoices and payments;</li>\r\n 	<li>internal record keeping so that we can administer, support, improve and develop our services to you;</li>\r\n 	<li>where a third party acquires or wishes to acquire, or makes inquiries in relation to acquiring, an interest in any company within the Group;</li>\r\n 	<li>for purposes of any audit/checks by any party for whatever purpose related to the Group’s business;</li>\r\n 	<li>meeting any legal or regulatory requirements relating to our business and to make disclosure under the requirements of any applicable law, regulation, direction, court order, by-law, guideline, circular, code applicable to us; and/or</li>\r\n 	<li>for any other purposes that is incidental or ancillary or in furtherance to the Group’s purposes.</li>\r\n</ul>\r\nYou hereby confirm that you have obtained the consent from the persons and/or companies represented by you for you to provide their respective Personal Data to us for the purposes as set out above and disclosed to parties stated below.\r\n\r\nPlease note that our whistleblowing channel is completely secured and you will remain anonymous unless you choose otherwise.\r\n\r\n<strong>Using personal information</strong>\r\n\r\nYour Personal Data provided to us will be kept confidential and with your agreement we will disclose and transfer (whether in Malaysia or abroad) your Personal Data to the following parties for the above mentioned purposes:-\r\n<ul>\r\n 	<li>any persons, government agencies, statutory authorities and/or industry regulators whom we are compelled or required to do so pursuant to any law;</li>\r\n 	<li>our associated companies, auditors, consultants, lawyers, accountants or other financial or professional advisers appointed in connection with our business;</li>\r\n 	<li>our third party service and product providers or other parties as maybe deemed necessary by us to facilitate your dealing with us; and/or</li>\r\n 	<li>any organizations/persons who provide archival, auditing, professional advisory, debt collection, insurance, banking, marketing, advertising, mailhouse, delivery, recruitment, call centre, technology, research, utility, loyalty programme and security services for the Group’s operational, administration and development requirements.</li>\r\n</ul>\r\nWe may also disclose your Personal Data if required to do so by law or in good faith, if such action is necessary to (i) comply with requirements of any law enforcement agency, court order or legal process; or (ii) to protect and defend rights and interest of the Group.\r\n\r\n<strong>Securing your data</strong>\r\n\r\nThe Group will take reasonable technical and organisational precautions to prevent the any loss, misuse, modification, unauthorized or accidental access or disclosure, alteration or destruction of your Personal Data and to protect the integrity of your Personal Data.\r\n\r\nThe Group will store all the Personal Data you provide on secure servers.\r\n\r\n<strong>Updating this statement</strong>\r\n\r\nWe reserve the right to amend this Privacy Statement to comply with changes in our business operation or laws and regulations related to data protection legislation from time to time without prior notice.\r\n\r\nYou are advised to visit this Privacy Statement occasionally to ensure you are familiar with any changes.\r\n\r\n<strong>Other websites</strong>\r\n\r\nThis website contains links to other websites.\r\n\r\nHowever, once you have used these links to leave this website, you should note that we do not have any control over that other website. Therefore, we are not responsible for the privacy policies or practices of any third party.\r\n\r\nYou are advised to exercise caution and look at the privacy statement applicable to the website in question.\r\n\r\n<strong>Contact</strong>\r\n\r\nIf you have any questions about this Privacy Statement or if you wish to request access to your Personal Data or if you wish to correct your Personal Data or if you wish to withdraw your consent to the Group for the processing of your Personal Data, you may send your request in writing at the following address:\r\n\r\n<strong>Ranhill Holdings Berhad</strong>\r\nAddress: Level 15, Wisma Perkeso\r\nNo. 155, Jalan Tun Razak\r\n50400 Kuala Lumpur\r\nEmail: info@investors-watch.com/wp-staging/ranhill\r\nTel No.: 603 – 2685 5200\r\nFax No.: 603 – 2685 5286\r\n\r\nPlease note that notwithstanding the withdrawal of your consent, the Group may still proceed to process your Personal Data in circumstances recognized and permitted by law and as required under the contractual conditions.\r\n\r\nIn the event of any inconsistency or conflict between the English version and the <a href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/BM-privacy-statement.pdf" target="_blank">Bahasa Malaysia</a> version of this Privacy Statement, the English version shall prevail.\r\n\r\n<strong>Access and Correction of Personal Data</strong>\r\n\r\nYou may, request to access to and/or to make any correction to your Personal Data by submitting a request in writing to the Group to the address above stated.\r\n\r\nPlease be advised that the Group has the right to:-\r\n<ul>\r\n 	<li>refuse your request to access and/or make any correction to your Personal Data in the manner provided in/permitted under the Act; and/or</li>\r\n 	<li>charge a fee as may be allowed under the Act for processing of your request to access/delete your Personal Data.\r\nNotwithstanding that access is granted to you or any correction of your Personal Data is performed, this Privacy Statement shall remain valid and effective at all times.</li>\r\n</ul>', 'PRIVACY STATEMENT', '', 'publish', 'closed', 'closed', '', 'privacy-statement', '', '', '2016-10-19 03:34:44', '2016-10-19 03:34:44', '', 3753, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4012', 0, 'page', '', 0),
(4013, 1, '2016-10-13 02:48:13', '2016-10-13 02:48:13', 'Ranhill Holdings Berhad, Ranhill Group of Companies and Ranhill Group of Companies’ associates, jointly controlled entities and affiliates (collectively, "Group"), respects the privacy of individuals with regard to personal data. This Privacy Statement is formulated in accordance with the Personal Data Protection Act 2010 ("Act"). For the purpose of this Privacy Statement, "Personal Data" shall have the meaning as ascribed to it in the Act. For the purposes of this Privacy Statement, “we”, “our” or “us” shall refer to any of the companies within the Group and “you” shall refer to yourself and such other persons or companies represented by you of which you are providing the Personal Data.\r\n\r\n<strong>Personal information collection</strong>\r\n\r\nYour Personal Data are collected from various sources including but not limited to:-\r\n<ul>\r\n 	<li>information you have provided to us via info@investors-watch.com/wp-staging/ranhill, ir_info@investors-watch.com/wp-staging/ranhill, and/or by whatsoever manner;</li>\r\n 	<li>information from third parties including referral; and</li>\r\n 	<li>information obtained independently by us from other lawful sources.</li>\r\n</ul>\r\nBy providing any of your Personal Data to the Group, you hereby agree that the Group shall collect, retain and use your Personal Data for the following purposes:\r\n<ul>\r\n 	<li>carrying out and/or discharging our contractual obligations;</li>\r\n 	<li>providing you with services offered by the Group;</li>\r\n 	<li>processing your application/form;</li>\r\n 	<li>processing invoices and payments;</li>\r\n 	<li>internal record keeping so that we can administer, support, improve and develop our services to you;</li>\r\n 	<li>where a third party acquires or wishes to acquire, or makes inquiries in relation to acquiring, an interest in any company within the Group;</li>\r\n 	<li>for purposes of any audit/checks by any party for whatever purpose related to the Group’s business;</li>\r\n 	<li>meeting any legal or regulatory requirements relating to our business and to make disclosure under the requirements of any applicable law, regulation, direction, court order, by-law, guideline, circular, code applicable to us; and/or</li>\r\n 	<li>for any other purposes that is incidental or ancillary or in furtherance to the Group’s purposes.</li>\r\n</ul>\r\nYou hereby confirm that you have obtained the consent from the persons and/or companies represented by you for you to provide their respective Personal Data to us for the purposes as set out above and disclosed to parties stated below.\r\n\r\nPlease note that our whistleblowing channel is completely secured and you will remain anonymous unless you choose otherwise.\r\n\r\n<strong>Using personal information</strong>\r\n\r\nYour Personal Data provided to us will be kept confidential and with your agreement we will disclose and transfer (whether in Malaysia or abroad) your Personal Data to the following parties for the above mentioned purposes:-\r\n<ul>\r\n 	<li>any persons, government agencies, statutory authorities and/or industry regulators whom we are compelled or required to do so pursuant to any law;</li>\r\n 	<li>our associated companies, auditors, consultants, lawyers, accountants or other financial or professional advisers appointed in connection with our business;</li>\r\n 	<li>our third party service and product providers or other parties as maybe deemed necessary by us to facilitate your dealing with us; and/or</li>\r\n 	<li>any organizations/persons who provide archival, auditing, professional advisory, debt collection, insurance, banking, marketing, advertising, mailhouse, delivery, recruitment, call centre, technology, research, utility, loyalty programme and security services for the Group’s operational, administration and development requirements.</li>\r\n</ul>\r\nWe may also disclose your Personal Data if required to do so by law or in good faith, if such action is necessary to (i) comply with requirements of any law enforcement agency, court order or legal process; or (ii) to protect and defend rights and interest of the Group.\r\n\r\n<strong>Securing your data</strong>\r\n\r\nThe Group will take reasonable technical and organisational precautions to prevent the any loss, misuse, modification, unauthorized or accidental access or disclosure, alteration or destruction of your Personal Data and to protect the integrity of your Personal Data.\r\n\r\nThe Group will store all the Personal Data you provide on secure servers.\r\n\r\n<strong>Updating this statement</strong>\r\n\r\nWe reserve the right to amend this Privacy Statement to comply with changes in our business operation or laws and regulations related to data protection legislation from time to time without prior notice.\r\n\r\nYou are advised to visit this Privacy Statement occasionally to ensure you are familiar with any changes.\r\n\r\n<strong>Other websites</strong>\r\n\r\nThis website contains links to other websites.\r\n\r\nHowever, once you have used these links to leave this website, you should note that we do not have any control over that other website. Therefore, we are not responsible for the privacy policies or practices of any third party.\r\n\r\nYou are advised to exercise caution and look at the privacy statement applicable to the website in question.\r\n\r\n<strong>Contact</strong>\r\n\r\nIf you have any questions about this Privacy Statement or if you wish to request access to your Personal Data or if you wish to correct your Personal Data or if you wish to withdraw your consent to the Group for the processing of your Personal Data, you may send your request in writing at the following address:\r\n\r\n<strong>Ranhill Holdings Berhad</strong>\r\nAddress: Level 15, Wisma Perkeso\r\nNo. 155, Jalan Tun Razak\r\n50400 Kuala Lumpur\r\nEmail: info@investors-watch.com/wp-staging/ranhill\r\nTel No.: 603 – 2685 5200\r\nFax No.: 603 – 2685 5286\r\n\r\nPlease note that notwithstanding the withdrawal of your consent, the Group may still proceed to process your Personal Data in circumstances recognized and permitted by law and as required under the contractual conditions.\r\n\r\nIn the event of any inconsistency or conflict between the English version and the Bahasa Malaysia version of this Privacy Statement, the English version shall prevail.\r\n\r\n<strong>Access and Correction of Personal Data</strong>\r\n\r\nYou may, request to access to and/or to make any correction to your Personal Data by submitting a request in writing to the Group to the address above stated.\r\n\r\nPlease be advised that the Group has the right to:-\r\n<ul>\r\n 	<li>refuse your request to access and/or make any correction to your Personal Data in the manner provided in/permitted under the Act; and/or</li>\r\n 	<li>charge a fee as may be allowed under the Act for processing of your request to access/delete your Personal Data.\r\nNotwithstanding that access is granted to you or any correction of your Personal Data is performed, this Privacy Statement shall remain valid and effective at all times.</li>\r\n</ul>', 'PRIVACY STATEMENT', '', 'inherit', 'closed', 'closed', '', '4012-revision-v1', '', '', '2016-10-13 02:48:13', '2016-10-13 02:48:13', '', 4012, 'http://www.investors-watch.com/wp-staging/ranhill/4012-revision-v1/', 0, 'revision', '', 0),
(4014, 1, '2016-10-13 03:02:36', '2016-10-13 03:02:36', '', 'explore_', '', 'inherit', 'open', 'closed', '', 'explore_', '', '', '2016-10-13 03:02:36', '2016-10-13 03:02:36', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/explore_.png', 0, 'attachment', 'image/png', 0),
(4015, 1, '2016-10-13 03:09:49', '2016-10-13 03:09:49', '', 'meetourpeople', '', 'inherit', 'open', 'closed', '', 'meetourpeople', '', '', '2016-10-13 03:09:49', '2016-10-13 03:09:49', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetourpeople.jpg', 0, 'attachment', 'image/jpeg', 0),
(4017, 1, '2016-10-13 03:19:28', '2016-10-13 03:19:28', '', 'Our Presence', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2016-10-13 03:19:28', '2016-10-13 03:19:28', '', 26, 'http://www.investors-watch.com/wp-staging/ranhill/26-revision-v1/', 0, 'revision', '', 0),
(4018, 1, '2016-10-13 03:21:27', '2016-10-13 03:21:27', ' ', '', '', 'publish', 'closed', 'closed', '', '4018', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4018', 4, 'nav_menu_item', '', 0),
(4019, 1, '2016-10-13 03:25:04', '2016-10-13 03:25:04', '', 'Code of Conduct and Business Ethics', '', 'publish', 'closed', 'closed', '', 'code-of-conduct', '', '', '2018-04-25 05:22:18', '2018-04-25 05:22:18', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4019', 0, 'page', '', 0),
(4020, 1, '2016-10-13 03:25:04', '2016-10-13 03:25:04', '', 'Code of Conduct', '', 'inherit', 'closed', 'closed', '', '4019-revision-v1', '', '', '2016-10-13 03:25:04', '2016-10-13 03:25:04', '', 4019, 'http://www.investors-watch.com/wp-staging/ranhill/4019-revision-v1/', 0, 'revision', '', 0),
(4022, 1, '2016-10-13 03:45:02', '2016-10-13 03:45:02', '', 'Sharing Our Expertise', '', 'inherit', 'closed', 'closed', '', '3894-revision-v1', '', '', '2016-10-13 03:45:02', '2016-10-13 03:45:02', '', 3894, 'http://www.investors-watch.com/wp-staging/ranhill/3894-revision-v1/', 0, 'revision', '', 0),
(4023, 1, '2016-10-13 03:46:58', '2016-10-13 03:46:58', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Chennai-water-conference.pdf" title="chennai-water-conference"]', 'Water Reclamation', '', 'publish', 'open', 'open', '', 'chennai-water-conference', '', '', '2016-11-10 06:48:01', '2016-11-10 06:48:01', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4023', 0, 'post', '', 0),
(4024, 1, '2016-10-13 03:45:55', '2016-10-13 03:45:55', '', 'chennai-water-conference', '', 'inherit', 'open', 'closed', '', 'chennai-water-conference', '', '', '2016-10-13 03:45:55', '2016-10-13 03:45:55', '', 4023, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Chennai-water-conference.pdf', 0, 'attachment', 'application/pdf', 0),
(4025, 1, '2016-10-13 03:46:58', '2016-10-13 03:46:58', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Chennai-water-conference.pdf" title="chennai-water-conference"]', 'Chennai Water Conference', '', 'inherit', 'closed', 'closed', '', '4023-revision-v1', '', '', '2016-10-13 03:46:58', '2016-10-13 03:46:58', '', 4023, 'http://www.investors-watch.com/wp-staging/ranhill/4023-revision-v1/', 0, 'revision', '', 0),
(4026, 1, '2016-10-13 03:50:45', '2016-10-13 03:50:45', '', 'Non-Revenue Water', '', 'publish', 'open', 'open', '', 'non-revenue-water-specialist', '', '', '2017-03-07 04:04:59', '2017-03-07 04:04:59', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4026', 0, 'post', '', 0),
(4027, 1, '2016-10-13 03:50:33', '2016-10-13 03:50:33', '', 'chennai-water-conference', '', 'inherit', 'open', 'closed', '', 'chennai-water-conference-2', '', '', '2016-10-13 03:50:33', '2016-10-13 03:50:33', '', 4026, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Chennai-Water-conference.jpg', 0, 'attachment', 'image/jpeg', 0),
(4028, 1, '2016-10-13 03:50:35', '2016-10-13 03:50:35', '', 'rws-pic', '', 'inherit', 'open', 'closed', '', 'rws-pic', '', '', '2016-10-13 03:50:35', '2016-10-13 03:50:35', '', 4026, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws-pic.jpg', 0, 'attachment', 'image/jpeg', 0),
(4029, 1, '2016-10-13 03:50:45', '2016-10-13 03:50:45', '', 'Non Revenue Water Specialist', '', 'inherit', 'closed', 'closed', '', '4026-revision-v1', '', '', '2016-10-13 03:50:45', '2016-10-13 03:50:45', '', 4026, 'http://www.investors-watch.com/wp-staging/ranhill/4026-revision-v1/', 0, 'revision', '', 0),
(4030, 1, '2016-10-13 03:51:11', '2016-10-13 03:51:11', '', 'rws', '', 'inherit', 'open', 'closed', '', 'rws', '', '', '2016-10-13 03:51:11', '2016-10-13 03:51:11', '', 4026, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws.pdf', 0, 'attachment', 'application/pdf', 0),
(4031, 1, '2016-10-13 03:51:14', '2016-10-13 03:51:14', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws.pdf"]', 'Non Revenue Water Specialist', '', 'inherit', 'closed', 'closed', '', '4026-revision-v1', '', '', '2016-10-13 03:51:14', '2016-10-13 03:51:14', '', 4026, 'http://www.investors-watch.com/wp-staging/ranhill/4026-revision-v1/', 0, 'revision', '', 0),
(4032, 1, '2016-10-13 03:55:40', '2016-10-13 03:55:40', ' ', '', '', 'publish', 'closed', 'closed', '', '4032', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4032', 6, 'nav_menu_item', '', 0),
(4033, 1, '2016-10-13 04:03:58', '2016-10-13 04:03:58', '', 'aquasmart_images', '', 'inherit', 'open', 'closed', '', 'aquasmart_images', '', '', '2016-10-13 04:03:58', '2016-10-13 04:03:58', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Aquasmart_images.jpg', 0, 'attachment', 'image/jpeg', 0),
(4034, 1, '2016-10-13 04:04:00', '2016-10-13 04:04:00', '', 'apmc_image', '', 'inherit', 'open', 'closed', '', 'apmc_image', '', '', '2016-10-13 04:04:00', '2016-10-13 04:04:00', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/APMC_image.jpg', 0, 'attachment', 'image/jpeg', 0),
(4035, 1, '2016-10-13 04:04:01', '2016-10-13 04:04:01', '', 'ccgt_image', '', 'inherit', 'open', 'closed', '', 'ccgt_image', '', '', '2016-10-13 04:04:01', '2016-10-13 04:04:01', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/CCGT_image.jpg', 0, 'attachment', 'image/jpeg', 0),
(4036, 1, '2016-10-13 04:04:03', '2016-10-13 04:04:03', '', 'daf_image', '', 'inherit', 'open', 'closed', '', 'daf_image', '', '', '2016-10-13 04:04:03', '2016-10-13 04:04:03', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/DAF_image.jpg', 0, 'attachment', 'image/jpeg', 0),
(4037, 1, '2016-10-13 04:04:04', '2016-10-13 04:04:04', '', 'gis_image', '', 'inherit', 'open', 'closed', '', 'gis_image', '', '', '2016-10-13 04:04:04', '2016-10-13 04:04:04', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/GIS_image.jpg', 0, 'attachment', 'image/jpeg', 0),
(4038, 1, '2016-10-13 04:04:07', '2016-10-13 04:04:07', '', 'sbr_image', '', 'inherit', 'open', 'closed', '', 'sbr_image', '', '', '2016-10-13 04:04:07', '2016-10-13 04:04:07', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/SBR_image.jpg', 0, 'attachment', 'image/jpeg', 0),
(4039, 1, '2016-10-13 09:32:40', '2016-10-13 09:32:40', '', 'hand', '', 'inherit', 'open', 'closed', '', 'hand', '', '', '2016-10-13 09:32:40', '2016-10-13 09:32:40', '', 4019, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/hand.png', 0, 'attachment', 'image/png', 0),
(4040, 1, '2016-10-13 09:32:41', '2016-10-13 09:32:41', '', 'bulb', '', 'inherit', 'open', 'closed', '', 'bulb', '', '', '2016-10-13 09:32:41', '2016-10-13 09:32:41', '', 4019, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/bulb.png', 0, 'attachment', 'image/png', 0),
(4041, 1, '2016-10-13 09:32:42', '2016-10-13 09:32:42', '', 'graph', '', 'inherit', 'open', 'closed', '', 'graph', '', '', '2016-10-13 09:32:42', '2016-10-13 09:32:42', '', 4019, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/graph.png', 0, 'attachment', 'image/png', 0),
(4042, 1, '2016-10-18 04:45:24', '2016-10-18 04:45:24', '', 'Home', '', 'inherit', 'closed', 'closed', '', '3753-autosave-v1', '', '', '2016-10-18 04:45:24', '2016-10-18 04:45:24', '', 3753, 'http://www.investors-watch.com/wp-staging/ranhill/3753-autosave-v1/', 0, 'revision', '', 0),
(4044, 1, '2016-10-18 04:55:57', '2016-10-18 04:55:57', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws.pdf"]', 'Non-Revenue Water', '', 'inherit', 'closed', 'closed', '', '4026-revision-v1', '', '', '2016-10-18 04:55:57', '2016-10-18 04:55:57', '', 4026, 'http://www.investors-watch.com/wp-staging/ranhill/4026-revision-v1/', 0, 'revision', '', 0),
(4045, 1, '2016-10-18 04:56:09', '2016-10-18 04:56:09', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Chennai-water-conference.pdf" title="chennai-water-conference"]', 'Water Reclamation', '', 'inherit', 'closed', 'closed', '', '4023-revision-v1', '', '', '2016-10-18 04:56:09', '2016-10-18 04:56:09', '', 4023, 'http://www.investors-watch.com/wp-staging/ranhill/4023-revision-v1/', 0, 'revision', '', 0),
(4046, 1, '2016-10-18 04:59:08', '2016-10-18 04:59:08', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/SAJ_Final.pdf" title="saj_final"]', 'Carbon Footprint', '', 'publish', 'open', 'open', '', 'carbon-footprint', '', '', '2016-11-10 06:48:15', '2016-11-10 06:48:15', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4046', 0, 'post', '', 0),
(4047, 1, '2016-10-18 04:58:45', '2016-10-18 04:58:45', '', 'saj_final_page_01', '', 'inherit', 'open', 'closed', '', 'saj_final_page_01', '', '', '2016-10-18 04:58:45', '2016-10-18 04:58:45', '', 4046, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/SAJ_Final_Page_01.jpg', 0, 'attachment', 'image/jpeg', 0),
(4048, 1, '2016-10-18 04:59:08', '2016-10-18 04:59:08', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/SAJ_Final.pdf" title="saj_final"]', 'Carbon Footprint', '', 'inherit', 'closed', 'closed', '', '4046-revision-v1', '', '', '2016-10-18 04:59:08', '2016-10-18 04:59:08', '', 4046, 'http://www.investors-watch.com/wp-staging/ranhill/4046-revision-v1/', 0, 'revision', '', 0),
(4049, 1, '2016-10-18 05:02:29', '2016-10-18 05:02:29', '', 'Clean Water', '', 'inherit', 'closed', 'closed', '', '123-autosave-v1', '', '', '2016-10-18 05:02:29', '2016-10-18 05:02:29', '', 123, 'http://www.investors-watch.com/wp-staging/ranhill/123-autosave-v1/', 0, 'revision', '', 0),
(4050, 1, '2016-10-18 05:02:35', '2016-10-18 05:02:35', '', 'Clean Water', '', 'inherit', 'closed', 'closed', '', '123-revision-v1', '', '', '2016-10-18 05:02:35', '2016-10-18 05:02:35', '', 123, 'http://www.investors-watch.com/wp-staging/ranhill/123-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4051, 1, '2016-10-18 05:17:54', '2016-10-18 05:17:54', '<strong>1. Copyright</strong>\r\nAll materials contained in this site are the copyrighted property of Ranhil Holdings Berhad under contemporary Intellectual Property legislation. Materials include, but not limited, to the presentation, content framework and information contained therein.\r\n\r\n<strong>2. Trademark</strong>\r\nThe Ranhill Holdings Berhad name and logotype together with its emblem are registered trademarks of Ranhill Holdings Berhad. All rights reserved. Other trademarks that appear on this site are the property of their respective owners.\r\n\r\n<strong>3. Restriction</strong>\r\nAll materials as stated hereunder shall not be permitted to be reproduced, republished, uploaded, posted, transmitted, modified, and distributed without first obtaining the express consent from Ranhill Holdings Berhad.\r\n\r\n<strong>4. Disclaim Of Liability</strong>\r\nRanhill Holdings Berhad does not warrant or represent that the information contained in this site is accurate, complete, correctly sequenced, reliable or timely, or that the site will be uninterrupted or free of errors and/ or viruses. Use of the site is at the sole risk of users.\r\n\r\n<strong>5. Indemnity\r\n</strong>Any user of this site shall indemnify Ranhill Holdings Berhad against any and all claims ,demands ,writs, summons, actions suits, proceedings, judgments, orders ,decrees, damages costs ,losses and expenses of any nature whatsoever arising out of the use of this site by the use.\r\n\r\n<strong>6. General</strong>\r\n\r\nRanhill Holdings Berhad retains the right to amend, change, modify or alter the terms and conditions herein contained or any part thereof, or to impose new conditions including but not limited to , adding fees or charges for use of certain services. The user shall be responsible to refer to any changed terms on accessing the site hereof.', 'Terms of use', '', 'inherit', 'closed', 'closed', '', '4010-revision-v1', '', '', '2016-10-18 05:17:54', '2016-10-18 05:17:54', '', 4010, 'http://www.investors-watch.com/wp-staging/ranhill/4010-revision-v1/', 0, 'revision', '', 0),
(4052, 1, '2016-10-18 05:21:18', '2016-10-18 05:21:18', '', 'shareexpertise', '', 'inherit', 'open', 'closed', '', 'shareexpertise', '', '', '2016-10-18 05:21:18', '2016-10-18 05:21:18', '', 4023, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/shareexpertise.jpg', 0, 'attachment', 'image/jpeg', 0),
(4053, 1, '2016-10-19 03:34:15', '2016-10-19 03:34:15', '', 'bm-privacy-statement', '', 'inherit', 'open', 'closed', '', 'bm-privacy-statement', '', '', '2016-10-19 03:34:15', '2016-10-19 03:34:15', '', 4012, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/BM-privacy-statement.pdf', 0, 'attachment', 'application/pdf', 0),
(4054, 1, '2016-10-19 03:34:26', '2016-10-19 03:34:26', 'Ranhill Holdings Berhad, Ranhill Group of Companies and Ranhill Group of Companies’ associates, jointly controlled entities and affiliates (collectively, "Group"), respects the privacy of individuals with regard to personal data. This Privacy Statement is formulated in accordance with the Personal Data Protection Act 2010 ("Act"). For the purpose of this Privacy Statement, "Personal Data" shall have the meaning as ascribed to it in the Act. For the purposes of this Privacy Statement, “we”, “our” or “us” shall refer to any of the companies within the Group and “you” shall refer to yourself and such other persons or companies represented by you of which you are providing the Personal Data.\n\n<strong>Personal information collection</strong>\n\nYour Personal Data are collected from various sources including but not limited to:-\n<ul>\n 	<li>information you have provided to us via info@investors-watch.com/wp-staging/ranhill, ir_info@investors-watch.com/wp-staging/ranhill, and/or by whatsoever manner;</li>\n 	<li>information from third parties including referral; and</li>\n 	<li>information obtained independently by us from other lawful sources.</li>\n</ul>\nBy providing any of your Personal Data to the Group, you hereby agree that the Group shall collect, retain and use your Personal Data for the following purposes:\n<ul>\n 	<li>carrying out and/or discharging our contractual obligations;</li>\n 	<li>providing you with services offered by the Group;</li>\n 	<li>processing your application/form;</li>\n 	<li>processing invoices and payments;</li>\n 	<li>internal record keeping so that we can administer, support, improve and develop our services to you;</li>\n 	<li>where a third party acquires or wishes to acquire, or makes inquiries in relation to acquiring, an interest in any company within the Group;</li>\n 	<li>for purposes of any audit/checks by any party for whatever purpose related to the Group’s business;</li>\n 	<li>meeting any legal or regulatory requirements relating to our business and to make disclosure under the requirements of any applicable law, regulation, direction, court order, by-law, guideline, circular, code applicable to us; and/or</li>\n 	<li>for any other purposes that is incidental or ancillary or in furtherance to the Group’s purposes.</li>\n</ul>\nYou hereby confirm that you have obtained the consent from the persons and/or companies represented by you for you to provide their respective Personal Data to us for the purposes as set out above and disclosed to parties stated below.\n\nPlease note that our whistleblowing channel is completely secured and you will remain anonymous unless you choose otherwise.\n\n<strong>Using personal information</strong>\n\nYour Personal Data provided to us will be kept confidential and with your agreement we will disclose and transfer (whether in Malaysia or abroad) your Personal Data to the following parties for the above mentioned purposes:-\n<ul>\n 	<li>any persons, government agencies, statutory authorities and/or industry regulators whom we are compelled or required to do so pursuant to any law;</li>\n 	<li>our associated companies, auditors, consultants, lawyers, accountants or other financial or professional advisers appointed in connection with our business;</li>\n 	<li>our third party service and product providers or other parties as maybe deemed necessary by us to facilitate your dealing with us; and/or</li>\n 	<li>any organizations/persons who provide archival, auditing, professional advisory, debt collection, insurance, banking, marketing, advertising, mailhouse, delivery, recruitment, call centre, technology, research, utility, loyalty programme and security services for the Group’s operational, administration and development requirements.</li>\n</ul>\nWe may also disclose your Personal Data if required to do so by law or in good faith, if such action is necessary to (i) comply with requirements of any law enforcement agency, court order or legal process; or (ii) to protect and defend rights and interest of the Group.\n\n<strong>Securing your data</strong>\n\nThe Group will take reasonable technical and organisational precautions to prevent the any loss, misuse, modification, unauthorized or accidental access or disclosure, alteration or destruction of your Personal Data and to protect the integrity of your Personal Data.\n\nThe Group will store all the Personal Data you provide on secure servers.\n\n<strong>Updating this statement</strong>\n\nWe reserve the right to amend this Privacy Statement to comply with changes in our business operation or laws and regulations related to data protection legislation from time to time without prior notice.\n\nYou are advised to visit this Privacy Statement occasionally to ensure you are familiar with any changes.\n\n<strong>Other websites</strong>\n\nThis website contains links to other websites.\n\nHowever, once you have used these links to leave this website, you should note that we do not have any control over that other website. Therefore, we are not responsible for the privacy policies or practices of any third party.\n\nYou are advised to exercise caution and look at the privacy statement applicable to the website in question.\n\n<strong>Contact</strong>\n\nIf you have any questions about this Privacy Statement or if you wish to request access to your Personal Data or if you wish to correct your Personal Data or if you wish to withdraw your consent to the Group for the processing of your Personal Data, you may send your request in writing at the following address:\n\n<strong>Ranhill Holdings Berhad</strong>\nAddress: Level 15, Wisma Perkeso\nNo. 155, Jalan Tun Razak\n50400 Kuala Lumpur\nEmail: info@investors-watch.com/wp-staging/ranhill\nTel No.: 603 – 2685 5200\nFax No.: 603 – 2685 5286\n\nPlease note that notwithstanding the withdrawal of your consent, the Group may still proceed to process your Personal Data in circumstances recognized and permitted by law and as required under the contractual conditions.\n\nIn the event of any inconsistency or conflict between the English version and the  version of this Privacy Statement, the English version shall prevail.\n\n<strong>Access and Correction of Personal Data</strong>\n\nYou may, request to access to and/or to make any correction to your Personal Data by submitting a request in writing to the Group to the address above stated.\n\nPlease be advised that the Group has the right to:-\n<ul>\n 	<li>refuse your request to access and/or make any correction to your Personal Data in the manner provided in/permitted under the Act; and/or</li>\n 	<li>charge a fee as may be allowed under the Act for processing of your request to access/delete your Personal Data.\nNotwithstanding that access is granted to you or any correction of your Personal Data is performed, this Privacy Statement shall remain valid and effective at all times.</li>\n</ul>', 'PRIVACY STATEMENT', '', 'inherit', 'closed', 'closed', '', '4012-autosave-v1', '', '', '2016-10-19 03:34:26', '2016-10-19 03:34:26', '', 4012, 'http://www.investors-watch.com/wp-staging/ranhill/4012-autosave-v1/', 0, 'revision', '', 0),
(4055, 1, '2016-10-19 03:34:44', '2016-10-19 03:34:44', 'Ranhill Holdings Berhad, Ranhill Group of Companies and Ranhill Group of Companies’ associates, jointly controlled entities and affiliates (collectively, "Group"), respects the privacy of individuals with regard to personal data. This Privacy Statement is formulated in accordance with the Personal Data Protection Act 2010 ("Act"). For the purpose of this Privacy Statement, "Personal Data" shall have the meaning as ascribed to it in the Act. For the purposes of this Privacy Statement, “we”, “our” or “us” shall refer to any of the companies within the Group and “you” shall refer to yourself and such other persons or companies represented by you of which you are providing the Personal Data.\r\n\r\n<strong>Personal information collection</strong>\r\n\r\nYour Personal Data are collected from various sources including but not limited to:-\r\n<ul>\r\n 	<li>information you have provided to us via info@investors-watch.com/wp-staging/ranhill, ir_info@investors-watch.com/wp-staging/ranhill, and/or by whatsoever manner;</li>\r\n 	<li>information from third parties including referral; and</li>\r\n 	<li>information obtained independently by us from other lawful sources.</li>\r\n</ul>\r\nBy providing any of your Personal Data to the Group, you hereby agree that the Group shall collect, retain and use your Personal Data for the following purposes:\r\n<ul>\r\n 	<li>carrying out and/or discharging our contractual obligations;</li>\r\n 	<li>providing you with services offered by the Group;</li>\r\n 	<li>processing your application/form;</li>\r\n 	<li>processing invoices and payments;</li>\r\n 	<li>internal record keeping so that we can administer, support, improve and develop our services to you;</li>\r\n 	<li>where a third party acquires or wishes to acquire, or makes inquiries in relation to acquiring, an interest in any company within the Group;</li>\r\n 	<li>for purposes of any audit/checks by any party for whatever purpose related to the Group’s business;</li>\r\n 	<li>meeting any legal or regulatory requirements relating to our business and to make disclosure under the requirements of any applicable law, regulation, direction, court order, by-law, guideline, circular, code applicable to us; and/or</li>\r\n 	<li>for any other purposes that is incidental or ancillary or in furtherance to the Group’s purposes.</li>\r\n</ul>\r\nYou hereby confirm that you have obtained the consent from the persons and/or companies represented by you for you to provide their respective Personal Data to us for the purposes as set out above and disclosed to parties stated below.\r\n\r\nPlease note that our whistleblowing channel is completely secured and you will remain anonymous unless you choose otherwise.\r\n\r\n<strong>Using personal information</strong>\r\n\r\nYour Personal Data provided to us will be kept confidential and with your agreement we will disclose and transfer (whether in Malaysia or abroad) your Personal Data to the following parties for the above mentioned purposes:-\r\n<ul>\r\n 	<li>any persons, government agencies, statutory authorities and/or industry regulators whom we are compelled or required to do so pursuant to any law;</li>\r\n 	<li>our associated companies, auditors, consultants, lawyers, accountants or other financial or professional advisers appointed in connection with our business;</li>\r\n 	<li>our third party service and product providers or other parties as maybe deemed necessary by us to facilitate your dealing with us; and/or</li>\r\n 	<li>any organizations/persons who provide archival, auditing, professional advisory, debt collection, insurance, banking, marketing, advertising, mailhouse, delivery, recruitment, call centre, technology, research, utility, loyalty programme and security services for the Group’s operational, administration and development requirements.</li>\r\n</ul>\r\nWe may also disclose your Personal Data if required to do so by law or in good faith, if such action is necessary to (i) comply with requirements of any law enforcement agency, court order or legal process; or (ii) to protect and defend rights and interest of the Group.\r\n\r\n<strong>Securing your data</strong>\r\n\r\nThe Group will take reasonable technical and organisational precautions to prevent the any loss, misuse, modification, unauthorized or accidental access or disclosure, alteration or destruction of your Personal Data and to protect the integrity of your Personal Data.\r\n\r\nThe Group will store all the Personal Data you provide on secure servers.\r\n\r\n<strong>Updating this statement</strong>\r\n\r\nWe reserve the right to amend this Privacy Statement to comply with changes in our business operation or laws and regulations related to data protection legislation from time to time without prior notice.\r\n\r\nYou are advised to visit this Privacy Statement occasionally to ensure you are familiar with any changes.\r\n\r\n<strong>Other websites</strong>\r\n\r\nThis website contains links to other websites.\r\n\r\nHowever, once you have used these links to leave this website, you should note that we do not have any control over that other website. Therefore, we are not responsible for the privacy policies or practices of any third party.\r\n\r\nYou are advised to exercise caution and look at the privacy statement applicable to the website in question.\r\n\r\n<strong>Contact</strong>\r\n\r\nIf you have any questions about this Privacy Statement or if you wish to request access to your Personal Data or if you wish to correct your Personal Data or if you wish to withdraw your consent to the Group for the processing of your Personal Data, you may send your request in writing at the following address:\r\n\r\n<strong>Ranhill Holdings Berhad</strong>\r\nAddress: Level 15, Wisma Perkeso\r\nNo. 155, Jalan Tun Razak\r\n50400 Kuala Lumpur\r\nEmail: info@investors-watch.com/wp-staging/ranhill\r\nTel No.: 603 – 2685 5200\r\nFax No.: 603 – 2685 5286\r\n\r\nPlease note that notwithstanding the withdrawal of your consent, the Group may still proceed to process your Personal Data in circumstances recognized and permitted by law and as required under the contractual conditions.\r\n\r\nIn the event of any inconsistency or conflict between the English version and the <a href="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/BM-privacy-statement.pdf" target="_blank">Bahasa Malaysia</a> version of this Privacy Statement, the English version shall prevail.\r\n\r\n<strong>Access and Correction of Personal Data</strong>\r\n\r\nYou may, request to access to and/or to make any correction to your Personal Data by submitting a request in writing to the Group to the address above stated.\r\n\r\nPlease be advised that the Group has the right to:-\r\n<ul>\r\n 	<li>refuse your request to access and/or make any correction to your Personal Data in the manner provided in/permitted under the Act; and/or</li>\r\n 	<li>charge a fee as may be allowed under the Act for processing of your request to access/delete your Personal Data.\r\nNotwithstanding that access is granted to you or any correction of your Personal Data is performed, this Privacy Statement shall remain valid and effective at all times.</li>\r\n</ul>', 'PRIVACY STATEMENT', '', 'inherit', 'closed', 'closed', '', '4012-revision-v1', '', '', '2016-10-19 03:34:44', '2016-10-19 03:34:44', '', 4012, 'http://www.investors-watch.com/wp-staging/ranhill/4012-revision-v1/', 0, 'revision', '', 0),
(4056, 1, '2016-10-22 00:14:50', '2016-10-22 00:14:50', '', 'whistle_flow', '', 'inherit', 'open', 'closed', '', 'whistle_flow', '', '', '2016-10-22 00:14:50', '2016-10-22 00:14:50', '', 4006, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/whistle_flow.jpg', 0, 'attachment', 'image/jpeg', 0),
(4057, 1, '2016-10-25 01:35:44', '0000-00-00 00:00:00', '<img src="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/whistle_flow-1-300x206.jpg" alt="whistle_flow" width="300" height="206" class="alignnone size-medium wp-image-4059" />', '', '', 'draft', 'open', 'open', '', '', '', '', '2016-10-25 01:35:44', '2016-10-25 01:35:44', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4057', 0, 'post', '', 0),
(4058, 1, '2016-10-25 01:35:02', '2016-10-25 01:35:02', '', 'Whistleblowing', '', 'inherit', 'closed', 'closed', '', '4006-autosave-v1', '', '', '2016-10-25 01:35:02', '2016-10-25 01:35:02', '', 4006, 'http://www.investors-watch.com/wp-staging/ranhill/4006-autosave-v1/', 0, 'revision', '', 0),
(4059, 1, '2016-10-25 01:35:39', '2016-10-25 01:35:39', '', 'whistle_flow', '', 'inherit', 'open', 'closed', '', 'whistle_flow-2', '', '', '2016-10-25 01:35:39', '2016-10-25 01:35:39', '', 4057, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/whistle_flow-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(4060, 1, '2016-10-25 01:36:51', '2016-10-25 01:36:51', '', 'Whistleblowing', '', 'inherit', 'closed', 'closed', '', '4006-revision-v1', '', '', '2016-10-25 01:36:51', '2016-10-25 01:36:51', '', 4006, 'http://www.investors-watch.com/wp-staging/ranhill/4006-revision-v1/', 0, 'revision', '', 0),
(4061, 1, '2016-10-25 01:39:46', '2016-10-25 01:39:46', '', 'Whistleblowing', '', 'inherit', 'closed', 'closed', '', '3976-revision-v1', '', '', '2016-10-25 01:39:46', '2016-10-25 01:39:46', '', 3976, 'http://www.investors-watch.com/wp-staging/ranhill/3976-revision-v1/', 0, 'revision', '', 0),
(4062, 1, '2016-10-25 02:55:46', '2016-10-25 02:55:46', '', 'Sharing Our Expertise', '', 'inherit', 'closed', 'closed', '', '3894-autosave-v1', '', '', '2016-10-25 02:55:46', '2016-10-25 02:55:46', '', 3894, 'http://www.investors-watch.com/wp-staging/ranhill/3894-autosave-v1/', 0, 'revision', '', 0),
(4065, 1, '2016-10-25 03:04:03', '2016-10-25 03:04:03', '', 'zulkiflee', '', 'inherit', 'open', 'closed', '', 'zulkiflee', '', '', '2016-10-25 03:04:03', '2016-10-25 03:04:03', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Zulkiflee.jpg', 0, 'attachment', 'image/jpeg', 0),
(4066, 1, '2016-10-25 03:04:04', '2016-10-25 03:04:04', '', 'poh-ling', '', 'inherit', 'open', 'closed', '', 'poh-ling', '', '', '2016-10-25 03:04:04', '2016-10-25 03:04:04', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Poh-Ling.jpg', 0, 'attachment', 'image/jpeg', 0),
(4067, 1, '2016-10-25 03:09:02', '2016-10-25 03:09:02', '', 'meetppl_banner', '', 'inherit', 'open', 'closed', '', 'meetppl_banner', '', '', '2016-10-25 03:09:02', '2016-10-25 03:09:02', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetppl_banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(4068, 1, '2016-10-25 03:11:36', '2016-10-25 03:11:36', '', 'meetppl_banner', '', 'inherit', 'open', 'closed', '', 'meetppl_banner-2', '', '', '2016-10-25 03:11:36', '2016-10-25 03:11:36', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetppl_banner-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(4069, 1, '2016-10-25 03:17:57', '2016-10-25 03:17:57', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\n<strong>Minimum years of experience:</strong> 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Certification and/or licenses:</strong> Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\n<strong>Special skills:</strong> Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Assistant Manager (Technical), Corporate Assurance Division', '', 'publish', 'open', 'open', '', '4069-2', '', '', '2017-01-13 07:46:03', '2017-01-13 07:46:03', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4069', 0, 'post', '', 0),
(4070, 1, '2016-10-25 03:17:58', '2016-10-25 03:17:58', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\nMinimum Qualification: Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\nMinimum years of experience: 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\nCertification and/or licenses: Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\nSpecial skills: Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\nCompetency: Core competencies: Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\nGeneric Competencies: Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management', '', '', 'inherit', 'closed', 'closed', '', '4069-revision-v1', '', '', '2016-10-25 03:17:58', '2016-10-25 03:17:58', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-revision-v1/', 0, 'revision', '', 0),
(4071, 1, '2016-10-25 03:19:25', '2016-10-25 03:19:25', '<strong>Job Purpose </strong>\r\nAssist immediate superior in general accounting and finance function in E&amp;C Group of Companies, and its related companies including the preparation of financial statements and maintaining accounting records in accordance with accounting standards in Malaysia and comply with the Companies Act l 965 and other statutory requirements.\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Account Executive @ Group Accounting & Finance', '', 'publish', 'open', 'open', '', 'account-executive', '', '', '2017-01-13 07:45:44', '2017-01-13 07:45:44', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4071', 0, 'post', '', 0),
(4072, 1, '2016-10-25 03:19:25', '2016-10-25 03:19:25', '<strong>Job Purpose </strong>\r\nAssist immediate superior in general accounting and finance function in E&C Group of Companies, and its related companies including the preparation of financial statements and maintaining accounting records in accordance with accounting standards in Malaysia and comply with the Companies Act l 965 and other statutory requirements. ', 'Account Executive', '', 'inherit', 'closed', 'closed', '', '4071-revision-v1', '', '', '2016-10-25 03:19:25', '2016-10-25 03:19:25', '', 4071, 'http://www.investors-watch.com/wp-staging/ranhill/4071-revision-v1/', 0, 'revision', '', 0),
(4073, 1, '2016-11-25 04:23:53', '2016-11-25 04:23:53', '<strong>Job Purpose </strong>\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\n\n<strong>Job Requirement </strong>\n<strong>Minimum Qualification:</strong> Degree in any Engineering Field or QS.\nDegree from other technical disciplines can be considered.\n\n<strong>Minimum years of experience:</strong> 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\n\n<strong>Certification and/or licenses:</strong> Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\n\n<strong>Special skills:</strong> Knowledge of risk management system. Knowledge of Audit software is highly desired.\n\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\n\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Assistant Manager, Technical', '', 'inherit', 'closed', 'closed', '', '4069-autosave-v1', '', '', '2016-11-25 04:23:53', '2016-11-25 04:23:53', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-autosave-v1/', 0, 'revision', '', 0),
(4074, 1, '2016-10-25 03:21:14', '2016-10-25 03:21:14', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\nMinimum Qualification: Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\nMinimum years of experience: 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\nCertification and/or licenses: Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\nSpecial skills: Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\nCompetency: Core competencies: Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\nGeneric Competencies: Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management', 'Assistant Manager-Technical', '', 'inherit', 'closed', 'closed', '', '4069-revision-v1', '', '', '2016-10-25 03:21:14', '2016-10-25 03:21:14', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-revision-v1/', 0, 'revision', '', 0),
(4075, 1, '2016-10-25 03:27:05', '2016-10-25 03:27:05', '<strong>Job Purpose </strong>\r\nConduct audit independently and objectively to provide assurance to the Company that the controls are in place.\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in computer science, Management Information System (MIS), Finance and Accounting, Business or equivalent.\r\n<strong>Minimum years of experience:</strong> At least 3 years’ experience in IT environment and/or Internal Audit.\r\n<strong>Certification and/or licenses: </strong>Certified Information System Auditor (CISA), or specific to the information technology industry such as a Certified Network Engineer, Certified Security Professional.\r\nPerson undertaking CIA Exam is preferred.\r\n<strong>Special skills:</strong> Knowledge of Audit software and Enterprise Risk Software are preferred\r\nUnderstanding of concepts related to information system audit, including security and control risk such as logical and physical access security, change management, information security, business recovery practices and network technology.\r\nKnowledge of control objective for Information and Related Technology, Accepted Auditing Standards, Standards for the Professional Practice of Internal Auditing.\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies: </strong>Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'IT Audit Executive', '', 'publish', 'open', 'open', '', 'it-audit-executive', '', '', '2016-11-18 07:30:19', '2016-11-18 07:30:19', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4075', 0, 'post', '', 0),
(4076, 1, '2016-10-25 03:27:05', '2016-10-25 03:27:05', '<strong>Job Purpose </strong>\r\nConduct audit independently and objectively to provide assurance to the Company that the controls are in place. \r\n<strong>Job Requirement </strong>\r\nMinimum Qualification: Degree in computer science, Management Information System (MIS), Finance and Accounting, Business or equivalent. \r\nMinimum years of experience: At least 3 years’ experience in IT environment and/or Internal Audit. \r\nCertification and/or licenses: Certified Information System Auditor (CISA), or specific to the information technology industry such as a Certified Network Engineer, Certified Security Professional. \r\nPerson undertaking CIA Exam is preferred. \r\nSpecial skills: Knowledge of Audit software and Enterprise Risk Software are preferred \r\nUnderstanding of concepts related to information system audit, including security and control risk such as logical and physical access security, change management, information security, business recovery practices and network technology. \r\nKnowledge of control objective for Information and Related Technology, Accepted Auditing Standards, Standards for the Professional Practice of Internal Auditing. \r\nCore competencies: \r\nCustomers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency \r\nGeneric competencies: \r\nOrganisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership. ', 'IT Audit Executive', '', 'inherit', 'closed', 'closed', '', '4075-revision-v1', '', '', '2016-10-25 03:27:05', '2016-10-25 03:27:05', '', 4075, 'http://www.investors-watch.com/wp-staging/ranhill/4075-revision-v1/', 0, 'revision', '', 0),
(4077, 1, '2016-10-25 03:30:18', '2016-10-25 03:30:18', '<strong>Job Purpose</strong>\r\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong> LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong> 3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Compliance Manager, Group Legal & Compliance', '', 'publish', 'open', 'open', '', 'group-legal-compliance-manager', '', '', '2017-01-13 07:44:18', '2017-01-13 07:44:18', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4077', 0, 'post', '', 0),
(4078, 1, '2016-10-25 03:30:18', '2016-10-25 03:30:18', '<strong>Job Purpose</strong>\r\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\nMinimum Qualification:\r\nLLB/Bachelor of Laws\r\nMinimum years of experience:\r\n3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\r\nCompetency:\r\nCore Competencies: Customers Orientation, Achieving Result with Passion,  Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\nGeneric Competencies: Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n', 'Group Legal & Compliance - Manager', '', 'inherit', 'closed', 'closed', '', '4077-revision-v1', '', '', '2016-10-25 03:30:18', '2016-10-25 03:30:18', '', 4077, 'http://www.investors-watch.com/wp-staging/ranhill/4077-revision-v1/', 0, 'revision', '', 0),
(4079, 1, '2016-10-25 03:31:12', '2016-10-25 03:31:12', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong>Freshly called to the Bar\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies:</strong> Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Legal Executive, Group Legal & Compliance', '', 'publish', 'open', 'open', '', 'group-legal-executive', '', '', '2017-01-13 07:44:43', '2017-01-13 07:44:43', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4079', 0, 'post', '', 0),
(4080, 1, '2016-10-25 03:31:12', '2016-10-25 03:31:12', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently. \r\n\r\n\r\n\r\n\r\n<strong>Job Requirement</strong>\r\nMinimum Qualification\r\n:\r\nLLB/Bachelor of Laws\r\nMinimum years of experience\r\n:\r\nFreshly called to the Bar\r\n\r\nCompetency\r\n:\r\nCore competencies: Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\nGeneric competencies: Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n', 'Group Legal - Executive', '', 'inherit', 'closed', 'closed', '', '4079-revision-v1', '', '', '2016-10-25 03:31:12', '2016-10-25 03:31:12', '', 4079, 'http://www.investors-watch.com/wp-staging/ranhill/4079-revision-v1/', 0, 'revision', '', 0),
(4081, 1, '2016-10-25 03:32:18', '2016-10-25 03:32:18', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently. \r\n\r\n\r\n\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong>Freshly called to the Bar\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies:</strong> Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n', 'Group Legal - Executive', '', 'inherit', 'closed', 'closed', '', '4079-revision-v1', '', '', '2016-10-25 03:32:18', '2016-10-25 03:32:18', '', 4079, 'http://www.investors-watch.com/wp-staging/ranhill/4079-revision-v1/', 0, 'revision', '', 0),
(4082, 1, '2016-11-25 04:22:31', '2016-11-25 04:22:31', '<strong>Job Purpose</strong>\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\n\n<strong>Job Requirement</strong>\n<strong>Minimum Qualification:</strong> LLB/Bachelor of Laws\n<strong>Minimum years of experience:</strong> 3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\n\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\n\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Manager, Group Legal & Compliance', '', 'inherit', 'closed', 'closed', '', '4077-autosave-v1', '', '', '2016-11-25 04:22:31', '2016-11-25 04:22:31', '', 4077, 'http://www.investors-watch.com/wp-staging/ranhill/4077-autosave-v1/', 0, 'revision', '', 0),
(4083, 1, '2016-10-25 03:33:09', '2016-10-25 03:33:09', '<strong>Job Purpose</strong>\r\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong> LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong> 3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion,  Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n', 'Group Legal & Compliance - Manager', '', 'inherit', 'closed', 'closed', '', '4077-revision-v1', '', '', '2016-10-25 03:33:09', '2016-10-25 03:33:09', '', 4077, 'http://www.investors-watch.com/wp-staging/ranhill/4077-revision-v1/', 0, 'revision', '', 0),
(4084, 1, '2016-10-25 03:33:49', '2016-10-25 03:33:49', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\n<strong>Minimum years of experience:</strong> 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Certification and/or licenses:</strong> Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\n<strong>Special skills:</strong> Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management', 'Assistant Manager-Technical', '', 'inherit', 'closed', 'closed', '', '4069-revision-v1', '', '', '2016-10-25 03:33:49', '2016-10-25 03:33:49', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4085, 1, '2016-10-25 03:34:05', '2016-10-25 03:34:05', '<strong>Job Purpose </strong>\nConduct audit independently and objectively to provide assurance to the Company that the controls are in place. \n<strong>Job Requirement </strong>\n<strong>Minimum Qualification:</strong> Degree in computer science, Management Information System (MIS), Finance and Accounting, Business or equivalent. \n<strong>Minimum years of experience:</strong> At least 3 years’ experience in IT environment and/or Internal Audit. \nCertification and/or licenses: Certified Information System Auditor (CISA), or specific to the information technology industry such as a Certified Network Engineer, Certified Security Professional. \nPerson undertaking CIA Exam is preferred. \n<strong>Special skills:</strong> Knowledge of Audit software and Enterprise Risk Software are preferred \nUnderstanding of concepts related to information system audit, including security and control risk such as logical and physical access security, change management, information security, business recovery practices and network technology. \nKnowledge of control objective for Information and Related Technology, Accepted Auditing Standards, Standards for the Professional Practice of Internal Auditing. \nCore competencies: \nCustomers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency \nGeneric competencies: \nOrganisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership. ', 'IT Audit Executive', '', 'inherit', 'closed', 'closed', '', '4075-autosave-v1', '', '', '2016-10-25 03:34:05', '2016-10-25 03:34:05', '', 4075, 'http://www.investors-watch.com/wp-staging/ranhill/4075-autosave-v1/', 0, 'revision', '', 0),
(4086, 1, '2016-10-25 03:34:33', '2016-10-25 03:34:33', '<strong>Job Purpose </strong>\r\nConduct audit independently and objectively to provide assurance to the Company that the controls are in place. \r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in computer science, Management Information System (MIS), Finance and Accounting, Business or equivalent. \r\n<strong>Minimum years of experience:</strong> At least 3 years’ experience in IT environment and/or Internal Audit. \r\n<strong>Certification and/or licenses: </strong>Certified Information System Auditor (CISA), or specific to the information technology industry such as a Certified Network Engineer, Certified Security Professional. \r\nPerson undertaking CIA Exam is preferred. \r\n<strong>Special skills:</strong> Knowledge of Audit software and Enterprise Risk Software are preferred \r\nUnderstanding of concepts related to information system audit, including security and control risk such as logical and physical access security, change management, information security, business recovery practices and network technology. \r\nKnowledge of control objective for Information and Related Technology, Accepted Auditing Standards, Standards for the Professional Practice of Internal Auditing. \r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency \r\n<strong>Generic competencies: </strong>Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership. ', 'IT Audit Executive', '', 'inherit', 'closed', 'closed', '', '4075-revision-v1', '', '', '2016-10-25 03:34:33', '2016-10-25 03:34:33', '', 4075, 'http://www.investors-watch.com/wp-staging/ranhill/4075-revision-v1/', 0, 'revision', '', 0),
(4087, 1, '2016-10-25 03:36:19', '2016-10-25 03:36:19', '<strong>Job Purpose</strong>\r\nProvides secretarial and administrative support to the department for its effective and efficient operations.\r\n\r\n<strong>Duty Statements</strong>\r\n\r\nTo aspects assist of the Company Secretary/Asst Company Secretary in monitoring all aspects of secretarial matters/functions of the secretariat and to ensure timely compliance with the statutory/regulatory authorities i.e. the Malaysia Securities Exchange Berhad (MSEB), the Securities Commission (SC), Commission of Companies Malaysia (CCM), Foreign Investment Committee (FIC), etc. including the following;-\r\n<ul>\r\n 	<li>Assist in preparing, arranging for Board of Directors\' Meeting and such other sub-committee/management meeting as required by the Board of Directors/Company Secretary.</li>\r\n 	<li>Preparing, arranging and attending Annual/Extraordinary General Meetings of the members of the Company.</li>\r\n 	<li>Preparing various kinds of Directors / Members Circular Resolutions.</li>\r\n 	<li>Preparation and filing of all statutory documents with the relevant authorities i.e. the MSEB, SC, CCM etc. within the stipulated time.</li>\r\n 	<li>Assist in providing advisory to the directors, shareholders and senior management of the Company/Group in respect of the Secretarial Practices/Procedures, Companies Act, 1965, the Revamped Listing Requirments of the MSEB, the Malaysian Code on Corporate Governance, and the SC requirement etc.</li>\r\n 	<li>To assist in overseeing the formation of joint venture companies either locally or aboard as well as offshore companies and monitoring secretarial and general compliance thereof.</li>\r\n</ul>\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Executive Secretarial, Group Secretarial', '', 'publish', 'open', 'open', '', 'group-secretarial-executive-secretarial', '', '', '2016-11-25 04:22:50', '2016-11-25 04:22:50', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4087', 0, 'post', '', 0),
(4088, 1, '2016-10-25 03:36:19', '2016-10-25 03:36:19', '<strong>Job Purpose</strong>\r\nProvides secretarial and administrative support to the department for its effective and efficient operations.\r\n\r\n', 'Group Secretarial - Executive Secretarial', '', 'inherit', 'closed', 'closed', '', '4087-revision-v1', '', '', '2016-10-25 03:36:19', '2016-10-25 03:36:19', '', 4087, 'http://www.investors-watch.com/wp-staging/ranhill/4087-revision-v1/', 0, 'revision', '', 0),
(4089, 1, '2016-10-25 03:39:42', '2016-10-25 03:39:42', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue.\r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law\r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency,\r\n<strong>Generic competencies:</strong> Organizational Awareness, Business &amp; Financial Awareness, Protect Managaement, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Litigation Manager, Group Legal & Compliance', '', 'publish', 'open', 'open', '', 'group-legal-and-compliance-litigation-manager', '', '', '2017-01-13 07:44:13', '2017-01-13 07:44:13', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4089', 0, 'post', '', 0),
(4090, 1, '2016-10-25 03:39:42', '2016-10-25 03:39:42', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue. \r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law \r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner \r\n\r\n<strong>Special skills:</strong>Litigation skills \r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency, \r\n<strong>Generic competencies:</strong> Organizational Awareness, Business & Financial Awareness, Proiect Manaaement, Problem Solvinn, Leadershin ', 'Group Legal and Compliance Litigation - Manager', '', 'inherit', 'closed', 'closed', '', '4089-revision-v1', '', '', '2016-10-25 03:39:42', '2016-10-25 03:39:42', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-revision-v1/', 0, 'revision', '', 0),
(4091, 1, '2016-10-25 03:40:08', '2016-10-25 03:40:08', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue. \r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law \r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner \r\n\r\n<strong>Special skills:</strong>Litigation skills \r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency, \r\n<strong>Generic competencies:</strong> Organizational Awareness, Business & Financial Awareness, Protect Managaement, Problem Solving, Leadership', 'Group Legal and Compliance Litigation - Manager', '', 'inherit', 'closed', 'closed', '', '4089-revision-v1', '', '', '2016-10-25 03:40:08', '2016-10-25 03:40:08', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-revision-v1/', 0, 'revision', '', 0),
(4092, 1, '2016-10-25 03:44:16', '2016-10-25 03:44:16', '<strong>Job Purpose </strong>\r\n<ul>\r\n 	<li>Provide assistance and support on the Group fund raising exercise</li>\r\n 	<li>Play a supporting role in the company merger and acquisition activities</li>\r\n 	<li>Design or prepare financial models for cashflow projections using Microsoft Excel for existing and new projects to be undertaken by the Group</li>\r\n 	<li>Monitor the compliance of the debt covenants of the Group</li>\r\n 	<li>Prepare presentation material, board papers and other documents as may be required</li>\r\n 	<li>Assist in other ad hoc assignments from time to time</li>\r\n</ul>\r\n<strong>Job Requirement</strong>\r\n<ul>\r\n 	<li>Candidate must possess a Degree in a finance related field or professional qualifications e.g . MIA/ MACPA/ ACCA/ ICAEW or its equivalent</li>\r\n 	<li>Minimum of 3 years working experience preferably in the corporate finance environment</li>\r\n 	<li>Proficiency in financial modelling, financial analysis and cashflow projections</li>\r\n 	<li>Knowledge of the rules, regulations and guidelines by the SC, Bursa Malaysia, BNM, MITI and other guidelines related to Corporate Finance matters would be an added advantage</li>\r\n 	<li>Good working knowledge in Microsoft Office (i.e. PowerPoint, Excel, Word, etc.) is required Team player with good interpersonal and communication skills</li>\r\n</ul>\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Assistant Manager, Corporate Finance', '', 'publish', 'open', 'open', '', 'assistant-manager-corporate-finance', '', '', '2016-11-25 04:23:09', '2016-11-25 04:23:09', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4092', 0, 'post', '', 0),
(4093, 1, '2016-10-25 03:44:16', '2016-10-25 03:44:16', '<strong>Job Purpose </strong>\r\n<ul>\r\n 	<li>Provide assistance and support on the Group fund raising exercise</li>\r\n 	<li>Play a supporting role in the company merger and acquisition activities</li>\r\n 	<li>Design or prepare financial models for cashflow projections using Microsoft Excel for existing and new projects to be undertaken by the Group</li>\r\n 	<li>Monitor the compliance of the debt covenants of the Group</li>\r\n 	<li>Prepare presentation material, board papers and other documents as may be required</li>\r\n 	<li>Assist in other ad hoc assignments from time to time</li>\r\n</ul>\r\n<strong>Job Requirement</strong>\r\n<ul>\r\n 	<li>Candidate must possess a Degree in a finance related field or professional qualifications e.g . MIA/ MACPA/ ACCA/ ICAEW or its equivalent</li>\r\n 	<li>Minimum of 3 years working experience preferably in the corporate finance environment</li>\r\n 	<li>Proficiency in financial modelling, financial analysis and cashflow projections</li>\r\n 	<li>Knowledge of the rules, regulations and guidelines by the SC, Bursa Malaysia, BNM, MITI and other guidelines related to Corporate Finance matters would be an added advantage</li>\r\n 	<li>Good working knowledge in Microsoft Office (i.e. PowerPoint, Excel, Word, etc.) is required Team player with good interpersonal and communication skills</li>\r\n</ul>', 'Assistant Manager, Corporate Finance', '', 'inherit', 'closed', 'closed', '', '4092-revision-v1', '', '', '2016-10-25 03:44:16', '2016-10-25 03:44:16', '', 4092, 'http://www.investors-watch.com/wp-staging/ranhill/4092-revision-v1/', 0, 'revision', '', 0),
(4095, 1, '2016-10-25 03:51:41', '2016-10-25 03:51:41', '', 'Lim Poh Ling', '', 'publish', 'closed', 'closed', '', 'lim-poh-ling', '', '', '2016-12-16 05:47:07', '2016-12-16 05:47:07', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4095', 0, 'page', '', 0),
(4096, 1, '2016-10-25 03:51:41', '2016-10-25 03:51:41', '', 'Lim Poh Ling', '', 'inherit', 'closed', 'closed', '', '4095-revision-v1', '', '', '2016-10-25 03:51:41', '2016-10-25 03:51:41', '', 4095, 'http://www.investors-watch.com/wp-staging/ranhill/4095-revision-v1/', 0, 'revision', '', 0),
(4097, 1, '2016-10-25 03:54:31', '2016-10-25 03:54:31', '', 'Zulkiflee Ibrahim', '', 'publish', 'closed', 'closed', '', 'zulkiflee-ibrahim', '', '', '2016-11-25 04:14:27', '2016-11-25 04:14:27', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4097', 0, 'page', '', 0),
(4098, 1, '2016-10-25 03:54:31', '2016-10-25 03:54:31', '', 'Zulkiflee Ibrahim', '', 'inherit', 'closed', 'closed', '', '4097-revision-v1', '', '', '2016-10-25 03:54:31', '2016-10-25 03:54:31', '', 4097, 'http://www.investors-watch.com/wp-staging/ranhill/4097-revision-v1/', 0, 'revision', '', 0),
(4099, 1, '2016-11-02 07:06:37', '2016-11-02 07:06:37', '', 'yee-kok-hong', '', 'inherit', 'open', 'closed', '', 'yee-kok-hong', '', '', '2016-11-02 07:06:37', '2016-11-02 07:06:37', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Yee-Kok-Hong.jpg', 0, 'attachment', 'image/jpeg', 0),
(4100, 1, '2016-11-02 07:11:07', '2016-11-02 07:11:07', '', 'Yee Kok Hong', '', 'publish', 'closed', 'closed', '', 'yee-kok-hong', '', '', '2016-11-25 04:16:02', '2016-11-25 04:16:02', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4100', 0, 'page', '', 0),
(4101, 1, '2016-11-02 07:11:07', '2016-11-02 07:11:07', '', 'Yee Kok Hong', '', 'inherit', 'closed', 'closed', '', '4100-revision-v1', '', '', '2016-11-02 07:11:07', '2016-11-02 07:11:07', '', 4100, 'http://www.investors-watch.com/wp-staging/ranhill/4100-revision-v1/', 0, 'revision', '', 0),
(4102, 1, '2016-11-10 07:08:09', '2016-11-10 07:08:09', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/09/SAJ_Final.pdf" title="saj_final"]', 'Carbon Footprint', '', 'inherit', 'closed', 'closed', '', '4046-autosave-v1', '', '', '2016-11-10 07:08:09', '2016-11-10 07:08:09', '', 4046, 'http://www.investors-watch.com/wp-staging/ranhill/4046-autosave-v1/', 0, 'revision', '', 0),
(4103, 1, '2016-11-02 07:22:48', '2016-11-02 07:22:48', '', 'carbon', '', 'inherit', 'open', 'closed', '', 'carbon', '', '', '2016-11-02 07:22:48', '2016-11-02 07:22:48', '', 4046, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/carbon.jpg', 0, 'attachment', 'image/jpeg', 0),
(4104, 1, '2016-11-08 02:13:27', '2016-11-08 02:13:27', '', 'Clean Energy', '', 'inherit', 'closed', 'closed', '', '123-revision-v1', '', '', '2016-11-08 02:13:27', '2016-11-08 02:13:27', '', 123, 'http://www.investors-watch.com/wp-staging/ranhill/123-revision-v1/', 0, 'revision', '', 0),
(4105, 1, '2016-11-08 07:30:48', '2016-11-08 07:30:48', ' ', '', '', 'publish', 'closed', 'closed', '', '4105', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4105', 20, 'nav_menu_item', '', 0),
(4106, 1, '2016-11-08 09:26:38', '2016-11-08 09:26:38', '', 'yee-kok-hong', '', 'inherit', 'open', 'closed', '', 'yee-kok-hong-2', '', '', '2016-11-08 09:26:38', '2016-11-08 09:26:38', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Yee-Kok-Hong-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(4108, 1, '2016-11-08 09:59:47', '2016-11-08 09:59:47', '<table width="317">\r\n<tbody>\r\n<tr>\r\n<td width="118"><b>Description</b></td>\r\n<td width="54"><b>Capacity</b>(1)\r\n\r\n<b>(MLD)</b></td>\r\n<td width="69"><b>Concession Type</b>(2)</td>\r\n<td width="77"><b>Expiration</b><b> of license/concession</b></td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Xiaolan</b><b> Wastewater Treatment plant (Phase I)</b></td>\r\n<td width="54">30</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2038</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Xiaolan</b><b> Wastewater Treatment plant</b><b> (</b><b>Phase II)</b></td>\r\n<td width="54">50</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2042</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Xinxiang Wastewater Treatment Plant</b></td>\r\n<td width="54">50</td>\r\n<td width="69">Wastewater/ TOT</td>\r\n<td width="77">2041</td>\r\n</tr>\r\n<tr>\r\n<td rowspan="2" width="118"><b>Yingkou</b><b> Wastewater Treatment and Reclamation Plant</b></td>\r\n<td width="54">30(3)</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2046</td>\r\n</tr>\r\n<tr>\r\n<td width="54">30(4)</td>\r\n<td width="69">Reclaim water/ BOT</td>\r\n<td width="77">-(10)</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Hefei</b><b> Wastewater Treatment Plant</b></td>\r\n<td width="54">30(5)</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2036</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Changfeng</b><b> Wastewater Treatment Plant</b></td>\r\n<td width="54">20(6)</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2043</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Yihuang</b><b> Wastewater Treatment Plant</b></td>\r\n<td width="54">5(7)</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2045</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Wanzai</b><b> Wastewater Treatment Plant</b></td>\r\n<td width="54">5(8)</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2044</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Chongren</b><b> Wastewater</b><b> Treatment Plant</b></td>\r\n<td width="54">10(9)</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2046</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Fuxin Wastewater</b><b> Treatment Plant</b></td>\r\n<td width="54">20</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2046</td>\r\n</tr>\r\n<tr>\r\n<td width="118"><b>Yong </b><b>Xin</b><b> County  Wastewater</b><b> Treatment Plant</b></td>\r\n<td width="54">10</td>\r\n<td width="69">Wastewater/ BOT</td>\r\n<td width="77">2046</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'Water and wastewater treatment', '', 'inherit', 'closed', 'closed', '', '3865-revision-v1', '', '', '2016-11-08 09:59:47', '2016-11-08 09:59:47', '', 3865, 'http://www.investors-watch.com/wp-staging/ranhill/3865-revision-v1/', 0, 'revision', '', 0),
(4109, 1, '2016-11-08 10:01:28', '2016-11-08 10:01:28', '', 'Water and wastewater treatment', '', 'inherit', 'closed', 'closed', '', '3865-revision-v1', '', '', '2016-11-08 10:01:28', '2016-11-08 10:01:28', '', 3865, 'http://www.investors-watch.com/wp-staging/ranhill/3865-revision-v1/', 0, 'revision', '', 0),
(4111, 1, '2016-11-09 01:36:11', '2016-11-09 01:36:11', '', 'Our History', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2016-11-09 01:36:11', '2016-11-09 01:36:11', '', 26, 'http://www.investors-watch.com/wp-staging/ranhill/26-revision-v1/', 0, 'revision', '', 0),
(4114, 1, '2016-11-10 06:47:43', '2016-11-10 06:47:43', '', 'carbonfootprint', '', 'inherit', 'open', 'closed', '', 'carbonfootprint', '', '', '2016-11-10 06:47:43', '2016-11-10 06:47:43', '', 4023, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/carbonfootprint.jpg', 0, 'attachment', 'image/jpeg', 0),
(4115, 1, '2016-11-10 06:47:44', '2016-11-10 06:47:44', '', 'waterreclamation', '', 'inherit', 'open', 'closed', '', 'waterreclamation', '', '', '2016-11-10 06:47:44', '2016-11-10 06:47:44', '', 4023, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/waterreclamation.jpg', 0, 'attachment', 'image/jpeg', 0),
(4116, 1, '2016-11-10 06:48:54', '2016-11-10 06:48:54', '', 'shared', '', 'inherit', 'open', 'closed', '', 'shared', '', '', '2016-11-10 06:48:54', '2016-11-10 06:48:54', '', 4023, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/shared.jpg', 0, 'attachment', 'image/jpeg', 0),
(4117, 1, '2016-11-10 06:51:58', '2016-11-10 06:51:58', '', 'ourbusiness', '', 'inherit', 'open', 'closed', '', 'ourbusiness', '', '', '2016-11-10 06:51:58', '2016-11-10 06:51:58', '', 3753, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/ourbusiness.jpg', 0, 'attachment', 'image/jpeg', 0),
(4118, 1, '2016-11-10 07:05:46', '2016-11-10 07:05:46', '', 'gis', '', 'inherit', 'open', 'closed', '', 'gis', '', '', '2016-11-10 07:05:46', '2016-11-10 07:05:46', '', 4046, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/gis.jpg', 0, 'attachment', 'image/jpeg', 0),
(4120, 1, '2016-11-10 07:20:59', '2016-11-10 07:20:59', '', 'meetppl', '', 'inherit', 'open', 'closed', '', 'meetppl', '', '', '2016-11-10 07:20:59', '2016-11-10 07:20:59', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/meetppl.jpg', 0, 'attachment', 'image/jpeg', 0),
(4121, 1, '2016-11-10 07:54:38', '2016-11-10 07:54:38', '', 'Our Technology', '', 'publish', 'closed', 'closed', '', 'our-technology', '', '', '2016-11-25 04:45:54', '2016-11-25 04:45:54', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4121', 0, 'page', '', 0),
(4123, 1, '2016-11-10 07:54:38', '2016-11-10 07:54:38', '', 'Our Technology', '', 'inherit', 'closed', 'closed', '', '4121-revision-v1', '', '', '2016-11-10 07:54:38', '2016-11-10 07:54:38', '', 4121, 'http://www.investors-watch.com/wp-staging/ranhill/4121-revision-v1/', 0, 'revision', '', 0),
(4124, 1, '2016-11-10 08:31:49', '2016-11-10 08:31:49', '', 'Water and wastewater treatment', '', 'inherit', 'closed', 'closed', '', '3710-autosave-v1', '', '', '2016-11-10 08:31:49', '2016-11-10 08:31:49', '', 3710, 'http://www.investors-watch.com/wp-staging/ranhill/3710-autosave-v1/', 0, 'revision', '', 0),
(4127, 1, '2016-11-17 08:41:50', '2016-11-17 08:41:50', '', 'technology', '', 'inherit', 'open', 'closed', '', 'technology', '', '', '2016-11-17 08:41:50', '2016-11-17 08:41:50', '', 4121, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/11/technology.jpg', 0, 'attachment', 'image/jpeg', 0),
(4129, 1, '2016-11-17 08:48:22', '2016-11-17 08:48:22', '', 'dissolved-air-floatation-daf', '', 'inherit', 'open', 'closed', '', 'dissolved-air-floatation-daf-2', '', '', '2016-11-17 08:48:22', '2016-11-17 08:48:22', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/11/DISSOLVED-AIR-FLOATATION-DAF.jpg', 0, 'attachment', 'image/jpeg', 0),
(4131, 1, '2016-11-17 08:53:23', '2016-11-17 08:53:23', '', 'yee_sml', '', 'inherit', 'open', 'closed', '', 'yee_sml-2', '', '', '2016-11-17 08:53:23', '2016-11-17 08:53:23', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/yee_sml-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(4133, 1, '2016-11-17 09:36:16', '2016-11-17 09:36:16', '<strong>Job Purpose</strong>\nProvides secretarial and administrative support to the department for its effective and efficient operations.\n\n<strong>Duty Statements</strong>\n\nTo aspects assist of the Company Secretary/Asst Company Secretary in monitoring all aspects of secretarial matters/functions of the secretariat and to ensure timely compliance with the statutory/regulatory authorities i.e. the Malaysia Securities Exchange Berhad (MSEB), the Securities Commission (SC), Commission of Companies Malaysia (CCM), Foreign Investment Committee (FIC), etc. including the following;-\n\n- Assist in preparing, arranging for Board of Directors\' Meeting and such other sub-committee/management meeting as required by the Board of Directors/Company Secretary.\n- Preparing, arranging and attending Annual/Extraordinary General Meetings of the members of the Company.\n- Preparing various kinds of Directors / Members Circular Resolutions.\n- Preparation and filing of all statutory documents with the relevant authorities i.e. the MSEB, SC, CCM etc. within the stipulated time.\n- Assist in providing advisory to the directors, shareholders and senior management of the Company/Group in respect of the Secretarial Practices/Procedures, Companies Act, 1965, the Revamped Listing Requirments of the MSEB, the Malaysian Code on Corporate Governance, and the SC requirement etc.\n- To assist in overseeing the formation of joint venture compa', 'Group Secretarial - Executive Secretarial', '', 'inherit', 'closed', 'closed', '', '4087-autosave-v1', '', '', '2016-11-17 09:36:16', '2016-11-17 09:36:16', '', 4087, 'http://www.investors-watch.com/wp-staging/ranhill/4087-autosave-v1/', 0, 'revision', '', 0),
(4134, 1, '2016-11-17 09:37:27', '2016-11-17 09:37:27', '<strong>Job Purpose</strong>\r\nProvides secretarial and administrative support to the department for its effective and efficient operations.\r\n\r\n<strong>Duty Statements</strong>\r\n\r\nTo aspects assist of the Company Secretary/Asst Company Secretary in monitoring all aspects of secretarial matters/functions of the secretariat and to ensure timely compliance with the statutory/regulatory authorities i.e. the Malaysia Securities Exchange Berhad (MSEB), the Securities Commission (SC), Commission of Companies Malaysia (CCM), Foreign Investment Committee (FIC), etc. including the following;-\r\n<ul>\r\n 	<li>Assist in preparing, arranging for Board of Directors\' Meeting and such other sub-committee/management meeting as required by the Board of Directors/Company Secretary.</li>\r\n 	<li>Preparing, arranging and attending Annual/Extraordinary General Meetings of the members of the Company.</li>\r\n 	<li>Preparing various kinds of Directors / Members Circular Resolutions.</li>\r\n 	<li>Preparation and filing of all statutory documents with the relevant authorities i.e. the MSEB, SC, CCM etc. within the stipulated time.</li>\r\n 	<li>Assist in providing advisory to the directors, shareholders and senior management of the Company/Group in respect of the Secretarial Practices/Procedures, Companies Act, 1965, the Revamped Listing Requirments of the MSEB, the Malaysian Code on Corporate Governance, and the SC requirement etc.</li>\r\n 	<li>To assist in overseeing the formation of joint venture companies either locally or aboard as well as offshore companies and monitoring secretarial and general compliance thereof.</li>\r\n</ul>', 'Group Secretarial - Executive Secretarial', '', 'inherit', 'closed', 'closed', '', '4087-revision-v1', '', '', '2016-11-17 09:37:27', '2016-11-17 09:37:27', '', 4087, 'http://www.investors-watch.com/wp-staging/ranhill/4087-revision-v1/', 0, 'revision', '', 0),
(4135, 1, '2016-11-17 09:37:46', '2016-11-17 09:37:46', '<strong>Job Purpose</strong>\r\nProvides secretarial and administrative support to the department for its effective and efficient operations.\r\n\r\n<strong>Duty Statements</strong>\r\n\r\nTo aspects assist of the Company Secretary/Asst Company Secretary in monitoring all aspects of secretarial matters/functions of the secretariat and to ensure timely compliance with the statutory/regulatory authorities i.e. the Malaysia Securities Exchange Berhad (MSEB), the Securities Commission (SC), Commission of Companies Malaysia (CCM), Foreign Investment Committee (FIC), etc. including the following;-\r\n<ul>\r\n 	<li>Assist in preparing, arranging for Board of Directors\' Meeting and such other sub-committee/management meeting as required by the Board of Directors/Company Secretary.</li>\r\n 	<li>Preparing, arranging and attending Annual/Extraordinary General Meetings of the members of the Company.</li>\r\n 	<li>Preparing various kinds of Directors / Members Circular Resolutions.</li>\r\n 	<li>Preparation and filing of all statutory documents with the relevant authorities i.e. the MSEB, SC, CCM etc. within the stipulated time.</li>\r\n 	<li>Assist in providing advisory to the directors, shareholders and senior management of the Company/Group in respect of the Secretarial Practices/Procedures, Companies Act, 1965, the Revamped Listing Requirments of the MSEB, the Malaysian Code on Corporate Governance, and the SC requirement etc.</li>\r\n 	<li>To assist in overseeing the formation of joint venture companies either locally or aboard as well as offshore companies and monitoring secretarial and general compliance thereof.</li>\r\n</ul>\r\nTo apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.', 'Group Secretarial - Executive Secretarial', '', 'inherit', 'closed', 'closed', '', '4087-revision-v1', '', '', '2016-11-17 09:37:46', '2016-11-17 09:37:46', '', 4087, 'http://www.investors-watch.com/wp-staging/ranhill/4087-revision-v1/', 0, 'revision', '', 0),
(4136, 1, '2016-11-17 09:38:47', '2016-11-17 09:38:47', '<strong>Job Purpose </strong>\r\n<ul>\r\n 	<li>Provide assistance and support on the Group fund raising exercise</li>\r\n 	<li>Play a supporting role in the company merger and acquisition activities</li>\r\n 	<li>Design or prepare financial models for cashflow projections using Microsoft Excel for existing and new projects to be undertaken by the Group</li>\r\n 	<li>Monitor the compliance of the debt covenants of the Group</li>\r\n 	<li>Prepare presentation material, board papers and other documents as may be required</li>\r\n 	<li>Assist in other ad hoc assignments from time to time</li>\r\n</ul>\r\n<strong>Job Requirement</strong>\r\n<ul>\r\n 	<li>Candidate must possess a Degree in a finance related field or professional qualifications e.g . MIA/ MACPA/ ACCA/ ICAEW or its equivalent</li>\r\n 	<li>Minimum of 3 years working experience preferably in the corporate finance environment</li>\r\n 	<li>Proficiency in financial modelling, financial analysis and cashflow projections</li>\r\n 	<li>Knowledge of the rules, regulations and guidelines by the SC, Bursa Malaysia, BNM, MITI and other guidelines related to Corporate Finance matters would be an added advantage</li>\r\n 	<li>Good working knowledge in Microsoft Office (i.e. PowerPoint, Excel, Word, etc.) is required Team player with good interpersonal and communication skills</li>\r\n</ul>\r\nTo apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.', 'Assistant Manager, Corporate Finance', '', 'inherit', 'closed', 'closed', '', '4092-revision-v1', '', '', '2016-11-17 09:38:47', '2016-11-17 09:38:47', '', 4092, 'http://www.investors-watch.com/wp-staging/ranhill/4092-revision-v1/', 0, 'revision', '', 0),
(4137, 1, '2016-11-17 09:39:05', '2016-11-17 09:39:05', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue.\r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law\r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency,\r\n<strong>Generic competencies:</strong> Organizational Awareness, Business &amp; Financial Awareness, Protect Managaement, Problem Solving, Leadership\r\n\r\nTo apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.', 'Group Legal and Compliance Litigation - Manager', '', 'inherit', 'closed', 'closed', '', '4089-revision-v1', '', '', '2016-11-17 09:39:05', '2016-11-17 09:39:05', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-revision-v1/', 0, 'revision', '', 0),
(4138, 1, '2016-11-17 09:39:15', '2016-11-17 09:39:15', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong>Freshly called to the Bar\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies:</strong> Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\nTo apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.', 'Group Legal - Executive', '', 'inherit', 'closed', 'closed', '', '4079-revision-v1', '', '', '2016-11-17 09:39:15', '2016-11-17 09:39:15', '', 4079, 'http://www.investors-watch.com/wp-staging/ranhill/4079-revision-v1/', 0, 'revision', '', 0),
(4139, 1, '2016-11-17 09:39:24', '2016-11-17 09:39:24', '<strong>Job Purpose </strong>\r\nConduct audit independently and objectively to provide assurance to the Company that the controls are in place.\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in computer science, Management Information System (MIS), Finance and Accounting, Business or equivalent.\r\n<strong>Minimum years of experience:</strong> At least 3 years’ experience in IT environment and/or Internal Audit.\r\n<strong>Certification and/or licenses: </strong>Certified Information System Auditor (CISA), or specific to the information technology industry such as a Certified Network Engineer, Certified Security Professional.\r\nPerson undertaking CIA Exam is preferred.\r\n<strong>Special skills:</strong> Knowledge of Audit software and Enterprise Risk Software are preferred\r\nUnderstanding of concepts related to information system audit, including security and control risk such as logical and physical access security, change management, information security, business recovery practices and network technology.\r\nKnowledge of control objective for Information and Related Technology, Accepted Auditing Standards, Standards for the Professional Practice of Internal Auditing.\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies: </strong>Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\nTo apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.', 'IT Audit Executive', '', 'inherit', 'closed', 'closed', '', '4075-revision-v1', '', '', '2016-11-17 09:39:24', '2016-11-17 09:39:24', '', 4075, 'http://www.investors-watch.com/wp-staging/ranhill/4075-revision-v1/', 0, 'revision', '', 0),
(4140, 1, '2016-11-17 09:39:32', '2016-11-17 09:39:32', '<strong>Job Purpose </strong>\r\nAssist immediate superior in general accounting and finance function in E&amp;C Group of Companies, and its related companies including the preparation of financial statements and maintaining accounting records in accordance with accounting standards in Malaysia and comply with the Companies Act l 965 and other statutory requirements.\r\n\r\nTo apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.', 'Account Executive', '', 'inherit', 'closed', 'closed', '', '4071-revision-v1', '', '', '2016-11-17 09:39:32', '2016-11-17 09:39:32', '', 4071, 'http://www.investors-watch.com/wp-staging/ranhill/4071-revision-v1/', 0, 'revision', '', 0),
(4141, 1, '2016-11-17 09:39:41', '2016-11-17 09:39:41', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\n<strong>Minimum years of experience:</strong> 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Certification and/or licenses:</strong> Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\n<strong>Special skills:</strong> Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\nTo apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.', 'Assistant Manager-Technical', '', 'inherit', 'closed', 'closed', '', '4069-revision-v1', '', '', '2016-11-17 09:39:41', '2016-11-17 09:39:41', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-revision-v1/', 0, 'revision', '', 0),
(4142, 1, '2016-11-17 09:41:58', '2016-11-17 09:41:58', '', 'sharedexpert', '', 'inherit', 'open', 'closed', '', 'sharedexpert', '', '', '2016-11-17 09:41:58', '2016-11-17 09:41:58', '', 3894, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/sharedexpert.jpg', 0, 'attachment', 'image/jpeg', 0),
(4143, 1, '2016-11-18 07:18:45', '2016-11-18 07:18:45', '', 'ourtechnology_hdr', '', 'inherit', 'open', 'closed', '', 'ourtechnology_hdr', '', '', '2016-11-18 07:18:45', '2016-11-18 07:18:45', '', 3753, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/ourtechnology_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(4144, 1, '2016-11-18 07:29:24', '2016-11-18 07:29:24', '<strong>Job Purpose </strong>\r\n<ul>\r\n 	<li>Provide assistance and support on the Group fund raising exercise</li>\r\n 	<li>Play a supporting role in the company merger and acquisition activities</li>\r\n 	<li>Design or prepare financial models for cashflow projections using Microsoft Excel for existing and new projects to be undertaken by the Group</li>\r\n 	<li>Monitor the compliance of the debt covenants of the Group</li>\r\n 	<li>Prepare presentation material, board papers and other documents as may be required</li>\r\n 	<li>Assist in other ad hoc assignments from time to time</li>\r\n</ul>\r\n<strong>Job Requirement</strong>\r\n<ul>\r\n 	<li>Candidate must possess a Degree in a finance related field or professional qualifications e.g . MIA/ MACPA/ ACCA/ ICAEW or its equivalent</li>\r\n 	<li>Minimum of 3 years working experience preferably in the corporate finance environment</li>\r\n 	<li>Proficiency in financial modelling, financial analysis and cashflow projections</li>\r\n 	<li>Knowledge of the rules, regulations and guidelines by the SC, Bursa Malaysia, BNM, MITI and other guidelines related to Corporate Finance matters would be an added advantage</li>\r\n 	<li>Good working knowledge in Microsoft Office (i.e. PowerPoint, Excel, Word, etc.) is required Team player with good interpersonal and communication skills</li>\r\n</ul>\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Assistant Manager, Corporate Finance', '', 'inherit', 'closed', 'closed', '', '4092-revision-v1', '', '', '2016-11-18 07:29:24', '2016-11-18 07:29:24', '', 4092, 'http://www.investors-watch.com/wp-staging/ranhill/4092-revision-v1/', 0, 'revision', '', 0),
(4145, 1, '2016-11-18 07:29:33', '2016-11-18 07:29:33', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue.\r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law\r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency,\r\n<strong>Generic competencies:</strong> Organizational Awareness, Business &amp; Financial Awareness, Protect Managaement, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Group Legal and Compliance Litigation - Manager', '', 'inherit', 'closed', 'closed', '', '4089-revision-v1', '', '', '2016-11-18 07:29:33', '2016-11-18 07:29:33', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-revision-v1/', 0, 'revision', '', 0),
(4146, 1, '2016-11-18 07:29:42', '2016-11-18 07:29:42', '<strong>Job Purpose</strong>\r\nProvides secretarial and administrative support to the department for its effective and efficient operations.\r\n\r\n<strong>Duty Statements</strong>\r\n\r\nTo aspects assist of the Company Secretary/Asst Company Secretary in monitoring all aspects of secretarial matters/functions of the secretariat and to ensure timely compliance with the statutory/regulatory authorities i.e. the Malaysia Securities Exchange Berhad (MSEB), the Securities Commission (SC), Commission of Companies Malaysia (CCM), Foreign Investment Committee (FIC), etc. including the following;-\r\n<ul>\r\n 	<li>Assist in preparing, arranging for Board of Directors\' Meeting and such other sub-committee/management meeting as required by the Board of Directors/Company Secretary.</li>\r\n 	<li>Preparing, arranging and attending Annual/Extraordinary General Meetings of the members of the Company.</li>\r\n 	<li>Preparing various kinds of Directors / Members Circular Resolutions.</li>\r\n 	<li>Preparation and filing of all statutory documents with the relevant authorities i.e. the MSEB, SC, CCM etc. within the stipulated time.</li>\r\n 	<li>Assist in providing advisory to the directors, shareholders and senior management of the Company/Group in respect of the Secretarial Practices/Procedures, Companies Act, 1965, the Revamped Listing Requirments of the MSEB, the Malaysian Code on Corporate Governance, and the SC requirement etc.</li>\r\n 	<li>To assist in overseeing the formation of joint venture companies either locally or aboard as well as offshore companies and monitoring secretarial and general compliance thereof.</li>\r\n</ul>\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Group Secretarial - Executive Secretarial', '', 'inherit', 'closed', 'closed', '', '4087-revision-v1', '', '', '2016-11-18 07:29:42', '2016-11-18 07:29:42', '', 4087, 'http://www.investors-watch.com/wp-staging/ranhill/4087-revision-v1/', 0, 'revision', '', 0),
(4147, 1, '2016-11-18 07:29:42', '2016-11-18 07:29:42', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong>Freshly called to the Bar\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies:</strong> Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Group Legal - Executive', '', 'inherit', 'closed', 'closed', '', '4079-revision-v1', '', '', '2016-11-18 07:29:42', '2016-11-18 07:29:42', '', 4079, 'http://www.investors-watch.com/wp-staging/ranhill/4079-revision-v1/', 0, 'revision', '', 0),
(4148, 1, '2016-11-18 07:30:12', '2016-11-18 07:30:12', '<strong>Job Purpose</strong>\r\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong> LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong> 3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Group Legal & Compliance - Manager', '', 'inherit', 'closed', 'closed', '', '4077-revision-v1', '', '', '2016-11-18 07:30:12', '2016-11-18 07:30:12', '', 4077, 'http://www.investors-watch.com/wp-staging/ranhill/4077-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4149, 1, '2016-11-18 07:30:19', '2016-11-18 07:30:19', '<strong>Job Purpose </strong>\r\nConduct audit independently and objectively to provide assurance to the Company that the controls are in place.\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in computer science, Management Information System (MIS), Finance and Accounting, Business or equivalent.\r\n<strong>Minimum years of experience:</strong> At least 3 years’ experience in IT environment and/or Internal Audit.\r\n<strong>Certification and/or licenses: </strong>Certified Information System Auditor (CISA), or specific to the information technology industry such as a Certified Network Engineer, Certified Security Professional.\r\nPerson undertaking CIA Exam is preferred.\r\n<strong>Special skills:</strong> Knowledge of Audit software and Enterprise Risk Software are preferred\r\nUnderstanding of concepts related to information system audit, including security and control risk such as logical and physical access security, change management, information security, business recovery practices and network technology.\r\nKnowledge of control objective for Information and Related Technology, Accepted Auditing Standards, Standards for the Professional Practice of Internal Auditing.\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies: </strong>Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'IT Audit Executive', '', 'inherit', 'closed', 'closed', '', '4075-revision-v1', '', '', '2016-11-18 07:30:19', '2016-11-18 07:30:19', '', 4075, 'http://www.investors-watch.com/wp-staging/ranhill/4075-revision-v1/', 0, 'revision', '', 0),
(4150, 1, '2016-11-18 07:30:27', '2016-11-18 07:30:27', '<strong>Job Purpose </strong>\r\nAssist immediate superior in general accounting and finance function in E&amp;C Group of Companies, and its related companies including the preparation of financial statements and maintaining accounting records in accordance with accounting standards in Malaysia and comply with the Companies Act l 965 and other statutory requirements.\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Account Executive', '', 'inherit', 'closed', 'closed', '', '4071-revision-v1', '', '', '2016-11-18 07:30:27', '2016-11-18 07:30:27', '', 4071, 'http://www.investors-watch.com/wp-staging/ranhill/4071-revision-v1/', 0, 'revision', '', 0),
(4151, 1, '2016-11-18 07:30:32', '2016-11-18 07:30:32', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\n<strong>Minimum years of experience:</strong> 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Certification and/or licenses:</strong> Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\n<strong>Special skills:</strong> Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Assistant Manager-Technical', '', 'inherit', 'closed', 'closed', '', '4069-revision-v1', '', '', '2016-11-18 07:30:32', '2016-11-18 07:30:32', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-revision-v1/', 0, 'revision', '', 0),
(4154, 1, '2016-11-21 05:37:58', '2016-11-21 05:37:58', '', 'notice-egm', '', 'inherit', 'open', 'closed', '', 'notice-egm', '', '', '2016-11-21 05:37:58', '2016-11-21 05:37:58', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/11/notice.egm_.gif', 0, 'attachment', 'image/gif', 0),
(4155, 1, '2016-11-21 05:44:47', '2016-11-21 05:44:47', '', 'notice_egm_', '', 'inherit', 'open', 'closed', '', 'notice_egm_', '', '', '2016-11-21 05:44:47', '2016-11-21 05:44:47', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/11/notice_egm_.gif', 0, 'attachment', 'image/gif', 0),
(4159, 1, '2016-11-24 04:07:22', '2016-11-24 04:07:22', '', 'technology', '', 'inherit', 'open', 'closed', '', 'technology-2', '', '', '2016-11-24 04:07:22', '2016-11-24 04:07:22', '', 125, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/technology.jpg', 0, 'attachment', 'image/jpeg', 0),
(4160, 1, '2016-11-24 04:07:25', '2016-11-24 04:07:25', '', 'ourtechnology_hdr', '', 'inherit', 'open', 'closed', '', 'ourtechnology_hdr-2', '', '', '2016-11-24 04:07:25', '2016-11-24 04:07:25', '', 125, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/ourtechnology_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(4161, 1, '2016-11-24 04:13:43', '2016-11-24 04:13:43', '', 'technology', '', 'inherit', 'open', 'closed', '', 'technology-3', '', '', '2016-11-24 04:13:43', '2016-11-24 04:13:43', '', 125, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/technology-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(4162, 1, '2016-11-24 08:14:08', '2016-11-24 08:14:08', '', 'bod_24112016', '', 'inherit', 'open', 'closed', '', 'bod_24112016', '', '', '2016-11-24 08:14:08', '2016-11-24 08:14:08', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/bod_24112016.jpg', 0, 'attachment', 'image/jpeg', 0),
(4166, 1, '2016-11-25 04:21:10', '2016-11-25 04:21:10', '<strong>Job Purpose </strong>\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue.\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\n\n<strong>Job Requirement</strong>\n<strong>Minimum Qualification:</strong>Bachelor of Law\n\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner\n\n<strong>Special skills:</strong>Litigation skills\n\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency,\n<strong>Generic competencies:</strong> Organizational Awareness, Business &amp; Financial Awareness, Protect Managaement, Problem Solving, Leadership\n\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Group Legal and Compliance Litigation - Manager', '', 'inherit', 'closed', 'closed', '', '4089-autosave-v1', '', '', '2016-11-25 04:21:10', '2016-11-25 04:21:10', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-autosave-v1/', 0, 'revision', '', 0),
(4167, 1, '2016-11-25 04:21:39', '2016-11-25 04:21:39', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue.\r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law\r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency,\r\n<strong>Generic competencies:</strong> Organizational Awareness, Business &amp; Financial Awareness, Protect Managaement, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Manager, Group Legal and Compliance Litigation', '', 'inherit', 'closed', 'closed', '', '4089-revision-v1', '', '', '2016-11-25 04:21:39', '2016-11-25 04:21:39', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-revision-v1/', 0, 'revision', '', 0),
(4168, 1, '2016-11-25 04:21:58', '2016-11-25 04:21:58', '<strong>Job Purpose</strong>\r\nProvides secretarial and administrative support to the department for its effective and efficient operations.\r\n\r\n<strong>Duty Statements</strong>\r\n\r\nTo aspects assist of the Company Secretary/Asst Company Secretary in monitoring all aspects of secretarial matters/functions of the secretariat and to ensure timely compliance with the statutory/regulatory authorities i.e. the Malaysia Securities Exchange Berhad (MSEB), the Securities Commission (SC), Commission of Companies Malaysia (CCM), Foreign Investment Committee (FIC), etc. including the following;-\r\n<ul>\r\n 	<li>Assist in preparing, arranging for Board of Directors\' Meeting and such other sub-committee/management meeting as required by the Board of Directors/Company Secretary.</li>\r\n 	<li>Preparing, arranging and attending Annual/Extraordinary General Meetings of the members of the Company.</li>\r\n 	<li>Preparing various kinds of Directors / Members Circular Resolutions.</li>\r\n 	<li>Preparation and filing of all statutory documents with the relevant authorities i.e. the MSEB, SC, CCM etc. within the stipulated time.</li>\r\n 	<li>Assist in providing advisory to the directors, shareholders and senior management of the Company/Group in respect of the Secretarial Practices/Procedures, Companies Act, 1965, the Revamped Listing Requirments of the MSEB, the Malaysian Code on Corporate Governance, and the SC requirement etc.</li>\r\n 	<li>To assist in overseeing the formation of joint venture companies either locally or aboard as well as offshore companies and monitoring secretarial and general compliance thereof.</li>\r\n</ul>\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Executive Secretarial, Group Secretarial', '', 'inherit', 'closed', 'closed', '', '4087-revision-v1', '', '', '2016-11-25 04:21:58', '2016-11-25 04:21:58', '', 4087, 'http://www.investors-watch.com/wp-staging/ranhill/4087-revision-v1/', 0, 'revision', '', 0),
(4169, 1, '2016-11-25 04:22:15', '2016-11-25 04:22:15', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong>Freshly called to the Bar\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies:</strong> Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Executive, Group Legal', '', 'inherit', 'closed', 'closed', '', '4079-revision-v1', '', '', '2016-11-25 04:22:15', '2016-11-25 04:22:15', '', 4079, 'http://www.investors-watch.com/wp-staging/ranhill/4079-revision-v1/', 0, 'revision', '', 0),
(4170, 1, '2016-11-25 04:22:34', '2016-11-25 04:22:34', '<strong>Job Purpose</strong>\r\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong> LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong> 3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Manager, Group Legal & Compliance', '', 'inherit', 'closed', 'closed', '', '4077-revision-v1', '', '', '2016-11-25 04:22:34', '2016-11-25 04:22:34', '', 4077, 'http://www.investors-watch.com/wp-staging/ranhill/4077-revision-v1/', 0, 'revision', '', 0),
(4171, 1, '2016-11-25 04:22:50', '2016-11-25 04:22:50', '<strong>Job Purpose</strong>\r\nProvides secretarial and administrative support to the department for its effective and efficient operations.\r\n\r\n<strong>Duty Statements</strong>\r\n\r\nTo aspects assist of the Company Secretary/Asst Company Secretary in monitoring all aspects of secretarial matters/functions of the secretariat and to ensure timely compliance with the statutory/regulatory authorities i.e. the Malaysia Securities Exchange Berhad (MSEB), the Securities Commission (SC), Commission of Companies Malaysia (CCM), Foreign Investment Committee (FIC), etc. including the following;-\r\n<ul>\r\n 	<li>Assist in preparing, arranging for Board of Directors\' Meeting and such other sub-committee/management meeting as required by the Board of Directors/Company Secretary.</li>\r\n 	<li>Preparing, arranging and attending Annual/Extraordinary General Meetings of the members of the Company.</li>\r\n 	<li>Preparing various kinds of Directors / Members Circular Resolutions.</li>\r\n 	<li>Preparation and filing of all statutory documents with the relevant authorities i.e. the MSEB, SC, CCM etc. within the stipulated time.</li>\r\n 	<li>Assist in providing advisory to the directors, shareholders and senior management of the Company/Group in respect of the Secretarial Practices/Procedures, Companies Act, 1965, the Revamped Listing Requirments of the MSEB, the Malaysian Code on Corporate Governance, and the SC requirement etc.</li>\r\n 	<li>To assist in overseeing the formation of joint venture companies either locally or aboard as well as offshore companies and monitoring secretarial and general compliance thereof.</li>\r\n</ul>\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Executive Secretarial, Group Secretarial', '', 'inherit', 'closed', 'closed', '', '4087-revision-v1', '', '', '2016-11-25 04:22:50', '2016-11-25 04:22:50', '', 4087, 'http://www.investors-watch.com/wp-staging/ranhill/4087-revision-v1/', 0, 'revision', '', 0),
(4172, 1, '2016-11-25 04:23:00', '2016-11-25 04:23:00', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong>Freshly called to the Bar\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies:</strong> Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Executive, Group Legal', '', 'inherit', 'closed', 'closed', '', '4079-revision-v1', '', '', '2016-11-25 04:23:00', '2016-11-25 04:23:00', '', 4079, 'http://www.investors-watch.com/wp-staging/ranhill/4079-revision-v1/', 0, 'revision', '', 0),
(4173, 1, '2016-11-25 04:23:09', '2016-11-25 04:23:09', '<strong>Job Purpose </strong>\r\n<ul>\r\n 	<li>Provide assistance and support on the Group fund raising exercise</li>\r\n 	<li>Play a supporting role in the company merger and acquisition activities</li>\r\n 	<li>Design or prepare financial models for cashflow projections using Microsoft Excel for existing and new projects to be undertaken by the Group</li>\r\n 	<li>Monitor the compliance of the debt covenants of the Group</li>\r\n 	<li>Prepare presentation material, board papers and other documents as may be required</li>\r\n 	<li>Assist in other ad hoc assignments from time to time</li>\r\n</ul>\r\n<strong>Job Requirement</strong>\r\n<ul>\r\n 	<li>Candidate must possess a Degree in a finance related field or professional qualifications e.g . MIA/ MACPA/ ACCA/ ICAEW or its equivalent</li>\r\n 	<li>Minimum of 3 years working experience preferably in the corporate finance environment</li>\r\n 	<li>Proficiency in financial modelling, financial analysis and cashflow projections</li>\r\n 	<li>Knowledge of the rules, regulations and guidelines by the SC, Bursa Malaysia, BNM, MITI and other guidelines related to Corporate Finance matters would be an added advantage</li>\r\n 	<li>Good working knowledge in Microsoft Office (i.e. PowerPoint, Excel, Word, etc.) is required Team player with good interpersonal and communication skills</li>\r\n</ul>\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Assistant Manager, Corporate Finance', '', 'inherit', 'closed', 'closed', '', '4092-revision-v1', '', '', '2016-11-25 04:23:09', '2016-11-25 04:23:09', '', 4092, 'http://www.investors-watch.com/wp-staging/ranhill/4092-revision-v1/', 0, 'revision', '', 0),
(4174, 1, '2016-11-25 04:23:20', '2016-11-25 04:23:20', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue.\r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law\r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency,\r\n<strong>Generic competencies:</strong> Organizational Awareness, Business &amp; Financial Awareness, Protect Managaement, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Manager, Group Legal and Compliance Litigation', '', 'inherit', 'closed', 'closed', '', '4089-revision-v1', '', '', '2016-11-25 04:23:20', '2016-11-25 04:23:20', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-revision-v1/', 0, 'revision', '', 0),
(4175, 1, '2016-11-25 04:23:36', '2016-11-25 04:23:36', '<strong>Job Purpose</strong>\r\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong> LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong> 3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Manager, Group Legal & Compliance', '', 'inherit', 'closed', 'closed', '', '4077-revision-v1', '', '', '2016-11-25 04:23:36', '2016-11-25 04:23:36', '', 4077, 'http://www.investors-watch.com/wp-staging/ranhill/4077-revision-v1/', 0, 'revision', '', 0),
(4176, 1, '2016-11-25 04:24:02', '2016-11-25 04:24:02', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\n<strong>Minimum years of experience:</strong> 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Certification and/or licenses:</strong> Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\n<strong>Special skills:</strong> Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Assistant Manager, Technical', '', 'inherit', 'closed', 'closed', '', '4069-revision-v1', '', '', '2016-11-25 04:24:02', '2016-11-25 04:24:02', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-revision-v1/', 0, 'revision', '', 0),
(4177, 1, '2016-11-25 04:39:08', '2016-11-25 04:39:08', '', 'whisteblowing', '', 'inherit', 'open', 'closed', '', 'whisteblowing', '', '', '2016-11-25 04:39:08', '2016-11-25 04:39:08', '', 3797, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/whisteblowing.jpg', 0, 'attachment', 'image/jpeg', 0),
(4178, 1, '2016-11-25 04:44:41', '2016-11-25 04:44:41', '', 'ourtechnology_hdr', '', 'inherit', 'open', 'closed', '', 'ourtechnology_hdr-3', '', '', '2016-11-25 04:44:41', '2016-11-25 04:44:41', '', 3797, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/ourtechnology_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(4179, 1, '2016-11-25 04:44:42', '2016-11-25 04:44:42', '', 'technology', '', 'inherit', 'open', 'closed', '', 'technology-4', '', '', '2016-11-25 04:44:42', '2016-11-25 04:44:42', '', 3797, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/technology.jpg', 0, 'attachment', 'image/jpeg', 0),
(4180, 1, '2016-11-29 06:09:53', '2016-11-29 06:09:53', '', 'Water Supply Services', '', 'inherit', 'closed', 'closed', '', '110-autosave-v1', '', '', '2016-11-29 06:09:53', '2016-11-29 06:09:53', '', 110, 'http://www.investors-watch.com/wp-staging/ranhill/110-autosave-v1/', 0, 'revision', '', 0),
(4181, 1, '2016-11-29 06:11:09', '2016-11-29 06:11:09', '', 'Water Supply Services', '', 'inherit', 'closed', 'closed', '', '110-revision-v1', '', '', '2016-11-29 06:11:09', '2016-11-29 06:11:09', '', 110, 'http://www.investors-watch.com/wp-staging/ranhill/110-revision-v1/', 0, 'revision', '', 0),
(4182, 1, '2016-11-29 06:11:29', '2016-11-29 06:11:29', '', 'Water Supply Services', '', 'inherit', 'closed', 'closed', '', '3866-autosave-v1', '', '', '2016-11-29 06:11:29', '2016-11-29 06:11:29', '', 3866, 'http://www.investors-watch.com/wp-staging/ranhill/3866-autosave-v1/', 0, 'revision', '', 0),
(4183, 1, '2016-11-29 06:15:33', '2016-11-29 06:15:33', '', 'technology_hdr', '', 'inherit', 'open', 'closed', '', 'technology_hdr', '', '', '2016-11-29 06:15:33', '2016-11-29 06:15:33', '', 4006, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/technology_hdr.jpg', 0, 'attachment', 'image/jpeg', 0),
(4184, 1, '2016-11-29 06:34:21', '2016-11-29 06:34:21', '', 'dissolved-air-floatation-daf', '', 'inherit', 'open', 'closed', '', 'dissolved-air-floatation-daf-3', '', '', '2016-11-29 06:34:21', '2016-11-29 06:34:21', '', 125, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/DISSOLVED-AIR-FLOATATION-DAF.jpg', 0, 'attachment', 'image/jpeg', 0),
(4185, 1, '2016-11-29 06:44:56', '0000-00-00 00:00:00', '', 'Video', '', 'draft', 'open', 'closed', '', '', '', '', '2016-11-29 06:44:56', '0000-00-00 00:00:00', '', 3819, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4185', 0, 'page', '', 0),
(4186, 1, '2016-12-05 02:19:32', '2016-12-05 02:19:32', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/12/Media-release_MOU-IWK.pdf" title="media-release_mou-iwk"]', 'Ranhill signs MOU with IWK', '', 'publish', 'open', 'open', '', 'ranhill-signs-mou-with-iwk', '', '', '2019-01-29 01:15:25', '2019-01-29 01:15:25', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4186', 0, 'post', '', 0),
(4187, 1, '2016-12-05 02:18:53', '2016-12-05 02:18:53', '', 'media-release_mou-iwk', '', 'inherit', 'open', 'closed', '', 'media-release_mou-iwk', '', '', '2016-12-05 02:18:53', '2016-12-05 02:18:53', '', 4186, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/12/Media-release_MOU-IWK.pdf', 0, 'attachment', 'application/pdf', 0),
(4188, 1, '2016-12-05 02:19:32', '2016-12-05 02:19:32', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/12/Media-release_MOU-IWK.pdf" title="media-release_mou-iwk"]', 'Ranhill signs MOU with IWK', '', 'inherit', 'closed', 'closed', '', '4186-revision-v1', '', '', '2016-12-05 02:19:32', '2016-12-05 02:19:32', '', 4186, 'http://www.investors-watch.com/wp-staging/ranhill/4186-revision-v1/', 0, 'revision', '', 0),
(4190, 1, '2016-12-16 03:57:18', '2016-12-16 03:57:18', '', 'LOONG MEI YIN', '', 'publish', 'closed', 'closed', '', 'loong-mei-yi', '', '', '2018-09-20 04:13:12', '2018-09-20 04:13:12', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4190', 0, 'page', '', 0),
(4191, 1, '2016-12-16 03:57:18', '2016-12-16 03:57:18', '', 'Loong Mei Yi', '', 'inherit', 'closed', 'closed', '', '4190-revision-v1', '', '', '2016-12-16 03:57:18', '2016-12-16 03:57:18', '', 4190, 'http://www.investors-watch.com/wp-staging/ranhill/4190-revision-v1/', 0, 'revision', '', 0),
(4192, 1, '2016-12-16 04:00:32', '2016-12-16 04:00:32', '', 'loong-mei-yin', '', 'inherit', 'open', 'closed', '', 'loong-mei-yin', '', '', '2016-12-16 04:00:32', '2016-12-16 04:00:32', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/Loong-Mei-Yin.jpg', 0, 'attachment', 'image/jpeg', 0),
(4193, 1, '2016-12-16 04:02:57', '2016-12-16 04:02:57', '', 'LOONG MEI YIN', '', 'inherit', 'closed', 'closed', '', '4190-revision-v1', '', '', '2016-12-16 04:02:57', '2016-12-16 04:02:57', '', 4190, 'http://www.investors-watch.com/wp-staging/ranhill/4190-revision-v1/', 0, 'revision', '', 0),
(4194, 1, '2016-12-16 04:03:10', '2016-12-16 04:03:10', '', 'LOONG MEI YIN', '', 'inherit', 'closed', 'closed', '', '4190-autosave-v1', '', '', '2016-12-16 04:03:10', '2016-12-16 04:03:10', '', 4190, 'http://www.investors-watch.com/wp-staging/ranhill/4190-autosave-v1/', 0, 'revision', '', 0),
(4195, 1, '2016-12-16 05:34:52', '2016-12-16 05:34:52', '', 'RMS Sivasubramaniyam', '', 'publish', 'closed', 'closed', '', 'rms-sivasubramaniyam', '', '', '2016-12-16 05:38:32', '2016-12-16 05:38:32', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4195', 0, 'page', '', 0),
(4196, 1, '2016-12-16 05:32:17', '2016-12-16 05:32:17', '', 'rms-sivasubramaniyam', '', 'inherit', 'open', 'closed', '', 'rms-sivasubramaniyam', '', '', '2016-12-16 05:32:17', '2016-12-16 05:32:17', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/RMS-Sivasubramaniyam.jpg', 0, 'attachment', 'image/jpeg', 0),
(4197, 1, '2016-12-16 05:32:18', '2016-12-16 05:32:18', '', 'rms-sivasubramaniyam_sml', '', 'inherit', 'open', 'closed', '', 'rms-sivasubramaniyam_sml', '', '', '2016-12-16 05:32:18', '2016-12-16 05:32:18', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/RMS-Sivasubramaniyam_sml.jpg', 0, 'attachment', 'image/jpeg', 0),
(4198, 1, '2016-12-16 05:34:52', '2016-12-16 05:34:52', '', 'RMS Sivasubramaniyam', '', 'inherit', 'closed', 'closed', '', '4195-revision-v1', '', '', '2016-12-16 05:34:52', '2016-12-16 05:34:52', '', 4195, 'http://www.investors-watch.com/wp-staging/ranhill/4195-revision-v1/', 0, 'revision', '', 0),
(4199, 1, '2016-12-16 05:47:01', '2016-12-16 05:47:01', '', 'lim-poh-ling', '', 'inherit', 'open', 'closed', '', 'lim-poh-ling-2', '', '', '2016-12-16 05:47:01', '2016-12-16 05:47:01', '', 4095, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/Lim-Poh-Ling-.jpg', 0, 'attachment', 'image/jpeg', 0),
(4202, 1, '2017-01-13 07:44:13', '2017-01-13 07:44:13', '<strong>Job Purpose </strong>\r\nPrincipal purpose is to provide administrative support in the management of legal disputes involving the Company in order for the Company and the Management to determine the best course of action to pursue.\r\nSubsidiary purpose is to provide assistance in provisions of general legal advice to enable the Company and the Management to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Bachelor of Law\r\n\r\n<strong> Minimum years of experience:</strong>3 - 5 years as a legal practitioner\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency,\r\n<strong>Generic competencies:</strong> Organizational Awareness, Business &amp; Financial Awareness, Protect Managaement, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Litigation Manager, Group Legal & Compliance', '', 'inherit', 'closed', 'closed', '', '4089-revision-v1', '', '', '2017-01-13 07:44:13', '2017-01-13 07:44:13', '', 4089, 'http://www.investors-watch.com/wp-staging/ranhill/4089-revision-v1/', 0, 'revision', '', 0),
(4203, 1, '2017-01-13 07:44:18', '2017-01-13 07:44:18', '<strong>Job Purpose</strong>\r\nDrafts and reviews legal documents and provision of legal advice to enable the Company to conduct its daily business in compliance with legal requirements and applicable laws.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong> LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong> 3 – 5 years after being called to the Bar or graduation (if did not proceed with pupillage)\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Compliance Manager, Group Legal & Compliance', '', 'inherit', 'closed', 'closed', '', '4077-revision-v1', '', '', '2017-01-13 07:44:18', '2017-01-13 07:44:18', '', 4077, 'http://www.investors-watch.com/wp-staging/ranhill/4077-revision-v1/', 0, 'revision', '', 0),
(4204, 1, '2017-01-13 07:44:43', '2017-01-13 07:44:43', '<strong>Job Purpose</strong>\r\nProvides administrative support to the Managers in their daily duties in order for them to perform their work effectively and efficiently.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>LLB/Bachelor of Laws\r\n<strong>Minimum years of experience:</strong>Freshly called to the Bar\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic competencies:</strong> Organisational Awareness, Business and Financial Awareness, Project Management, Problem Solving, Leadership\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Legal Executive, Group Legal & Compliance', '', 'inherit', 'closed', 'closed', '', '4079-revision-v1', '', '', '2017-01-13 07:44:43', '2017-01-13 07:44:43', '', 4079, 'http://www.investors-watch.com/wp-staging/ranhill/4079-revision-v1/', 0, 'revision', '', 0),
(4205, 1, '2017-01-13 07:45:44', '2017-01-13 07:45:44', '<strong>Job Purpose </strong>\r\nAssist immediate superior in general accounting and finance function in E&amp;C Group of Companies, and its related companies including the preparation of financial statements and maintaining accounting records in accordance with accounting standards in Malaysia and comply with the Companies Act l 965 and other statutory requirements.\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest  on the subject title.</strong>', 'Account Executive @ Group Accounting & Finance', '', 'inherit', 'closed', 'closed', '', '4071-revision-v1', '', '', '2017-01-13 07:45:44', '2017-01-13 07:45:44', '', 4071, 'http://www.investors-watch.com/wp-staging/ranhill/4071-revision-v1/', 0, 'revision', '', 0),
(4206, 1, '2017-01-13 07:46:03', '2017-01-13 07:46:03', '<strong>Job Purpose </strong>\r\nAssist in developing the Annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to Corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement </strong>\r\n<strong>Minimum Qualification:</strong> Degree in any Engineering Field or QS.\r\nDegree from other technical disciplines can be considered.\r\n\r\n<strong>Minimum years of experience:</strong> 6-8 years of progressive experience in a combination of engineering and/or internal audit experience and/or industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Certification and/or licenses:</strong> Professional qualifications ie, CIA/BEM preferred Membership of the Institute of Internal Auditors is required.\r\n\r\n<strong>Special skills:</strong> Knowledge of risk management system. Knowledge of Audit software is highly desired.\r\n\r\n<strong>Core competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and Financial Acumen, Project Management, Problem Solving and Decision Making, People Management\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Assistant Manager (Technical), Corporate Assurance Division', '', 'inherit', 'closed', 'closed', '', '4069-revision-v1', '', '', '2017-01-13 07:46:03', '2017-01-13 07:46:03', '', 4069, 'http://www.investors-watch.com/wp-staging/ranhill/4069-revision-v1/', 0, 'revision', '', 0),
(4207, 1, '2017-01-13 07:49:44', '2017-01-13 07:49:44', '<strong>Job Purpose </strong>\r\nDevelop annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification: </strong>Degree in Finance shall be required for the Financial Audit positions\r\nDegree in any Engineering field or QS shall be required for the Technical Audit position. Degree from other disciplines can be considered.\r\n\r\n<strong> Minimum years of experience: </strong>6-8 years of progressive experience in a combination of public accounting and / or internal audit experience and /industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and financial Acumen, Project Management, Problem Solving and Decision Making, People Management.\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Audit Manager @Corporate Assurance Division', '', 'publish', 'open', 'open', '', 'audit-manager-corporate-assurance-division', '', '', '2017-01-13 07:54:05', '2017-01-13 07:54:05', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4207', 0, 'post', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4208, 1, '2017-01-13 07:49:44', '2017-01-13 07:49:44', '<strong>Job Purpose </strong>\r\nDevelop annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification:</strong>Degree in Finance shall be required for the Financial Audit positions\r\nDegree in any Engineering field or QS shall be required for the Technical Audit position. Degree from other disciplines can be considered.\r\n\r\n<strong> Minimum years of experience:</strong>6-8 years of progressive experience in a combination of public accounting and / or internal audit experience and /industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and financial Acumen, Project Management, Problem Solving and Decision Making, People Management.\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Audit Manager @Corporate Assurance Division', '', 'inherit', 'closed', 'closed', '', '4207-revision-v1', '', '', '2017-01-13 07:49:44', '2017-01-13 07:49:44', '', 4207, 'http://www.investors-watch.com/wp-staging/ranhill/4207-revision-v1/', 0, 'revision', '', 0),
(4209, 1, '2017-01-13 07:54:05', '2017-01-13 07:54:05', '<strong>Job Purpose </strong>\r\nDevelop annual Audit Plan, manage and monitor the Audit processes and recommend strategic business process improvement in order to assess and promote Group wide maturity with regards to corporate Governance, Risk Management and Compliance.\r\n\r\n<strong>Job Requirement</strong>\r\n<strong>Minimum Qualification: </strong>Degree in Finance shall be required for the Financial Audit positions\r\nDegree in any Engineering field or QS shall be required for the Technical Audit position. Degree from other disciplines can be considered.\r\n\r\n<strong> Minimum years of experience: </strong>6-8 years of progressive experience in a combination of public accounting and / or internal audit experience and /industry experience in a multi-location, international operating environment.\r\n\r\n<strong>Special skills:</strong>Litigation skills\r\n\r\n<strong>Core Competencies:</strong> Customers Orientation, Achieving Result with Passion, Demonstrating Accountability and Integrity, Working as a Team, Learning and Developing Self Competency\r\n\r\n<strong>Generic Competencies:</strong> Strategic Management, Business and financial Acumen, Project Management, Problem Solving and Decision Making, People Management.\r\n\r\n<strong>To apply for one of our vacancies, please email us your CV to employment@investors-watch.com/wp-staging/ranhill including the type of position of interest on the subject title.</strong>', 'Audit Manager @Corporate Assurance Division', '', 'inherit', 'closed', 'closed', '', '4207-revision-v1', '', '', '2017-01-13 07:54:05', '2017-01-13 07:54:05', '', 4207, 'http://www.investors-watch.com/wp-staging/ranhill/4207-revision-v1/', 0, 'revision', '', 0),
(4210, 1, '2017-01-13 08:00:36', '2017-01-13 08:00:36', '', 'Ranhill Thought Leadership', '', 'publish', 'closed', 'closed', '', 'ranhill-thought-leadership', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4210', 21, 'nav_menu_item', '', 0),
(4212, 1, '2017-01-13 08:06:10', '2017-01-13 08:06:10', ' ', '', '', 'publish', 'closed', 'closed', '', '4212', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4212', 22, 'nav_menu_item', '', 0),
(4217, 1, '2017-01-16 02:20:54', '2017-01-16 02:20:54', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/NRW Handbook.pdf"]', 'The Manager’s   Non-Revenue Water Handbook', '', 'draft', 'open', 'open', '', 'the-managers-non-revenue-water-handbook', '', '', '2017-03-07 04:01:56', '2017-03-07 04:01:56', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4217', 0, 'post', '', 0),
(4218, 1, '2017-01-16 02:17:32', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-01-16 02:17:32', '0000-00-00 00:00:00', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4218', 0, 'page', '', 0),
(4219, 1, '2017-01-16 02:18:24', '2017-01-16 02:18:24', '', 'Screen Shot 2017-01-16 at 10.03.01 AM', '', 'inherit', 'open', 'closed', '', 'screen-shot-2017-01-16-at-10-03-01-am', '', '', '2017-01-16 02:18:24', '2017-01-16 02:18:24', '', 4217, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/Screen-Shot-2017-01-16-at-10.03.01-AM.png', 0, 'attachment', 'image/png', 0),
(4220, 1, '2017-01-16 02:20:54', '2017-01-16 02:20:54', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/01/NRW Handbook.pdf"]', 'The Manager’s   Non-Revenue Water Handbook', '', 'inherit', 'closed', 'closed', '', '4217-revision-v1', '', '', '2017-01-16 02:20:54', '2017-01-16 02:20:54', '', 4217, 'http://www.investors-watch.com/wp-staging/ranhill/4217-revision-v1/', 0, 'revision', '', 0),
(4221, 1, '2017-01-16 08:35:41', '2017-01-16 08:35:41', ' ', '', '', 'publish', 'closed', 'closed', '', '4221', '', '', '2017-01-16 08:35:41', '2017-01-16 08:35:41', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4221', 2, 'nav_menu_item', '', 0),
(4226, 1, '2017-03-07 03:59:40', '2017-03-07 03:59:40', '', '', '', 'inherit', 'closed', 'closed', '', '4217-autosave-v1', '', '', '2017-03-07 03:59:40', '2017-03-07 03:59:40', '', 4217, 'http://www.investors-watch.com/wp-staging/ranhill/4217-autosave-v1/', 0, 'revision', '', 0),
(4228, 1, '2017-03-07 04:01:42', '2017-03-07 04:01:42', '', 'Non-Revenue Water', '', 'inherit', 'closed', 'closed', '', '4026-revision-v1', '', '', '2017-03-07 04:01:42', '2017-03-07 04:01:42', '', 4026, 'http://www.investors-watch.com/wp-staging/ranhill/4026-revision-v1/', 0, 'revision', '', 0),
(4229, 1, '2017-03-08 02:15:15', '2017-03-08 02:15:15', ' ', '', '', 'publish', 'closed', 'closed', '', '4229', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4229', 5, 'nav_menu_item', '', 0),
(4231, 1, '2017-03-20 02:31:16', '2017-03-20 02:31:16', ' ', '', '', 'publish', 'closed', 'closed', '', '4231', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4231', 8, 'nav_menu_item', '', 0),
(4234, 1, '2017-04-20 09:51:46', '2017-04-20 09:51:46', '', 'logo_ranhill', '', 'inherit', 'open', 'closed', '', 'logo_ranhill', '', '', '2017-04-20 09:51:46', '2017-04-20 09:51:46', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill.png', 0, 'attachment', 'image/png', 0),
(4237, 1, '2017-04-21 06:50:52', '2017-04-21 06:50:52', '', 'DATUK ABDULLAH KARIM', '', 'publish', 'closed', 'closed', '', 'datuk-abdullah-karim', '', '', '2018-11-14 03:37:08', '2018-11-14 03:37:08', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4237', 0, 'page', '', 0),
(4239, 1, '2017-04-21 06:50:52', '2017-04-21 06:50:52', '', 'DATUK ABDULLAH KARIM', '', 'inherit', 'closed', 'closed', '', '4237-revision-v1', '', '', '2017-04-21 06:50:52', '2017-04-21 06:50:52', '', 4237, 'http://www.investors-watch.com/wp-staging/ranhill/4237-revision-v1/', 0, 'revision', '', 0),
(4240, 1, '2017-04-21 06:50:59', '2017-04-21 06:50:59', '', 'DATUK ABDULLAH KARIM', '', 'inherit', 'closed', 'closed', '', '4237-autosave-v1', '', '', '2017-04-21 06:50:59', '2017-04-21 06:50:59', '', 4237, 'http://www.investors-watch.com/wp-staging/ranhill/4237-autosave-v1/', 0, 'revision', '', 0),
(4244, 1, '2017-04-21 08:17:22', '2017-04-21 08:17:22', '', 'karim-img', '', 'inherit', 'open', 'closed', '', 'karim-img', '', '', '2017-04-21 08:17:22', '2017-04-21 08:17:22', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/karim-img.jpg', 0, 'attachment', 'image/jpeg', 0),
(4246, 1, '2017-04-21 08:19:44', '2017-04-21 08:19:44', '', 'izaddeen-img', '', 'inherit', 'open', 'closed', '', 'izaddeen-img', '', '', '2017-04-21 08:19:44', '2017-04-21 08:19:44', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/izaddeen-img.jpg', 0, 'attachment', 'image/jpeg', 0),
(4249, 1, '2017-04-21 08:35:04', '2017-04-21 08:35:04', '', 'izaddeen-big-img', '', 'inherit', 'open', 'closed', '', 'izaddeen-big-img', '', '', '2017-04-21 08:35:04', '2017-04-21 08:35:04', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/izaddeen-big-img.jpg', 0, 'attachment', 'image/jpeg', 0),
(4251, 1, '2017-04-21 08:37:16', '2017-04-21 08:37:16', '', 'karim-big-img', '', 'inherit', 'open', 'closed', '', 'karim-big-img', '', '', '2017-04-21 08:37:16', '2017-04-21 08:37:16', '', 4237, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/karim-big-img.jpg', 0, 'attachment', 'image/jpeg', 0),
(4253, 1, '2017-04-28 06:16:30', '2017-04-28 06:16:30', '[vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row]', 'Home Demo', '', 'publish', 'closed', 'closed', '', 'home-demo', '', '', '2017-04-29 06:38:54', '2017-04-29 06:38:54', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4253', 0, 'page', '', 0),
(4254, 1, '2017-04-28 06:16:30', '2017-04-28 06:16:30', '', 'Home Demo', '', 'inherit', 'closed', 'closed', '', '4253-revision-v1', '', '', '2017-04-28 06:16:30', '2017-04-28 06:16:30', '', 4253, 'http://www.investors-watch.com/wp-staging/ranhill/4253-revision-v1/', 0, 'revision', '', 0),
(4255, 1, '2017-04-28 06:18:12', '2017-04-28 06:18:12', '[vc_row][vc_column][vc_column_text css_animation="top-to-bottom"][popupwfancybox group="GROUP1"][/vc_column_text][/vc_column][/vc_row]', 'Home Demo', '', 'inherit', 'closed', 'closed', '', '4253-revision-v1', '', '', '2017-04-28 06:18:12', '2017-04-28 06:18:12', '', 4253, 'http://www.investors-watch.com/wp-staging/ranhill/4253-revision-v1/', 0, 'revision', '', 0),
(4256, 1, '2017-04-28 06:20:34', '2017-04-28 06:20:34', '[vc_row][vc_column][vc_column_text css_animation="left-to-right"][popupwfancybox group="GROUP1"][/vc_column_text][/vc_column][/vc_row]', 'Home Demo', '', 'inherit', 'closed', 'closed', '', '4253-revision-v1', '', '', '2017-04-28 06:20:34', '2017-04-28 06:20:34', '', 4253, 'http://www.investors-watch.com/wp-staging/ranhill/4253-revision-v1/', 0, 'revision', '', 0),
(4257, 1, '2017-04-28 07:46:05', '2017-04-28 07:46:05', '', '', '<h1>Testing</h1>', 'publish', 'closed', 'closed', '', '4257', '', '', '2017-04-28 07:46:05', '2017-04-28 07:46:05', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?post_type=popups&#038;p=4257', 0, 'popups', '', 0),
(4258, 1, '2017-04-28 07:44:55', '2017-04-28 07:44:55', '', 'Home Demo', '', 'inherit', 'closed', 'closed', '', '4253-revision-v1', '', '', '2017-04-28 07:44:55', '2017-04-28 07:44:55', '', 4253, 'http://www.investors-watch.com/wp-staging/ranhill/4253-revision-v1/', 0, 'revision', '', 0),
(4259, 1, '2017-04-28 07:48:27', '2017-04-28 07:48:27', '[vc_row][vc_column][vc_column_text][popupwfancybox group="GROUP1"][/vc_column_text][/vc_column][/vc_row]', 'Home Demo', '', 'inherit', 'closed', 'closed', '', '4253-revision-v1', '', '', '2017-04-28 07:48:27', '2017-04-28 07:48:27', '', 4253, 'http://www.investors-watch.com/wp-staging/ranhill/4253-revision-v1/', 0, 'revision', '', 0),
(4261, 1, '2017-04-28 10:26:02', '2017-04-28 10:26:02', '', 'agm-popup', '', 'inherit', 'open', 'closed', '', 'agm-popup', '', '', '2017-04-28 10:26:02', '2017-04-28 10:26:02', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/agm-popup.jpg', 0, 'attachment', 'image/jpeg', 0),
(4262, 1, '2017-04-29 06:38:54', '2017-04-29 06:38:54', '[vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row]', 'Home Demo', '', 'inherit', 'closed', 'closed', '', '4253-revision-v1', '', '', '2017-04-29 06:38:54', '2017-04-29 06:38:54', '', 4253, 'http://www.investors-watch.com/wp-staging/ranhill/4253-revision-v1/', 0, 'revision', '', 0),
(4263, 1, '2017-04-29 06:39:53', '2017-04-29 06:39:53', '[vc_row][vc_column][vc_column_text][popupwfancybox group="GROUP1"][/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2017-04-29 06:39:53', '2017-04-29 06:39:53', '', 6, 'http://www.investors-watch.com/wp-staging/ranhill/6-revision-v1/', 0, 'revision', '', 0),
(4264, 1, '2017-05-05 07:52:41', '2017-05-05 07:52:41', '', 'ranhill-welcomes-US-ambassador', '', 'inherit', 'open', 'closed', '', 'ranhill-welcomes-us-ambassador', '', '', '2017-05-05 07:52:41', '2017-05-05 07:52:41', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/ranhill-welcomes-US-ambassador.pdf', 0, 'attachment', 'application/pdf', 0),
(4265, 1, '2017-05-05 08:04:21', '2017-05-05 08:04:21', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/ranhill-welcomes-US-ambassador.pdf" title="media-release_mou-iwk"]', 'Ranhill welcomes US Ambassador to its clean energy power plant in Sabah', '', 'publish', 'open', 'open', '', 'ranhill-welcomes-us-ambassador-to-its-clean-energy-power-plant-in-sabah', '', '', '2019-01-29 01:14:45', '2019-01-29 01:14:45', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4265', 0, 'post', '', 0),
(4266, 1, '2017-05-05 08:04:21', '2017-05-05 08:04:21', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/ranhill-welcomes-US-ambassador.pdf" title="media-release_mou-iwk"]', 'Ranhill welcomes US Ambassador to its clean energy power plant in Sabah', '', 'inherit', 'closed', 'closed', '', '4265-revision-v1', '', '', '2017-05-05 08:04:21', '2017-05-05 08:04:21', '', 4265, 'http://www.investors-watch.com/wp-staging/ranhill/4265-revision-v1/', 0, 'revision', '', 0),
(4271, 1, '2017-05-09 05:59:50', '2017-05-09 05:59:50', '$(document).on(\'change\', \'.div-toggle\', function() {\n  var target = $(this).data(\'target\');\n  var show = $("option:selected", this).data(\'show\');\n  $(target).children().addClass(\'hide\');\n  $(show).removeClass(\'hide\');\n});\n$(document).ready(function(){\n	$(\'.div-toggle\').trigger(\'change\');\n});', '', '', 'publish', 'closed', 'closed', '', '4271', '', '', '2017-05-09 05:59:50', '2017-05-09 05:59:50', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?post_type=hm_custom_javascript&#038;p=4271', 0, 'hm_custom_javascript', '', 0),
(4278, 1, '2017-05-12 06:47:58', '2017-05-12 06:47:58', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n', 'betheme', '', 'publish', 'closed', 'closed', '', 'betheme', '', '', '2018-04-17 01:41:03', '2018-04-17 01:41:03', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/betheme/', 0, 'custom_css', '', 0),
(4279, 1, '2017-05-12 06:47:58', '2017-05-12 06:47:58', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right;\n    background-color: #336ea0;\n    min-width: 150px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 06:47:58', '2017-05-12 06:47:58', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4281, 1, '2017-05-12 06:55:31', '2017-05-12 06:55:31', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right;\n    background-color: #336ea0;\n    min-width: 100px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 06:55:31', '2017-05-12 06:55:31', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4283, 1, '2017-05-12 06:57:50', '2017-05-12 06:57:50', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right;\n    background-color: #336ea0;\n    min-width: 100px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nselect:active, select:hover {\n  outline: none\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 06:57:50', '2017-05-12 06:57:50', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4285, 1, '2017-05-12 06:59:48', '2017-05-12 06:59:48', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right;\n    background-color: #336ea0;\n    min-width: 100px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nselect:active, select:hover {\n  outline: none\n}\noption:focus{\n    background-color:#FFF;\n    outline:none;\n    border:none;\n    box-shadow:none;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 06:59:48', '2017-05-12 06:59:48', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4287, 1, '2017-05-12 07:01:56', '2017-05-12 07:01:56', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right;\n    background-color: #336ea0;\n    min-width: 100px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nselect:active, select:hover {\n  outline: none\n}\noption:focus{\n    background-color:#FFF !important;\n    outline:none;\n    border:none;\n    box-shadow:none;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 07:01:56', '2017-05-12 07:01:56', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4289, 1, '2017-05-12 07:05:52', '2017-05-12 07:05:52', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right 5px;\n    background-color: #336ea0;\n    width: 100px;\n    padding: 7px 12px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nselect:active, select:hover {\n  outline: none\n}\noption:focus{\n    background-color:#FFF !important;\n    outline:none;\n    border:none;\n    box-shadow:none;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 07:05:52', '2017-05-12 07:05:52', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4291, 1, '2017-05-12 07:08:02', '2017-05-12 07:08:02', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right 5px;\n    background-color: #336ea0;\n    width: 100px;\n    padding: 7px 12px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nselect:active, select:hover {\n  outline: none\n}\noption:focus{\n    background-color:#FFF !important;\n    outline:none;\n    border:none;\n    box-shadow:none;\n}\noption:hover{\n    background-color:#FFF !important;\n    outline:none;\n    border:none;\n    box-shadow:none;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 07:08:02', '2017-05-12 07:08:02', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4298, 1, '2017-05-12 08:03:43', '2017-05-12 08:03:43', '', 'Sustainability Statement', '', 'publish', 'closed', 'closed', '', 'sustainability-statement-2015', '', '', '2017-05-12 09:08:16', '2017-05-12 09:08:16', '', 101, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4298', 0, 'page', '', 0),
(4299, 1, '2017-05-12 08:03:43', '2017-05-12 08:03:43', '', 'Sustainability Statement 2015', '', 'inherit', 'closed', 'closed', '', '4298-revision-v1', '', '', '2017-05-12 08:03:43', '2017-05-12 08:03:43', '', 4298, 'http://www.investors-watch.com/wp-staging/ranhill/4298-revision-v1/', 0, 'revision', '', 0),
(4301, 1, '2017-05-12 08:15:09', '2017-05-12 08:15:09', '', 'Sustainability Statement', '', 'inherit', 'closed', 'closed', '', '4298-revision-v1', '', '', '2017-05-12 08:15:09', '2017-05-12 08:15:09', '', 4298, 'http://www.investors-watch.com/wp-staging/ranhill/4298-revision-v1/', 0, 'revision', '', 0),
(4303, 1, '2017-05-12 08:43:21', '2017-05-12 08:43:21', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/dropdownArrow.png);\n    background-repeat: no-repeat;\n    background-position: center right 5px;\n    background-color: #ff0000;\n    width: 100px;\n    padding: 7px 12px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nselect:active, select:hover {\n  outline: none\n}\noption:focus{\n    background-color:#FFF !important;\n    outline:none;\n    border:none;\n    box-shadow:none;\n}\noption:hover{\n    background-color:#FFF !important;\n    outline:none;\n    border:none;\n    box-shadow:none;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:43:21', '2017-05-12 08:43:21', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4305, 1, '2017-05-12 08:46:31', '2017-05-12 08:46:31', '', 'arrow-dropdown', '', 'inherit', 'open', 'closed', '', 'arrow-dropdown', '', '', '2017-05-12 08:46:31', '2017-05-12 08:46:31', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png', 0, 'attachment', 'image/png', 0),
(4306, 1, '2017-05-12 08:48:11', '2017-05-12 08:48:11', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png) no-repeat 98% 50%;\n   border: 1px solid #ccc;\n    font-size: 14px;\n    min-width: 120px;\n    padding-right: 10px;\ncolor:#444;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: #336ea0;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:48:11', '2017-05-12 08:48:11', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4308, 1, '2017-05-12 08:49:24', '2017-05-12 08:49:24', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png) no-repeat 98% 50%;\n   border: 1px solid #ccc;\n    font-size: 14px;\n    width: 100px;\n    padding-right: 10px;\ncolor:#444;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:49:24', '2017-05-12 08:49:24', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4310, 1, '2017-05-12 08:49:48', '2017-05-12 08:49:48', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image:  url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png) no-repeat;\n   border: 1px solid #ccc;\n    font-size: 14px;\n    width: 100px;\n    padding-right: 10px;\ncolor:#444;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:49:48', '2017-05-12 08:49:48', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4312, 1, '2017-05-12 08:51:22', '2017-05-12 08:51:22', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 14px;\n    width: 100px;\n    padding-right: 10px;\ncolor:#444;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:51:22', '2017-05-12 08:51:22', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4314, 1, '2017-05-12 08:52:05', '2017-05-12 08:52:05', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 14px;\n    width: 100px;\n    padding-right: 10px;\nbackground-position: center right;\ncolor:#444;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:52:05', '2017-05-12 08:52:05', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4316, 1, '2017-05-12 08:54:41', '2017-05-12 08:54:41', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 14px;\n    width: 105px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:54:41', '2017-05-12 08:54:41', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4318, 1, '2017-05-12 08:57:01', '2017-05-12 08:57:01', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 105px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:57:01', '2017-05-12 08:57:01', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4320, 1, '2017-05-12 08:58:18', '2017-05-12 08:58:18', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-12 08:58:18', '2017-05-12 08:58:18', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4323, 1, '2017-05-23 02:18:51', '2017-05-23 02:18:51', '', 'Sustainability Report', '', 'publish', 'closed', 'closed', '', 'sustainability-report', '', '', '2018-04-13 11:50:28', '2018-04-13 11:50:28', '', 101, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4323', 0, 'page', '', 0),
(4324, 1, '2017-05-23 02:18:51', '2017-05-23 02:18:51', '', 'Sustainability Report', '', 'inherit', 'closed', 'closed', '', '4323-revision-v1', '', '', '2017-05-23 02:18:51', '2017-05-23 02:18:51', '', 4323, 'http://www.investors-watch.com/wp-staging/ranhill/4323-revision-v1/', 0, 'revision', '', 0),
(4326, 1, '2017-05-23 02:41:09', '2017-05-23 02:41:09', ' ', '', '', 'publish', 'closed', 'closed', '', '4326', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 101, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4326', 15, 'nav_menu_item', '', 0),
(4327, 1, '2017-05-23 06:15:55', '2017-05-23 06:15:55', '', 'sustainability-report', '', 'inherit', 'open', 'closed', '', 'sustainability-report-2', '', '', '2017-05-23 06:15:55', '2017-05-23 06:15:55', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/sustainability-report.jpg', 0, 'attachment', 'image/jpeg', 0),
(4328, 1, '2017-05-25 08:17:46', '2017-05-25 08:17:46', '', 'sustainability-satement-2016', '', 'inherit', 'open', 'closed', '', 'sustainability-satement-2016', '', '', '2017-05-25 08:17:46', '2017-05-25 08:17:46', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/sustainability-satement-2016.pdf', 0, 'attachment', 'application/pdf', 0),
(4330, 1, '2017-05-30 05:50:33', '2017-05-30 05:50:33', '', 'futura-book', '', 'inherit', 'open', 'closed', '', 'futura-book', '', '', '2017-05-30 05:50:33', '2017-05-30 05:50:33', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book.woff', 0, 'attachment', 'font/woff', 0),
(4331, 1, '2017-05-30 05:52:22', '2017-05-30 05:52:22', '', 'futura-book', '', 'inherit', 'open', 'closed', '', 'futura-book-2', '', '', '2017-05-30 05:52:22', '2017-05-30 05:52:22', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book.svg', 0, 'attachment', 'font/svg', 0),
(4332, 1, '2017-05-30 05:54:50', '2017-05-30 05:54:50', '', 'futura-book-bold', '', 'inherit', 'open', 'closed', '', 'futura-book-bold', '', '', '2017-05-30 05:54:50', '2017-05-30 05:54:50', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book-bold.woff', 0, 'attachment', 'font/woff', 0),
(4333, 1, '2017-05-30 05:55:08', '2017-05-30 05:55:08', '', 'futura-book-bold', '', 'inherit', 'open', 'closed', '', 'futura-book-bold-2', '', '', '2017-05-30 05:55:08', '2017-05-30 05:55:08', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/futura-book-bold.svg', 0, 'attachment', 'font/svg', 0),
(4334, 1, '2017-05-30 06:05:00', '2017-05-30 06:05:00', '[vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row]', 'Home', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2017-05-30 06:05:00', '2017-05-30 06:05:00', '', 6, 'http://www.investors-watch.com/wp-staging/ranhill/6-revision-v1/', 0, 'revision', '', 0),
(4335, 1, '2017-05-30 06:17:57', '2017-05-30 06:17:57', '', 'Home', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2017-05-30 06:17:57', '2017-05-30 06:17:57', '', 6, 'http://www.investors-watch.com/wp-staging/ranhill/6-revision-v1/', 0, 'revision', '', 0),
(4337, 1, '2017-05-30 06:27:03', '2017-05-30 06:27:03', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 06:27:03', '2017-05-30 06:27:03', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4339, 1, '2017-05-30 06:43:07', '2017-05-30 06:43:07', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 06:43:07', '2017-05-30 06:43:07', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4341, 1, '2017-05-30 07:12:58', '2017-05-30 07:12:58', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -46px;\n    width: 95%;\n    color: #ffffff;\n    font-size: 50px;}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 07:12:58', '2017-05-30 07:12:58', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4343, 1, '2017-05-30 07:14:11', '2017-05-30 07:14:11', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -52px;\n    width: 100%;\n    color: #ffffff;\n    font-size: 50px;}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 07:14:11', '2017-05-30 07:14:11', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4345, 1, '2017-05-30 07:59:59', '2017-05-30 07:59:59', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -52px;\n    width: 100%;\n    color: #ffffff;\n    font-size: 50px;}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n.footer-menu\n{\n font-weight:bold;\n margin-bottom:06px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 07:59:59', '2017-05-30 07:59:59', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4347, 1, '2017-05-30 08:12:48', '2017-05-30 08:12:48', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -52px;\n    width: 100%;\n    color: #ffffff;\n    font-size: 50px;}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.8);\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 08:12:48', '2017-05-30 08:12:48', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4349, 1, '2017-05-30 08:15:14', '2017-05-30 08:15:14', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -52px;\n    width: 100%;\n    color: #ffffff;\n    font-size: 50px;}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n border:none;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 08:15:14', '2017-05-30 08:15:14', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4351, 1, '2017-05-30 08:16:19', '2017-05-30 08:16:19', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -52px;\n    width: 100%;\n    color: #ffffff;\n    font-size: 50px;}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n#footer a:hover .footer-menu\n{\n border:none;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 08:16:19', '2017-05-30 08:16:19', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4353, 1, '2017-05-30 08:33:50', '2017-05-30 08:33:50', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -52px;\n    width: 100%;\n    color: #ffffff;\n    font-size: 50px;}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 08:33:50', '2017-05-30 08:33:50', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4356, 1, '2017-05-30 09:23:08', '2017-05-30 09:23:08', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n      top: -52px;\n    width: 100%;\n    color: #ffffff;\n    font-size: 50px;\n    font-family: \'Futura\', sans-serif \n   !important;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:23:08', '2017-05-30 09:23:08', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4358, 1, '2017-05-30 09:34:04', '2017-05-30 09:34:04', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -52px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 50px;\n    font-family: \'Futura\', sans-serif \n   !important;\n  background-color:rgba(0,0,0,0.8);\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:34:04', '2017-05-30 09:34:04', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4360, 1, '2017-05-30 09:36:20', '2017-05-30 09:36:20', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -77px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 50px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 20px;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:36:20', '2017-05-30 09:36:20', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4362, 1, '2017-05-30 09:37:36', '2017-05-30 09:37:36', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 50px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 20px;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:37:36', '2017-05-30 09:37:36', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4364, 1, '2017-05-30 09:41:21', '2017-05-30 09:41:21', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 20px;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:41:21', '2017-05-30 09:41:21', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4366, 1, '2017-05-30 09:47:52', '2017-05-30 09:47:52', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;}}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:47:52', '2017-05-30 09:47:52', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4368, 1, '2017-05-30 09:50:46', '2017-05-30 09:50:46', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:30px;\n  \n}\n}\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:50:46', '2017-05-30 09:50:46', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4370, 1, '2017-05-30 09:52:51', '2017-05-30 09:52:51', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:30px;\n  \n}\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:52:51', '2017-05-30 09:52:51', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4373, 1, '2017-05-30 09:53:40', '2017-05-30 09:53:40', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:53:40', '2017-05-30 09:53:40', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4375, 1, '2017-05-30 09:54:39', '2017-05-30 09:54:39', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 09:54:39', '2017-05-30 09:54:39', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4377, 1, '2017-05-30 10:05:54', '2017-05-30 10:05:54', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-05-30 10:05:54', '2017-05-30 10:05:54', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4380, 1, '2017-06-01 08:44:16', '2017-06-01 08:44:16', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: red; /* or whatever color you prefer */\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:44:16', '2017-06-01 08:44:16', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4382, 1, '2017-06-01 08:45:31', '2017-06-01 08:45:31', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: red; /* or whatever color you prefer */\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:45:31', '2017-06-01 08:45:31', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4384, 1, '2017-06-01 08:48:21', '2017-06-01 08:48:21', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: red; /* or whatever color you prefer */\n}\n.bod-details h4\n{\n  font-size:20px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:48:21', '2017-06-01 08:48:21', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4386, 1, '2017-06-01 08:48:42', '2017-06-01 08:48:42', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: red; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n  font-size:20px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:48:42', '2017-06-01 08:48:42', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4388, 1, '2017-06-01 08:50:20', '2017-06-01 08:50:20', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #ff0000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n  font-size:17px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:50:20', '2017-06-01 08:50:20', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4390, 1, '2017-06-01 08:51:11', '2017-06-01 08:51:11', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n  font-size:17px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:51:11', '2017-06-01 08:51:11', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4392, 1, '2017-06-01 08:51:22', '2017-06-01 08:51:22', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n  font-size:15px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:51:22', '2017-06-01 08:51:22', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4394, 1, '2017-06-01 08:54:07', '2017-06-01 08:54:07', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.7em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n font-size:15px;\n color: #444444;\n font-weight: 600;\n line-height: 20px;\n margin-bottom: 12px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 08:54:07', '2017-06-01 08:54:07', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4396, 1, '2017-06-01 09:01:52', '2017-06-01 09:01:52', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n font-size:15px;\n color: #444444;\n font-weight: 600;\n line-height: 20px;\n margin-bottom: 12px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 09:01:52', '2017-06-01 09:01:52', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4398, 1, '2017-06-01 09:03:34', '2017-06-01 09:03:34', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n font-size:15px;\n color: #444444;\n font-weight: 600;\n line-height: 20px;\n margin-bottom: 12px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 09:03:34', '2017-06-01 09:03:34', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4400, 1, '2017-06-01 09:05:07', '2017-06-01 09:05:07', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 15px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n font-size:15px;\n color: #444444;\n font-weight: 600;\n line-height: 20px;\n margin-bottom: 12px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 09:05:07', '2017-06-01 09:05:07', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4402, 1, '2017-06-01 09:14:11', '2017-06-01 09:14:11', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 15px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 12px;\nletter-spacing: 0.5px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 09:14:11', '2017-06-01 09:14:11', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4404, 1, '2017-06-01 09:16:41', '2017-06-01 09:16:41', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 09:16:41', '2017-06-01 09:16:41', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4406, 1, '2017-06-01 09:18:16', '2017-06-01 09:18:16', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom:5px;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 09:18:16', '2017-06-01 09:18:16', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4408, 1, '2017-06-01 09:21:08', '2017-06-01 09:21:08', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 48px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 09:21:08', '2017-06-01 09:21:08', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4410, 1, '2017-06-01 10:12:19', '2017-06-01 10:12:19', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:30px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-01 10:12:19', '2017-06-01 10:12:19', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4411, 1, '2017-06-02 01:12:49', '2017-06-02 01:12:49', '', 'Sustainability-Report-2016', '', 'inherit', 'open', 'closed', '', 'sustainability-report-2016-2', '', '', '2017-06-02 01:12:49', '2017-06-02 01:12:49', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/Sustainability-Report-2016.pdf', 0, 'attachment', 'application/pdf', 0),
(4412, 1, '2017-06-02 01:37:14', '2017-06-02 01:37:14', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/ranhill-declares-dividend-of-7.8-sen-for-FY2016.pdf" title="media-release_mou-iwk"]', 'Ranhill declares dividend of 7.8 sen for FY2016', '', 'publish', 'open', 'open', '', 'ranhill-declares-dividend-of-7-8-sen-for-fy2016', '', '', '2019-01-29 01:14:18', '2019-01-29 01:14:18', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4412', 0, 'post', '', 0),
(4413, 1, '2017-06-02 01:35:42', '2017-06-02 01:35:42', '', 'ranhill-declares-dividend-of-7.8-sen-for-FY2016', '', 'inherit', 'open', 'closed', '', 'ranhill-declares-dividend-of-7-8-sen-for-fy2016', '', '', '2017-06-02 01:35:42', '2017-06-02 01:35:42', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/ranhill-declares-dividend-of-7.8-sen-for-FY2016.pdf', 0, 'attachment', 'application/pdf', 0),
(4414, 1, '2017-06-02 01:37:14', '2017-06-02 01:37:14', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/ranhill-declares-dividend-of-7.8-sen-for-FY2016.pdf" title="media-release_mou-iwk"]', 'Ranhill declares dividend of 7.8 sen for FY2016', '', 'inherit', 'closed', 'closed', '', '4412-revision-v1', '', '', '2017-06-02 01:37:14', '2017-06-02 01:37:14', '', 4412, 'http://www.investors-watch.com/wp-staging/ranhill/4412-revision-v1/', 0, 'revision', '', 0),
(4415, 1, '2017-06-02 01:41:50', '2017-06-02 01:41:50', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay.pdf" title="media-release_mou-iwk"]', 'Ranhill helps preserving the environment by cleaning-up Likas Bay', '', 'publish', 'open', 'open', '', 'ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay', '', '', '2019-01-29 01:13:37', '2019-01-29 01:13:37', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4415', 0, 'post', '', 0),
(4416, 1, '2017-06-02 01:41:11', '2017-06-02 01:41:11', '', 'ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay', '', 'inherit', 'open', 'closed', '', 'ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay', '', '', '2017-06-02 01:41:11', '2017-06-02 01:41:11', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay.pdf', 0, 'attachment', 'application/pdf', 0),
(4417, 1, '2017-06-02 01:41:50', '2017-06-02 01:41:50', '[pdf-embedder url="http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay.pdf" title="media-release_mou-iwk"]', 'Ranhill helps preserving the environment by cleaning-up Likas Bay', '', 'inherit', 'closed', 'closed', '', '4415-revision-v1', '', '', '2017-06-02 01:41:50', '2017-06-02 01:41:50', '', 4415, 'http://www.investors-watch.com/wp-staging/ranhill/4415-revision-v1/', 0, 'revision', '', 0),
(4419, 1, '2017-06-02 01:45:23', '2017-06-02 01:45:23', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:24px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-02 01:45:23', '2017-06-02 01:45:23', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4421, 1, '2017-06-02 01:48:25', '2017-06-02 01:48:25', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:24px;\n \n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-02 01:48:25', '2017-06-02 01:48:25', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4423, 1, '2017-06-02 01:49:05', '2017-06-02 01:49:05', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:24px;\n  line-height:28px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-02 01:49:05', '2017-06-02 01:49:05', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4425, 1, '2017-06-02 01:49:23', '2017-06-02 01:49:23', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-02 01:49:23', '2017-06-02 01:49:23', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4427, 1, '2017-06-02 01:51:16', '2017-06-02 01:51:16', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n(index):110\n#Subheader .title {\n    font-size: 25px !important;\n    line-height: 30px !important;\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-02 01:51:16', '2017-06-02 01:51:16', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4429, 1, '2017-06-02 01:53:16', '2017-06-02 01:53:16', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-02 01:53:16', '2017-06-02 01:53:16', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4431, 1, '2017-06-07 01:14:24', '2017-06-07 01:14:24', '', 'Board Charter', '', 'publish', 'closed', 'closed', '', 'board-charter', '', '', '2017-06-07 02:11:15', '2017-06-07 02:11:15', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4431', 0, 'page', '', 0),
(4433, 1, '2017-06-07 01:14:24', '2017-06-07 01:14:24', '', 'Board Charter', '', 'inherit', 'closed', 'closed', '', '4431-revision-v1', '', '', '2017-06-07 01:14:24', '2017-06-07 01:14:24', '', 4431, 'http://www.investors-watch.com/wp-staging/ranhill/4431-revision-v1/', 0, 'revision', '', 0),
(4436, 1, '2017-06-07 01:36:13', '2017-06-07 01:36:13', '', 'board-charter-banner', '', 'inherit', 'open', 'closed', '', 'board-charter-banner', '', '', '2017-06-07 01:36:13', '2017-06-07 01:36:13', '', 4431, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/board-charter-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(4439, 1, '2017-06-07 02:22:41', '2017-06-07 02:22:41', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  text-indent:20px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 02:22:41', '2017-06-07 02:22:41', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4441, 1, '2017-06-07 02:25:17', '2017-06-07 02:25:17', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 20px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 02:25:17', '2017-06-07 02:25:17', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4443, 1, '2017-06-07 02:28:18', '2017-06-07 02:28:18', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 02:28:18', '2017-06-07 02:28:18', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4444, 1, '2017-06-07 02:50:53', '2017-06-07 02:50:53', '', 'Sustainability  Policies', '', 'publish', 'closed', 'closed', '', 'sustainability-policies', '', '', '2017-06-14 02:46:12', '2017-06-14 02:46:12', '', 101, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4444', 0, 'page', '', 0),
(4445, 1, '2017-06-07 02:49:25', '2017-06-07 02:49:25', '', 'sustainability-policies-banner', '', 'inherit', 'open', 'closed', '', 'sustainability-policies-banner', '', '', '2017-06-07 02:49:25', '2017-06-07 02:49:25', '', 4444, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/sustainability-policies-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(4446, 1, '2017-06-07 02:50:53', '2017-06-07 02:50:53', '', 'Sustainability  policies', '', 'inherit', 'closed', 'closed', '', '4444-revision-v1', '', '', '2017-06-07 02:50:53', '2017-06-07 02:50:53', '', 4444, 'http://www.investors-watch.com/wp-staging/ranhill/4444-revision-v1/', 0, 'revision', '', 0),
(4447, 1, '2017-06-07 06:05:39', '2017-06-07 06:05:39', '', 'business-continuity-management-policy', '', 'inherit', 'open', 'closed', '', 'business-continuity-management-policy', '', '', '2017-06-07 06:05:39', '2017-06-07 06:05:39', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/business-continuity-management-policy.pdf', 0, 'attachment', 'application/pdf', 0),
(4448, 1, '2017-06-07 06:14:53', '2017-06-07 06:14:53', '', 'code-of-conduct-and-business-ethics-policy', '', 'inherit', 'open', 'closed', '', 'code-of-conduct-and-business-ethics-policy', '', '', '2017-06-07 06:14:53', '2017-06-07 06:14:53', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/code-of-conduct-and-business-ethics-policy.pdf', 0, 'attachment', 'application/pdf', 0),
(4449, 1, '2017-06-07 06:18:14', '2017-06-07 06:18:14', '', 'health-safety-environment-policy', '', 'inherit', 'open', 'closed', '', 'health-safety-environment-policy', '', '', '2017-06-07 06:18:14', '2017-06-07 06:18:14', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/health-safety-environment-policy.pdf', 0, 'attachment', 'application/pdf', 0),
(4450, 1, '2017-06-07 06:20:09', '2017-06-07 06:20:09', '', 'sexual-harassment-policy', '', 'inherit', 'open', 'closed', '', 'sexual-harassment-policy', '', '', '2017-06-07 06:20:09', '2017-06-07 06:20:09', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/sexual-harassment-policy.pdf', 0, 'attachment', 'application/pdf', 0),
(4451, 1, '2017-06-07 06:22:07', '2017-06-07 06:22:07', '', 'succession-planning-and-management', '', 'inherit', 'open', 'closed', '', 'succession-planning-and-management', '', '', '2017-06-07 06:22:07', '2017-06-07 06:22:07', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/succession-planning-and-management.pdf', 0, 'attachment', 'application/pdf', 0),
(4453, 1, '2017-06-07 08:49:13', '2017-06-07 08:49:13', '', 'sustainability-sr2016-img', '', 'inherit', 'open', 'closed', '', 'sustainability-sr2016-img', '', '', '2017-06-07 08:49:13', '2017-06-07 08:49:13', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/06/sustainability-sr2016-img.jpg', 0, 'attachment', 'image/jpeg', 0),
(4454, 1, '2017-06-07 08:55:49', '2017-06-07 08:55:49', ' ', '', '', 'publish', 'closed', 'closed', '', '4454', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 101, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4454', 16, 'nav_menu_item', '', 0),
(4455, 1, '2017-06-07 09:09:15', '2017-06-07 09:09:15', '', 'Sustainability', '', 'inherit', 'closed', 'closed', '', '101-autosave-v1', '', '', '2017-06-07 09:09:15', '2017-06-07 09:09:15', '', 101, 'http://www.investors-watch.com/wp-staging/ranhill/101-autosave-v1/', 0, 'revision', '', 0),
(4459, 1, '2017-06-07 09:24:20', '2017-06-07 09:24:20', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;		\n    padding: 20px 25px;    \n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:75%;line-height:24px;\n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 25px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:8px 12px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:620px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 0px;margin-top:15px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 09:24:20', '2017-06-07 09:24:20', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4462, 1, '2017-06-07 09:30:36', '2017-06-07 09:30:36', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:75%;line-height:24px;\npadding: 20px 25px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 25px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:8px 12px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:620px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 0px;margin-top:15px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 09:30:36', '2017-06-07 09:30:36', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4464, 1, '2017-06-07 09:32:57', '2017-06-07 09:32:57', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:75%;line-height:24px;\npadding: 20px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 20px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:8px 12px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:620px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 0px;margin-top:15px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 09:32:57', '2017-06-07 09:32:57', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4466, 1, '2017-06-07 09:34:53', '2017-06-07 09:34:53', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:72%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:8px 12px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:620px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 0px;margin-top:15px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 09:34:53', '2017-06-07 09:34:53', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4468, 1, '2017-06-07 09:36:13', '2017-06-07 09:36:13', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:72%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:620px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 0px;margin-top:15px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-07 09:36:13', '2017-06-07 09:36:13', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4470, 1, '2017-06-08 00:47:38', '2017-06-08 00:47:38', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:72%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:620px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 24px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:47:38', '2017-06-08 00:47:38', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4472, 1, '2017-06-08 00:47:57', '2017-06-08 00:47:57', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:72%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:620px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 24px;\n    margin-bottom:10px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:47:57', '2017-06-08 00:47:57', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4474, 1, '2017-06-08 00:49:19', '2017-06-08 00:49:19', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:72%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:768px)\n{\n  .pdfbox button\n{ \n      position: static;\n     padding: 10px 24px;\n    margin-bottom:10px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:49:19', '2017-06-08 00:49:19', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4476, 1, '2017-06-08 00:51:39', '2017-06-08 00:51:39', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:72%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:768px)\n{\n.pdfbox\n{\n  \n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-bottom:10px;\n     padding: 10px 24px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:51:39', '2017-06-08 00:51:39', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4478, 1, '2017-06-08 00:52:05', '2017-06-08 00:52:05', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:72%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:768px)\n{\n.pdfbox\n{\n  \n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-bottom:15px;\n     padding: 10px 24px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:52:05', '2017-06-08 00:52:05', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4480, 1, '2017-06-08 00:54:12', '2017-06-08 00:54:12', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:70%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:768px)\n{\n.pdfbox\n{\n  \n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-bottom:15px;\n     padding: 10px 24px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:54:12', '2017-06-08 00:54:12', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4482, 1, '2017-06-08 00:56:01', '2017-06-08 00:56:01', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:70%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:992px)\n{\n.pdfbox\n{\n  \n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-bottom:15px;\n     padding: 10px 24px;\n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:56:01', '2017-06-08 00:56:01', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4484, 1, '2017-06-08 00:59:04', '2017-06-08 00:59:04', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:70%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:992px)\n{\n.pdfbox\n{\n      padding: 20px 24px;\n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-top:15px;\n     \n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;padding:0;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 00:59:04', '2017-06-08 00:59:04', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0) ;
INSERT INTO `wp2o_posts` ( `ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(4486, 1, '2017-06-08 01:00:04', '2017-06-08 01:00:04', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:50px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:70%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:992px)\n{\n.pdfbox\n{\n      padding: 20px 24px;\n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-top:15px;\n     padding:10px 0px;     \n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;padding:0;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-08 01:00:04', '2017-06-08 01:00:04', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4487, 1, '2017-06-08 01:24:26', '2017-06-08 01:24:26', '', 'Sustainability  Policies', '', 'inherit', 'closed', 'closed', '', '4444-revision-v1', '', '', '2017-06-08 01:24:26', '2017-06-08 01:24:26', '', 4444, 'http://www.investors-watch.com/wp-staging/ranhill/4444-revision-v1/', 0, 'revision', '', 0),
(4490, 1, '2017-06-14 02:58:36', '2017-06-14 02:58:36', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:88px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:70%;line-height:24px;\npadding: 20px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:992px)\n{\n.pdfbox\n{\n      padding: 20px 24px;\n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-top:15px;\n     padding:10px 0px;     \n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;padding:0;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-14 02:58:36', '2017-06-14 02:58:36', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4492, 1, '2017-06-14 03:02:35', '2017-06-14 03:02:35', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n.dropDownArrow {\n background-image: url(http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/05/arrow-dropdown.png);\nbackground-repeat:no-repeat;\n   border: 1px solid #ccc;\n    font-size: 15px;\n    width: 110px;\n    background-position: center right 4px;\n   color:#444;\n  padding: 7px 8px;\n}\nselect {\n    padding: 5px;\n    margin: 0;\n    -webkit-border-radius: 0px;\n    -moz-border-radius: 0px;\n    border-radius: 0px;\n    background: none;\n    color: #ffffff;\n    border: none;\n    outline: none;\n    display: inline-block;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    cursor: pointer;\n}\n@media only screen and (max-width: 479px){\n#Subheader .title{\n    font-size: 20px;\n}\n}\n\n\n#Subheader .title {\n    display: block;\n    position: absolute;\n    top: -75px;\n    right:0px;\n    width: initial;\n    color: #ffffff;\n    font-size: 42px;\n    font-family: \'Futura\', sans-serif \n   !important;\n   background-color:rgba(0,0,0,0.5);\n  line-height:54px;\n  padding:03px 18px;\n}\n\n@media only screen and (max-width: 959px) and (min-width: 768px)\n{\n #Subheader .title \n {\n    font-size: 25px !important; \n    line-height: 30px !important;\n }\n}\n\n@media (max-width: 767px) \n{\n  #Subheader .title \n{\n  font-size:22px;\n  line-height:25px;\n  \n}\n}\n@media (max-width: 480px) \n{\n  #Subheader .title \n{\n  font-size:15px;\n  line-height:20px;\n \n  \n}\n}\n#Header_wrapper {\n    \n    background-size: contain;\n}\nbody\n{\n  font-family: \'Futura\', sans-serif !important;\n}\nh1, h2, h3, h4, .text-logo #logo\n{\n   font-family: \'Futura\', sans-serif !important; \n}\n#menu > ul > li > a\n{\n  font-family: \'Futura\', sans-serif !important; \n}\n#Footer a {\n    color: rgba(238, 238, 238, 0.78);\n    \n}\n.footer-menu\n{\n font-weight:600;\n margin-bottom:08px;\n font-size:15px;\n color: rgba(238, 238, 238, 0.9);\n}\n.footer-menu:hover\n{\n color:#e60000;\n}\n\n\n\n\n\n.bod-list\n{\n  list-style: none;\n  padding: 0;\n  margin: 0;\n    margin-bottom: 20px;\n}\n.bod-list li\n{\n    padding-left: 1em; \n    text-indent: -.9em;\n   margin-bottom: 4px;\n}\n.bod-list li::before {\n  content: "• ";\n  color: #e60000; /* or whatever color you prefer */\n}\n.bod-list p\n{\n  margin-bottom: 7px !important;\n    font-weight: 600;\n}\n.bod-details h3\n{\n font-size:13px;\n color: #e60000;\n font-weight: 600;\n line-height: 18px;\n margin-bottom: 10px;\nletter-spacing: 0.5px;\n}\n.bod-details p\n{\n margin-bottom:20px;\ntext-align:justify;\n}\n.sub-link\n{\n  margin-left: 14px;\n}\n.pdfbox\n{\n		\n   position:relative;	\n    overflow: hidden;\n    background: #f3f3f3;\n    border-radius: 5px;\n   border:1px solid #eee;\n  border-left:3px solid #ec4d3e !important;\n  min-height:86px;\n}\n.pdfbox h4\n{\n	font-size:18px;font-weight:500; margin-bottom: 0px;\n       width:70%;line-height:24px;\npadding: 18px 24px;   \n}\n.pdfbox button  \n{\n	\n   position: absolute; right: 24px; top: 0; bottom: 0; background-color: transparent; outline: none; padding: 0; margin: 0; border: none;\n    background: transparent; box-shadow: none;font-family: \'Futura\', sans-serif !important;\n}\n.pdfbox  button:hover\n{\n  background-color:transparent !important;background: #f3f3f3;\n}\n.pdfbox button span\n{\n	background-color:#ec4d3e;color:#fff;padding:7px 11px;font-size:14px;border-radius:3px;\n}\n.pdfbox button:hover span\n{\n   background-color:#939598;\n}\n@media(max-width:992px)\n{\n.pdfbox\n{\n      padding: 18px 24px;\n}\n  .pdfbox button\n{ \n      position: static;    \n     margin-top:15px;\n     padding:10px 0px;     \n}\n.pdfbox h4\n{\n  width:100%;font-size:18px;line-height:18px;padding:0;\n}\n}', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2017-06-14 03:02:35', '2017-06-14 03:02:35', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4498, 1, '2018-01-22 01:22:23', '2018-01-22 01:22:23', '', 'career-bg', '', 'inherit', 'open', 'closed', '', 'career-bg', '', '', '2018-01-22 01:22:23', '2018-01-22 01:22:23', '', 3797, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/08/career-bg.jpg', 0, 'attachment', 'image/jpeg', 0),
(4502, 1, '2018-01-22 01:38:55', '2018-01-22 01:38:55', '', 'Career', '', 'inherit', 'closed', 'closed', '', '3797-autosave-v1', '', '', '2018-01-22 01:38:55', '2018-01-22 01:38:55', '', 3797, 'http://www.investors-watch.com/wp-staging/ranhill/3797-autosave-v1/', 0, 'revision', '', 0),
(4506, 1, '2018-02-13 06:32:31', '2018-02-13 06:32:31', '', 'tan-sri-mohamed-small', '', 'inherit', 'open', 'closed', '', 'tan-sri-mohamed-small', '', '', '2018-02-13 06:32:31', '2018-02-13 06:32:31', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/tan-sri-mohamed-small.png', 0, 'attachment', 'image/png', 0),
(4507, 1, '2018-02-13 06:32:56', '2018-02-13 06:32:56', '', 'tan-sri-hamdan-small', '', 'inherit', 'open', 'closed', '', 'tan-sri-hamdan-small', '', '', '2018-02-13 06:32:56', '2018-02-13 06:32:56', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/tan-sri-hamdan-small.png', 0, 'attachment', 'image/png', 0),
(4508, 1, '2018-02-13 06:33:42', '2018-02-13 06:33:42', '', 'dato-sri-lim-small', '', 'inherit', 'open', 'closed', '', 'dato-sri-lim-small', '', '', '2018-02-13 06:33:42', '2018-02-13 06:33:42', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/dato-sri-lim-small.png', 0, 'attachment', 'image/png', 0),
(4509, 1, '2018-02-13 06:34:11', '2018-02-13 06:34:11', '', 'tan-sri-saw-small', '', 'inherit', 'open', 'closed', '', 'tan-sri-saw-small', '', '', '2018-02-13 06:34:11', '2018-02-13 06:34:11', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/tan-sri-saw-small.png', 0, 'attachment', 'image/png', 0),
(4510, 1, '2018-02-13 06:34:33', '2018-02-13 06:34:33', '', 'lim-hun-soon-small', '', 'inherit', 'open', 'closed', '', 'lim-hun-soon-small', '', '', '2018-02-13 06:34:33', '2018-02-13 06:34:33', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/lim-hun-soon-small.png', 0, 'attachment', 'image/png', 0),
(4511, 1, '2018-02-13 06:35:00', '2018-02-13 06:35:00', '', 'datuk-seri-small', '', 'inherit', 'open', 'closed', '', 'datuk-seri-small', '', '', '2018-02-13 06:35:00', '2018-02-13 06:35:00', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/datuk-seri-small.png', 0, 'attachment', 'image/png', 0),
(4512, 1, '2018-02-13 06:35:24', '2018-02-13 06:35:24', '', 'zulkifli-ibrahim-small', '', 'inherit', 'open', 'closed', '', 'zulkifli-ibrahim-small', '', '', '2018-02-13 06:35:24', '2018-02-13 06:35:24', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/zulkifli-ibrahim-small.jpg', 0, 'attachment', 'image/jpeg', 0),
(4513, 1, '2018-02-13 06:35:46', '2018-02-13 06:35:46', '', 'abu-talib-small', '', 'inherit', 'open', 'closed', '', 'abu-talib-small', '', '', '2018-02-13 06:35:46', '2018-02-13 06:35:46', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/abu-talib-small.jpg', 0, 'attachment', 'image/jpeg', 0),
(4514, 1, '2018-02-13 06:40:48', '2018-02-13 06:40:48', '', 'tan-sri-mohamed-big', '', 'inherit', 'open', 'closed', '', 'tan-sri-mohamed-big', '', '', '2018-02-13 06:40:48', '2018-02-13 06:40:48', '', 211, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/tan-sri-mohamed-big.jpg', 0, 'attachment', 'image/jpeg', 0),
(4515, 1, '2018-02-13 07:02:32', '2018-02-13 07:02:32', '', 'home_blogger2_sep', '', 'inherit', 'open', 'closed', '', 'home_blogger2_sep', '', '', '2018-02-13 07:02:32', '2018-02-13 07:02:32', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/02/home_blogger2_sep.png', 0, 'attachment', 'image/png', 0),
(4517, 1, '2018-03-07 00:51:24', '2018-03-07 00:51:24', '', 'dummy-bod-big', '', 'inherit', 'open', 'closed', '', 'dummy-bod-big', '', '', '2018-03-07 00:51:24', '2018-03-07 00:51:24', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/dummy-bod-big.jpg', 0, 'attachment', 'image/jpeg', 0),
(4518, 1, '2018-03-07 01:01:26', '2018-03-07 01:01:26', '', 'LEOW PEEN FONG', '', 'publish', 'closed', 'closed', '', 'leow-peen-fong', '', '', '2018-11-14 03:35:47', '2018-11-14 03:35:47', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4518', 0, 'page', '', 0),
(4519, 1, '2018-03-07 01:01:26', '2018-03-07 01:01:26', '', 'LEOW PEEN FONG', '', 'inherit', 'closed', 'closed', '', '4518-revision-v1', '', '', '2018-03-07 01:01:26', '2018-03-07 01:01:26', '', 4518, 'http://www.investors-watch.com/wp-staging/ranhill/4518-revision-v1/', 0, 'revision', '', 0),
(4521, 1, '2018-03-07 01:48:53', '2018-03-07 01:48:53', '', 'women-dummy-bod', '', 'inherit', 'open', 'closed', '', 'women-dummy-bod', '', '', '2018-03-07 01:48:53', '2018-03-07 01:48:53', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/women-dummy-bod.jpg', 0, 'attachment', 'image/jpeg', 0),
(4523, 1, '2018-03-26 07:00:29', '2018-03-26 07:00:29', '', 'LEOW PEEN FONG', '', 'inherit', 'closed', 'closed', '', '4518-autosave-v1', '', '', '2018-03-26 07:00:29', '2018-03-26 07:00:29', '', 4518, 'http://www.investors-watch.com/wp-staging/ranhill/4518-autosave-v1/', 0, 'revision', '', 0),
(4525, 1, '2018-04-13 11:48:20', '2018-04-13 11:48:20', '', 'Sustainability-Report-2017', '', 'inherit', 'open', 'closed', '', 'sustainability-report-2017', '', '', '2018-04-13 11:48:20', '2018-04-13 11:48:20', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/04/Sustainability-Report-2017.pdf', 0, 'attachment', 'application/pdf', 0),
(4526, 1, '2018-04-13 13:22:52', '2018-04-13 13:22:52', '', 'Corporate Governance Report', '', 'publish', 'closed', 'closed', '', 'corporate-governance-report', '', '', '2018-04-13 13:33:58', '2018-04-13 13:33:58', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4526', 0, 'page', '', 0),
(4527, 1, '2018-04-13 13:22:52', '2018-04-13 13:22:52', '', 'Corporate Governance Report', '', 'inherit', 'closed', 'closed', '', '4526-revision-v1', '', '', '2018-04-13 13:22:52', '2018-04-13 13:22:52', '', 4526, 'http://www.investors-watch.com/wp-staging/ranhill/4526-revision-v1/', 0, 'revision', '', 0),
(4528, 1, '2018-04-13 13:27:39', '2018-04-13 13:27:39', '', 'CG-Report-2017', '', 'inherit', 'open', 'closed', '', 'cg-report-2017', '', '', '2018-04-13 13:27:39', '2018-04-13 13:27:39', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/04/CG-Report-2017.pdf', 0, 'attachment', 'application/pdf', 0),
(4530, 1, '2018-04-16 03:32:37', '2018-04-16 03:32:37', '', 'leow-peen', '', 'inherit', 'open', 'closed', '', 'leow-peen', '', '', '2018-04-16 03:32:37', '2018-04-16 03:32:37', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/leow-peen.jpg', 0, 'attachment', 'image/jpeg', 0),
(4531, 1, '2018-04-16 03:34:09', '2018-04-16 03:34:09', '', 'leow-peen-big', '', 'inherit', 'open', 'closed', '', 'leow-peen-big', '', '', '2018-04-16 03:34:09', '2018-04-16 03:34:09', '', 4518, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/03/leow-peen-big.jpg', 0, 'attachment', 'image/jpeg', 0),
(4532, 1, '2018-04-17 01:10:45', '2018-04-17 01:10:45', '', 'Corporate Governance', '', 'publish', 'closed', 'closed', '', 'corporate-governance', '', '', '2018-04-17 03:09:48', '2018-04-17 03:09:48', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?page_id=4532', 0, 'page', '', 0),
(4533, 1, '2018-04-17 01:10:45', '2018-04-17 01:10:45', '', 'Corporate Governance', '', 'inherit', 'closed', 'closed', '', '4532-revision-v1', '', '', '2018-04-17 01:10:45', '2018-04-17 01:10:45', '', 4532, 'http://www.investors-watch.com/wp-staging/ranhill/4532-revision-v1/', 0, 'revision', '', 0),
(4535, 1, '2018-04-17 01:39:47', '2018-04-17 01:39:47', '', 'box-bg4', '', 'inherit', 'open', 'closed', '', 'box-bg4', '', '', '2018-04-17 01:39:47', '2018-04-17 01:39:47', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/04/box-bg4.jpg', 0, 'attachment', 'image/jpeg', 0),
(4536, 1, '2018-04-17 01:41:03', '2018-04-17 01:41:03', '/*\nYou can add your own CSS here.\n\nClick the help icon above to learn more.\n*/\n\n', 'betheme', '', 'inherit', 'closed', 'closed', '', '4278-revision-v1', '', '', '2018-04-17 01:41:03', '2018-04-17 01:41:03', '', 4278, 'http://www.investors-watch.com/wp-staging/ranhill/4278-revision-v1/', 0, 'revision', '', 0),
(4538, 1, '2018-04-17 02:42:09', '2018-04-17 02:42:09', '', 'reports-banner', '', 'inherit', 'open', 'closed', '', 'reports-banner', '', '', '2018-04-17 02:42:09', '2018-04-17 02:42:09', '', 4532, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2018/04/reports-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(4539, 1, '2018-04-17 02:49:25', '2018-04-17 02:49:25', ' ', '', '', 'publish', 'closed', 'closed', '', '4539', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4539', 6, 'nav_menu_item', '', 0),
(4540, 1, '2018-04-17 03:09:18', '2018-04-17 03:09:18', '', 'Corporate Governance', '', 'inherit', 'closed', 'closed', '', '4532-autosave-v1', '', '', '2018-04-17 03:09:18', '2018-04-17 03:09:18', '', 4532, 'http://www.investors-watch.com/wp-staging/ranhill/4532-autosave-v1/', 0, 'revision', '', 0),
(4551, 1, '2018-04-17 08:20:54', '2018-04-17 08:20:54', '', 'bod-banner', '', 'inherit', 'open', 'closed', '', 'bod-banner', '', '', '2018-04-17 08:20:54', '2018-04-17 08:20:54', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/bod-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(4553, 1, '2018-04-25 03:52:03', '2018-04-25 03:52:03', ' ', '', '', 'publish', 'closed', 'closed', '', '4553', '', '', '2019-02-20 08:39:10', '2019-02-20 08:39:10', '', 3539, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4553', 7, 'nav_menu_item', '', 0),
(4554, 1, '2018-04-25 05:22:18', '2018-04-25 05:22:18', '', 'Code of Conduct and Business Ethics', '', 'inherit', 'closed', 'closed', '', '4019-revision-v1', '', '', '2018-04-25 05:22:18', '2018-04-25 05:22:18', '', 4019, 'http://www.investors-watch.com/wp-staging/ranhill/4019-revision-v1/', 0, 'revision', '', 0),
(4556, 1, '2018-06-01 08:47:55', '2018-06-01 08:47:55', '', 'bod-banner-new', '', 'inherit', 'open', 'closed', '', 'bod-banner-new', '', '', '2018-06-01 08:47:55', '2018-06-01 08:47:55', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/bod-banner-new.jpg', 0, 'attachment', 'image/jpeg', 0),
(4557, 1, '2018-06-01 08:50:02', '2018-06-01 08:50:02', '', 'bod-inner-page-banner', '', 'inherit', 'open', 'closed', '', 'bod-inner-page-banner', '', '', '2018-06-01 08:50:02', '2018-06-01 08:50:02', '', 211, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/bod-inner-page-banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(4566, 1, '2018-09-05 06:24:37', '2018-09-05 06:24:37', '', 'ranhill-bod-new', '', 'inherit', 'open', 'closed', '', 'ranhill-bod-new', '', '', '2018-09-05 06:24:37', '2018-09-05 06:24:37', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/ranhill-bod-new.jpg', 0, 'attachment', 'image/jpeg', 0),
(4569, 1, '2018-09-20 04:07:32', '2018-09-20 04:07:32', '', 'bod-banner-2018', '', 'inherit', 'open', 'closed', '', 'bod-banner-2018', '', '', '2018-09-20 04:07:32', '2018-09-20 04:07:32', '', 95, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/04/bod-banner-2018.jpg', 0, 'attachment', 'image/jpeg', 0),
(4573, 1, '2018-10-26 03:29:41', '2018-10-26 03:29:41', '', 'Investor Relations', '', 'inherit', 'closed', 'closed', '', '3609-autosave-v1', '', '', '2018-10-26 03:29:41', '2018-10-26 03:29:41', '', 3609, 'http://www.investors-watch.com/wp-staging/ranhill/3609-autosave-v1/', 0, 'revision', '', 0),
(4579, 1, '2019-01-29 01:08:41', '2019-01-29 01:08:41', '[pdf-embedder url="https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2019/01/new-thailand-reclamation-water-treatment-palnt.pdf" title="media-release"]', 'Ranhill’s New Thailand Reclamation Water Treatment Plant To Begin Operations', '', 'publish', 'closed', 'closed', '', 'ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations', '', '', '2019-01-29 01:12:35', '2019-01-29 01:12:35', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4579', 0, 'post', '', 0),
(4581, 1, '2019-01-29 01:08:27', '2019-01-29 01:08:27', '[pdf-embedder url="https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2019/01/new-thailand-reclamation-water-treatment-palnt.docx" title="media-release_mou-iwk"]', 'Ranhill’s New Thailand Reclamation Water Treatment Plant To Begin Operations', '', 'inherit', 'closed', 'closed', '', '4579-revision-v1', '', '', '2019-01-29 01:08:27', '2019-01-29 01:08:27', '', 4579, 'http://www.investors-watch.com/wp-staging/ranhill/4579-revision-v1/', 0, 'revision', '', 0),
(4582, 1, '2019-01-29 01:11:17', '2019-01-29 01:11:17', '', 'new-thailand-reclamation-water-treatment-palnt', '', 'inherit', 'closed', 'closed', '', 'new-thailand-reclamation-water-treatment-palnt', '', '', '2019-01-29 01:11:17', '2019-01-29 01:11:17', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2019/01/new-thailand-reclamation-water-treatment-palnt.pdf', 0, 'attachment', 'application/pdf', 0),
(4583, 1, '2019-01-29 01:11:46', '2019-01-29 01:11:46', '[pdf-embedder url="https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2019/01/new-thailand-reclamation-water-treatment-palnt.pdf" title="media-release_mou-iwk"]', 'Ranhill’s New Thailand Reclamation Water Treatment Plant To Begin Operations', '', 'inherit', 'closed', 'closed', '', '4579-autosave-v1', '', '', '2019-01-29 01:11:46', '2019-01-29 01:11:46', '', 4579, 'http://www.investors-watch.com/wp-staging/ranhill/4579-autosave-v1/', 0, 'revision', '', 0),
(4584, 1, '2019-01-29 01:11:58', '2019-01-29 01:11:58', '[pdf-embedder url="https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2019/01/new-thailand-reclamation-water-treatment-palnt.pdf" title="media-release"]', 'Ranhill’s New Thailand Reclamation Water Treatment Plant To Begin Operations', '', 'inherit', 'closed', 'closed', '', '4579-revision-v1', '', '', '2019-01-29 01:11:58', '2019-01-29 01:11:58', '', 4579, 'http://www.investors-watch.com/wp-staging/ranhill/4579-revision-v1/', 0, 'revision', '', 0),
(4585, 1, '2019-01-29 01:27:40', '2019-01-29 01:27:40', '', 'Press Releases', '', 'inherit', 'closed', 'closed', '', '3702-autosave-v1', '', '', '2019-01-29 01:27:40', '2019-01-29 01:27:40', '', 3702, 'http://www.investors-watch.com/wp-staging/ranhill/3702-autosave-v1/', 0, 'revision', '', 0),
(4586, 1, '2019-01-29 01:30:07', '2019-01-29 01:30:07', '', 'Press Releases', '', 'inherit', 'closed', 'closed', '', '3702-revision-v1', '', '', '2019-01-29 01:30:07', '2019-01-29 01:30:07', '', 3702, 'http://www.investors-watch.com/wp-staging/ranhill/3702-revision-v1/', 0, 'revision', '', 0),
(4588, 1, '2019-02-20 08:35:34', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2019-02-20 08:35:34', '0000-00-00 00:00:00', '', 0, 'http://www.investors-watch.com/wp-staging/ranhill/?p=4588', 0, 'post', '', 0),
(4589, 1, '2019-02-20 08:37:47', '2019-02-20 08:37:47', '', 'Our Businesses', '', 'inherit', 'closed', 'closed', '', '3860-revision-v1', '', '', '2019-02-20 08:37:47', '2019-02-20 08:37:47', '', 3860, 'http://www.investors-watch.com/wp-staging/ranhill/3860-revision-v1/', 0, 'revision', '', 0),
(4590, 1, '2019-02-20 08:44:23', '2019-02-20 08:44:23', '', 'Our Businesses', '', 'inherit', 'closed', 'closed', '', '28-revision-v1', '', '', '2019-02-20 08:44:23', '2019-02-20 08:44:23', '', 28, 'http://www.investors-watch.com/wp-staging/ranhill/28-revision-v1/', 0, 'revision', '', 0) ;

#
# End of data contents of table `wp2o_posts`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_revslider_css`
#

DROP TABLE IF EXISTS `wp2o_revslider_css`;


#
# Table structure of table `wp2o_revslider_css`
#

CREATE TABLE `wp2o_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  `hover` longtext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `advanced` longtext COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_revslider_css`
#
INSERT INTO `wp2o_revslider_css` ( `id`, `handle`, `settings`, `hover`, `params`, `advanced`) VALUES
(1, '.tp-caption.medium_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"700","font-size":"20px","line-height":"20px","font-family":"Arial","padding":"2px 4px","border-width":"0px","border-style":"none","background-color":"#888"}', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","margin":"0px","white-space":"nowrap"},"hover":""}'),
(2, '.tp-caption.small_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"700","font-size":"14px","line-height":"20px","font-family":"Arial","border-width":"0px","border-style":"none"}', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","margin":"0px","white-space":"nowrap"},"hover":""}'),
(3, '.tp-caption.medium_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"700","font-size":"20px","line-height":"20px","font-family":"Arial","border-width":"0px","border-style":"none"}', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","margin":"0px","white-space":"nowrap"},"hover":""}'),
(4, '.tp-caption.large_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"700","font-size":"40px","line-height":"40px","font-family":"Arial","border-width":"0px","border-style":"none"}', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","margin":"0px","white-space":"nowrap"},"hover":""}'),
(5, '.tp-caption.very_large_text', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"700","font-size":"60px","line-height":"60px","font-family":"Arial","border-width":"0px","border-style":"none"}', '{"idle":{"position":"absolute","text-shadow":"0px 2px 5px rgba(0, 0, 0, 0.5)","margin":"0px","white-space":"nowrap","letter-spacing":"-2px"},"hover":""}'),
(6, '.tp-caption.very_big_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"800","font-size":"60px","line-height":"60px","font-family":"Arial","border-width":"0px","border-style":"none","padding":"0px 4px","background-color":"#000"}', '{"idle":{"position":"absolute","text-shadow":"none","margin":"0px","white-space":"nowrap","padding-top":"1px"},"hover":""}'),
(7, '.tp-caption.very_big_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#000","font-weight":"700","font-size":"60px","line-height":"60px","font-family":"Arial","border-width":"0px","border-style":"none","padding":"0px 4px","background-color":"#fff"}', '{"idle":{"position":"absolute","text-shadow":"none","margin":"0px","white-space":"nowrap","padding-top":"1px"},"hover":""}'),
(8, '.tp-caption.modern_medium_fat', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#000","font-weight":"800","font-size":"24px","line-height":"20px","font-family":"\\"Open Sans\\", sans-serif","border-width":"0px","border-style":"none"}', '{"idle":{"position":"absolute","text-shadow":"none","margin":"0px","white-space":"nowrap"},"hover":""}'),
(9, '.tp-caption.modern_medium_fat_white', '{"translated":5,"type":"text","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":""}'),
(10, '.tp-caption.modern_medium_light', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#000","font-weight":"300","font-size":"24px","line-height":"20px","font-family":"\\"Open Sans\\", sans-serif","border-width":"0px","border-style":"none"}', '{"idle":{"position":"absolute","text-shadow":"none","margin":"0px","white-space":"nowrap"},"hover":""}'),
(11, '.tp-caption.modern_big_bluebg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"800","font-size":"30px","line-height":"36px","font-family":"\\"Open Sans\\", sans-serif","padding":"3px 10px","border-width":"0px","border-style":"none","background-color":"#4e5b6c"}', '{"idle":{"position":"absolute","text-shadow":"none","margin":"0px","letter-spacing":"0"},"hover":""}'),
(12, '.tp-caption.modern_big_redbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"300","font-size":"30px","line-height":"36px","font-family":"\\"Open Sans\\", sans-serif","padding":"3px 10px","border-width":"0px","border-style":"none","background-color":"#de543e"}', '{"idle":{"position":"absolute","text-shadow":"none","padding-top":"1px","margin":"0px","letter-spacing":"0"},"hover":""}'),
(13, '.tp-caption.modern_small_text_dark', '{"translated":5,"type":"text","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":""}'),
(14, '.tp-caption.boxshadow', '{"translated":5,"type":"text","version":"4"}', 'null', '[]', '{"idle":{"-moz-box-shadow":"0px 0px 20px rgba(0, 0, 0, 0.5)","-webkit-box-shadow":"0px 0px 20px rgba(0, 0, 0, 0.5)","box-shadow":"0px 0px 20px rgba(0, 0, 0, 0.5)"},"hover":""}'),
(15, '.tp-caption.black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#000"}', '{"idle":{"text-shadow":"none"},"hover":""}'),
(16, '.tp-caption.noshadow', '{"translated":5,"type":"text","version":"4"}', 'null', '[]', '{"idle":{"text-shadow":"none"},"hover":""}'),
(17, '.tp-caption.thinheadline_dark', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"rgba(0,0,0,0.85)","font-weight":"300","font-size":"30px","line-height":"30px","font-family":"\\"Open Sans\\"","background-color":"transparent"}', '{"idle":{"position":"absolute","text-shadow":"none"},"hover":""}'),
(18, '.tp-caption.thintext_dark', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"rgba(0,0,0,0.85)","font-weight":"300","font-size":"16px","line-height":"26px","font-family":"\\"Open Sans\\"","background-color":"transparent"}', '{"idle":{"position":"absolute","text-shadow":"none"},"hover":""}'),
(19, '.tp-caption.largeblackbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#000","padding":"0px 20px","border-radius":"0px"}', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}'),
(20, '.tp-caption.largepinkbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#db4360","padding":"0px 20px","border-radius":"0px"}', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}'),
(21, '.tp-caption.largewhitebg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#000","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#fff","padding":"0px 20px","border-radius":"0px"}', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}'),
(22, '.tp-caption.largegreenbg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"color":"#fff","font-weight":"300","font-size":"50px","line-height":"70px","font-family":"\\"Open Sans\\"","background-color":"#67ae73","padding":"0px 20px","border-radius":"0px"}', '{"idle":{"position":"absolute","text-shadow":"none","-webkit-border-radius":"0px","-moz-border-radius":"0px"},"hover":""}'),
(23, '.tp-caption.excerpt', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"36px","line-height":"36px","font-weight":"700","font-family":"Arial","color":"#ffffff","text-decoration":"none","background-color":"rgba(0, 0, 0, 1)","padding":"1px 4px 0px 4px","border-width":"0px","border-color":"rgb(255, 255, 255)","border-style":"none"}', '{"idle":{"text-shadow":"none","margin":"0px","letter-spacing":"-1.5px","width":"150px","white-space":"normal !important","height":"auto"},"hover":""}'),
(24, '.tp-caption.large_bold_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"60px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(102, 102, 102)","text-decoration":"none","background-color":"transparent","padding":"1px 4px 0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":{"text-shadow":"none","margin":"0px"},"hover":""}'),
(25, '.tp-caption.medium_thin_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"34px","line-height":"30px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(102, 102, 102)","text-decoration":"none","background-color":"transparent","padding":"1px 4px 0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":{"text-shadow":"none","margin":"0px"},"hover":""}'),
(26, '.tp-caption.small_thin_grey', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"18px","line-height":"26px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(117, 117, 117)","text-decoration":"none","background-color":"transparent","padding":"1px 4px 0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":{"text-shadow":"none","margin":"0px"},"hover":""}'),
(27, '.tp-caption.lightgrey_divider', '{"translated":5,"type":"text","version":"4"}', 'null', '{"text-decoration":"none","background-color":"rgba(235, 235, 235, 1)","border-width":"0px","border-color":"rgb(34, 34, 34)","border-style":"none"}', '{"idle":{"width":"370px","height":"3px","background-position":"initial initial","background-repeat":"initial initial"},"hover":""}'),
(28, '.tp-caption.large_bold_darkblue', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"58px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(52, 73, 94)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(29, '.tp-caption.medium_bg_darkblue', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(52, 73, 94)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(30, '.tp-caption.medium_bold_red', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"24px","line-height":"30px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(227, 58, 12)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(31, '.tp-caption.medium_light_red', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"21px","line-height":"26px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(227, 58, 12)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(32, '.tp-caption.medium_bg_red', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(227, 58, 12)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(33, '.tp-caption.medium_bold_orange', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"24px","line-height":"30px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(243, 156, 18)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(34, '.tp-caption.medium_bg_orange', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(243, 156, 18)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(35, '.tp-caption.grassfloor', '{"translated":5,"type":"text","version":"4"}', 'null', '{"text-decoration":"none","background-color":"rgba(160, 179, 151, 1)","border-width":"0px","border-color":"rgb(34, 34, 34)","border-style":"none"}', '{"idle":{"width":"4000px","height":"150px"},"hover":""}'),
(36, '.tp-caption.large_bold_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"58px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(37, '.tp-caption.medium_light_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"30px","line-height":"36px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(38, '.tp-caption.mediumlarge_light_white', '{"translated":5,"type":"text","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":""}'),
(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","text-align":"center","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(40, '.tp-caption.medium_bg_asbestos', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"20px","line-height":"20px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(127, 140, 141)","padding":"10px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(41, '.tp-caption.medium_light_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"30px","line-height":"36px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(0, 0, 0)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(42, '.tp-caption.large_bold_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"58px","line-height":"60px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(0, 0, 0)","text-decoration":"none","background-color":"transparent","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(43, '.tp-caption.mediumlarge_light_darkblue', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"34px","line-height":"40px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(52, 73, 94)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(44, '.tp-caption.small_light_white', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"17px","line-height":"28px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"transparent","padding":"0px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(45, '.tp-caption.roundedimage', '{"translated":5,"type":"text","version":"4"}', 'null', '{"border-width":"0px","border-color":"rgb(34, 34, 34)","border-style":"none"}', '{"idle":[],"hover":""}'),
(46, '.tp-caption.large_bg_black', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"40px","line-height":"40px","font-weight":"800","font-family":"\\"Open Sans\\"","color":"rgb(255, 255, 255)","text-decoration":"none","background-color":"rgb(0, 0, 0)","padding":"10px 20px 15px","border-width":"0px","border-color":"rgb(255, 214, 88)","border-style":"none"}', '{"idle":[],"hover":""}'),
(47, '.tp-caption.mediumwhitebg', '{"translated":5,"type":"text","version":"4"}', 'null', '{"font-size":"30px","line-height":"30px","font-weight":"300","font-family":"\\"Open Sans\\"","color":"rgb(0, 0, 0)","text-decoration":"none","background-color":"rgb(255, 255, 255)","padding":"5px 15px 10px","border-width":"0px","border-color":"rgb(0, 0, 0)","border-style":"none"}', '{"idle":{"text-shadow":"none"},"hover":""}'),
(48, '.tp-caption.MarkerDisplay', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ff0000","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0px","0px","0px","0px"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","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":""}'),
(49, '.tp-caption.Restaurant-Display', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"color":"#ffffff","font-size":"120px","line-height":"120px","font-weight":"700","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}', '{"idle":"","hover":""}'),
(50, '.tp-caption.Restaurant-Cursive', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"color":"#ffffff","font-size":"30px","line-height":"30px","font-weight":"400","font-style":"normal","font-family":"Nothing you could do","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}', '{"idle":{"letter-spacing":"2px"},"hover":""}'),
(51, '.tp-caption.Restaurant-ScrollDownText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"color":"#ffffff","font-size":"17px","line-height":"17px","font-weight":"400","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}', '{"idle":{"letter-spacing":"2px"},"hover":""}'),
(52, '.tp-caption.Restaurant-Description', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"color":"#ffffff","font-size":"20px","line-height":"30px","font-weight":"300","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}', '{"idle":{"letter-spacing":"3px"},"hover":""}'),
(53, '.tp-caption.Restaurant-Price', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0"}', '{"color":"#ffffff","font-size":"30px","line-height":"30px","font-weight":"300","font-style":"normal","font-family":"Roboto","padding":["0","0","0","0"],"text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}', '{"idle":{"letter-spacing":"3px"},"hover":""}'),
(54, '.tp-caption.Restaurant-Menuitem', '{"hover":"false","type":"text","version":"5.0","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":""}'),
(55, '.tp-caption.Furniture-LogoText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(56, '.tp-caption.Furniture-Plus', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["30px","30px","30px","30px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","speed":"0.5","easing":"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":""}'),
(57, '.tp-caption.Furniture-Title', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(58, '.tp-caption.Furniture-Subtitle', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(59, '.tp-caption.Gym-Display', '{"translated":5,"type":"","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":"80px","line-height":"70px","font-weight":"900","font-style":"normal","font-family":"Raleway","padding":"0 0 0 0","text-decoration":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":"0 0 0 0","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_rotation":"0","2d_origin_x":"50","2d_origin_y":"50","pers":"600"}', '{"idle":[""],"hover":""}'),
(60, '.tp-caption.Gym-Subline', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(61, '.tp-caption.Gym-SmallText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(62, '.tp-caption.Fashion-SmallText', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(63, '.tp-caption.Fashion-BigDisplay', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(64, '.tp-caption.Fashion-TextBlock', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(65, '.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":""}'),
(66, '.tp-caption.Sports-DisplayFat', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(67, '.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":""}'),
(68, '.tp-caption.Instagram-Caption', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(69, '.tp-caption.News-Title', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(70, '.tp-caption.News-Subtitle', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"0.65","text-decoration":"none","background-color":"#ffffff","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"solid","border-width":"0px","border-radius":["0","0","0px","0"],"opacity":"1","scalex":"1","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":""}'),
(71, '.tp-caption.Photography-Display', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(72, '.tp-caption.Photography-Subline', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(73, '.tp-caption.Photography-ImageHover', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"0.5","scalex":"0.8","scaley":"0.8","skewx":"0","skewy":"0","xrotate":"0","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":""}'),
(74, '.tp-caption.Photography-Menuitem', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#00ffde","background-transparency":"0.65","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(75, '.tp-caption.Photography-Textblock', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(76, '.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 `wp2o_revslider_css` ( `id`, `handle`, `settings`, `hover`, `params`, `advanced`) VALUES
(77, '.tp-caption.Photography-ImageHover2', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"0.5","scalex":"0.8","scaley":"0.8","skewx":"0","skewy":"0","xrotate":"0","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":""}'),
(78, '.tp-caption.WebProduct-Title', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(79, '.tp-caption.WebProduct-SubTitle', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(80, '.tp-caption.WebProduct-Content', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(81, '.tp-caption.WebProduct-Menuitem', '{"hover":"true","version":"5.0","translated":"5"}', '{"color":"#999999","color-transparency":"1","text-decoration":"none","background-color":"#ffffff","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(82, '.tp-caption.WebProduct-Title-Light', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(83, '.tp-caption.WebProduct-SubTitle-Light', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(84, '.tp-caption.WebProduct-Content-Light', '{"hover":"false","version":"5.0","translated":"5"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(85, '.tp-caption.FatRounded', '{"hover":"true","type":"text","version":"5.0","translated":"5"}', '{"color":"#fff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"1","border-color":"#d3d3d3","border-transparency":"1","border-style":"none","border-width":"0px","border-radius":["50px","50px","50px","50px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","css_cursor":"pointer","speed":"300","easing":"Linear.easeNone"}', '{"color":"#fff","color-transparency":"1","font-size":"30px","line-height":"30px","font-weight":"900","font-style":"normal","font-family":"Raleway","padding":["20px","22px","20px","25px"],"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":""}'),
(86, '.tp-caption.NotGeneric-Title', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(87, '.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":""}'),
(88, '.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":""}'),
(89, '.tp-caption.NotGeneric-Icon', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1","border-radius":["0px","0px","0px","0px"],"opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","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":""}'),
(90, '.tp-caption.NotGeneric-Menuitem', '{"hover":"true","translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"1","border-style":"solid","border-width":"1px","border-radius":"0px 0px 0px 0px","opacity":"1","scalex":"1","scaley":"1","skewx":"0","skewy":"0","xrotate":"0","yrotate":"0","2d_rotation":"0","css_cursor":"pointer","speed":"300","easing":"Power1.easeInOut"}', '{"color":"#ffffff","color-transparency":"1","font-size":"14px","line-height":"14px","font-weight":"500","font-style":"normal","font-family":"Raleway","padding":"27px 30px 27px 30px","text-decoration":"none","background-color":"#000000","background-transparency":"0","border-color":"#ffffff","border-transparency":"0.15","border-style":"solid","border-width":"1px","border-radius":"0px 0px 0px 0px","z":"0","skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":"0","yrotate":"0","2d_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":""}'),
(91, '.tp-caption.MarkerStyle', '{"translated":5,"type":"text","version":"5.0"}', '{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"opacity":"1","scalex":"1","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":""}'),
(92, '.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":""}'),
(93, '.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":""}'),
(94, '.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":""}'),
(95, '.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":""}'),
(96, '.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":""}'),
(97, '.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":""}'),
(98, '.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":""}'),
(99, '.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":""}'),
(100, '.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 `wp2o_revslider_css` ( `id`, `handle`, `settings`, `hover`, `params`, `advanced`) VALUES
(101, '.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":""}'),
(102, '.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":""}'),
(103, '.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":""}'),
(104, '.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":""}'),
(105, '.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":""}'),
(106, '.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":""}'),
(107, '.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":""}'),
(108, '.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":""}'),
(109, '.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":""}') ;

#
# End of data contents of table `wp2o_revslider_css`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_revslider_layer_animations`
#

DROP TABLE IF EXISTS `wp2o_revslider_layer_animations`;


#
# Table structure of table `wp2o_revslider_layer_animations`
#

CREATE TABLE `wp2o_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `params` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_revslider_layer_animations`
#
INSERT INTO `wp2o_revslider_layer_animations` ( `id`, `handle`, `params`, `settings`) VALUES
(1, 'Fade Zoom', '{"movex":"0","movey":"0","movez":"0","rotationx":"0","rotationy":"0","rotationz":"0","scalex":"0","scaley":"0","skewx":"0","skewy":"0","captionopacity":"100","captionperspective":"600","originx":"50","originy":"50"}', NULL) ;

#
# End of data contents of table `wp2o_revslider_layer_animations`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_revslider_navigations`
#

DROP TABLE IF EXISTS `wp2o_revslider_navigations`;


#
# Table structure of table `wp2o_revslider_navigations`
#

CREATE TABLE `wp2o_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_revslider_navigations`
#

#
# End of data contents of table `wp2o_revslider_navigations`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_revslider_sliders`
#

DROP TABLE IF EXISTS `wp2o_revslider_sliders`;


#
# Table structure of table `wp2o_revslider_sliders`
#

CREATE TABLE `wp2o_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `alias` tinytext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  `type` varchar(191) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_revslider_sliders`
#
INSERT INTO `wp2o_revslider_sliders` ( `id`, `title`, `alias`, `params`, `settings`, `type`) VALUES
(1, 'Home Spa', 'spa', '{"hero_active":"-1","source_type":"gallery","instagram-count":"","instagram-transient":"1200","instagram-type":"user","instagram-user-id":"","flickr-count":"","flickr-transient":"1200","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":"album","facebook-album":"","facebook-album-select":"","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-transient":"1200","youtube-api":"","youtube-channel-id":"","youtube-type-source":"channel","youtube-playlist":"","youtube-playlist-select":"","vimeo-count":"","vimeo-transient":"1200","vimeo-type-source":"user","vimeo-username":"","vimeo-groupname":"","vimeo-albumid":"","vimeo-channelname":"","product_types":"product","product_category":"","posts_list":"","fetch_type":"cat_tag","post_types":"post","post_category":"","product_sortby":"ID","product_sort_direction":"DESC","max_slider_products":"30","excerpt_limit_product":"55","reg_price_from":"","reg_price_to":"","sale_price_from":"","sale_price_to":"","instock_only":"off","featured_only":"off","post_sortby":"ID","posts_sort_direction":"DESC","max_slider_posts":"30","excerpt_limit":"55","title":"Home Spa","alias":"spa","shortcode":"[rev_slider alias=\\\\\\"spa\\\\\\"]","slider-type":"standard","slider_type":"fullscreen","width":"1380","height":"600","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_min_height":"","autowidth_force":"off","fullscreen_offset_container":"","fullscreen_offset_size":"","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","def-layer_selection":"off","slider_id":"","delay":"4000","start_js_after_delay":"0","def-slide_transition":"fade","def-transition_duration":"300","def-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_end_offset_x":"0","def-kb_end_offset_y":"0","def-kb_start_rotate":"0","def-kb_end_rotate":"0","def-kb_duration":"10000","0":"blank","start_with_slide_enable":"off","start_with_slide":"1","first_transition_active":"off","first_transition_type":"fade","first_transition_duration":"300","first_transition_slot_amount":"7","stop_on_hover":"off","stop_slider":"off","stop_after_loops":"0","stop_at_slide":"0","shuffle":"off","loop_slide":"off","label_viewport":"off","viewport_start":"wait","viewport_area":"80","waitforinit":"off","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":"","padding":"0","show_background_image":"off","background_image":"http:\\/\\/themes.muffingroup.com\\/betheme\\/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":"off","rtl_arrows":"off","navigation_arrow_style":"round","navigation_arrows_preset":"default","ph-round-arrows-hover-bg-color-color-rgba-def":"off","ph-round-arrows-hover-bg-color-color-rgba":"#000000","ph-round-arrows-arrow-size-custom-def":"off","ph-round-arrows-arrow-size-custom":"20","ph-round-arrows-arrow-color-color-def":"off","ph-round-arrows-arrow-color-color":"#ffffff","ph-round-arrows-bg-size-custom-def":"off","ph-round-arrows-bg-size-custom":"40","ph-round-arrows-bg-color-custom-def":"off","ph-round-arrows-bg-color-custom":"0,0,0,0.5","arrows_always_on":"false","hide_arrows":"200","hide_arrows_mobile":"1200","hide_arrows_on_mobile":"off","arrows_under_hidden":"0","hide_arrows_over":"off","arrows_over_hidden":"0","leftarrow_align_hor":"left","leftarrow_align_vert":"center","leftarrow_offset_hor":"20","leftarrow_offset_vert":"0","leftarrow_position":"slider","rightarrow_align_hor":"right","rightarrow_align_vert":"center","rightarrow_offset_hor":"20","rightarrow_offset_vert":"0","rightarrow_position":"slider","enable_bullets":"off","rtl_bullets":"off","navigation_bullets_style":"round","navigation_bullets_preset":"default","ph-round-bullets-hover-bullet-bg-color-def":"off","ph-round-bullets-hover-bullet-bg-color":"#666666","ph-round-bullets-border-size-custom-def":"off","ph-round-bullets-border-size-custom":"3","ph-round-bullets-border-color-color-def":"off","ph-round-bullets-border-color-color":"#e5e5e5","ph-round-bullets-bullet-bg-bottom-color-def":"off","ph-round-bullets-bullet-bg-bottom-color":"#e1e1e1","ph-round-bullets-bullet-bg-top-color-def":"off","ph-round-bullets-bullet-bg-top-color":"#999999","ph-round-bullets-bullet-size-custom-def":"off","ph-round-bullets-bullet-size-custom":"12","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","bullets_position":"slider","enable_thumbnails":"off","rtl_thumbnails":"off","thumbnails_padding":"5","span_thumbnails_wrapper":"off","thumbnails_wrapper_color":"transparent","thumbnails_wrapper_opacity":"100","thumbnails_style":"round","navigation_thumbs_preset":"default","ph-round-thumbs-title-font-size-custom-def":"off","ph-round-thumbs-title-font-size-custom":"12","ph-round-thumbs-title-color-color-rgba-def":"off","ph-round-thumbs-title-color-color-rgba":"#ffffff","ph-round-thumbs-title-bg-color-rgba-def":"off","ph-round-thumbs-title-bg-color-rgba":"rgba(0,0,0,0.85)","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","thumbnails_position":"slider","enable_tabs":"off","rtl_tabs":"off","tabs_padding":"5","span_tabs_wrapper":"off","tabs_wrapper_color":"transparent","tabs_wrapper_opacity":"5","tabs_style":"round","navigation_tabs_preset":"default","ph-round-tabs-param2-size-custom-def":"off","ph-round-tabs-param2-size-custom":"14","ph-round-tabs-param2-color-color-rgba-def":"off","ph-round-tabs-param2-color-color-rgba":"0,0,0,0","ph-round-tabs-contentcolor-color-rgba-def":"off","ph-round-tabs-contentcolor-color-rgba":"#333333","ph-round-tabs-bgcolor-color-rgba-def":"off","ph-round-tabs-bgcolor-color-rgba":"rgba(0,0,0,0)","ph-round-tabs-hover-bg-color-color-rgba-def":"off","ph-round-tabs-hover-bg-color-color-rgba":"#eeeeee","ph-round-tabs-param1-size-custom-def":"off","ph-round-tabs-param1-size-custom":"12","ph-round-tabs-param1-color-color-rgba-def":"off","ph-round-tabs-param1-color-color-rgba":"rgba(51,51,51,0.5)","ph-round-tabs-image-size-custom-def":"off","ph-round-tabs-image-size-custom":"60","ph-round-tabs-border-size-custom-def":"off","ph-round-tabs-border-size-custom":"1","ph-round-tabs-border-color-color-rgba-def":"off","ph-round-tabs-border-color-color-rgba":"#e5e5e5","ph-round-tabs-font-family-font_family-def":"off","ph-round-tabs-font-family-font_family":"Roboto","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","tabs_position":"slider","touchenabled":"off","drag_block_vertical":"off","swipe_velocity":"0.7","swipe_min_touches":"1","swipe_direction":"horizontal","keyboard_navigation":"off","keyboard_direction":"horizontal","mousescroll_navigation":"off","mousescroll_navigation_reverse":"default","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","ddd_parallax":"off","ddd_parallax_shadow":"off","ddd_parallax_bgfreeze":"off","ddd_parallax_overflow":"off","ddd_parallax_layer_overflow":"off","ddd_parallax_zcorrection":"65","parallax_type":"mouse","parallax_origo":"enterpoint","parallax_speed":"400","parallax_level_16":"55","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","parallax_level_11":"47","parallax_level_12":"48","parallax_level_13":"49","parallax_level_14":"50","parallax_level_15":"51","lazy_load_type":"none","simplify_ie8_ios4":"off","show_alternative_type":"off","show_alternate_image":"","ignore_height_changes":"off","ignore_height_changes_px":"0","jquery_noconflict":"on","js_to_body":"false","output_type":"none","jquery_debugmode":"off","custom_css":"","custom_javascript":""}', '{"version":5}', ''),
(2, 'STAGING', 'staging', '{"hero_active":"-1","source_type":"gallery","instagram-count":"","instagram-transient":"1200","instagram-type":"user","instagram-user-id":"","flickr-count":"","flickr-transient":"1200","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":"album","facebook-album":"","facebook-album-select":"","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-transient":"1200","youtube-api":"","youtube-channel-id":"","youtube-type-source":"channel","youtube-playlist":"","youtube-playlist-select":"","vimeo-count":"","vimeo-transient":"1200","vimeo-type-source":"user","vimeo-username":"","vimeo-groupname":"","vimeo-albumid":"","vimeo-channelname":"","product_types":"product","product_category":"","posts_list":"","fetch_type":"cat_tag","post_types":"post","post_category":"","product_sortby":"ID","product_sort_direction":"DESC","max_slider_products":"30","excerpt_limit_product":"55","reg_price_from":"","reg_price_to":"","sale_price_from":"","sale_price_to":"","instock_only":"off","featured_only":"off","post_sortby":"ID","posts_sort_direction":"DESC","max_slider_posts":"30","excerpt_limit":"55","title":"STAGING","alias":"staging","shortcode":"[rev_slider alias=\\"staging\\"]","slider-type":"standard","slider_type":"fullscreen","width":"1380","height":"600","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_min_height":"","autowidth_force":"off","fullscreen_offset_container":"","fullscreen_offset_size":"","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","def-layer_selection":"off","slider_id":"","delay":"4000","start_js_after_delay":"0","def-slide_transition":"fade","def-transition_duration":"300","def-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_end_offset_x":"0","def-kb_end_offset_y":"0","def-kb_start_rotate":"0","def-kb_end_rotate":"0","def-kb_duration":"10000","0":"blank","start_with_slide_enable":"off","start_with_slide":"1","first_transition_active":"off","first_transition_type":"fade","first_transition_duration":"300","first_transition_slot_amount":"7","stop_on_hover":"off","stop_slider":"off","stop_after_loops":"0","stop_at_slide":"0","shuffle":"off","loop_slide":"off","label_viewport":"off","viewport_start":"wait","viewport_area":"80","waitforinit":"off","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":"","padding":"0","show_background_image":"off","background_image":"http:\\/\\/themes.muffingroup.com\\/betheme\\/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":"off","rtl_arrows":"off","navigation_arrow_style":"round","navigation_arrows_preset":"default","ph-round-arrows-hover-bg-color-color-rgba-def":"off","ph-round-arrows-hover-bg-color-color-rgba":"#000000","ph-round-arrows-arrow-size-custom-def":"off","ph-round-arrows-arrow-size-custom":"20","ph-round-arrows-arrow-color-color-def":"off","ph-round-arrows-arrow-color-color":"#ffffff","ph-round-arrows-bg-size-custom-def":"off","ph-round-arrows-bg-size-custom":"40","ph-round-arrows-bg-color-custom-def":"off","ph-round-arrows-bg-color-custom":"0,0,0,0.5","arrows_always_on":"false","hide_arrows":"200","hide_arrows_mobile":"1200","hide_arrows_on_mobile":"off","arrows_under_hidden":"0","hide_arrows_over":"off","arrows_over_hidden":"0","leftarrow_align_hor":"left","leftarrow_align_vert":"center","leftarrow_offset_hor":"20","leftarrow_offset_vert":"0","leftarrow_position":"slider","rightarrow_align_hor":"right","rightarrow_align_vert":"center","rightarrow_offset_hor":"20","rightarrow_offset_vert":"0","rightarrow_position":"slider","enable_bullets":"off","rtl_bullets":"off","navigation_bullets_style":"round","navigation_bullets_preset":"default","ph-round-bullets-hover-bullet-bg-color-def":"off","ph-round-bullets-hover-bullet-bg-color":"#666666","ph-round-bullets-border-size-custom-def":"off","ph-round-bullets-border-size-custom":"3","ph-round-bullets-border-color-color-def":"off","ph-round-bullets-border-color-color":"#e5e5e5","ph-round-bullets-bullet-bg-bottom-color-def":"off","ph-round-bullets-bullet-bg-bottom-color":"#e1e1e1","ph-round-bullets-bullet-bg-top-color-def":"off","ph-round-bullets-bullet-bg-top-color":"#999999","ph-round-bullets-bullet-size-custom-def":"off","ph-round-bullets-bullet-size-custom":"12","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","bullets_position":"slider","enable_thumbnails":"off","rtl_thumbnails":"off","thumbnails_padding":"5","span_thumbnails_wrapper":"off","thumbnails_wrapper_color":"transparent","thumbnails_wrapper_opacity":"100","thumbnails_style":"round","navigation_thumbs_preset":"default","ph-round-thumbs-title-font-size-custom-def":"off","ph-round-thumbs-title-font-size-custom":"12","ph-round-thumbs-title-color-color-rgba-def":"off","ph-round-thumbs-title-color-color-rgba":"#ffffff","ph-round-thumbs-title-bg-color-rgba-def":"off","ph-round-thumbs-title-bg-color-rgba":"rgba(0,0,0,0.85)","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","thumbnails_position":"slider","enable_tabs":"off","rtl_tabs":"off","tabs_padding":"5","span_tabs_wrapper":"off","tabs_wrapper_color":"transparent","tabs_wrapper_opacity":"5","tabs_style":"round","navigation_tabs_preset":"default","ph-round-tabs-param2-size-custom-def":"off","ph-round-tabs-param2-size-custom":"14","ph-round-tabs-param2-color-color-rgba-def":"off","ph-round-tabs-param2-color-color-rgba":"0,0,0,0","ph-round-tabs-contentcolor-color-rgba-def":"off","ph-round-tabs-contentcolor-color-rgba":"#333333","ph-round-tabs-bgcolor-color-rgba-def":"off","ph-round-tabs-bgcolor-color-rgba":"rgba(0,0,0,0)","ph-round-tabs-hover-bg-color-color-rgba-def":"off","ph-round-tabs-hover-bg-color-color-rgba":"#eeeeee","ph-round-tabs-param1-size-custom-def":"off","ph-round-tabs-param1-size-custom":"12","ph-round-tabs-param1-color-color-rgba-def":"off","ph-round-tabs-param1-color-color-rgba":"rgba(51,51,51,0.5)","ph-round-tabs-image-size-custom-def":"off","ph-round-tabs-image-size-custom":"60","ph-round-tabs-border-size-custom-def":"off","ph-round-tabs-border-size-custom":"1","ph-round-tabs-border-color-color-rgba-def":"off","ph-round-tabs-border-color-color-rgba":"#e5e5e5","ph-round-tabs-font-family-font_family-def":"off","ph-round-tabs-font-family-font_family":"Roboto","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","tabs_position":"slider","touchenabled":"off","drag_block_vertical":"off","swipe_velocity":"0.7","swipe_min_touches":"1","swipe_direction":"horizontal","keyboard_navigation":"off","keyboard_direction":"horizontal","mousescroll_navigation":"off","mousescroll_navigation_reverse":"default","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","ddd_parallax":"off","ddd_parallax_shadow":"off","ddd_parallax_bgfreeze":"off","ddd_parallax_overflow":"off","ddd_parallax_layer_overflow":"off","ddd_parallax_zcorrection":"65","parallax_type":"mouse","parallax_origo":"enterpoint","parallax_speed":"400","parallax_level_16":"55","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","parallax_level_11":"47","parallax_level_12":"48","parallax_level_13":"49","parallax_level_14":"50","parallax_level_15":"51","lazy_load_type":"none","simplify_ie8_ios4":"off","show_alternative_type":"off","show_alternate_image":"","ignore_height_changes":"off","ignore_height_changes_px":"0","jquery_noconflict":"on","js_to_body":"false","output_type":"none","jquery_debugmode":"off","custom_css":"","custom_javascript":""}', NULL, '') ;

#
# End of data contents of table `wp2o_revslider_sliders`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_revslider_slides`
#

DROP TABLE IF EXISTS `wp2o_revslider_slides`;


#
# Table structure of table `wp2o_revslider_slides`
#

CREATE TABLE `wp2o_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_revslider_slides`
#
INSERT INTO `wp2o_revslider_slides` ( `id`, `slider_id`, `slide_order`, `params`, `layers`, `settings`) VALUES
(1, 1, 1, '{"background_type":"image","image":"http:\\/\\/investors-watch.com\\/wp-staging\\/ranhill\\/new\\/wp-content\\/uploads\\/2016\\/07\\/water_edit.jpg","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":["fade"],"0":"Clear","slot_amount":["7"],"transition_rotation":["0"],"transition_duration":["300"],"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"http:\\/\\/localhost:8888\\/ranhill\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","save_performance":"on","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","rs-gallery-type":"gallery","bg_external":"","bg_color":"#E7E7E7","slide_bg_youtube":"","slide_bg_vimeo":"","slide_bg_html_mpeg":"","slide_bg_html_webm":"","slide_bg_html_ogv":"","image_source_type":"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","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":"99","hideslideonmobile":"off","thumb_dimension":"slider","thumb_for_admin":"off","transition_ease_in":["default"],"transition_ease_out":["default"],"ph-round-arrows-bg-color-custom-slide":"off","ph-round-arrows-bg-color-custom":"0,0,0,0.5","ph-round-arrows-bg-size-custom-slide":"off","ph-round-arrows-bg-size-custom":"40","ph-round-arrows-arrow-color-color-slide":"off","ph-round-arrows-arrow-color-color":"#ffffff","ph-round-arrows-arrow-size-custom-slide":"off","ph-round-arrows-arrow-size-custom":"20","ph-round-arrows-hover-bg-color-color-rgba-slide":"off","ph-round-arrows-hover-bg-color-color-rgba":"#000000","ph-round-bullets-bullet-size-custom-slide":"off","ph-round-bullets-bullet-size-custom":"12","ph-round-bullets-bullet-bg-top-color-slide":"off","ph-round-bullets-bullet-bg-top-color":"#999999","ph-round-bullets-bullet-bg-bottom-color-slide":"off","ph-round-bullets-bullet-bg-bottom-color":"#e1e1e1","ph-round-bullets-border-color-color-slide":"off","ph-round-bullets-border-color-color":"#e5e5e5","ph-round-bullets-border-size-custom-slide":"off","ph-round-bullets-border-size-custom":"3","ph-round-bullets-hover-bullet-bg-color-slide":"off","ph-round-bullets-hover-bullet-bg-color":"#666666","params_1":"","params_1_chars":"10","params_2":"","params_2_chars":"10","params_3":"","params_3_chars":"10","params_4":"","params_4_chars":"10","params_5":"","params_5_chars":"10","params_6":"","params_6_chars":"10","params_7":"","params_7_chars":"10","params_8":"","params_8_chars":"10","params_9":"","params_9_chars":"10","params_10":"","params_10_chars":"10","slide_description":"","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","image_id":"3640"}', '[]', '""'),
(2, 1, 2, '{"background_type":"image","image":"http:\\/\\/investors-watch.com\\/wp-staging\\/ranhill\\/new\\/wp-content\\/uploads\\/2016\\/07\\/latest_power.jpg","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":["fade"],"0":"Clear","slot_amount":["7"],"transition_rotation":["0"],"transition_duration":["300"],"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"http:\\/\\/localhost:8888\\/ranhill\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","save_performance":"on","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","rs-gallery-type":"gallery","bg_external":"","bg_color":"#E7E7E7","slide_bg_youtube":"","slide_bg_vimeo":"","slide_bg_html_mpeg":"","slide_bg_html_webm":"","slide_bg_html_ogv":"","image_source_type":"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","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":"99","hideslideonmobile":"off","thumb_dimension":"slider","thumb_for_admin":"off","transition_ease_in":["default"],"transition_ease_out":["default"],"ph-round-arrows-bg-color-custom-slide":"off","ph-round-arrows-bg-color-custom":"0,0,0,0.5","ph-round-arrows-bg-size-custom-slide":"off","ph-round-arrows-bg-size-custom":"40","ph-round-arrows-arrow-color-color-slide":"off","ph-round-arrows-arrow-color-color":"#ffffff","ph-round-arrows-arrow-size-custom-slide":"off","ph-round-arrows-arrow-size-custom":"20","ph-round-arrows-hover-bg-color-color-rgba-slide":"off","ph-round-arrows-hover-bg-color-color-rgba":"#000000","ph-round-bullets-bullet-size-custom-slide":"off","ph-round-bullets-bullet-size-custom":"12","ph-round-bullets-bullet-bg-top-color-slide":"off","ph-round-bullets-bullet-bg-top-color":"#999999","ph-round-bullets-bullet-bg-bottom-color-slide":"off","ph-round-bullets-bullet-bg-bottom-color":"#e1e1e1","ph-round-bullets-border-color-color-slide":"off","ph-round-bullets-border-color-color":"#e5e5e5","ph-round-bullets-border-size-custom-slide":"off","ph-round-bullets-border-size-custom":"3","ph-round-bullets-hover-bullet-bg-color-slide":"off","ph-round-bullets-hover-bullet-bg-color":"#666666","params_1":"","params_1_chars":"10","params_2":"","params_2_chars":"10","params_3":"","params_3_chars":"10","params_4":"","params_4_chars":"10","params_5":"","params_5_chars":"10","params_6":"","params_6_chars":"10","params_7":"","params_7_chars":"10","params_8":"","params_8_chars":"10","params_9":"","params_9_chars":"10","params_10":"","params_10_chars":"10","slide_description":"","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","image_id":"3756"}', '[]', '""'),
(3, 2, 1, '{"background_type":"image","image":"http:\\/\\/investors-watch.com\\/wp-staging\\/ranhill\\/new\\/wp-content\\/uploads\\/2016\\/07\\/water_edit.jpg","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":["fade"],"0":"Clear","slot_amount":["7"],"transition_rotation":["0"],"transition_duration":["300"],"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"http:\\/\\/localhost:8888\\/ranhill\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","save_performance":"on","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","rs-gallery-type":"gallery","bg_external":"","bg_color":"#E7E7E7","slide_bg_youtube":"","slide_bg_vimeo":"","slide_bg_html_mpeg":"","slide_bg_html_webm":"","slide_bg_html_ogv":"","image_source_type":"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","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":"99","hideslideonmobile":"off","thumb_dimension":"slider","thumb_for_admin":"off","transition_ease_in":["default"],"transition_ease_out":["default"],"ph-round-arrows-bg-color-custom-slide":"off","ph-round-arrows-bg-color-custom":"0,0,0,0.5","ph-round-arrows-bg-size-custom-slide":"off","ph-round-arrows-bg-size-custom":"40","ph-round-arrows-arrow-color-color-slide":"off","ph-round-arrows-arrow-color-color":"#ffffff","ph-round-arrows-arrow-size-custom-slide":"off","ph-round-arrows-arrow-size-custom":"20","ph-round-arrows-hover-bg-color-color-rgba-slide":"off","ph-round-arrows-hover-bg-color-color-rgba":"#000000","ph-round-bullets-bullet-size-custom-slide":"off","ph-round-bullets-bullet-size-custom":"12","ph-round-bullets-bullet-bg-top-color-slide":"off","ph-round-bullets-bullet-bg-top-color":"#999999","ph-round-bullets-bullet-bg-bottom-color-slide":"off","ph-round-bullets-bullet-bg-bottom-color":"#e1e1e1","ph-round-bullets-border-color-color-slide":"off","ph-round-bullets-border-color-color":"#e5e5e5","ph-round-bullets-border-size-custom-slide":"off","ph-round-bullets-border-size-custom":"3","ph-round-bullets-hover-bullet-bg-color-slide":"off","ph-round-bullets-hover-bullet-bg-color":"#666666","params_1":"","params_1_chars":"10","params_2":"","params_2_chars":"10","params_3":"","params_3_chars":"10","params_4":"","params_4_chars":"10","params_5":"","params_5_chars":"10","params_6":"","params_6_chars":"10","params_7":"","params_7_chars":"10","params_8":"","params_8_chars":"10","params_9":"","params_9_chars":"10","params_10":"","params_10_chars":"10","slide_description":"","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","image_id":"3640"}', '[]', '""'),
(4, 2, 2, '{"background_type":"image","image":"http:\\/\\/investors-watch.com\\/wp-staging\\/ranhill\\/new\\/wp-content\\/uploads\\/2016\\/07\\/latest_power.jpg","title":"Slide","state":"published","date_from":"","date_to":"","slide_transition":["fade"],"0":"Clear","slot_amount":["7"],"transition_rotation":["0"],"transition_duration":["300"],"delay":"","enable_link":"false","link_type":"regular","link":"","link_open_in":"same","slide_link":"nothing","link_pos":"front","slide_thumb":"http:\\/\\/localhost:8888\\/ranhill\\/wp-content\\/","slide_bg_color":"#E7E7E7","slide_bg_external":"","bg_fit":"cover","bg_fit_x":"100","bg_fit_y":"100","bg_repeat":"no-repeat","bg_position":"center top","bg_position_x":"0","bg_position_y":"0","bg_end_position_x":"0","bg_end_position_y":"0","bg_end_position":"center top","kenburn_effect":"off","kb_start_fit":"100","kb_end_fit":"100","kb_duration":"9000","kb_easing":"Linear.easeNone","save_performance":"on","class_attr":"","id_attr":"","attr_attr":"","data_attr":"","rs-gallery-type":"gallery","bg_external":"","bg_color":"#E7E7E7","slide_bg_youtube":"","slide_bg_vimeo":"","slide_bg_html_mpeg":"","slide_bg_html_webm":"","slide_bg_html_ogv":"","image_source_type":"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","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":"99","hideslideonmobile":"off","thumb_dimension":"slider","thumb_for_admin":"off","transition_ease_in":["default"],"transition_ease_out":["default"],"ph-round-arrows-bg-color-custom-slide":"off","ph-round-arrows-bg-color-custom":"0,0,0,0.5","ph-round-arrows-bg-size-custom-slide":"off","ph-round-arrows-bg-size-custom":"40","ph-round-arrows-arrow-color-color-slide":"off","ph-round-arrows-arrow-color-color":"#ffffff","ph-round-arrows-arrow-size-custom-slide":"off","ph-round-arrows-arrow-size-custom":"20","ph-round-arrows-hover-bg-color-color-rgba-slide":"off","ph-round-arrows-hover-bg-color-color-rgba":"#000000","ph-round-bullets-bullet-size-custom-slide":"off","ph-round-bullets-bullet-size-custom":"12","ph-round-bullets-bullet-bg-top-color-slide":"off","ph-round-bullets-bullet-bg-top-color":"#999999","ph-round-bullets-bullet-bg-bottom-color-slide":"off","ph-round-bullets-bullet-bg-bottom-color":"#e1e1e1","ph-round-bullets-border-color-color-slide":"off","ph-round-bullets-border-color-color":"#e5e5e5","ph-round-bullets-border-size-custom-slide":"off","ph-round-bullets-border-size-custom":"3","ph-round-bullets-hover-bullet-bg-color-slide":"off","ph-round-bullets-hover-bullet-bg-color":"#666666","params_1":"","params_1_chars":"10","params_2":"","params_2_chars":"10","params_3":"","params_3_chars":"10","params_4":"","params_4_chars":"10","params_5":"","params_5_chars":"10","params_6":"","params_6_chars":"10","params_7":"","params_7_chars":"10","params_8":"","params_8_chars":"10","params_9":"","params_9_chars":"10","params_10":"","params_10_chars":"10","slide_description":"","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","image_id":"3756"}', '[]', '""') ;

#
# End of data contents of table `wp2o_revslider_slides`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_revslider_static_slides`
#

DROP TABLE IF EXISTS `wp2o_revslider_static_slides`;


#
# Table structure of table `wp2o_revslider_static_slides`
#

CREATE TABLE `wp2o_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_revslider_static_slides`
#
INSERT INTO `wp2o_revslider_static_slides` ( `id`, `slider_id`, `params`, `layers`, `settings`) VALUES
(1, 1, '{"staticoverflow":"visible","image_id":"","image":""}', '[{"text":"ENRICHING<BR\\/>\\nLIVES THROUGH <BR\\/>\\nSUSTAINABLE<BR\\/>\\nSOLUTIONS","type":"text","special_type":"static","subtype":"","specialsettings":[],"unique_id":1,"left":{"desktop":100},"top":{"desktop":30},"internal_class":"","hover":false,"alias":"ENRICHING LIVES THRO...","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","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_x_end":"0","mask_y_end":"0","mask_speed_end":"inherit","mask_ease_end":"inherit","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_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"whitespace":{"desktop":"nowrap"},"static_start":"1","static_end":"last","speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"middle"},"hiddenunder":false,"resizeme":true,"seo-optimized":false,"link_slide":"nothing","scrollunder_offset":"","style":"News-Title","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":"50px"},"line-height":{"desktop":"50px"},"font-weight":{"desktop":"600"},"color":{"desktop":"#333333"}},"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","deformation":{"font-family":"Open Sans","padding":["0","0","0","0"],"font-style":"normal","color-transparency":"1","text-decoration":"none","text-align":"left","text-transform":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"},"svg":{"svgstroke-color":"transparent","svgstroke-transparency":"1","svgstroke-dasharray":"0","svgstroke-dashoffset":"0","svgstroke-width":"0","svgstroke-hover-color":"transparent","svgstroke-hover-transparency":"1","svgstroke-hover-dasharray":"0","svgstroke-hover-dashoffset":"0","svgstroke-hover-width":"0"},"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"0","zindex":"auto","easing":"Linear.easeNone","css_cursor":"auto"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","serial":0,"split_in_extratime":-10,"split_out_extratime":-10,"endWithSlide":true,"toggle":false,"toggle_use_hover":false,"texttoggle":"","scaleX":{"desktop":""},"scaleY":{"desktop":""},"autolinebreak":false,"scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","layer-selectable":"default","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","mask_speed_start":"inherit","mask_ease_start":"inherit","link":"","link_open_in":"same","pers_start":"inherit","pers_end":"inherit"},{"text":"We provide water to 3.7 million people <BR\\/>and electricity to 1.4 million\\n","type":"text","special_type":"static","subtype":"","specialsettings":[],"unique_id":2,"left":{"desktop":103},"top":{"desktop":120},"internal_class":"","hover":false,"alias":"We provide water to ...","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","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_x_end":"0","mask_y_end":"0","mask_speed_end":"inherit","mask_ease_end":"inherit","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_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"whitespace":{"desktop":"nowrap"},"static_start":"1","static_end":"last","speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"bottom"},"hiddenunder":false,"resizeme":true,"seo-optimized":false,"link_slide":"nothing","scrollunder_offset":"","style":"Fashion-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":500,"endspeed":300,"endtime":9300,"endanimation":"fadeout","endeasing":"nothing","width":-1,"height":-1,"cover_mode":"custom","static_styles":{"font-size":{"desktop":"20px"},"line-height":{"desktop":"20px"},"font-weight":{"desktop":"600"},"color":{"desktop":"#333333"}},"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","deformation":{"font-family":"Open Sans","padding":["0","0","0","0"],"font-style":"normal","color-transparency":"1","text-decoration":"none","text-align":"left","text-transform":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing"},"svg":{"svgstroke-color":"transparent","svgstroke-transparency":"1","svgstroke-dasharray":"0","svgstroke-dashoffset":"0","svgstroke-width":"0","svgstroke-hover-color":"transparent","svgstroke-hover-transparency":"1","svgstroke-hover-dasharray":"0","svgstroke-hover-dashoffset":"0","svgstroke-hover-width":"0"},"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"0","zindex":"auto","easing":"Linear.easeNone","css_cursor":"auto"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","serial":1,"split_in_extratime":-10,"split_out_extratime":-10,"endWithSlide":true,"toggle":false,"toggle_use_hover":false,"texttoggle":"","scaleX":{"desktop":""},"scaleY":{"desktop":""},"autolinebreak":false,"scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","layer-selectable":"default","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 9","type":"image","image_url":"http:\\/\\/www.investors-watch.com\\/wp-staging\\/ranhill\\/wp-content\\/uploads\\/2016\\/07\\/enter.png","scaleX":{"desktop":"94px"},"scaleY":{"desktop":"94px"},"originalWidth":94,"originalHeight":94,"special_type":"static","subtype":"","specialsettings":[],"unique_id":3,"left":{"desktop":0},"top":{"desktop":0},"internal_class":"","hover":false,"alias":"image 9","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","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_x_end":"0","mask_y_end":"0","mask_speed_end":"inherit","mask_ease_end":"inherit","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_rotation":0,"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":"bottom"},"hiddenunder":false,"resizeme":true,"seo-optimized":false,"link_slide":"nothing","scrollunder_offset":"","visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","time":500,"endspeed":300,"endtime":9300,"endanimation":"fadeout","endeasing":"nothing","width":94,"height":94,"cover_mode":"custom","static_styles":{"font-size":{"desktop":"20"},"line-height":{"desktop":"22"},"font-weight":{"desktop":"400"},"color":{"desktop":"#ffffff"}},"x_start":"inherit","y_start":"inherit","z_start":"inherit","x_end":"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","deformation":{"font-family":"","padding":["0","0","0","0"],"font-style":"normal","color-transparency":"1","text-decoration":"none","text-align":"left","text-transform":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"},"svg":{"svgstroke-color":"transparent","svgstroke-transparency":"1","svgstroke-dasharray":"0","svgstroke-dashoffset":"0","svgstroke-width":"0","svgstroke-hover-color":"transparent","svgstroke-hover-transparency":"1","svgstroke-hover-dasharray":"0","svgstroke-hover-dashoffset":"0","svgstroke-hover-width":"0"},"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"0","zindex":"auto","easing":"Linear.easeNone","css_cursor":"pointer"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","serial":2,"split_in_extratime":-10,"split_out_extratime":-10,"endWithSlide":true,"toggle":false,"toggle_use_hover":false,"texttoggle":"","autolinebreak":false,"scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","layer-selectable":"default","layer_action":{"tooltip_event":["click"],"action":["link"],"image_link":["http:\\/\\/investors-watch.com\\/wp-staging\\/ranhill\\/about-us\\/"],"link_open_in":["_self"],"jump_to_slide":["2"],"scrollunder_offset":[""],"actioncallback":[""],"layer_target":["backgroundvideo"],"link_type":["jquery"],"action_delay":[""],"toggle_layer_type":["visible"],"toggle_class":[""]},"parallax_layer_ddd_zlevel":"front","mask_speed_start":"inherit","mask_ease_start":"inherit","link":"","link_open_in":"same","pers_start":"inherit","pers_end":"inherit"}]', '""'),
(2, 2, '{"staticoverflow":"visible","image_id":"","image":""}', '[{"text":"ENRICHING<BR\\/>\\nLIVES THROUGH <BR\\/>\\nSUSTAINABLE<BR\\/>\\nSOLUTIONS","type":"text","special_type":"static","subtype":"","specialsettings":[],"unique_id":1,"left":{"desktop":100},"top":{"desktop":30},"internal_class":"","hover":false,"alias":"ENRICHING LIVES THRO...","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","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_x_end":"0","mask_y_end":"0","mask_speed_end":"inherit","mask_ease_end":"inherit","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_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"whitespace":{"desktop":"nowrap"},"static_start":"1","static_end":"last","speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"middle"},"hiddenunder":false,"resizeme":true,"seo-optimized":false,"link_slide":"nothing","scrollunder_offset":"","style":"News-Title","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":"50px"},"line-height":{"desktop":"50px"},"font-weight":{"desktop":"600"},"color":{"desktop":"#333333"}},"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","deformation":{"font-family":"Open Sans","padding":["0","0","0","0"],"font-style":"normal","color-transparency":"1","text-decoration":"none","text-align":"left","text-transform":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"},"svg":{"svgstroke-color":"transparent","svgstroke-transparency":"1","svgstroke-dasharray":"0","svgstroke-dashoffset":"0","svgstroke-width":"0","svgstroke-hover-color":"transparent","svgstroke-hover-transparency":"1","svgstroke-hover-dasharray":"0","svgstroke-hover-dashoffset":"0","svgstroke-hover-width":"0"},"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"0","zindex":"auto","easing":"Linear.easeNone","css_cursor":"auto"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","serial":0,"split_in_extratime":-10,"split_out_extratime":-10,"endWithSlide":true,"toggle":false,"toggle_use_hover":false,"texttoggle":"","scaleX":{"desktop":""},"scaleY":{"desktop":""},"autolinebreak":false,"scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","layer-selectable":"default","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","mask_speed_start":"inherit","mask_ease_start":"inherit","link":"","link_open_in":"same","pers_start":"inherit","pers_end":"inherit"},{"text":"We provide water to 3.5 million people <BR\\/>and electricity to 1.3 million\\n","type":"text","special_type":"static","subtype":"","specialsettings":[],"unique_id":2,"left":{"desktop":103},"top":{"desktop":120},"internal_class":"","hover":false,"alias":"We provide water to ...","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","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_x_end":"0","mask_y_end":"0","mask_speed_end":"inherit","mask_ease_end":"inherit","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_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"whitespace":{"desktop":"nowrap"},"static_start":"1","static_end":"last","speed":300,"align_hor":{"desktop":"left"},"align_vert":{"desktop":"bottom"},"hiddenunder":false,"resizeme":true,"seo-optimized":false,"link_slide":"nothing","scrollunder_offset":"","style":"Fashion-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":500,"endspeed":300,"endtime":9300,"endanimation":"fadeout","endeasing":"nothing","width":-1,"height":-1,"cover_mode":"custom","static_styles":{"font-size":{"desktop":"20px"},"line-height":{"desktop":"20px"},"font-weight":{"desktop":"600"},"color":{"desktop":"#333333"}},"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","deformation":{"font-family":"Open Sans","padding":["0","0","0","0"],"font-style":"normal","color-transparency":"1","text-decoration":"none","text-align":"left","text-transform":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing","parallax":"-"},"svg":{"svgstroke-color":"transparent","svgstroke-transparency":"1","svgstroke-dasharray":"0","svgstroke-dashoffset":"0","svgstroke-width":"0","svgstroke-hover-color":"transparent","svgstroke-hover-transparency":"1","svgstroke-hover-dasharray":"0","svgstroke-hover-dashoffset":"0","svgstroke-hover-width":"0"},"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"0","zindex":"auto","easing":"Linear.easeNone","css_cursor":"auto"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","serial":1,"split_in_extratime":-10,"split_out_extratime":-10,"endWithSlide":true,"toggle":false,"toggle_use_hover":false,"texttoggle":"","scaleX":{"desktop":""},"scaleY":{"desktop":""},"autolinebreak":false,"scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","layer-selectable":"default","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","mask_speed_start":"inherit","mask_ease_start":"inherit","link":"","link_open_in":"same","pers_start":"inherit","pers_end":"inherit"},{"style":"","text":"Image 9","type":"image","image_url":"http:\\/\\/www.investors-watch.com\\/wp-staging\\/ranhill\\/wp-content\\/uploads\\/2016\\/10\\/explore_.png","scaleX":{"desktop":"94px"},"scaleY":{"desktop":"94px"},"originalWidth":94,"originalHeight":94,"special_type":"static","subtype":"","specialsettings":[],"unique_id":3,"left":{"desktop":0},"top":{"desktop":0},"internal_class":"","hover":false,"alias":"image 9","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","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_x_end":"0","mask_y_end":"0","mask_speed_end":"inherit","mask_ease_end":"inherit","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_rotation":0,"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":"bottom"},"hiddenunder":false,"resizeme":true,"seo-optimized":false,"link_slide":"nothing","scrollunder_offset":"","visible-desktop":true,"visible-notebook":true,"visible-tablet":true,"visible-mobile":true,"resize-full":true,"show-on-hover":false,"basealign":"grid","responsive_offset":true,"lazy-load":"auto","image-size":"auto","time":500,"endspeed":300,"endtime":9300,"endanimation":"fadeout","endeasing":"nothing","width":94,"height":94,"cover_mode":"custom","static_styles":{"font-size":{"desktop":"20"},"line-height":{"desktop":"22"},"font-weight":{"desktop":"400"},"color":{"desktop":"#ffffff"}},"x_start":"inherit","y_start":"inherit","z_start":"inherit","x_end":"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","deformation":{"font-family":"","padding":["0","0","0","0"],"font-style":"normal","color-transparency":"1","text-decoration":"none","text-align":"left","text-transform":"none","background-color":"transparent","background-transparency":"1","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_origin_x":"50","2d_origin_y":"50","pers":"600","corner_left":"nothing","corner_right":"nothing"},"svg":{"svgstroke-color":"transparent","svgstroke-transparency":"1","svgstroke-dasharray":"0","svgstroke-dashoffset":"0","svgstroke-width":"0","svgstroke-hover-color":"transparent","svgstroke-hover-transparency":"1","svgstroke-hover-dasharray":"0","svgstroke-hover-dashoffset":"0","svgstroke-hover-width":"0"},"deformation-hover":{"color":"#ffffff","color-transparency":"1","text-decoration":"none","background-color":"transparent","background-transparency":"0","border-color":"transparent","border-transparency":"1","border-style":"none","border-width":"0","border-radius":["0","0","0","0"],"x":0,"y":0,"z":0,"skewx":"0","skewy":"0","scalex":"1","scaley":"1","opacity":"1","xrotate":0,"yrotate":0,"2d_rotation":0,"2d_origin_x":50,"2d_origin_y":50,"speed":"0","zindex":"auto","easing":"Linear.easeNone","css_cursor":"auto"},"visible":true,"animation_overwrite":"wait","trigger_memory":"keep","serial":2,"split_in_extratime":-10,"split_out_extratime":-10,"endWithSlide":true,"toggle":false,"toggle_use_hover":false,"texttoggle":"","autolinebreak":false,"scaleProportional":false,"attrID":"","attrClasses":"","attrTitle":"","attrRel":"","layer-selectable":"default","layer_action":{"tooltip_event":["click"],"action":["scroll_under"],"image_link":[""],"link_open_in":["_self"],"jump_to_slide":["3"],"scrollunder_offset":[""],"actioncallback":[""],"layer_target":["backgroundvideo"],"link_type":["jquery"],"action_delay":[""],"toggle_layer_type":["visible"],"toggle_class":[""]}}]', '""') ;

#
# End of data contents of table `wp2o_revslider_static_slides`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_term_relationships`
#

DROP TABLE IF EXISTS `wp2o_term_relationships`;


#
# Table structure of table `wp2o_term_relationships`
#

CREATE TABLE `wp2o_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=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_term_relationships`
#
INSERT INTO `wp2o_term_relationships` ( `object_id`, `term_taxonomy_id`, `term_order`) VALUES
(3646, 2, 0),
(3647, 2, 0),
(3648, 2, 0),
(3649, 2, 0),
(3650, 2, 0),
(3652, 2, 0),
(3653, 2, 0),
(3654, 2, 0),
(3655, 2, 0),
(3703, 2, 0),
(3704, 2, 0),
(3726, 2, 0),
(3728, 2, 0),
(3729, 2, 0),
(3733, 2, 0),
(3734, 4, 0),
(3737, 4, 0),
(3739, 4, 0),
(3741, 4, 0),
(3743, 4, 0),
(3745, 4, 0),
(3747, 4, 0),
(3749, 4, 0),
(3772, 3, 0),
(3799, 3, 0),
(3844, 3, 0),
(3846, 3, 0),
(3849, 3, 0),
(3850, 3, 0),
(3851, 3, 0),
(3852, 3, 0),
(3854, 3, 0),
(3855, 3, 0),
(3857, 3, 0),
(3862, 3, 0),
(3871, 3, 0),
(3872, 3, 0),
(3873, 3, 0),
(3874, 3, 0),
(3877, 3, 0),
(3889, 4, 0),
(3972, 4, 0),
(3987, 2, 0),
(3997, 4, 0),
(4008, 3, 0),
(4018, 3, 0),
(4023, 5, 0),
(4026, 5, 0),
(4032, 3, 0),
(4046, 5, 0),
(4057, 1, 0),
(4069, 6, 0),
(4071, 6, 0),
(4075, 6, 0),
(4077, 6, 0),
(4079, 6, 0),
(4087, 6, 0),
(4089, 6, 0),
(4092, 6, 0),
(4105, 3, 0),
(4186, 4, 0),
(4207, 6, 0),
(4210, 3, 0),
(4212, 3, 0),
(4217, 5, 0),
(4221, 3, 0),
(4229, 2, 0),
(4231, 2, 0),
(4265, 4, 0),
(4326, 2, 0),
(4412, 4, 0),
(4415, 4, 0),
(4454, 2, 0),
(4539, 2, 0),
(4553, 2, 0),
(4579, 4, 0) ;

#
# End of data contents of table `wp2o_term_relationships`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_term_taxonomy`
#

DROP TABLE IF EXISTS `wp2o_term_taxonomy`;


#
# Table structure of table `wp2o_term_taxonomy`
#

CREATE TABLE `wp2o_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_term_taxonomy`
#
INSERT INTO `wp2o_term_taxonomy` ( `term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 0),
(2, 2, 'nav_menu', '', 0, 22),
(3, 3, 'nav_menu', '', 0, 24),
(4, 4, 'category', '', 0, 16),
(5, 5, 'category', '', 0, 3),
(6, 6, 'category', '', 0, 9) ;

#
# End of data contents of table `wp2o_term_taxonomy`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_termmeta`
#

DROP TABLE IF EXISTS `wp2o_termmeta`;


#
# Table structure of table `wp2o_termmeta`
#

CREATE TABLE `wp2o_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_termmeta`
#

#
# End of data contents of table `wp2o_termmeta`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_terms`
#

DROP TABLE IF EXISTS `wp2o_terms`;


#
# Table structure of table `wp2o_terms`
#

CREATE TABLE `wp2o_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_terms`
#
INSERT INTO `wp2o_terms` ( `term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Main Menu', 'main-menu', 0),
(3, 'Staging', 'staging', 0),
(4, 'Press Release', 'press-release', 0),
(5, 'Sharing Our Expertise', 'sharing-our-expertise', 0),
(6, 'job', 'job', 0) ;

#
# End of data contents of table `wp2o_terms`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_usermeta`
#

DROP TABLE IF EXISTS `wp2o_usermeta`;


#
# Table structure of table `wp2o_usermeta`
#

CREATE TABLE `wp2o_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=143 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_usermeta`
#
INSERT INTO `wp2o_usermeta` ( `umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'false'),
(10, 1, 'wp2o_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'wp2o_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'vc_pointers_backend_editor,vc_pointers_frontend_editor'),
(13, 1, 'show_welcome_panel', '0'),
(15, 1, 'wp2o_user-settings', 'libraryContent=upload&editor=html&advImgDetails=show&hidetb=1&imgsize=full&post_dfw=on&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=951px&edit_element_vcUIPanelTop=74px'),
(16, 1, 'wp2o_user-settings-time', '1548723737'),
(17, 1, 'wp2o_dashboard_quick_press_last_post_id', '4588'),
(18, 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";}'),
(19, 1, 'metaboxhidden_nav-menus', 'a:14:{i:0;s:20:"add-post-type-client";i:1;s:19:"add-post-type-offer";i:2;s:23:"add-post-type-portfolio";i:3;s:19:"add-post-type-slide";i:4;s:25:"add-post-type-testimonial";i:5;s:20:"add-post-type-layout";i:6;s:22:"add-post-type-template";i:7;s:12:"add-post_tag";i:8;s:15:"add-post_format";i:9;s:16:"add-client-types";i:10;s:15:"add-offer-types";i:11;s:19:"add-portfolio-types";i:12;s:15:"add-slide-types";i:13;s:21:"add-testimonial-types";}'),
(20, 1, 'nav_menu_recently_edited', '2'),
(21, 1, 'tgmpa_dismissed_notice_mfn-be', '1'),
(53, 1, 'po_data', 'a:1:{s:15:"network_dismiss";b:1;}'),
(54, 1, 'wp2o_meta-box-order_inc_popup', 'a:3:{s:4:"side";s:0:"";s:6:"normal";s:0:"";s:8:"advanced";s:0:"";}'),
(57, 1, 'locale', ''),
(60, 1, 'AtD_options', ''),
(61, 1, 'AtD_check_when', ''),
(62, 1, 'AtD_guess_lang', ''),
(63, 1, 'AtD_ignored_phrases', ''),
(64, 1, 'jetpack_tracks_wpcom_id', '117311605'),
(65, 1, 'jetpack_tracks_anon_id', 'jetpack:BwqP5mpp6Q7TT6KZaTMEqTCy'),
(70, 1, 'closedpostboxes_page', 'a:1:{i:0;s:13:"pageparentdiv";}'),
(71, 1, 'metaboxhidden_page', 'a:6:{i:0;s:19:"wpb_visual_composer";i:1;s:10:"postcustom";i:2;s:16:"commentstatusdiv";i:3;s:11:"commentsdiv";i:4;s:7:"slugdiv";i:5;s:9:"authordiv";}'),
(72, 1, 'closedpostboxes_layout', 'a:0:{}'),
(73, 1, 'metaboxhidden_layout', 'a:1:{i:0;s:7:"slugdiv";}'),
(142, 1, 'session_tokens', 'a:1:{s:64:"8932b193b3def2538c2f30b5abfda0b83c8f99eca5e4bce7e5d6869fccc9ef0b";a:4:{s:10:"expiration";i:1550900458;s:2:"ip";s:13:"211.24.101.22";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36";s:5:"login";i:1550727658;}}') ;

#
# End of data contents of table `wp2o_usermeta`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_users`
#

DROP TABLE IF EXISTS `wp2o_users`;


#
# Table structure of table `wp2o_users`
#

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


#
# Data contents of table `wp2o_users`
#
INSERT INTO `wp2o_users` ( `ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'adminranhill', '$P$BKh5Vp8u02FOsPWUjVhAgS1gGtGQWW1', 'admin', 'narendar@insage.com.my', '', '2016-07-30 01:11:14', '', 0, 'admin') ;

#
# End of data contents of table `wp2o_users`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfBadLeechers`
#

DROP TABLE IF EXISTS `wp2o_wfBadLeechers`;


#
# Table structure of table `wp2o_wfBadLeechers`
#

CREATE TABLE `wp2o_wfBadLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


#
# Data contents of table `wp2o_wfBadLeechers`
#

#
# End of data contents of table `wp2o_wfBadLeechers`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfBlockedIPLog`
#

DROP TABLE IF EXISTS `wp2o_wfBlockedIPLog`;


#
# Table structure of table `wp2o_wfBlockedIPLog`
#

CREATE TABLE `wp2o_wfBlockedIPLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`unixday`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfBlockedIPLog`
#
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFF36A3C327'), 'US', 6, 17922),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17922),
(UNHEX('00000000000000000000FFFFB956A46E'), 'TR', 1, 17922),
(UNHEX('00000000000000000000FFFF3BA76FDD'), 'AU', 2, 17924),
(UNHEX('00000000000000000000FFFFB956A462'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFFB955EFC3'), 'TR', 1, 17930),
(UNHEX('00000000000000000000FFFF05BC3E05'), 'RU', 2, 17930),
(UNHEX('00000000000000000000FFFF5043ACA2'), 'FR', 1, 17930),
(UNHEX('00000000000000000000FFFF49474554'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFF4B90CE66'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFF345A56AF'), 'US', 6, 17922),
(UNHEX('00000000000000000000FFFF035A3568'), 'US', 6, 17921),
(UNHEX('00000000000000000000FFFF36A3C327'), 'US', 6, 17921),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17918),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17918),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 1, 17918),
(UNHEX('00000000000000000000FFFFB956A462'), 'TR', 1, 17917),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 1, 17917),
(UNHEX('00000000000000000000FFFFA3ACFFDD'), 'FR', 1, 17923),
(UNHEX('00000000000000000000FFFF8E5DD346'), 'CA', 1, 17923),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17923),
(UNHEX('00000000000000000000FFFF951C2DB9'), 'US', 1, 17923),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17917),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFF68FEF417'), 'US', 3, 17923),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 1, 17923),
(UNHEX('00000000000000000000FFFF25D2A9D1'), 'QA', 1, 17923),
(UNHEX('00000000000000000000FFFF1BFE519F'), 'TH', 1, 17923),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17923),
(UNHEX('00000000000000000000FFFF3F21B412'), 'US', 1, 17923),
(UNHEX('00000000000000000000FFFF488B5CB6'), 'CA', 3, 17923),
(UNHEX('00000000000000000000FFFF3BA76FDD'), 'AU', 1, 17923),
(UNHEX('00000000000000000000FFFF0379C831'), 'US', 5, 17923),
(UNHEX('00000000000000000000FFFF50D3940D'), 'IT', 3, 17923),
(UNHEX('00000000000000000000FFFF2EA5F59A'), 'DE', 3, 17947),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 1, 17947),
(UNHEX('00000000000000000000FFFF55F8E3A4'), 'SK', 1, 17947),
(UNHEX('00000000000000000000FFFFC3CE69D9'), '', 1, 17945),
(UNHEX('00000000000000000000FFFF2DA3DC2E'), '', 1, 17945),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 1, 17945),
(UNHEX('00000000000000000000FFFFB956A46F'), 'TR', 1, 17945),
(UNHEX('00000000000000000000FFFF59BB8F1F'), 'CZ', 1, 17945),
(UNHEX('00000000000000000000FFFF4DF7B5A5'), 'NL', 1, 17947),
(UNHEX('00000000000000000000FFFF43A9970D'), 'US', 1, 17947),
(UNHEX('00000000000000000000FFFF8A80F279'), 'US', 60, 17947),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17947),
(UNHEX('00000000000000000000FFFF1255C0FD'), 'US', 2, 17945),
(UNHEX('00000000000000000000FFFF67DDDD95'), 'VN', 1, 17943),
(UNHEX('00000000000000000000FFFFB23E2275'), 'GB', 1, 17943),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFAB19C114'), 'SE', 2, 17942),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 1, 17945),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17945),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17945),
(UNHEX('00000000000000000000FFFF4DF7B5A5'), 'NL', 1, 17945),
(UNHEX('00000000000000000000FFFFB33C9209'), 'RU', 2, 17945),
(UNHEX('00000000000000000000FFFFB33C9209'), 'RU', 1, 17944),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB955EFC3'), 'TR', 1, 17946),
(UNHEX('00000000000000000000FFFF36D7EFDA'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFFAE24E4B2'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFF7A201EB1'), 'KR', 1, 17927),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 1, 17921),
(UNHEX('00000000000000000000FFFF22D491F0'), 'US', 6, 17921),
(UNHEX('00000000000000000000FFFFD89EEBB9'), 'US', 1, 17921),
(UNHEX('00000000000000000000FFFFB977510B'), 'TR', 1, 17921),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17931),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 1, 17930),
(UNHEX('00000000000000000000FFFF035A3568'), 'US', 12, 17922),
(UNHEX('00000000000000000000FFFFC1462D37'), 'FR', 1, 17930),
(UNHEX('00000000000000000000FFFF67554277'), '', 1, 17923),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFFB956A462'), 'TR', 1, 17921),
(UNHEX('00000000000000000000FFFFAB19C114'), 'SE', 1, 17936),
(UNHEX('00000000000000000000FFFFB956A462'), 'TR', 1, 17935),
(UNHEX('00000000000000000000FFFF36A3C327'), 'US', 12, 17923),
(UNHEX('00000000000000000000FFFF0828C420'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFF4C7EB18F'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFF5B799BAC'), 'FR', 1, 17931),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 2, 17930),
(UNHEX('00000000000000000000FFFFB956A46E'), 'TR', 1, 17921),
(UNHEX('00000000000000000000FFFFB98B3862'), 'GE', 1, 17921),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17921),
(UNHEX('00000000000000000000FFFF035BB733'), 'US', 6, 17921),
(UNHEX('00000000000000000000FFFF12ED5620'), 'US', 6, 17921),
(UNHEX('00000000000000000000FFFF12CD6AAD'), 'US', 6, 17921),
(UNHEX('00000000000000000000FFFFB956A46F'), 'TR', 2, 17921),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17920),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17920),
(UNHEX('00000000000000000000FFFFB955BE84'), 'TR', 1, 17920),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 1, 17920),
(UNHEX('00000000000000000000FFFFB956A46C'), 'TR', 1, 17920),
(UNHEX('00000000000000000000FFFFB956A46F'), 'TR', 1, 17933),
(UNHEX('00000000000000000000FFFF951C95E3'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFF566DAA60'), 'ES', 3, 17931) ;
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFF42CFE498'), 'US', 2, 17923),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 1, 17935),
(UNHEX('00000000000000000000FFFFB23EAEAE'), 'NL', 1, 17934),
(UNHEX('00000000000000000000FFFFB9DC6523'), '', 1, 17933),
(UNHEX('00000000000000000000FFFFB9DC6544'), '', 1, 17933),
(UNHEX('00000000000000000000FFFFAB19C119'), 'SE', 2, 17933),
(UNHEX('00000000000000000000FFFF330F500E'), 'FR', 2, 17936),
(UNHEX('00000000000000000000FFFF6D466413'), 'AT', 2, 17935),
(UNHEX('00000000000000000000FFFF719ADA37'), 'JP', 1, 17935),
(UNHEX('00000000000000000000FFFFB00A63C8'), 'CH', 1, 17935),
(UNHEX('00000000000000000000FFFFCC5DD8E3'), 'US', 1, 17935),
(UNHEX('00000000000000000000FFFFDFFFA32A'), 'HK', 1, 17935),
(UNHEX('00000000000000000000FFFF55F8E3A4'), 'SK', 1, 17936),
(UNHEX('00000000000000000000FFFF33D3B067'), 'SA', 3, 17923),
(UNHEX('00000000000000000000FFFF4E86D5E1'), 'HR', 1, 17923),
(UNHEX('00000000000000000000FFFF035CC7A6'), 'US', 6, 17922),
(UNHEX('00000000000000000000FFFF4E86D5E1'), 'HR', 1, 17922),
(UNHEX('00000000000000000000FFFF68CF9105'), 'US', 1, 17922),
(UNHEX('00000000000000000000FFFF42CFE498'), 'US', 1, 17922),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17922),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 1, 17922),
(UNHEX('00000000000000000000FFFF33D3B067'), 'SA', 1, 17922),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17922),
(UNHEX('00000000000000000000FFFF12CD6AAD'), 'US', 6, 17922),
(UNHEX('00000000000000000000FFFFB955BE84'), 'TR', 1, 17922),
(UNHEX('00000000000000000000FFFF4E86D5E1'), 'HR', 1, 17919),
(UNHEX('00000000000000000000FFFF770FBF78'), 'VN', 1, 17919),
(UNHEX('00000000000000000000FFFF68FA221D'), 'US', 1, 17919),
(UNHEX('00000000000000000000FFFF488B5CB6'), 'CA', 1, 17919),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 1, 17923),
(UNHEX('00000000000000000000FFFFB64757F2'), 'IN', 5, 17923),
(UNHEX('00000000000000000000FFFFB3B80837'), 'BR', 1, 17923),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 2, 17923),
(UNHEX('00000000000000000000FFFF68CF9105'), 'US', 5, 17923),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17919),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17919),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 1, 17918),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 2, 17918),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17918),
(UNHEX('00000000000000000000FFFFB9DC6515'), '', 1, 17946),
(UNHEX('00000000000000000000FFFF4C1535B3'), 'US', 1, 17946),
(UNHEX('00000000000000000000FFFFB955BE84'), 'TR', 1, 17945),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFFB955EFC3'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFF2EA5F59A'), 'DE', 1, 17942),
(UNHEX('00000000000000000000FFFFB33C9209'), 'RU', 1, 17942),
(UNHEX('00000000000000000000FFFF1FDC00E1'), 'NL', 1, 17942),
(UNHEX('00000000000000000000FFFF05659CA2'), 'RU', 1, 17943),
(UNHEX('00000000000000000000FFFF6BAA5283'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFFC80E5207'), 'CL', 2, 17943),
(UNHEX('00000000000000000000FFFF3F21B412'), 'US', 1, 17922),
(UNHEX('00000000000000000000FFFFC1C9E0E1'), 'UA', 2, 17922),
(UNHEX('00000000000000000000FFFF0356F98F'), 'US', 6, 17922),
(UNHEX('00000000000000000000FFFF68FEF417'), 'US', 2, 17922),
(UNHEX('00000000000000000000FFFF3BA76FDD'), 'AU', 5, 17922),
(UNHEX('00000000000000000000FFFF50D3940D'), 'IT', 3, 17922),
(UNHEX('00000000000000000000FFFF1BFE519F'), 'TH', 1, 17922),
(UNHEX('00000000000000000000FFFF0357C7FD'), 'US', 6, 17922),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17922),
(UNHEX('00000000000000000000FFFFB64757F2'), 'IN', 4, 17922),
(UNHEX('00000000000000000000FFFF77E23A4D'), 'IN', 2, 17922),
(UNHEX('00000000000000000000FFFF36C96F95'), 'US', 6, 17923),
(UNHEX('00000000000000000000FFFFB9C62D70'), '', 1, 17923),
(UNHEX('00000000000000000000FFFF6F76F9C4'), 'IN', 1, 17923),
(UNHEX('00000000000000000000FFFFB956A462'), 'TR', 1, 17923),
(UNHEX('00000000000000000000FFFF36C8D3E0'), 'US', 6, 17923),
(UNHEX('00000000000000000000FFFF77E23A4D'), 'IN', 1, 17923),
(UNHEX('00000000000000000000FFFF035CC7A6'), 'US', 6, 17923),
(UNHEX('00000000000000000000FFFFC6649870'), 'US', 1, 17923),
(UNHEX('00000000000000000000FFFFCA15252F'), 'LK', 1, 17923),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17923),
(UNHEX('00000000000000000000FFFFB9775132'), 'TR', 1, 17923),
(UNHEX('00000000000000000000FFFF0D4CFAE1'), 'SG', 1, 17923),
(UNHEX('00000000000000000000FFFFC1C9E0D3'), 'UA', 2, 17923),
(UNHEX('00000000000000000000FFFFD56315EB'), 'ES', 1, 17924),
(UNHEX('00000000000000000000FFFF035A3568'), 'US', 12, 17924),
(UNHEX('00000000000000000000FFFF4E886995'), 'ES', 1, 17924),
(UNHEX('00000000000000000000FFFF035CC7A6'), 'US', 12, 17924),
(UNHEX('00000000000000000000FFFFB956A46C'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFF22DB6C8F'), 'US', 6, 17924),
(UNHEX('00000000000000000000FFFFB64757F2'), 'IN', 1, 17924),
(UNHEX('00000000000000000000FFFF68CF9105'), 'US', 1, 17924),
(UNHEX('00000000000000000000FFFF36DB9E74'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFF12904386'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFF0DEE9B4C'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17925),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 1, 17925),
(UNHEX('00000000000000000000FFFFB956A46C'), 'TR', 1, 17925),
(UNHEX('00000000000000000000FFFF62F84D87'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFF12B8377C'), 'US', 6, 17927),
(UNHEX('00000000000000000000FFFFB956A46C'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFF88313795'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFFB9775132'), 'TR', 2, 17927),
(UNHEX('00000000000000000000FFFF45B5A37B'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFF4C679614'), 'US', 1, 17926),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17926),
(UNHEX('00000000000000000000FFFFC1C9E0E1'), 'UA', 2, 17926),
(UNHEX('00000000000000000000FFFF33D3B067'), 'SA', 1, 17926) ;
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17926),
(UNHEX('00000000000000000000FFFFB3B80837'), 'BR', 1, 17927),
(UNHEX('00000000000000000000FFFFA6981889'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFF518E6282'), 'GB', 1, 17927),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFFB36F9A12'), 'BR', 1, 17927),
(UNHEX('00000000000000000000FFFF62F86136'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFFB12FD009'), 'BR', 1, 17930),
(UNHEX('00000000000000000000FFFFB2209396'), 'FR', 1, 17929),
(UNHEX('00000000000000000000FFFF052D44D3'), 'NL', 22, 17929),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17929),
(UNHEX('00000000000000000000FFFF05BC3E05'), 'RU', 3, 17929),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 2, 17929),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 2, 17929),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 1, 17928),
(UNHEX('00000000000000000000FFFFC7579AFF'), 'CA', 1, 17928),
(UNHEX('00000000000000000000FFFFB00A63C8'), 'CH', 1, 17928),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 1, 17928),
(UNHEX('00000000000000000000FFFF052D44D3'), 'NL', 6, 17928),
(UNHEX('00000000000000000000FFFF7B1510F3'), 'VN', 1, 17928),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17928),
(UNHEX('00000000000000000000FFFFB9775132'), 'TR', 1, 17928),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17928),
(UNHEX('00000000000000000000FFFF052D44D3'), 'NL', 12, 17930),
(UNHEX('00000000000000000000FFFFB3B8834C'), 'BR', 1, 17929),
(UNHEX('00000000000000000000FFFFB9775132'), 'TR', 1, 17929),
(UNHEX('00000000000000000000FFFF4B7F9302'), 'US', 1, 17929),
(UNHEX('00000000000000000000FFFFA290284A'), 'US', 1, 17929),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 1, 17929),
(UNHEX('00000000000000000000FFFF530318AE'), 'PL', 1, 17929),
(UNHEX('00000000000000000000FFFFA2D36DCF'), 'US', 1, 17929),
(UNHEX('00000000000000000000FFFFAD1B0D46'), 'US', 1, 17929),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 1, 17929),
(UNHEX('00000000000000000000FFFF34273091'), 'US', 1, 17929),
(UNHEX('00000000000000000000FFFF79A9916F'), 'KR', 1, 17930),
(UNHEX('00000000000000000000FFFFB9775132'), 'TR', 1, 17930),
(UNHEX('00000000000000000000FFFF4DF7B5A2'), 'NL', 1, 17930),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17930),
(UNHEX('00000000000000000000FFFFB06306AA'), 'RU', 1, 17930),
(UNHEX('00000000000000000000FFFF6E0D991F'), 'KR', 1, 17930),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17930),
(UNHEX('00000000000000000000FFFFC224A372'), 'GB', 1, 17930),
(UNHEX('00000000000000000000FFFFD061B15A'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFFA3ACDD3F'), 'NL', 1, 17931),
(UNHEX('00000000000000000000FFFFC0636A3D'), 'CA', 3, 17931),
(UNHEX('00000000000000000000FFFF5DAEA2C8'), 'RO', 2, 17931),
(UNHEX('00000000000000000000FFFF2501DDB3'), 'DE', 12, 17931),
(UNHEX('00000000000000000000FFFFB955EFC3'), 'TR', 1, 17931),
(UNHEX('00000000000000000000FFFF2D775156'), 'VN', 2, 17931),
(UNHEX('00000000000000000000FFFF2D3728B3'), 'US', 2, 17933),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17932),
(UNHEX('00000000000000000000FFFF45A3D871'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17932),
(UNHEX('00000000000000000000FFFFD93D6927'), 'DE', 1, 17932),
(UNHEX('00000000000000000000FFFF3E669444'), 'SE', 1, 17932),
(UNHEX('00000000000000000000FFFFBE0A0ABA'), 'CR', 1, 17932),
(UNHEX('00000000000000000000FFFF57EC1403'), 'RU', 1, 17932),
(UNHEX('00000000000000000000FFFF74C14CA1'), 'VN', 1, 17932),
(UNHEX('00000000000000000000FFFF57EC146C'), 'RU', 1, 17932),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 1, 17934),
(UNHEX('00000000000000000000FFFF80C7DF04'), 'SG', 1, 17934),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 1, 17934),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17933),
(UNHEX('00000000000000000000FFFF175CD936'), 'US', 1, 17933),
(UNHEX('00000000000000000000FFFF4AD0D6A0'), 'US', 1, 17933),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17933),
(UNHEX('00000000000000000000FFFF7645C386'), 'VN', 1, 17933),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17933),
(UNHEX('00000000000000000000FFFFB9DC653C'), '', 1, 17935),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17935),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17935),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17934),
(UNHEX('00000000000000000000FFFFB9560DF2'), 'TR', 1, 17934),
(UNHEX('00000000000000000000FFFFB9DC6531'), '', 1, 17934),
(UNHEX('00000000000000000000FFFF2EA5F59A'), 'DE', 1, 17934),
(UNHEX('00000000000000000000FFFFB9DC6523'), '', 1, 17934),
(UNHEX('00000000000000000000FFFF3B0BF7D2'), 'KR', 1, 17935),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17935),
(UNHEX('00000000000000000000FFFFC15A0C77'), 'NO', 1, 17935),
(UNHEX('00000000000000000000FFFFC7F9E658'), 'US', 1, 17935),
(UNHEX('00000000000000000000FFFF43AAE777'), 'US', 1, 17935),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17935),
(UNHEX('00000000000000000000FFFFC7F9E658'), 'US', 1, 17936),
(UNHEX('00000000000000000000FFFFB9DC651E'), '', 1, 17936),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17936),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFFC80E5207'), 'CL', 1, 17937),
(UNHEX('00000000000000000000FFFFB932190E'), 'RU', 1, 17937),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFFB9775132'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17939),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17939),
(UNHEX('00000000000000000000FFFFB956A462'), 'TR', 2, 17939),
(UNHEX('00000000000000000000FFFFB956A46C'), 'TR', 1, 17939),
(UNHEX('00000000000000000000FFFFB955EFC3'), 'TR', 1, 17938),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 1, 17938),
(UNHEX('00000000000000000000FFFF8E5D2CC7'), 'CA', 1, 17938),
(UNHEX('00000000000000000000FFFF97EC3836'), 'GB', 1, 17938),
(UNHEX('00000000000000000000FFFFA2F34A59'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFF2E173F3B'), 'CZ', 1, 17938) ;
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFF5DAEA2C8'), 'RO', 1, 17938),
(UNHEX('00000000000000000000FFFF23B6B8EF'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFF7A72F515'), 'CN', 1, 17938),
(UNHEX('00000000000000000000FFFF57EC14BA'), 'RU', 1, 17938),
(UNHEX('00000000000000000000FFFF51B454CE'), 'MD', 1, 17938),
(UNHEX('00000000000000000000FFFFCD86FBD7'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 1, 17940),
(UNHEX('00000000000000000000FFFFCC089C8E'), 'US', 1, 17940),
(UNHEX('00000000000000000000FFFF5776703F'), 'DE', 1, 17940),
(UNHEX('00000000000000000000FFFFB9DC6532'), '', 1, 17940),
(UNHEX('00000000000000000000FFFFB9DC6536'), '', 1, 17940),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 2, 17940),
(UNHEX('00000000000000000000FFFF334DB1C2'), 'GB', 1, 17940),
(UNHEX('00000000000000000000FFFFB955BE84'), 'TR', 1, 17940),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 1, 17939),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 1, 17939),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 1, 17939),
(UNHEX('00000000000000000000FFFF6D466413'), 'AT', 1, 17939),
(UNHEX('00000000000000000000FFFFAB19C1EB'), 'SE', 2, 17939),
(UNHEX('00000000000000000000FFFF334DC925'), 'GB', 1, 17939),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17941),
(UNHEX('00000000000000000000FFFFB9DC6500'), '', 1, 17941),
(UNHEX('00000000000000000000FFFFC5E7DDD3'), 'LR', 1, 17941),
(UNHEX('00000000000000000000FFFFB9DC650D'), '', 2, 17941),
(UNHEX('00000000000000000000FFFF4DF7B5A5'), 'NL', 1, 17941),
(UNHEX('00000000000000000000FFFFB977510B'), 'TR', 1, 17941),
(UNHEX('00000000000000000000FFFF1FBAAE6E'), 'NL', 1, 17941),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17940),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17940),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17940),
(UNHEX('00000000000000000000FFFFC7579AFF'), 'CA', 1, 17940),
(UNHEX('00000000000000000000FFFF5043ACA2'), 'FR', 1, 17940),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17940),
(UNHEX('00000000000000000000FFFFB956A46E'), 'TR', 1, 17940),
(UNHEX('00000000000000000000FFFF1FDC00E1'), 'NL', 1, 17940),
(UNHEX('00000000000000000000FFFF362510F1'), 'US', 1, 17940),
(UNHEX('00000000000000000000FFFF2EA5F59A'), 'DE', 1, 17940),
(UNHEX('00000000000000000000FFFFB9DC6507'), '', 1, 17940),
(UNHEX('00000000000000000000FFFFB9DC6520'), '', 1, 17940),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17948),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 1, 17948),
(UNHEX('00000000000000000000FFFF8A80F279'), 'US', 18, 17948),
(UNHEX('00000000000000000000FFFFB9DC6523'), '', 1, 17948),
(UNHEX('00000000000000000000FFFFB00A63C8'), 'CH', 1, 17948),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 1, 17947),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17947),
(UNHEX('00000000000000000000FFFFC0630126'), 'CA', 2, 17947),
(UNHEX('00000000000000000000FFFF675ADC28'), '', 1, 17947),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17947),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 2, 17947),
(UNHEX('00000000000000000000FFFFB12FD009'), 'BR', 1, 17947),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 2, 17946),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 3, 17946),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17946),
(UNHEX('00000000000000000000FFFF6701CD67'), 'AU', 1, 17946),
(UNHEX('00000000000000000000FFFFB956A46C'), 'TR', 1, 17946),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17945),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFF33FE219B'), 'FR', 1, 17944),
(UNHEX('00000000000000000000FFFFDA9147D7'), 'KR', 1, 17944),
(UNHEX('00000000000000000000FFFFD3C6E151'), 'KR', 1, 17944),
(UNHEX('00000000000000000000FFFFB956A46E'), 'TR', 1, 17944),
(UNHEX('00000000000000000000FFFF8E5D2CC7'), 'CA', 1, 17944),
(UNHEX('00000000000000000000FFFF671BEFD8'), 'VN', 1, 17944),
(UNHEX('00000000000000000000FFFFCEBD8B23'), 'US', 1, 17944),
(UNHEX('00000000000000000000FFFFA2904FDF'), 'US', 1, 17944),
(UNHEX('00000000000000000000FFFFB2807CF6'), 'GR', 1, 17944),
(UNHEX('00000000000000000000FFFFB5318A45'), 'CO', 1, 17944),
(UNHEX('00000000000000000000FFFF05BC3E05'), 'RU', 1, 17944),
(UNHEX('00000000000000000000FFFF7645ADE1'), 'VN', 1, 17944),
(UNHEX('00000000000000000000FFFF0D371681'), 'AU', 1, 17944),
(UNHEX('00000000000000000000FFFFBB20A70A'), 'BR', 1, 17944),
(UNHEX('00000000000000000000FFFF704E069C'), 'VN', 1, 17944),
(UNHEX('00000000000000000000FFFFCEBDA4D3'), 'US', 1, 17944),
(UNHEX('00000000000000000000FFFFB0720450'), 'UA', 1, 17944),
(UNHEX('00000000000000000000FFFFA32CC15F'), 'VN', 1, 17944),
(UNHEX('00000000000000000000FFFF67DDDD95'), 'VN', 1, 17944),
(UNHEX('00000000000000000000FFFF9538FF70'), 'CA', 1, 17944),
(UNHEX('00000000000000000000FFFF1BFE2F85'), 'TH', 1, 17944),
(UNHEX('00000000000000000000FFFFB23EE4A2'), 'NL', 1, 17944),
(UNHEX('00000000000000000000FFFFC1C9E0E1'), 'UA', 2, 17944),
(UNHEX('00000000000000000000FFFF67E3B130'), 'SG', 1, 17944),
(UNHEX('00000000000000000000FFFFC80E5207'), 'CL', 1, 17944),
(UNHEX('00000000000000000000FFFF7117D404'), 'MY', 1, 17944),
(UNHEX('00000000000000000000FFFF51B454CE'), 'MD', 1, 17944),
(UNHEX('00000000000000000000FFFF8E5DD29A'), 'CA', 1, 17944),
(UNHEX('00000000000000000000FFFFA2F31B62'), 'US', 1, 17944),
(UNHEX('00000000000000000000FFFF675AE27E'), '', 1, 17944),
(UNHEX('00000000000000000000FFFF67E3B130'), 'SG', 1, 17943),
(UNHEX('00000000000000000000FFFF4D44401E'), 'GB', 1, 17943),
(UNHEX('00000000000000000000FFFFC64739FB'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFF9E45F251'), 'CA', 1, 17943),
(UNHEX('00000000000000000000FFFFCDB97FDB'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFFB9DC651E'), '', 1, 17943),
(UNHEX('00000000000000000000FFFF330FFC01'), 'FR', 1, 17943),
(UNHEX('00000000000000000000FFFFC3B00313'), 'CH', 1, 17943),
(UNHEX('00000000000000000000FFFF34122DCB'), 'IE', 1, 17943),
(UNHEX('00000000000000000000FFFF4B77C874'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFF6764509C'), '', 1, 17943) ;
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFF05659C39'), 'RU', 2, 17943),
(UNHEX('00000000000000000000FFFFC0F1E4FA'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFFBB20A70A'), 'BR', 1, 17943),
(UNHEX('00000000000000000000FFFF05659CBD'), 'RU', 1, 17943),
(UNHEX('00000000000000000000FFFF52DF6F55'), 'ES', 1, 17943),
(UNHEX('00000000000000000000FFFFA3AC758F'), 'FR', 2, 17943),
(UNHEX('00000000000000000000FFFF5D7D22C9'), 'BY', 1, 17943),
(UNHEX('00000000000000000000FFFFB33C9209'), 'RU', 1, 17943),
(UNHEX('00000000000000000000FFFF8B3B1F36'), 'IN', 1, 17943),
(UNHEX('00000000000000000000FFFF675C1D96'), '', 1, 17943),
(UNHEX('00000000000000000000FFFF68838846'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFF8E5DD29A'), 'CA', 1, 17943),
(UNHEX('00000000000000000000FFFF05659CA9'), 'RU', 1, 17943),
(UNHEX('00000000000000000000FFFF4AD05977'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFF7645ADE1'), 'VN', 1, 17943),
(UNHEX('00000000000000000000FFFFD5885C7B'), 'DE', 1, 17943),
(UNHEX('00000000000000000000FFFF05659C3B'), 'RU', 1, 17943),
(UNHEX('00000000000000000000FFFF57EC14F4'), 'RU', 1, 17943),
(UNHEX('00000000000000000000FFFF675AE27E'), '', 1, 17943),
(UNHEX('00000000000000000000FFFFD3C6E151'), 'KR', 1, 17943),
(UNHEX('00000000000000000000FFFF341BBD2F'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFFB23EE4A2'), 'NL', 2, 17943),
(UNHEX('00000000000000000000FFFF674A76B7'), 'VN', 1, 17943),
(UNHEX('00000000000000000000FFFFB28007FB'), 'GR', 1, 17943),
(UNHEX('00000000000000000000FFFFDD798E39'), 'AU', 1, 17943),
(UNHEX('00000000000000000000FFFF3E4BF776'), 'FR', 1, 17943),
(UNHEX('00000000000000000000FFFF6748A396'), 'MY', 1, 17943),
(UNHEX('00000000000000000000FFFF6732A316'), 'IN', 1, 17943),
(UNHEX('00000000000000000000FFFFA763AB74'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFFBC88AE05'), 'IR', 2, 17943),
(UNHEX('00000000000000000000FFFF5045A18C'), 'FI', 2, 17943),
(UNHEX('00000000000000000000FFFFCF265612'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFFCA1D6817'), 'TH', 2, 17943),
(UNHEX('00000000000000000000FFFF23A449DB'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFF77FCAEB8'), 'ID', 1, 17943),
(UNHEX('00000000000000000000FFFF4E6B852C'), 'RU', 1, 17943),
(UNHEX('00000000000000000000FFFF2EB6DF55'), 'NL', 1, 17943),
(UNHEX('00000000000000000000FFFF1255C0FD'), 'US', 1, 17943),
(UNHEX('00000000000000000000FFFF1FDC00E1'), 'NL', 1, 17943),
(UNHEX('00000000000000000000FFFFB9DC651C'), '', 1, 17943),
(UNHEX('00000000000000000000FFFF05BC3E05'), 'RU', 7, 17943),
(UNHEX('00000000000000000000FFFFB9DC653A'), '', 1, 17942),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 1, 17942),
(UNHEX('00000000000000000000FFFFD9B64EB1'), 'GB', 1, 17942),
(UNHEX('00000000000000000000FFFF3E669444'), 'SE', 1, 17942),
(UNHEX('00000000000000000000FFFF4113A784'), 'US', 1, 17942),
(UNHEX('00000000000000000000FFFFC7F9E648'), 'US', 1, 17942),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17942),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 1, 17942),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 1, 17942),
(UNHEX('00000000000000000000FFFF05BC3E05'), 'RU', 10, 17942),
(UNHEX('00000000000000000000FFFFB955BE84'), 'TR', 1, 17941),
(UNHEX('00000000000000000000FFFF05BC3E05'), 'RU', 2, 17941),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17941),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17941),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17941),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 2, 17941),
(UNHEX('00000000000000000000FFFFB956A46E'), 'TR', 1, 17942),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 2, 17942),
(UNHEX('00000000000000000000FFFF7A72F515'), 'CN', 1, 17943),
(UNHEX('00000000000000000000FFFF5B6D05E8'), 'GB', 2, 17943),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 1, 17947),
(UNHEX('00000000000000000000FFFFB9DC6546'), '', 1, 17947),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB956A46B'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17916),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 2, 17917),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 2, 17917),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17918),
(UNHEX('00000000000000000000FFFF4246C1EF'), 'US', 1, 17924),
(UNHEX('00000000000000000000FFFF5FD8164E'), 'UA', 1, 17924),
(UNHEX('00000000000000000000FFFF36F5D10D'), 'US', 12, 17924),
(UNHEX('00000000000000000000FFFF36C8D3E0'), 'US', 18, 17924),
(UNHEX('00000000000000000000FFFF23F0D3A4'), 'US', 1, 17924),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFF3ED2B904'), 'FR', 1, 17924),
(UNHEX('00000000000000000000FFFFCEBD9B4C'), 'US', 1, 17924),
(UNHEX('00000000000000000000FFFF36C96F95'), 'US', 12, 17924),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFF22DCAB21'), 'US', 12, 17924),
(UNHEX('00000000000000000000FFFF5B6275D5'), 'IR', 1, 17924),
(UNHEX('00000000000000000000FFFF36A3C327'), 'US', 6, 17924),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFF2EC41D4E'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFF764676F1'), 'VN', 1, 17924),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFF0357C7FD'), 'US', 6, 17924),
(UNHEX('00000000000000000000FFFFB956A46F'), 'TR', 1, 17924),
(UNHEX('00000000000000000000FFFF36F5D10D'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17925),
(UNHEX('00000000000000000000FFFF035A3568'), 'US', 12, 17925),
(UNHEX('00000000000000000000FFFF22DCAB21'), 'US', 18, 17925),
(UNHEX('00000000000000000000FFFFB956A468'), 'TR', 2, 17925),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17925),
(UNHEX('00000000000000000000FFFF345A56AF'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFF0357C7FD'), 'US', 6, 17925) ;
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFF36D7BEC5'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 1, 17925),
(UNHEX('00000000000000000000FFFF0D391FF5'), 'US', 6, 17925),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17926),
(UNHEX('00000000000000000000FFFF12904386'), 'US', 6, 17926),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17926),
(UNHEX('00000000000000000000FFFF0D391FF5'), 'US', 6, 17926),
(UNHEX('00000000000000000000FFFFB977510B'), 'TR', 2, 17926),
(UNHEX('00000000000000000000FFFFB956A465'), 'TR', 1, 17926),
(UNHEX('00000000000000000000FFFF4E86D5E1'), 'HR', 1, 17927),
(UNHEX('00000000000000000000FFFFB955EF6E'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFFB956A46D'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFFB807CF86'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFF4677115A'), 'US', 1, 17927),
(UNHEX('00000000000000000000FFFFA8E82C02'), 'BR', 1, 17927),
(UNHEX('00000000000000000000FFFFB955EEF4'), 'TR', 1, 17927),
(UNHEX('00000000000000000000FFFFBD553341'), 'BR', 2, 17928),
(UNHEX('00000000000000000000FFFF49474554'), 'US', 1, 17928),
(UNHEX('00000000000000000000FFFF05BC3E05'), 'RU', 4, 17928),
(UNHEX('00000000000000000000FFFFBD05850B'), 'BR', 1, 17928),
(UNHEX('00000000000000000000FFFF0D3461E6'), 'US', 2, 17928),
(UNHEX('00000000000000000000FFFFCFF64E5D'), 'US', 1, 17928),
(UNHEX('00000000000000000000FFFFD20D6F1A'), 'CN', 1, 17928),
(UNHEX('00000000000000000000FFFF49F177F2'), 'US', 1, 17928),
(UNHEX('00000000000000000000FFFFB956A46F'), 'TR', 1, 17928),
(UNHEX('00000000000000000000FFFFB9C62D70'), '', 1, 17928),
(UNHEX('00000000000000000000FFFFB955EFC3'), 'TR', 1, 17928),
(UNHEX('00000000000000000000FFFF7DB2C1B5'), 'KR', 1, 17930),
(UNHEX('00000000000000000000FFFFBDCC3128'), 'MX', 1, 17930),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17930),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17931),
(UNHEX('00000000000000000000FFFFC063E7A3'), 'CA', 1, 17931),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 1, 17931),
(UNHEX('00000000000000000000FFFFB91EECEE'), 'NL', 1, 17931),
(UNHEX('00000000000000000000FFFFB956A466'), 'TR', 1, 17931),
(UNHEX('00000000000000000000FFFF34B0013B'), 'US', 2, 17931),
(UNHEX('00000000000000000000FFFF965F6D4D'), 'JP', 1, 17931),
(UNHEX('00000000000000000000FFFF5BEEA1A6'), 'GB', 2, 17931),
(UNHEX('00000000000000000000FFFF2E25AC5F'), 'GB', 1, 17931),
(UNHEX('00000000000000000000FFFFB75AF222'), 'JP', 2, 17931),
(UNHEX('00000000000000000000FFFF6764509C'), '', 1, 17931),
(UNHEX('00000000000000000000FFFF43CD9198'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFF1BFE2F85'), 'TH', 1, 17931),
(UNHEX('00000000000000000000FFFF22E95E60'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFF8B3B78EE'), 'IN', 1, 17931),
(UNHEX('00000000000000000000FFFFD071B805'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFFADECA9E9'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFFD5D43D98'), 'SE', 1, 17931),
(UNHEX('00000000000000000000FFFFC0223D9C'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFF7089A269'), 'MY', 1, 17931),
(UNHEX('00000000000000000000FFFF77129B52'), 'ID', 1, 17931),
(UNHEX('00000000000000000000FFFFA76341E7'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFF5E170449'), 'FR', 1, 17931),
(UNHEX('00000000000000000000FFFF334DD22F'), 'GB', 2, 17931),
(UNHEX('00000000000000000000FFFF67E4706E'), 'IN', 1, 17931),
(UNHEX('00000000000000000000FFFF5FADB648'), 'TR', 1, 17931),
(UNHEX('00000000000000000000FFFF67742D32'), '', 2, 17931),
(UNHEX('00000000000000000000FFFF4AD05977'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFF3AB1B403'), 'HK', 1, 17931),
(UNHEX('00000000000000000000FFFFCB71AE2F'), 'VN', 1, 17931),
(UNHEX('00000000000000000000FFFF5054F48E'), 'NL', 1, 17931),
(UNHEX('00000000000000000000FFFFADD4EE14'), 'DE', 1, 17931),
(UNHEX('00000000000000000000FFFFADECB077'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFFA763AB74'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFFBF65E8CE'), 'US', 1, 17931),
(UNHEX('00000000000000000000FFFF975002E7'), 'FR', 1, 17931),
(UNHEX('00000000000000000000FFFFBC88AE05'), 'IR', 3, 17932),
(UNHEX('00000000000000000000FFFF67742D32'), '', 2, 17932),
(UNHEX('00000000000000000000FFFF2D3728B3'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF334DD22F'), 'GB', 2, 17932),
(UNHEX('00000000000000000000FFFFC0636A3D'), 'CA', 3, 17932),
(UNHEX('00000000000000000000FFFF8B3B024D'), 'IN', 1, 17932),
(UNHEX('00000000000000000000FFFFA32CC622'), 'TH', 2, 17932),
(UNHEX('00000000000000000000FFFF34122DCB'), 'IE', 1, 17932),
(UNHEX('00000000000000000000FFFFAD52AD61'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF05C4414A'), 'FR', 1, 17932),
(UNHEX('00000000000000000000FFFF59A3CED2'), 'DE', 2, 17932),
(UNHEX('00000000000000000000FFFFADECB077'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF77129B52'), 'ID', 1, 17932),
(UNHEX('00000000000000000000FFFF5DAEA2C8'), 'RO', 3, 17932),
(UNHEX('00000000000000000000FFFF5BEEA1A6'), 'GB', 2, 17932),
(UNHEX('00000000000000000000FFFFABF48DBF'), 'VN', 1, 17932),
(UNHEX('00000000000000000000FFFF8B3BE65A'), 'SG', 1, 17932),
(UNHEX('00000000000000000000FFFFC5F29C70'), 'ZA', 1, 17932),
(UNHEX('00000000000000000000FFFFC0223D9C'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF73927AFA'), 'VN', 1, 17932),
(UNHEX('00000000000000000000FFFFCBA2F67C'), 'VN', 1, 17932),
(UNHEX('00000000000000000000FFFFDA9147D7'), 'KR', 3, 17932),
(UNHEX('00000000000000000000FFFF2E25AC5F'), 'GB', 1, 17932),
(UNHEX('00000000000000000000FFFF7DD4E993'), 'VN', 2, 17932),
(UNHEX('00000000000000000000FFFF36CF2915'), 'BR', 2, 17932),
(UNHEX('00000000000000000000FFFF5E170449'), 'FR', 2, 17932),
(UNHEX('00000000000000000000FFFF8BB4CC3D'), 'US', 3, 17932),
(UNHEX('00000000000000000000FFFFA7632068'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF5FADB648'), 'TR', 1, 17932),
(UNHEX('00000000000000000000FFFFC0F1E4FA'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF671BED05'), 'VN', 1, 17932),
(UNHEX('00000000000000000000FFFFA1359005'), 'HR', 3, 17932),
(UNHEX('00000000000000000000FFFFDD798E39'), 'AU', 2, 17932),
(UNHEX('00000000000000000000FFFF566DAA60'), 'ES', 1, 17932) ;
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFF6735E607'), 'VN', 3, 17932),
(UNHEX('00000000000000000000FFFF51A9ADC9'), 'DE', 1, 17932),
(UNHEX('00000000000000000000FFFFBB2C7ECC'), 'BR', 1, 17932),
(UNHEX('00000000000000000000FFFFA3ACA78B'), 'FR', 1, 17932),
(UNHEX('00000000000000000000FFFFA5E387DE'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFC0633BCD'), 'CA', 1, 17932),
(UNHEX('00000000000000000000FFFFB01F6A39'), 'FR', 1, 17932),
(UNHEX('00000000000000000000FFFF23F0F119'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF4B77C870'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF675C1D96'), '', 1, 17932),
(UNHEX('00000000000000000000FFFF32744CBF'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF5D7D634B'), 'BY', 2, 17932),
(UNHEX('00000000000000000000FFFF682AB633'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF70AFB810'), 'KR', 2, 17932),
(UNHEX('00000000000000000000FFFFB6FD6B3E'), 'ID', 2, 17932),
(UNHEX('00000000000000000000FFFFBF65E8CE'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFFA3ACDD3F'), 'NL', 2, 17932),
(UNHEX('00000000000000000000FFFFD5D43D98'), 'SE', 1, 17932),
(UNHEX('00000000000000000000FFFFADECE09B'), 'US', 3, 17932),
(UNHEX('00000000000000000000FFFFCB4ACA34'), 'TW', 1, 17932),
(UNHEX('00000000000000000000FFFF675954CF'), '', 1, 17932),
(UNHEX('00000000000000000000FFFF32746254'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF3625E199'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFFADECF2E0'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF9387BCC1'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFADECB07B'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFADECA9E9'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFD2D152AF'), 'HK', 1, 17932),
(UNHEX('00000000000000000000FFFF1BFE2F85'), 'TH', 1, 17932),
(UNHEX('00000000000000000000FFFF7B1EF037'), 'VN', 2, 17932),
(UNHEX('00000000000000000000FFFF7117D404'), 'MY', 1, 17932),
(UNHEX('00000000000000000000FFFFC09BCA5A'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF23BAA961'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFFB280E698'), 'GR', 1, 17932),
(UNHEX('00000000000000000000FFFF23C6EC16'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF2D4CB488'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF607DAB3A'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFB33C9209'), 'RU', 39, 17932),
(UNHEX('00000000000000000000FFFFC003218A'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF46201AFE'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFD071B805'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFC1906728'), 'ES', 2, 17932),
(UNHEX('00000000000000000000FFFFA32B60CA'), 'JP', 1, 17932),
(UNHEX('00000000000000000000FFFF5B799BAC'), 'FR', 1, 17932),
(UNHEX('00000000000000000000FFFF2D768712'), 'SG', 1, 17932),
(UNHEX('00000000000000000000FFFFB23E2275'), 'GB', 1, 17932),
(UNHEX('00000000000000000000FFFFB92D48B0'), 'ES', 1, 17932),
(UNHEX('00000000000000000000FFFF53899189'), 'NL', 1, 17932),
(UNHEX('00000000000000000000FFFF47B0D75A'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF9538FF70'), 'CA', 2, 17932),
(UNHEX('00000000000000000000FFFFCB71AE2F'), 'VN', 5, 17932),
(UNHEX('00000000000000000000FFFFCAA8C58C'), 'TW', 1, 17932),
(UNHEX('00000000000000000000FFFF6D4637D2'), 'DK', 1, 17932),
(UNHEX('00000000000000000000FFFF2D4DF9D3'), 'US', 2, 17932),
(UNHEX('00000000000000000000FFFF8BA261FA'), 'JP', 1, 17932),
(UNHEX('00000000000000000000FFFF0356703D'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF43CD995D'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFF4A515902'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFD5E800FB'), 'TR', 1, 17932),
(UNHEX('00000000000000000000FFFF7B1F0C33'), 'VN', 1, 17932),
(UNHEX('00000000000000000000FFFF34295AF6'), 'US', 1, 17932),
(UNHEX('00000000000000000000FFFFB956A462'), 'TR', 1, 17933),
(UNHEX('00000000000000000000FFFFA290591F'), 'US', 1, 17933),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 2, 17933),
(UNHEX('00000000000000000000FFFFC063E7A3'), 'CA', 1, 17933),
(UNHEX('00000000000000000000FFFFB9560DD5'), 'TR', 2, 17936),
(UNHEX('00000000000000000000FFFF25BB81A6'), 'FR', 2, 17936),
(UNHEX('00000000000000000000FFFFC7F9E641'), 'US', 1, 17936),
(UNHEX('00000000000000000000FFFF1255C0FD'), 'US', 4, 17936),
(UNHEX('00000000000000000000FFFFB96457CE'), 'RO', 1, 17936),
(UNHEX('00000000000000000000FFFFB956A46F'), 'TR', 2, 17936),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 1, 17936),
(UNHEX('00000000000000000000FFFFC7F9E644'), 'US', 1, 17936),
(UNHEX('00000000000000000000FFFFB956A464'), 'TR', 1, 17936),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 1, 17936),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17936),
(UNHEX('00000000000000000000FFFF264B885D'), 'US', 1, 17936),
(UNHEX('00000000000000000000FFFFB9DC6522'), '', 1, 17936),
(UNHEX('00000000000000000000FFFFB9DC6539'), '', 1, 17936),
(UNHEX('00000000000000000000FFFF1FDC00E1'), 'NL', 1, 17936),
(UNHEX('00000000000000000000FFFFC39AEBBE'), 'FR', 2, 17936),
(UNHEX('00000000000000000000FFFFB9DC651C'), '', 1, 17936),
(UNHEX('00000000000000000000FFFF6D466413'), 'AT', 1, 17937),
(UNHEX('00000000000000000000FFFFB956A46C'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFFB956A46A'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFFB00A63C8'), 'CH', 1, 17937),
(UNHEX('00000000000000000000FFFF51B454CE'), 'MD', 1, 17937),
(UNHEX('00000000000000000000FFFFCC5DA5D7'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFF67240BA2'), 'ID', 2, 17937),
(UNHEX('00000000000000000000FFFF836CD174'), 'CL', 1, 17937),
(UNHEX('00000000000000000000FFFF726C969F'), 'KR', 1, 17937),
(UNHEX('00000000000000000000FFFFB9389265'), 'NL', 1, 17937),
(UNHEX('00000000000000000000FFFFA5E387DE'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFF67DDDD95'), 'VN', 3, 17937),
(UNHEX('00000000000000000000FFFFC64739FB'), 'US', 2, 17937),
(UNHEX('00000000000000000000FFFF0DE82EA4'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFFB956A704'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFFBCA67D97'), 'NL', 1, 17937),
(UNHEX('00000000000000000000FFFFCEBDA4D3'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFF67742D32'), '', 1, 17937) ;
INSERT INTO `wp2o_wfBlockedIPLog` ( `IP`, `countryCode`, `blockCount`, `unixday`) VALUES
(UNHEX('00000000000000000000FFFF6735E64B'), 'VN', 1, 17937),
(UNHEX('00000000000000000000FFFF70AFB810'), 'KR', 3, 17937),
(UNHEX('00000000000000000000FFFF754A7DC0'), 'ID', 1, 17937),
(UNHEX('00000000000000000000FFFF7B1E870A'), 'VN', 1, 17937),
(UNHEX('00000000000000000000FFFFBC88AE05'), 'IR', 1, 17937),
(UNHEX('00000000000000000000FFFFB01F6A39'), 'FR', 1, 17937),
(UNHEX('00000000000000000000FFFFD42FEAA1'), 'FR', 1, 17937),
(UNHEX('00000000000000000000FFFFA2904FDF'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFFCA34895A'), 'ID', 1, 17937),
(UNHEX('00000000000000000000FFFFA2909A9D'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFFB956A463'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFF6735E607'), 'VN', 1, 17937),
(UNHEX('00000000000000000000FFFFD5D43D98'), 'SE', 1, 17937),
(UNHEX('00000000000000000000FFFF6A78D550'), 'CN', 1, 17937),
(UNHEX('00000000000000000000FFFF675FC52A'), '', 1, 17937),
(UNHEX('00000000000000000000FFFF9387BCC1'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFFA76341E7'), 'US', 2, 17937),
(UNHEX('00000000000000000000FFFFB23EE4A2'), 'NL', 1, 17937),
(UNHEX('00000000000000000000FFFFAF7EE8AD'), 'KR', 1, 17937),
(UNHEX('00000000000000000000FFFFDD798CC4'), 'AU', 1, 17937),
(UNHEX('00000000000000000000FFFF5DAEA2C8'), 'RO', 1, 17937),
(UNHEX('00000000000000000000FFFFB9CF264B'), '', 1, 17937),
(UNHEX('00000000000000000000FFFF3ED25F0D'), 'FR', 1, 17937),
(UNHEX('00000000000000000000FFFFB956A467'), 'TR', 1, 17937),
(UNHEX('00000000000000000000FFFFD17E61D9'), 'US', 1, 17937),
(UNHEX('00000000000000000000FFFF7B1F0C33'), 'VN', 1, 17938),
(UNHEX('00000000000000000000FFFF6F5A90C8'), 'MY', 2, 17938),
(UNHEX('00000000000000000000FFFF2EB6DF55'), 'NL', 1, 17938),
(UNHEX('00000000000000000000FFFF8E5DD29A'), 'CA', 1, 17938),
(UNHEX('00000000000000000000FFFFD2F5086E'), 'VN', 1, 17938),
(UNHEX('00000000000000000000FFFF894A06E0'), 'PL', 1, 17938),
(UNHEX('00000000000000000000FFFF7B1EF037'), 'VN', 1, 17938),
(UNHEX('00000000000000000000FFFF5D68D6E2'), 'DE', 1, 17938),
(UNHEX('00000000000000000000FFFF965F6DBF'), 'JP', 2, 17938),
(UNHEX('00000000000000000000FFFF8E5D3584'), 'CA', 1, 17938),
(UNHEX('00000000000000000000FFFFB955BFC4'), 'TR', 1, 17938),
(UNHEX('00000000000000000000FFFF7B1E870A'), 'VN', 2, 17938),
(UNHEX('00000000000000000000FFFFA93F05C9'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFF2E6539C4'), 'GB', 1, 17938),
(UNHEX('00000000000000000000FFFF67DDDD95'), 'VN', 1, 17938),
(UNHEX('00000000000000000000FFFF67E47027'), 'IN', 1, 17938),
(UNHEX('00000000000000000000FFFF239AD0C3'), 'IN', 1, 17938),
(UNHEX('00000000000000000000FFFF1BFE2F85'), 'TH', 2, 17938),
(UNHEX('00000000000000000000FFFFCEBDA4D3'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFF8A4415C3'), 'US', 2, 17938),
(UNHEX('00000000000000000000FFFFB9775132'), 'TR', 1, 17938),
(UNHEX('00000000000000000000FFFF675954F5'), '', 1, 17938),
(UNHEX('00000000000000000000FFFF682AB633'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFFD5D43D98'), 'SE', 2, 17938),
(UNHEX('00000000000000000000FFFF52DC2209'), 'CH', 1, 17938),
(UNHEX('00000000000000000000FFFFB94AFC0B'), 'CZ', 3, 17938),
(UNHEX('00000000000000000000FFFFB01F6A39'), 'FR', 2, 17938),
(UNHEX('00000000000000000000FFFFD42FEAA1'), 'FR', 1, 17938),
(UNHEX('00000000000000000000FFFFBB2C7ECC'), 'BR', 1, 17938),
(UNHEX('00000000000000000000FFFFAF7EE8AD'), 'KR', 1, 17938),
(UNHEX('00000000000000000000FFFF965F191A'), 'SG', 1, 17938),
(UNHEX('00000000000000000000FFFF67DDDDBD'), 'VN', 1, 17938),
(UNHEX('00000000000000000000FFFF566DAA60'), 'ES', 1, 17938),
(UNHEX('00000000000000000000FFFFDD798E39'), 'AU', 1, 17938),
(UNHEX('00000000000000000000FFFFB63D1767'), 'CN', 1, 17938),
(UNHEX('00000000000000000000FFFFB956A46F'), 'TR', 1, 17938),
(UNHEX('00000000000000000000FFFF23C893E8'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFF6C3E0003'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFFA5E387DE'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFFCEBD8B23'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFFDD798CC4'), 'AU', 1, 17938),
(UNHEX('00000000000000000000FFFFB9DC6506'), '', 1, 17938),
(UNHEX('00000000000000000000FFFFB9DC6541'), '', 1, 17938),
(UNHEX('00000000000000000000FFFFB9DC6523'), '', 1, 17938),
(UNHEX('00000000000000000000FFFF704E0B18'), 'VN', 1, 17938),
(UNHEX('00000000000000000000FFFF0D4CFAE1'), 'SG', 1, 17938),
(UNHEX('00000000000000000000FFFFB955BFC9'), 'TR', 2, 17938),
(UNHEX('00000000000000000000FFFF68F8E62A'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFF9E45F251'), 'CA', 1, 17938),
(UNHEX('00000000000000000000FFFF67742D32'), '', 1, 17938),
(UNHEX('00000000000000000000FFFF32746254'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFF2D4F0ABA'), 'US', 1, 17938),
(UNHEX('00000000000000000000FFFFD17E6E63'), 'US', 1, 17938) ;

#
# End of data contents of table `wp2o_wfBlockedIPLog`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfBlocks`
#

DROP TABLE IF EXISTS `wp2o_wfBlocks`;


#
# Table structure of table `wp2o_wfBlocks`
#

CREATE TABLE `wp2o_wfBlocks` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `wfsn` tinyint(3) unsigned DEFAULT '0',
  `permanent` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`),
  KEY `k1` (`wfsn`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfBlocks`
#
INSERT INTO `wp2o_wfBlocks` ( `IP`, `blockedTime`, `reason`, `lastAttempt`, `blockedHits`, `wfsn`, `permanent`) VALUES
(UNHEX('00000000000000000000FFFFB955EF6E'), 1550725448, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB956A46B'), 1550719582, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB9DC6523'), 1550713365, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB00A63C8'), 1550713354, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB956A464'), 1550692034, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB955BFC9'), 1550683847, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFF4DF7B5A5'), 1550682679, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFF43A9970D'), 1550678711, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFF8A80F279'), 1550721327, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB955EEF4'), 1550671380, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB956A46A'), 1550665145, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFF2EA5F59A'), 1550660002, 'Blocked by Wordfence Security Network', 0, 0, 1, 0),
(UNHEX('00000000000000000000FFFFB9DC6546'), 1550659988, 'Blocked by Wordfence Security Network', 0, 0, 1, 0) ;

#
# End of data contents of table `wp2o_wfBlocks`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfBlocksAdv`
#

DROP TABLE IF EXISTS `wp2o_wfBlocksAdv`;


#
# Table structure of table `wp2o_wfBlocksAdv`
#

CREATE TABLE `wp2o_wfBlocksAdv` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `blockType` char(2) NOT NULL,
  `blockString` varchar(255) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `reason` varchar(255) NOT NULL,
  `totalBlocked` int(10) unsigned DEFAULT '0',
  `lastBlocked` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfBlocksAdv`
#

#
# End of data contents of table `wp2o_wfBlocksAdv`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfConfig`
#

DROP TABLE IF EXISTS `wp2o_wfConfig`;


#
# Table structure of table `wp2o_wfConfig`
#

CREATE TABLE `wp2o_wfConfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfConfig`
#
INSERT INTO `wp2o_wfConfig` ( `name`, `val`, `autoload`) VALUES
('alertOn_critical', '1', 'yes'),
('alertOn_update', '0', 'yes'),
('alertOn_warnings', '1', 'yes'),
('alertOn_throttle', '0', 'yes'),
('alertOn_block', '1', 'yes'),
('alertOn_loginLockout', '1', 'yes'),
('alertOn_lostPasswdForm', '1', 'yes'),
('alertOn_adminLogin', '1', 'yes'),
('alertOn_nonAdminLogin', '0', 'yes'),
('liveTrafficEnabled', '1', 'yes'),
('scansEnabled_checkReadableConfig', '1', 'yes'),
('advancedCommentScanning', '0', 'yes'),
('checkSpamIP', '0', 'yes'),
('spamvertizeCheck', '0', 'yes'),
('liveTraf_ignorePublishers', '1', 'yes'),
('scheduledScansEnabled', '1', 'yes'),
('scansEnabled_public', '0', 'yes'),
('scansEnabled_heartbleed', '1', 'yes'),
('scansEnabled_core', '1', 'yes'),
('scansEnabled_themes', '0', 'yes'),
('scansEnabled_plugins', '0', 'yes'),
('scansEnabled_coreUnknown', '1', 'yes'),
('scansEnabled_malware', '1', 'yes'),
('scansEnabled_fileContents', '1', 'yes'),
('scansEnabled_posts', '1', 'yes'),
('scansEnabled_comments', '1', 'yes'),
('scansEnabled_passwds', '1', 'yes'),
('scansEnabled_diskSpace', '1', 'yes'),
('scansEnabled_options', '1', 'yes'),
('scansEnabled_wpscan_fullPathDisclosure', '1', 'yes'),
('scansEnabled_wpscan_directoryListingEnabled', '1', 'yes'),
('scansEnabled_dns', '1', 'yes'),
('scansEnabled_scanImages', '0', 'yes'),
('scansEnabled_highSense', '0', 'yes'),
('scansEnabled_oldVersions', '1', 'yes'),
('scansEnabled_suspiciousAdminUsers', '1', 'yes'),
('firewallEnabled', '1', 'yes'),
('blockFakeBots', '0', 'yes'),
('autoBlockScanners', '1', 'yes'),
('loginSecurityEnabled', '1', 'yes'),
('loginSec_lockInvalidUsers', '0', 'yes'),
('loginSec_maskLoginErrors', '1', 'yes'),
('loginSec_blockAdminReg', '1', 'yes'),
('loginSec_disableAuthorScan', '1', 'yes'),
('loginSec_disableOEmbedAuthor', '0', 'yes'),
('other_hideWPVersion', '1', 'yes'),
('other_noAnonMemberComments', '1', 'yes'),
('other_blockBadPOST', '0', 'yes'),
('other_scanComments', '1', 'yes'),
('other_pwStrengthOnUpdate', '1', 'yes'),
('other_WFNet', '1', 'yes'),
('other_scanOutside', '0', 'yes'),
('deleteTablesOnDeact', '0', 'yes'),
('autoUpdate', '0', 'yes'),
('disableCookies', '0', 'yes'),
('startScansRemotely', '0', 'yes'),
('addCacheComment', '0', 'yes'),
('disableCodeExecutionUploads', '0', 'yes'),
('allowHTTPSCaching', '0', 'yes'),
('debugOn', '0', 'yes'),
('email_summary_enabled', '1', 'yes'),
('email_summary_dashboard_widget_enabled', '1', 'yes'),
('ssl_verify', '1', 'yes'),
('ajaxWatcherDisabled_front', '0', 'yes'),
('ajaxWatcherDisabled_admin', '0', 'yes'),
('scan_include_extra', '', 'yes'),
('alertEmails', 'ryanlee@creativebugs.com.my', 'yes'),
('liveTraf_ignoreUsers', '', 'yes'),
('liveTraf_ignoreIPs', '', 'yes'),
('liveTraf_ignoreUA', '', 'yes'),
('apiKey', '391f230c275643bcc7bb9742a8585cfc5c31043dd2618a3a059a00d6410f9f152a3f77ae874a050f9c3f564a282b842e23aa676473fe4ace0c0e08603bd89583', 'yes'),
('maxMem', '256', 'yes'),
('scan_exclude', 'wp-content/plugins/LayerSlider/demos/v5/slider.zip\nwp-content/plugins/advanced-iframe/includes/php-browser-detection.php\nwp-content/themes/betheme/functions/builder/fields.php\nwp-content/themes/____betheme/muffin-options/theme-options.php\nwp-content/plugins/advanced-iframe/includes/advanced-iframe-main-after-iframe.php\nwp-content/plugins/revslider/includes/slider.class.php\nwp-content/themes/betheme/includes/header-top-bar-right.php\nwp-content/plugins/js_composer/assets/lib/bower/ace-builds/src-min-noconflict/ace.js\nwp-content/plugins/revslider/admin/views/templates/slider-main-options.php\nwp-content/plugins/revslider/admin/views/navigation-editor.php\nwp-content/plugins/js_composer/include/templates/shortcodes/vc_progress_bar.php\nwp-content/plugins/js_composer/include/params/vc_grid_item/editor/class-vc-grid-item-editor.php\nwp-content/themes/____betheme/functions/meta-page.php\nwp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.video.min.js\nwp-content/plugins/revslider/includes/framework/plugin-update.class.php\nwp-content/plugins/revslider/public/assets/js/source/jquery.themepunch.tools.min.js\nwp-content/plugins/revslider/includes/navigation.class.php\nwp-content/themes/____betheme/functions/theme-shortcodes.php\nwp-content/plugins/revslider/public/assets/js/source/jquery.themepunch.revolution.js\nwp-content/plugins/revslider/admin/assets/js/edit_layers.js\nwp-content/themes/____betheme/functions/class-tgm-plugin-activation.php\nwp-content/plugins/revslider/includes/framework/em-integration.class.php\nwp-content/plugins/revslider/includes/output.class.php\nwp-content/plugins/js_composer/include/templates/shortcodes/vc_single_image.php\nwp-content/themes/____betheme/js/plugins.js\nwp-content/themes/____betheme/functions/plugins/visual-composer.php\nwp-content/themes/____betheme/js/scripts.js\nwp-content/plugins/js_composer/include/templates/shortcodes/vc_tta_section.php\nwp-content/themes/____betheme/bbpress/user-details.php\nwp-content/themes/____betheme/functions/importer/wordpress-importer.php\nwp-content/plugins/js_composer/config/content/shortcode-vc-round-chart.php\nwp-content/plugins/revslider/public/revslider-front.class.php\nwp-content/plugins/js_composer/include/templates/editors/popups/panel_templates_editor.tpl.php\nwp-content/plugins/revslider/public/assets/js/jquery.themepunch.tools.min.js\nwp-content/themes/____betheme/functions/theme-mega-menu.php\nwp-content/plugins/revslider/release_log.html\nwp-content/themes/____betheme/bbpress/content-single-topic-lead.php\nwp-content/plugins/revslider/includes/slide.class.php\nwp-content/plugins/revslider/admin/views/system/dialog-video.php\nwp-content/plugins/revslider/includes/tinybox.class.php\nwp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.layeranimation.js\nwp-content/themes/____betheme/functions/importer/parsers.php\nwp-content/plugins/js_composer/include/classes/shortcodes/shortcodes.php\nwp-content/plugins/revslider/includes/framework/update.class.php\nwp-content/plugins/js_composer/assets/js/dist/backend.min.js\nwp-content/plugins/revslider/includes/external-sources.class.php\nwp-content/plugins/js_composer/include/helpers/class-vc-color-helper.php\nwp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_recentcomments.php\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-twitter.php\nwp-content/themes/____betheme/functions/builder/back.php\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-column.php\nwp-content/plugins/revslider/admin/views/templates/slide-stage.php\nwp-content/plugins/LayerSlider/views/slider_edit.php\nwp-content/themes/____betheme/bbpress/form-topic-split.php\nwp-content/plugins/js_composer/include/autoload/vc-pages/automapper.php\nwp-content/themes/____betheme/functions/theme-functions.php\nwp-content/themes/____betheme/footer.php\nwp-content/themes/____betheme/bbpress/form-search.php\nwp-content/plugins/revslider/admin/views/templates/slide-selector.php\nwp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.slideanims.js\nwp-content/themes/____betheme/functions/builder/js/scripts.js\nwp-content/themes/betheme/functions/builder/back.php\nwp-content/plugins/js_composer/include/templates/shortcodes/vc_btn.php\nwp-content/plugins/revslider/includes/framework/cssparser.class.php\nwp-content/plugins/revslider/includes/operations.class.php\nwp-content/themes/betheme/bbpress/form-topic-split.php\nwp-content/themes/betheme/functions/theme-functions.php\nwp-content/themes/betheme/bbpress/form-topic.php\nwp-content/plugins/js_composer/include/templates/editors/partials/access-manager-js.tpl.php\nwp-content/plugins/js_composer/include/templates/shortcodes/vc_posts_slider.php\nwp-content/plugins/js_composer/include/autoload/vendors/acf.php\nwp-content/plugins/js_composer/config/templates.php\nwp-content/plugins/js_composer/assets/js/dist/settings.min.js\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem.php\nwp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_tagcloud.php\nwp-content/plugins/js_composer/include/autoload/vc-pages/welcome-screen.php\nwp-content/plugins/LayerSlider/config/defaults.php\nwp-content/plugins/revslider/includes/framework/base-admin.class.php\nwp-content/plugins/js_composer/include/templates/editors/partials/add_element_search.tpl.php\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-animated-block.php\nwp-content/plugins/js_composer/assets/lib/vc_carousel/js/vc_carousel.min.js\nwp-content/plugins/js_composer/include/params/vc_grid_item/templates.php\nwp-content/plugins/js_composer/include/templates/editors/frontend_editor.tpl.php\nwp-content/plugins/js_composer/include/autoload/vendors/gravity_forms.php\nwp-content/plugins/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js\nwp-content/plugins/js_composer/include/classes/editors/popups/class-vc-templates-editor.php\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-masonry-media-grid.php\nwp-content/plugins/js_composer/config/wp/shortcode-vc-wp-archives.php\nwp-content/plugins/js_composer/include/autoload/hook-vc-grid.php\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-tabs.php\nwp-content/plugins/js_composer/include/classes/vendors/plugins/woocommerce/grid-item-filters.php\nwp-content/plugins/LayerSlider/layerslider.php\nwp-content/plugins/js_composer/include/classes/editors/class-vc-frontend-editor.php\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-custom-field.php\nwp-content/plugins/js_composer/include/classes/shortcodes/vc-cta.php\nwp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Gallery.php\nwp-content/plugins/LayerSlider/static/js/layerslider.transitions.js\nwp-content/plugins/js_composer/include/classes/settings/class-vc-settings.php\nwp-content/plugins/js_composer/config/tta/shortcode-vc-tta-section.php\nwp-content/plugins/revslider/admin/assets/js/codemirror/codemirror.js\nwp-content/themes/betheme/js/scripts.js\nwp-includes/version.php\nwp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-row-layout.tpl.php\nreadme.b5b7ba970076dc7f003c97ca8c6786fb.html\nwp-admin/_themes.php\nwp-content/wflogs/rules.php\nwp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_post_settings.tpl.php\nwp-admin/_theme-editor.php\nwp-content/themes/betheme/woocommerce/cart/cart-empty.php\nwp-content/plugins/js_composer/assets/lib/bower/isotope/dist/isotope.pkgd.min.js\nwp-content/plugins/LayerSlider/helpers/phpQuery.php\nwp-content/plugins/js_composer/include/params/font_container/font_container.php\nwp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_single_image.php\nwp-admin/_theme-install.php', 'yes'),
('whitelisted', '', 'yes'),
('bannedURLs', '', 'yes'),
('maxExecutionTime', '', 'yes'),
('howGetIPs', '', 'yes'),
('actUpdateInterval', '', 'yes'),
('alert_maxHourly', '0', 'yes'),
('loginSec_userBlacklist', '', 'yes'),
('liveTraf_maxRows', '2000', 'yes'),
('neverBlockBG', 'neverBlockVerified', 'yes'),
('loginSec_countFailMins', '240', 'yes'),
('loginSec_lockoutMins', '240', 'yes'),
('loginSec_strongPasswds', 'pubs', 'yes'),
('loginSec_maxFailures', '20', 'yes'),
('loginSec_maxForgotPasswd', '20', 'yes'),
('maxGlobalRequests', 'DISABLED', 'yes'),
('maxGlobalRequests_action', 'throttle', 'yes'),
('maxRequestsCrawlers', 'DISABLED', 'yes'),
('maxRequestsCrawlers_action', 'throttle', 'yes'),
('maxRequestsHumans', 'DISABLED', 'yes'),
('maxRequestsHumans_action', 'throttle', 'yes'),
('max404Crawlers', 'DISABLED', 'yes'),
('max404Crawlers_action', 'throttle', 'yes'),
('max404Humans', 'DISABLED', 'yes'),
('max404Humans_action', 'throttle', 'yes'),
('maxScanHits', 'DISABLED', 'yes'),
('maxScanHits_action', 'throttle', 'yes'),
('blockedTime', '300', 'yes') ;
INSERT INTO `wp2o_wfConfig` ( `name`, `val`, `autoload`) VALUES
('email_summary_interval', 'weekly', 'yes'),
('email_summary_excluded_directories', 'wp-content/cache,wp-content/wfcache,wp-content/plugins/wordfence/tmp', 'yes'),
('allowed404s', '/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml', 'yes'),
('encKey', 'a0c752813eb4776d', 'yes'),
('cbl_restOfSiteBlocked', '1', 'yes'),
('welcomeClosed', '1', 'yes'),
('vulnRegex', '/(?:wordfence_test_vuln_match|\\/timthumb\\.php|\\/thumb\\.php|\\/thumbs\\.php|\\/thumbnail\\.php|\\/thumbnails\\.php|\\/thumnails\\.php|\\/cropper\\.php|\\/picsize\\.php|\\/resizer\\.php|connectors\\/uploadtest\\.html|connectors\\/test\\.html|mingleforumaction|uploadify\\.php|allwebmenus-wordpress-menu-plugin|wp-cycle-playlist|count-per-day|wp-autoyoutube|pay-with-tweet|comment-rating\\/ck-processkarma\\.php)/i', 'yes'),
('totalLoginHits', '39772', 'yes'),
('totalIPsBlocked', '17520', 'yes'),
('total503s', '23386', 'yes'),
('lastScheduledScanStart', '1550729009', 'yes'),
('totalScansRun', '1727', 'yes'),
('wfKillRequested', '0', 'no'),
('currentCronKey', '', 'yes'),
('wf_scanRunning', '', 'yes'),
('wfPeakMemory', '49094496', 'yes'),
('wfStatusStartMsgs', 'a:18:{i:0;s:0:"";i:1;s:0:"";i:2;s:0:"";i:3;s:0:"";i:4;s:0:"";i:5;s:0:"";i:6;s:0:"";i:7;s:0:"";i:8;s:0:"";i:9;s:0:"";i:10;s:0:"";i:11;s:0:"";i:12;s:0:"";i:13;s:0:"";i:14;s:0:"";i:15;s:0:"";i:16;s:0:"";i:17;s:0:"";}', 'yes'),
('wf_summaryItems', 'a:16:{s:12:"totalPlugins";i:20;s:10:"lastUpdate";i:1550729219;s:11:"totalThemes";i:4;s:9:"totalData";s:8:"70.16 MB";s:10:"totalFiles";i:5764;s:9:"totalDirs";i:1561;s:10:"linesOfPHP";i:599032;s:10:"linesOfJCH";i:391228;s:10:"totalUsers";i:1;s:10:"totalPages";s:2:"81";s:10:"totalPosts";s:2:"30";s:13:"totalComments";s:1:"0";s:15:"totalCategories";s:1:"4";s:11:"totalTables";i:48;s:9:"totalRows";i:30572;s:8:"scanTime";d:1550729219.1333739757537841796875;}', 'yes'),
('scanFileProcessing', '', 'yes'),
('lastEmailHash', '1550727658:915e300a45d9d8619e40da6e0926f3c1', 'yes'),
('lastAttackDataSendTime', '1550647149.306546', 'yes'),
('totalAlertsSent', '257', 'yes'),
('totalLogins', '152', 'yes'),
('lastAdminLogin', 'a:6:{s:6:"userID";i:1;s:8:"username";s:12:"adminranhill";s:9:"firstName";s:0:"";s:8:"lastName";s:0:"";s:4:"time";s:30:"Thu 21st February @ 05:40:58AM";s:2:"IP";s:13:"211.24.101.22";}', 'yes'),
('totalIPsLocked', '97', 'yes'),
('dismissAutoPrependNotice', '1', 'yes'),
('adminUserList', 'a:1:{i:1;i:1;}', 'yes'),
('wfsd_engine', '', 'no'),
('signatureUpdateTime', '1530552390', 'yes'),
('wf_dnsCNAME', '', 'yes'),
('wf_dnsA', 'www.investors-watch.com/wp-staging/ranhill points to 110.4.45.129', 'yes'),
('wf_dnsMX', '', 'yes'),
('wf_dnsLogged', '1', 'yes'),
('lastScanCompleted', 'ok', 'yes'),
('emailedIssuesList', 'a:240:{i:0;a:2:{s:7:"ignoreC";s:32:"cf10cda229101400891d29fbed29baca";s:7:"ignoreP";s:32:"9dc7c2e489553511c39af231e4624cfb";}i:1;a:2:{s:7:"ignoreC";s:32:"0d3ca43e868b05b67b684afb68ef965d";s:7:"ignoreP";s:32:"1d66db1707127797c6c82848371fae04";}i:2;a:2:{s:7:"ignoreC";s:32:"197fb3710eb285ab2d9b6f2ddf3ea825";s:7:"ignoreP";s:32:"cbffc182d68dc7529c3a7b7c0f7e69a5";}i:3;a:2:{s:7:"ignoreC";s:32:"c21b4618d2cb808a42cdae3ac304f171";s:7:"ignoreP";s:32:"fab3584b1c80607cdb23ea2fe39c1468";}i:4;a:2:{s:7:"ignoreC";s:32:"7638d96c9d0aaa40af382609a5fb6952";s:7:"ignoreP";s:32:"e67b29142d231ecef92a2f586f8d5858";}i:5;a:2:{s:7:"ignoreC";s:32:"44caa6a11591380b459a61af42be435f";s:7:"ignoreP";s:32:"44caa6a11591380b459a61af42be435f";}i:6;a:2:{s:7:"ignoreC";s:32:"8a58e8df64b2e04a62d2c906143644de";s:7:"ignoreP";s:32:"8a58e8df64b2e04a62d2c906143644de";}i:7;a:2:{s:7:"ignoreC";s:32:"161e699908259d1087566182700a19f5";s:7:"ignoreP";s:32:"161e699908259d1087566182700a19f5";}i:8;a:2:{s:7:"ignoreC";s:32:"c1f94b58f4b921454888faa55438db84";s:7:"ignoreP";s:32:"c1f94b58f4b921454888faa55438db84";}i:9;a:2:{s:7:"ignoreC";s:32:"c405847831ad63900d4707a51a352380";s:7:"ignoreP";s:32:"c405847831ad63900d4707a51a352380";}i:10;a:2:{s:7:"ignoreC";s:32:"43ec6f30abb8058f2d24f4ab4ce2ba54";s:7:"ignoreP";s:32:"43ec6f30abb8058f2d24f4ab4ce2ba54";}i:11;a:2:{s:7:"ignoreC";s:32:"90d6bee1c11d1429011967952b7fc4b8";s:7:"ignoreP";s:32:"90d6bee1c11d1429011967952b7fc4b8";}i:12;a:2:{s:7:"ignoreC";s:32:"6ff702b2a23d005d9ea1141635337167";s:7:"ignoreP";s:32:"6ff702b2a23d005d9ea1141635337167";}i:13;a:2:{s:7:"ignoreC";s:32:"49778c768287a6dfaaa4abd025d644ea";s:7:"ignoreP";s:32:"49778c768287a6dfaaa4abd025d644ea";}i:14;a:2:{s:7:"ignoreC";s:32:"74d0ab44f8f5df0ee479cafca1804e64";s:7:"ignoreP";s:32:"74d0ab44f8f5df0ee479cafca1804e64";}i:15;a:2:{s:7:"ignoreC";s:32:"b35fe1ebd1e1b93317bdcc1c3dba1d8c";s:7:"ignoreP";s:32:"b35fe1ebd1e1b93317bdcc1c3dba1d8c";}i:16;a:2:{s:7:"ignoreC";s:32:"8db05dc51aa57b12f8b95990f17292ed";s:7:"ignoreP";s:32:"8db05dc51aa57b12f8b95990f17292ed";}i:17;a:2:{s:7:"ignoreC";s:32:"ff113fc3db97e9241c54e418c73a837f";s:7:"ignoreP";s:32:"ff113fc3db97e9241c54e418c73a837f";}i:18;a:2:{s:7:"ignoreC";s:32:"4414de133d81c86b4e4e1f61ca4f5017";s:7:"ignoreP";s:32:"4414de133d81c86b4e4e1f61ca4f5017";}i:19;a:2:{s:7:"ignoreC";s:32:"e953522f238a059102b007a657fb38cb";s:7:"ignoreP";s:32:"e953522f238a059102b007a657fb38cb";}i:20;a:2:{s:7:"ignoreC";s:32:"4d82a8c8eca2432ad4140f821ed50f61";s:7:"ignoreP";s:32:"4d82a8c8eca2432ad4140f821ed50f61";}i:21;a:2:{s:7:"ignoreC";s:32:"639cc6fb291ba569176cbdf88b7a39c0";s:7:"ignoreP";s:32:"639cc6fb291ba569176cbdf88b7a39c0";}i:22;a:2:{s:7:"ignoreC";s:32:"86a16443e00f62991c2ab9f59265e194";s:7:"ignoreP";s:32:"86a16443e00f62991c2ab9f59265e194";}i:23;a:2:{s:7:"ignoreC";s:32:"35c0dd2ebc973598d72900313c3b83f7";s:7:"ignoreP";s:32:"35c0dd2ebc973598d72900313c3b83f7";}i:24;a:2:{s:7:"ignoreC";s:32:"8d18ec1f493e47215549cbe54ed9ba77";s:7:"ignoreP";s:32:"8d18ec1f493e47215549cbe54ed9ba77";}i:25;a:2:{s:7:"ignoreC";s:32:"851f75fc62300b8d82b4fabaf8099d24";s:7:"ignoreP";s:32:"851f75fc62300b8d82b4fabaf8099d24";}i:26;a:2:{s:7:"ignoreC";s:32:"01cf3dc349a29c54dbe890cda58a5645";s:7:"ignoreP";s:32:"01cf3dc349a29c54dbe890cda58a5645";}i:27;a:2:{s:7:"ignoreC";s:32:"d4def2ba1abcd64321f4ed3e57c9eb13";s:7:"ignoreP";s:32:"d4def2ba1abcd64321f4ed3e57c9eb13";}i:28;a:2:{s:7:"ignoreC";s:32:"e4ce3ae0e19cab6dc934596a0342df11";s:7:"ignoreP";s:32:"e4ce3ae0e19cab6dc934596a0342df11";}i:29;a:2:{s:7:"ignoreC";s:32:"d000f7861e6fc9d888847dde39cf09e6";s:7:"ignoreP";s:32:"d000f7861e6fc9d888847dde39cf09e6";}i:30;a:2:{s:7:"ignoreC";s:32:"10712f0c6f6220f9815a487e91b9c4dd";s:7:"ignoreP";s:32:"10712f0c6f6220f9815a487e91b9c4dd";}i:31;a:2:{s:7:"ignoreC";s:32:"77995b138476e4b2ab4e538c0bec16c2";s:7:"ignoreP";s:32:"77995b138476e4b2ab4e538c0bec16c2";}i:32;a:2:{s:7:"ignoreC";s:32:"60f1c928ef53071c75f38e3b31a8bab2";s:7:"ignoreP";s:32:"60f1c928ef53071c75f38e3b31a8bab2";}i:33;a:2:{s:7:"ignoreC";s:32:"c370806c96d4831057875cdc6228375b";s:7:"ignoreP";s:32:"c370806c96d4831057875cdc6228375b";}i:34;a:2:{s:7:"ignoreC";s:32:"1a82759017dd10d1997e44ec0d718b18";s:7:"ignoreP";s:32:"1a82759017dd10d1997e44ec0d718b18";}i:35;a:2:{s:7:"ignoreC";s:32:"025c676773499092626578c11fa955f7";s:7:"ignoreP";s:32:"025c676773499092626578c11fa955f7";}i:36;a:2:{s:7:"ignoreC";s:32:"d8ffe129d4b1e2922c40af008161d05a";s:7:"ignoreP";s:32:"d8ffe129d4b1e2922c40af008161d05a";}i:37;a:2:{s:7:"ignoreC";s:32:"7e97b1f368b080b92529faeec4d50e39";s:7:"ignoreP";s:32:"7e97b1f368b080b92529faeec4d50e39";}i:38;a:2:{s:7:"ignoreC";s:32:"54d77d645c840c9d0270a20fafaf3b60";s:7:"ignoreP";s:32:"54d77d645c840c9d0270a20fafaf3b60";}i:39;a:2:{s:7:"ignoreC";s:32:"2bae72192db385a05e679fc101a1b7e2";s:7:"ignoreP";s:32:"2bae72192db385a05e679fc101a1b7e2";}i:40;a:2:{s:7:"ignoreC";s:32:"0f352a583903a432f3a9277e61e9fb04";s:7:"ignoreP";s:32:"0f352a583903a432f3a9277e61e9fb04";}i:41;a:2:{s:7:"ignoreC";s:32:"4d658be8d28bac12bd51b9cb832d814a";s:7:"ignoreP";s:32:"4d658be8d28bac12bd51b9cb832d814a";}i:42;a:2:{s:7:"ignoreC";s:32:"b9f1534ad5583c9a2a23bef8a747e07e";s:7:"ignoreP";s:32:"b9f1534ad5583c9a2a23bef8a747e07e";}i:43;a:2:{s:7:"ignoreC";s:32:"6f58006e3cf2e064b8e100ae3ab68079";s:7:"ignoreP";s:32:"6f58006e3cf2e064b8e100ae3ab68079";}i:44;a:2:{s:7:"ignoreC";s:32:"c07215c167973cda9531f9da9f8dd29b";s:7:"ignoreP";s:32:"c07215c167973cda9531f9da9f8dd29b";}i:45;a:2:{s:7:"ignoreC";s:32:"12320aefa9ad97d7eb8d0c113918f2e6";s:7:"ignoreP";s:32:"12320aefa9ad97d7eb8d0c113918f2e6";}i:46;a:2:{s:7:"ignoreC";s:32:"8376ab0bfd7e72adca171ed5eccd8e64";s:7:"ignoreP";s:32:"8376ab0bfd7e72adca171ed5eccd8e64";}i:47;a:2:{s:7:"ignoreC";s:32:"d926bccc3a61399690a52ee53c57be64";s:7:"ignoreP";s:32:"d926bccc3a61399690a52ee53c57be64";}i:48;a:2:{s:7:"ignoreC";s:32:"352d1c19ba8014ce9ef932737d4bf035";s:7:"ignoreP";s:32:"352d1c19ba8014ce9ef932737d4bf035";}i:49;a:2:{s:7:"ignoreC";s:32:"24a4156aae99cc4c2531b659f8a84ede";s:7:"ignoreP";s:32:"24a4156aae99cc4c2531b659f8a84ede";}i:50;a:2:{s:7:"ignoreC";s:32:"2c258bc4cb17766e622fcd2fe5990364";s:7:"ignoreP";s:32:"2c258bc4cb17766e622fcd2fe5990364";}i:51;a:2:{s:7:"ignoreC";s:32:"a3e3862864dee23dc8f1ecba2f8869ae";s:7:"ignoreP";s:32:"a3e3862864dee23dc8f1ecba2f8869ae";}i:52;a:2:{s:7:"ignoreC";s:32:"d9608a7b3f7f7e358a1095a3fc902a40";s:7:"ignoreP";s:32:"d9608a7b3f7f7e358a1095a3fc902a40";}i:53;a:2:{s:7:"ignoreC";s:32:"6cc589435fdcd4c5b780f262794aff98";s:7:"ignoreP";s:32:"6cc589435fdcd4c5b780f262794aff98";}i:54;a:2:{s:7:"ignoreC";s:32:"45e20526e0377f6fd5752b0ee4ed66bb";s:7:"ignoreP";s:32:"45e20526e0377f6fd5752b0ee4ed66bb";}i:55;a:2:{s:7:"ignoreC";s:32:"b92b9f9c4277b5aae4c6f4bef3d9dc42";s:7:"ignoreP";s:32:"b92b9f9c4277b5aae4c6f4bef3d9dc42";}i:56;a:2:{s:7:"ignoreC";s:32:"84396080108c62e59531e69f17db97e2";s:7:"ignoreP";s:32:"84396080108c62e59531e69f17db97e2";}i:57;a:2:{s:7:"ignoreC";s:32:"5a1dfec3b7c86fdf144c31f6ddce2c96";s:7:"ignoreP";s:32:"5a1dfec3b7c86fdf144c31f6ddce2c96";}i:58;a:2:{s:7:"ignoreC";s:32:"a5eb1aa0363f51ab2db8628104afe2fa";s:7:"ignoreP";s:32:"a5eb1aa0363f51ab2db8628104afe2fa";}i:59;a:2:{s:7:"ignoreC";s:32:"e48fb4a4bfd1682173c763a801cc822a";s:7:"ignoreP";s:32:"e48fb4a4bfd1682173c763a801cc822a";}i:60;a:2:{s:7:"ignoreC";s:32:"7e6713c14897b8d5cc7c0ab5939d9d52";s:7:"ignoreP";s:32:"7e6713c14897b8d5cc7c0ab5939d9d52";}i:61;a:2:{s:7:"ignoreC";s:32:"754e7eeb8f46b4823534d9a0e7db65a9";s:7:"ignoreP";s:32:"754e7eeb8f46b4823534d9a0e7db65a9";}i:62;a:2:{s:7:"ignoreC";s:32:"e6315004a5bc1466ed566857d259b65e";s:7:"ignoreP";s:32:"e6315004a5bc1466ed566857d259b65e";}i:63;a:2:{s:7:"ignoreC";s:32:"5bbc11dffe1058af07504f207a3df5b8";s:7:"ignoreP";s:32:"5bbc11dffe1058af07504f207a3df5b8";}i:64;a:2:{s:7:"ignoreC";s:32:"e87755b3fc9329ac88dd0b2d60a97290";s:7:"ignoreP";s:32:"e87755b3fc9329ac88dd0b2d60a97290";}i:65;a:2:{s:7:"ignoreC";s:32:"bcf905e4080fb4da74dd2e1527cbcc78";s:7:"ignoreP";s:32:"bcf905e4080fb4da74dd2e1527cbcc78";}i:66;a:2:{s:7:"ignoreC";s:32:"53a82033c9cdeb2079c6f8c8a0b42c79";s:7:"ignoreP";s:32:"53a82033c9cdeb2079c6f8c8a0b42c79";}i:67;a:2:{s:7:"ignoreC";s:32:"17db431921d4df93510231eba5021f5a";s:7:"ignoreP";s:32:"17db431921d4df93510231eba5021f5a";}i:68;a:2:{s:7:"ignoreC";s:32:"e66667a2e446fb80fee3d201da8f6174";s:7:"ignoreP";s:32:"e66667a2e446fb80fee3d201da8f6174";}i:69;a:2:{s:7:"ignoreC";s:32:"31d26f52adef4ac32620e6ed7a348871";s:7:"ignoreP";s:32:"31d26f52adef4ac32620e6ed7a348871";}i:70;a:2:{s:7:"ignoreC";s:32:"234709863ae120606d9ad705704608ed";s:7:"ignoreP";s:32:"234709863ae120606d9ad705704608ed";}i:71;a:2:{s:7:"ignoreC";s:32:"42a9748629e075c67606912162eb2304";s:7:"ignoreP";s:32:"42a9748629e075c67606912162eb2304";}i:72;a:2:{s:7:"ignoreC";s:32:"f433d587854b8da0b450bd236e3d2803";s:7:"ignoreP";s:32:"f433d587854b8da0b450bd236e3d2803";}i:73;a:2:{s:7:"ignoreC";s:32:"4767a8e014aac6730e91c9e516a02555";s:7:"ignoreP";s:32:"4767a8e014aac6730e91c9e516a02555";}i:74;a:2:{s:7:"ignoreC";s:32:"56e1271ad32d4a40936785c2cb162de9";s:7:"ignoreP";s:32:"56e1271ad32d4a40936785c2cb162de9";}i:75;a:2:{s:7:"ignoreC";s:32:"3455a3fcd25bf9046c7ffed9866d593b";s:7:"ignoreP";s:32:"3455a3fcd25bf9046c7ffed9866d593b";}i:76;a:2:{s:7:"ignoreC";s:32:"943606626d8f093ae4e8ba24f289501d";s:7:"ignoreP";s:32:"943606626d8f093ae4e8ba24f289501d";}i:77;a:2:{s:7:"ignoreC";s:32:"a38dd8e692a7a3f05f35563fe2237685";s:7:"ignoreP";s:32:"a38dd8e692a7a3f05f35563fe2237685";}i:78;a:2:{s:7:"ignoreC";s:32:"7de3299d384ece4fb5685b784e04c8e6";s:7:"ignoreP";s:32:"7de3299d384ece4fb5685b784e04c8e6";}i:79;a:2:{s:7:"ignoreC";s:32:"57269761d49da8f5aeddbdf322c5940d";s:7:"ignoreP";s:32:"57269761d49da8f5aeddbdf322c5940d";}i:80;a:2:{s:7:"ignoreC";s:32:"c6e75a010c8acb73984b15a0c2c23145";s:7:"ignoreP";s:32:"c6e75a010c8acb73984b15a0c2c23145";}i:81;a:2:{s:7:"ignoreC";s:32:"c29090a351fc80296c9cd3b855ab5e48";s:7:"ignoreP";s:32:"c29090a351fc80296c9cd3b855ab5e48";}i:82;a:2:{s:7:"ignoreC";s:32:"a4d958c5c4102faf30306bdbd60addc3";s:7:"ignoreP";s:32:"a4d958c5c4102faf30306bdbd60addc3";}i:83;a:2:{s:7:"ignoreC";s:32:"61ac0b8f70fb135b2e31f1d8fb73e52e";s:7:"ignoreP";s:32:"61ac0b8f70fb135b2e31f1d8fb73e52e";}i:84;a:2:{s:7:"ignoreC";s:32:"4491d40511a6dabcdc795e7030f80d93";s:7:"ignoreP";s:32:"4491d40511a6dabcdc795e7030f80d93";}i:85;a:2:{s:7:"ignoreC";s:32:"a291fcdd5e69ec835607a23d533d13fa";s:7:"ignoreP";s:32:"a291fcdd5e69ec835607a23d533d13fa";}i:86;a:2:{s:7:"ignoreC";s:32:"f82e0ddf24ca9e6d9a3e227309532b04";s:7:"ignoreP";s:32:"f82e0ddf24ca9e6d9a3e227309532b04";}i:87;a:2:{s:7:"ignoreC";s:32:"feb24ce82d92e0c2681681fa134a3343";s:7:"ignoreP";s:32:"f3443840d5f04e0f6656b01db8c8f5e6";}i:88;a:2:{s:7:"ignoreC";s:32:"3c2bee2dbd8813b95937df23a7e7885e";s:7:"ignoreP";s:32:"1dcafe9d366c3cf0721b88993974a59e";}i:89;a:2:{s:7:"ignoreC";s:32:"9c4b11fe9f77aeeaf89136ddacc4ea48";s:7:"ignoreP";s:32:"3804a641686ae0395e0f1ae7222e6c59";}i:90;a:2:{s:7:"ignoreC";s:32:"12dfaf4182d5d279725dbded2398d017";s:7:"ignoreP";s:32:"9773e286d9039a2e3f185a147b89f2e7";}i:91;a:2:{s:7:"ignoreC";s:32:"2fa897f58875c78547ddd0c062572a56";s:7:"ignoreP";s:32:"129604c689a27955edc8372ac7849c13";}i:92;a:2:{s:7:"ignoreC";s:32:"174b93bc3ed50263fa05566ea7fb1dd1";s:7:"ignoreP";s:32:"9c3ef407361aadd0f210dd8730b7de31";}i:93;a:2:{s:7:"ignoreC";s:32:"2916b0ac0fd44cff7d5ba052aea7e8e4";s:7:"ignoreP";s:32:"d420785644f64a10896fd81e2d3cba1c";}i:94;a:2:{s:7:"ignoreC";s:32:"74cc6257dbe0a8119dd15b6329948835";s:7:"ignoreP";s:32:"28e3f2d9dca7c5409a43ed83e65ac027";}i:95;a:2:{s:7:"ignoreC";s:32:"bb23c2688d60d651c93fb717691ae166";s:7:"ignoreP";s:32:"93770516ab31664cdd11d3b41d207db1";}i:96;a:2:{s:7:"ignoreC";s:32:"2de87ba4967bbf719bd4650871ccee5c";s:7:"ignoreP";s:32:"965f6a87b9e5dcab46a245d01478a087";}i:97;a:2:{s:7:"ignoreC";s:32:"371aacbabda8f71ed2369d6f1a2ba733";s:7:"ignoreP";s:32:"6478ce7381fc9fc6873e023b2d9d5d01";}i:98;a:2:{s:7:"ignoreC";s:32:"0550be2895a97efc0d1ab47acc88ce93";s:7:"ignoreP";s:32:"320d19417b1a87e1e4b7beb56ea72423";}i:99;a:2:{s:7:"ignoreC";s:32:"355e4610b624862f5f9630498cd7e241";s:7:"ignoreP";s:32:"8dbf1f5aae07da70acba58a4dead1166";}i:100;a:2:{s:7:"ignoreC";s:32:"c6f16dfaaba1aada11f410953328b118";s:7:"ignoreP";s:32:"01d3cd4034061954b367d758aa0458b6";}i:101;a:2:{s:7:"ignoreC";s:32:"b5a2ee211a1ee5f2611740632de6adae";s:7:"ignoreP";s:32:"74eec8655c7345cd5067f4e8a814d49f";}i:102;a:2:{s:7:"ignoreC";s:32:"8ca33539f11fe3db467cc80c3ae573e5";s:7:"ignoreP";s:32:"9640edd843d39363fe210028263c9230";}i:103;a:2:{s:7:"ignoreC";s:32:"a29c44718a72aeb77dffffb5c06c63b8";s:7:"ignoreP";s:32:"5994269e1f4ca9e4ee92161f2b2ec4f9";}i:104;a:2:{s:7:"ignoreC";s:32:"63a48492de51ac7926c121fcb26e84bc";s:7:"ignoreP";s:32:"33cfc410828d85aaf720fc4a40e8adbc";}i:105;a:2:{s:7:"ignoreC";s:32:"78650c7cbcb99d87a50f0c16e07c58ff";s:7:"ignoreP";s:32:"ac7152ac2ac7ea14b670384986815da9";}i:106;a:2:{s:7:"ignoreC";s:32:"8e833f2386b5af444b29277ed37c0966";s:7:"ignoreP";s:32:"a0813bf06dd516743281eefe9b1861ae";}i:107;a:2:{s:7:"ignoreC";s:32:"1bbc3ddbd5b7aed0fd48db0d49910f77";s:7:"ignoreP";s:32:"1bbc3ddbd5b7aed0fd48db0d49910f77";}i:108;a:2:{s:7:"ignoreC";s:32:"80fc29bc80d2d6a50dfd0535a5164f84";s:7:"ignoreP";s:32:"80fc29bc80d2d6a50dfd0535a5164f84";}i:109;a:2:{s:7:"ignoreC";s:32:"566d706f1f8cb2b424d86c587d1a48ec";s:7:"ignoreP";s:32:"566d706f1f8cb2b424d86c587d1a48ec";}i:110;a:2:{s:7:"ignoreC";s:32:"af2a296861d51f572bce644a0674448e";s:7:"ignoreP";s:32:"af2a296861d51f572bce644a0674448e";}i:111;a:2:{s:7:"ignoreC";s:32:"f926f94a3d47c8d9f88991bbf64f8d9c";s:7:"ignoreP";s:32:"f926f94a3d47c8d9f88991bbf64f8d9c";}i:112;a:2:{s:7:"ignoreC";s:32:"042ab455f012c3c073a2d8e64da3eba6";s:7:"ignoreP";s:32:"042ab455f012c3c073a2d8e64da3eba6";}i:113;a:2:{s:7:"ignoreC";s:32:"1c1c3d7c3990c7346d2d137d4c89062b";s:7:"ignoreP";s:32:"1c1c3d7c3990c7346d2d137d4c89062b";}i:114;a:2:{s:7:"ignoreC";s:32:"e78d492fb82fb9dac4c1c2251ea9b29c";s:7:"ignoreP";s:32:"e78d492fb82fb9dac4c1c2251ea9b29c";}i:115;a:2:{s:7:"ignoreC";s:32:"59e4c49e4a5caccfe20e20b1ecb51d40";s:7:"ignoreP";s:32:"59e4c49e4a5caccfe20e20b1ecb51d40";}i:116;a:2:{s:7:"ignoreC";s:32:"18280e9f53ac1abe62b283e0082c4066";s:7:"ignoreP";s:32:"18280e9f53ac1abe62b283e0082c4066";}i:117;a:2:{s:7:"ignoreC";s:32:"a4887034d3b7481b64a6dbcfbf3bcf3f";s:7:"ignoreP";s:32:"a4887034d3b7481b64a6dbcfbf3bcf3f";}i:118;a:2:{s:7:"ignoreC";s:32:"8d5085d1c81075046df6847b4aad92a7";s:7:"ignoreP";s:32:"8d5085d1c81075046df6847b4aad92a7";}i:119;a:2:{s:7:"ignoreC";s:32:"45752d44a466f453a22071d93a9fc071";s:7:"ignoreP";s:32:"45752d44a466f453a22071d93a9fc071";}i:120;a:2:{s:7:"ignoreC";s:32:"87c5a0fa943c2c7dbbf22acd89ad61f4";s:7:"ignoreP";s:32:"87c5a0fa943c2c7dbbf22acd89ad61f4";}i:121;a:2:{s:7:"ignoreC";s:32:"37abf43c9dc6834891d4e0d282145bf7";s:7:"ignoreP";s:32:"9cc241ad23332e598db0f9d52ced5850";}i:122;a:2:{s:7:"ignoreC";s:32:"7eb75e342e26e66dc7ecdc8e8f36bc4f";s:7:"ignoreP";s:32:"7eb75e342e26e66dc7ecdc8e8f36bc4f";}i:123;a:2:{s:7:"ignoreC";s:32:"e94d3207d93391d6ca405c33f8d2469c";s:7:"ignoreP";s:32:"e94d3207d93391d6ca405c33f8d2469c";}i:124;a:2:{s:7:"ignoreC";s:32:"beb8ba08512f446d5973d404a10650df";s:7:"ignoreP";s:32:"beb8ba08512f446d5973d404a10650df";}i:125;a:2:{s:7:"ignoreC";s:32:"91a9e250712c84ac231ce2b72948e93e";s:7:"ignoreP";s:32:"91a9e250712c84ac231ce2b72948e93e";}i:126;a:2:{s:7:"ignoreC";s:32:"d3a7f30466608cb5eae4b1fccf7b83a0";s:7:"ignoreP";s:32:"d3a7f30466608cb5eae4b1fccf7b83a0";}i:127;a:2:{s:7:"ignoreC";s:32:"6ddb1318c06946ff4e6f7241cdd3d4f0";s:7:"ignoreP";s:32:"6ddb1318c06946ff4e6f7241cdd3d4f0";}i:128;a:2:{s:7:"ignoreC";s:32:"bdcf594e54fc955db67565dec0231040";s:7:"ignoreP";s:32:"bdcf594e54fc955db67565dec0231040";}i:129;a:2:{s:7:"ignoreC";s:32:"195628a8b0dd2745427213913d89975b";s:7:"ignoreP";s:32:"195628a8b0dd2745427213913d89975b";}i:130;a:2:{s:7:"ignoreC";s:32:"9d1003431560835f1338eea5508fd384";s:7:"ignoreP";s:32:"9d1003431560835f1338eea5508fd384";}i:131;a:2:{s:7:"ignoreC";s:32:"658e5113d10272e5895f98af77e0dd69";s:7:"ignoreP";s:32:"658e5113d10272e5895f98af77e0dd69";}i:132;a:2:{s:7:"ignoreC";s:32:"d676a54491dcf7bbc365b2dbdd6f5bf0";s:7:"ignoreP";s:32:"d676a54491dcf7bbc365b2dbdd6f5bf0";}i:133;a:2:{s:7:"ignoreC";s:32:"06088c6cc9fc8f03f4b34f5af8e2ece7";s:7:"ignoreP";s:32:"06088c6cc9fc8f03f4b34f5af8e2ece7";}i:134;a:2:{s:7:"ignoreC";s:32:"6306d6f6d6af9a4ddcc80e90cc63be4c";s:7:"ignoreP";s:32:"6306d6f6d6af9a4ddcc80e90cc63be4c";}i:135;a:2:{s:7:"ignoreC";s:32:"404156fba41446bcb4df410e396fad46";s:7:"ignoreP";s:32:"404156fba41446bcb4df410e396fad46";}i:136;a:2:{s:7:"ignoreC";s:32:"0b2173829e3bb04e030a584b32f8c571";s:7:"ignoreP";s:32:"0b2173829e3bb04e030a584b32f8c571";}i:137;a:2:{s:7:"ignoreC";s:32:"c2e1195d155227ada4edfd4ae2719b63";s:7:"ignoreP";s:32:"c2e1195d155227ada4edfd4ae2719b63";}i:138;a:2:{s:7:"ignoreC";s:32:"d0e73c69713a3b404a8992bf73e241da";s:7:"ignoreP";s:32:"d0e73c69713a3b404a8992bf73e241da";}i:139;a:2:{s:7:"ignoreC";s:32:"f5a0100b971628d1fa93df36f14f885d";s:7:"ignoreP";s:32:"f5a0100b971628d1fa93df36f14f885d";}i:140;a:2:{s:7:"ignoreC";s:32:"14fac6a2f8acc729e1c6e0a5fef43d5d";s:7:"ignoreP";s:32:"14fac6a2f8acc729e1c6e0a5fef43d5d";}i:141;a:2:{s:7:"ignoreC";s:32:"544df9675d583f8b51a1381db9f7024a";s:7:"ignoreP";s:32:"544df9675d583f8b51a1381db9f7024a";}i:142;a:2:{s:7:"ignoreC";s:32:"818423279db83dc6f444ece0e5d8f3bd";s:7:"ignoreP";s:32:"818423279db83dc6f444ece0e5d8f3bd";}i:143;a:2:{s:7:"ignoreC";s:32:"f91392483959a039a0b7d36bfd699b51";s:7:"ignoreP";s:32:"f91392483959a039a0b7d36bfd699b51";}i:144;a:2:{s:7:"ignoreC";s:32:"904442bd35e93d6116704ed39615e468";s:7:"ignoreP";s:32:"904442bd35e93d6116704ed39615e468";}i:145;a:2:{s:7:"ignoreC";s:32:"f3feb94081967920fb489d86da860b67";s:7:"ignoreP";s:32:"f3feb94081967920fb489d86da860b67";}i:146;a:2:{s:7:"ignoreC";s:32:"49136e67bff9848fe47b770888be208e";s:7:"ignoreP";s:32:"49136e67bff9848fe47b770888be208e";}i:147;a:2:{s:7:"ignoreC";s:32:"850dc876b320b930ff485e93b953d2af";s:7:"ignoreP";s:32:"850dc876b320b930ff485e93b953d2af";}i:148;a:2:{s:7:"ignoreC";s:32:"e34cb312dbabec7eb6440ef442ac3e52";s:7:"ignoreP";s:32:"e34cb312dbabec7eb6440ef442ac3e52";}i:149;a:2:{s:7:"ignoreC";s:32:"bd29cf18bdf22b4a6106b10f580d4004";s:7:"ignoreP";s:32:"bd29cf18bdf22b4a6106b10f580d4004";}i:150;a:2:{s:7:"ignoreC";s:32:"569675e2739cf47d017f5a1bef16ea9a";s:7:"ignoreP";s:32:"569675e2739cf47d017f5a1bef16ea9a";}i:151;a:2:{s:7:"ignoreC";s:32:"665dde671315fbe6710330e788468d1d";s:7:"ignoreP";s:32:"665dde671315fbe6710330e788468d1d";}i:152;a:2:{s:7:"ignoreC";s:32:"aa41266b95978dc406f624dde15b81bc";s:7:"ignoreP";s:32:"aa41266b95978dc406f624dde15b81bc";}i:153;a:2:{s:7:"ignoreC";s:32:"de7d1e2600f27c77192d1f5e04ab28e4";s:7:"ignoreP";s:32:"de7d1e2600f27c77192d1f5e04ab28e4";}i:154;a:2:{s:7:"ignoreC";s:32:"dfda5fe693e2987f3518032080af72d6";s:7:"ignoreP";s:32:"dfda5fe693e2987f3518032080af72d6";}i:155;a:2:{s:7:"ignoreC";s:32:"81abcabf8600c4da708cb383368edb56";s:7:"ignoreP";s:32:"81abcabf8600c4da708cb383368edb56";}i:156;a:2:{s:7:"ignoreC";s:32:"9e4ee7af17f5f5924165f4338f5f3bb8";s:7:"ignoreP";s:32:"9e4ee7af17f5f5924165f4338f5f3bb8";}i:157;a:2:{s:7:"ignoreC";s:32:"f5e3a16f0844f7698931fce37800b3d8";s:7:"ignoreP";s:32:"f5e3a16f0844f7698931fce37800b3d8";}i:158;a:2:{s:7:"ignoreC";s:32:"676d1b55af8730c64c98d8e9a059a67f";s:7:"ignoreP";s:32:"676d1b55af8730c64c98d8e9a059a67f";}i:159;a:2:{s:7:"ignoreC";s:32:"dc53749008bdecc79c8c68184a18169f";s:7:"ignoreP";s:32:"dc53749008bdecc79c8c68184a18169f";}i:160;a:2:{s:7:"ignoreC";s:32:"c9d21b2ca27b5bb677e0cc0f5707fedd";s:7:"ignoreP";s:32:"c9d21b2ca27b5bb677e0cc0f5707fedd";}i:161;a:2:{s:7:"ignoreC";s:32:"44d2430b79f05dd88b929e5467351cf0";s:7:"ignoreP";s:32:"44d2430b79f05dd88b929e5467351cf0";}i:162;a:2:{s:7:"ignoreC";s:32:"46d7f448050213f320f1ad26c4de27df";s:7:"ignoreP";s:32:"46d7f448050213f320f1ad26c4de27df";}i:163;a:2:{s:7:"ignoreC";s:32:"a12f387bef6f1ee3b7da5e180e178d0b";s:7:"ignoreP";s:32:"a12f387bef6f1ee3b7da5e180e178d0b";}i:164;a:2:{s:7:"ignoreC";s:32:"ceaff048ba2dc4477be3b8efe59302a4";s:7:"ignoreP";s:32:"ceaff048ba2dc4477be3b8efe59302a4";}i:165;a:2:{s:7:"ignoreC";s:32:"00048212f8fdf7e09f408141c7ecded0";s:7:"ignoreP";s:32:"00048212f8fdf7e09f408141c7ecded0";}i:166;a:2:{s:7:"ignoreC";s:32:"d767392f07ab02970b5017c6ff926c10";s:7:"ignoreP";s:32:"d767392f07ab02970b5017c6ff926c10";}i:167;a:2:{s:7:"ignoreC";s:32:"c0bac65a0aa26d10ddf5883d13ca9aff";s:7:"ignoreP";s:32:"c0bac65a0aa26d10ddf5883d13ca9aff";}i:168;a:2:{s:7:"ignoreC";s:32:"98fcc325bec293f7d98c182d884768a2";s:7:"ignoreP";s:32:"98fcc325bec293f7d98c182d884768a2";}i:169;a:2:{s:7:"ignoreC";s:32:"a462bf636f44c21760c14015f55f184d";s:7:"ignoreP";s:32:"a462bf636f44c21760c14015f55f184d";}i:170;a:2:{s:7:"ignoreC";s:32:"fbca11b85616d792ae31fa15f3549806";s:7:"ignoreP";s:32:"fbca11b85616d792ae31fa15f3549806";}i:171;a:2:{s:7:"ignoreC";s:32:"bb7e1483744add8877621c6cd80aa6f4";s:7:"ignoreP";s:32:"bb7e1483744add8877621c6cd80aa6f4";}i:172;a:2:{s:7:"ignoreC";s:32:"236985a430c6051831ab35f16654946f";s:7:"ignoreP";s:32:"236985a430c6051831ab35f16654946f";}i:173;a:2:{s:7:"ignoreC";s:32:"8d2e65a5bf22e5283ccaf65d5166ade0";s:7:"ignoreP";s:32:"8d2e65a5bf22e5283ccaf65d5166ade0";}i:174;a:2:{s:7:"ignoreC";s:32:"2a74bae6ebbcc36f49070fa9ea3d2ee7";s:7:"ignoreP";s:32:"2a74bae6ebbcc36f49070fa9ea3d2ee7";}i:175;a:2:{s:7:"ignoreC";s:32:"8baa43894e74ae27962d134c608bdf4a";s:7:"ignoreP";s:32:"8baa43894e74ae27962d134c608bdf4a";}i:176;a:2:{s:7:"ignoreC";s:32:"8e0378daff177edebd2d0df5c69c17ed";s:7:"ignoreP";s:32:"8e0378daff177edebd2d0df5c69c17ed";}i:177;a:2:{s:7:"ignoreC";s:32:"4a5e85287974121c515969bd5a4007e4";s:7:"ignoreP";s:32:"4a5e85287974121c515969bd5a4007e4";}i:178;a:2:{s:7:"ignoreC";s:32:"30b17408cb5090e78cb78731abe6f27c";s:7:"ignoreP";s:32:"30b17408cb5090e78cb78731abe6f27c";}i:179;a:2:{s:7:"ignoreC";s:32:"1d6171bf1c7b16c11e918954eaff526d";s:7:"ignoreP";s:32:"1d6171bf1c7b16c11e918954eaff526d";}i:180;a:2:{s:7:"ignoreC";s:32:"2ce817eeb89fb5bc22148cf23c9a9fb4";s:7:"ignoreP";s:32:"2ce817eeb89fb5bc22148cf23c9a9fb4";}i:181;a:2:{s:7:"ignoreC";s:32:"3a0bdb50c33b0519795f58ad2efae9d0";s:7:"ignoreP";s:32:"3a0bdb50c33b0519795f58ad2efae9d0";}i:182;a:2:{s:7:"ignoreC";s:32:"e88d0126d8260a039648416d7c2e472d";s:7:"ignoreP";s:32:"e88d0126d8260a039648416d7c2e472d";}i:183;a:2:{s:7:"ignoreC";s:32:"5ff78b18e16e4187746d2706e356cf49";s:7:"ignoreP";s:32:"5ff78b18e16e4187746d2706e356cf49";}i:184;a:2:{s:7:"ignoreC";s:32:"aadb5de989acef95baba35bd25e778ad";s:7:"ignoreP";s:32:"aadb5de989acef95baba35bd25e778ad";}i:185;a:2:{s:7:"ignoreC";s:32:"8bdce57bacc1e0c8c284570c3994e7d9";s:7:"ignoreP";s:32:"8bdce57bacc1e0c8c284570c3994e7d9";}i:186;a:2:{s:7:"ignoreC";s:32:"8310625b2897aa07c33df83a326e6407";s:7:"ignoreP";s:32:"8310625b2897aa07c33df83a326e6407";}i:187;a:2:{s:7:"ignoreC";s:32:"2646f9746388e2b3469ccbee0ab2b74e";s:7:"ignoreP";s:32:"2646f9746388e2b3469ccbee0ab2b74e";}i:188;a:2:{s:7:"ignoreC";s:32:"4393081e014d9fd033d12225968727a9";s:7:"ignoreP";s:32:"4393081e014d9fd033d12225968727a9";}i:189;a:2:{s:7:"ignoreC";s:32:"4e361ceea1a951a40a351a3c7316d6cb";s:7:"ignoreP";s:32:"4e361ceea1a951a40a351a3c7316d6cb";}i:190;a:2:{s:7:"ignoreC";s:32:"d8a9023e5235ecb60d280cfbcc8348d9";s:7:"ignoreP";s:32:"d8a9023e5235ecb60d280cfbcc8348d9";}i:191;a:2:{s:7:"ignoreC";s:32:"b9738fdafa1eca7d7702e02592af8750";s:7:"ignoreP";s:32:"b9738fdafa1eca7d7702e02592af8750";}i:192;a:2:{s:7:"ignoreC";s:32:"9dc0ebf749cb79d64e85b3de0035c139";s:7:"ignoreP";s:32:"9dc0ebf749cb79d64e85b3de0035c139";}i:193;a:2:{s:7:"ignoreC";s:32:"5ad062f120a633d8e35837e054d0b280";s:7:"ignoreP";s:32:"5ad062f120a633d8e35837e054d0b280";}i:194;a:2:{s:7:"ignoreC";s:32:"c86627755cb3ec0088a01d505942a0f5";s:7:"ignoreP";s:32:"c86627755cb3ec0088a01d505942a0f5";}i:195;a:2:{s:7:"ignoreC";s:32:"36d91d483f2db0d91909087a99bb144c";s:7:"ignoreP";s:32:"36d91d483f2db0d91909087a99bb144c";}i:196;a:2:{s:7:"ignoreC";s:32:"9da60bdc89b915e46ceab81288eb73fd";s:7:"ignoreP";s:32:"9da60bdc89b915e46ceab81288eb73fd";}i:197;a:2:{s:7:"ignoreC";s:32:"09683a519306fde61603261a5fefac08";s:7:"ignoreP";s:32:"09683a519306fde61603261a5fefac08";}i:198;a:2:{s:7:"ignoreC";s:32:"d16998601fad1ec0eec184c6aaee10ce";s:7:"ignoreP";s:32:"d16998601fad1ec0eec184c6aaee10ce";}i:199;a:2:{s:7:"ignoreC";s:32:"deb6d9ae0a595d20c6838930c5ca5f94";s:7:"ignoreP";s:32:"deb6d9ae0a595d20c6838930c5ca5f94";}i:200;a:2:{s:7:"ignoreC";s:32:"31bb699b3b30dc04235b549d74347ba7";s:7:"ignoreP";s:32:"31bb699b3b30dc04235b549d74347ba7";}i:201;a:2:{s:7:"ignoreC";s:32:"5bf0c7fcaf7d260af939d0bb54023189";s:7:"ignoreP";s:32:"5bf0c7fcaf7d260af939d0bb54023189";}i:202;a:2:{s:7:"ignoreC";s:32:"6de6f5d6a983da7ae15445343ea11f22";s:7:"ignoreP";s:32:"6de6f5d6a983da7ae15445343ea11f22";}i:203;a:2:{s:7:"ignoreC";s:32:"b41ff1e58180f779dcc7d6d0cb0af891";s:7:"ignoreP";s:32:"b41ff1e58180f779dcc7d6d0cb0af891";}i:204;a:2:{s:7:"ignoreC";s:32:"2038ccc0bb7cb573fc648b6795fa4835";s:7:"ignoreP";s:32:"2038ccc0bb7cb573fc648b6795fa4835";}i:205;a:2:{s:7:"ignoreC";s:32:"357512d6689087ef6ebc61edae156d65";s:7:"ignoreP";s:32:"357512d6689087ef6ebc61edae156d65";}i:206;a:2:{s:7:"ignoreC";s:32:"1d03fc95c6ef000ab351d448ed269df3";s:7:"ignoreP";s:32:"1d03fc95c6ef000ab351d448ed269df3";}i:207;a:2:{s:7:"ignoreC";s:32:"b3aa8b5e15c6531dafa87543210ca1a0";s:7:"ignoreP";s:32:"b3aa8b5e15c6531dafa87543210ca1a0";}i:208;a:2:{s:7:"ignoreC";s:32:"fb7758ac0e1ff5333b896b3bb8b29a8e";s:7:"ignoreP";s:32:"fb7758ac0e1ff5333b896b3bb8b29a8e";}i:209;a:2:{s:7:"ignoreC";s:32:"78c00afd06b2df7bf70994c81bacc24c";s:7:"ignoreP";s:32:"78c00afd06b2df7bf70994c81bacc24c";}i:210;a:2:{s:7:"ignoreC";s:32:"0c7fc884f2926463ff5f2f37d254d0f9";s:7:"ignoreP";s:32:"0c7fc884f2926463ff5f2f37d254d0f9";}i:211;a:2:{s:7:"ignoreC";s:32:"621045c2a176c325aeb0172081474722";s:7:"ignoreP";s:32:"621045c2a176c325aeb0172081474722";}i:212;a:2:{s:7:"ignoreC";s:32:"1f834fe0b5550a2e65a2ccc46ee982ba";s:7:"ignoreP";s:32:"1f834fe0b5550a2e65a2ccc46ee982ba";}i:213;a:2:{s:7:"ignoreC";s:32:"5ca862d429fec363605d454291960728";s:7:"ignoreP";s:32:"5ca862d429fec363605d454291960728";}i:214;a:2:{s:7:"ignoreC";s:32:"014b4df4a4c5253090b06765ab72bf01";s:7:"ignoreP";s:32:"014b4df4a4c5253090b06765ab72bf01";}i:215;a:2:{s:7:"ignoreC";s:32:"56af31a941cb613dcef01223a61f4920";s:7:"ignoreP";s:32:"56af31a941cb613dcef01223a61f4920";}i:216;a:2:{s:7:"ignoreC";s:32:"2c89eab809a673b804b8d82215f12544";s:7:"ignoreP";s:32:"2c89eab809a673b804b8d82215f12544";}i:217;a:2:{s:7:"ignoreC";s:32:"673d28a4432eae975d38763a73be313f";s:7:"ignoreP";s:32:"673d28a4432eae975d38763a73be313f";}i:218;a:2:{s:7:"ignoreC";s:32:"69501d4958de8a79a720d014e04e6b85";s:7:"ignoreP";s:32:"69501d4958de8a79a720d014e04e6b85";}i:219;a:2:{s:7:"ignoreC";s:32:"e46be00679c25db567367cc68e4119eb";s:7:"ignoreP";s:32:"e46be00679c25db567367cc68e4119eb";}i:220;a:2:{s:7:"ignoreC";s:32:"3d4d6285d6ffc9008bedcff6e77603c2";s:7:"ignoreP";s:32:"3d4d6285d6ffc9008bedcff6e77603c2";}i:221;a:2:{s:7:"ignoreC";s:32:"713ec08825ae71b8fc025c195bb7c864";s:7:"ignoreP";s:32:"713ec08825ae71b8fc025c195bb7c864";}i:222;a:2:{s:7:"ignoreC";s:32:"9ad5eb8e27b3b548eee90cce230ba7e3";s:7:"ignoreP";s:32:"9ad5eb8e27b3b548eee90cce230ba7e3";}i:223;a:2:{s:7:"ignoreC";s:32:"1472d58b2c93ad5b686399ca88f502e2";s:7:"ignoreP";s:32:"1472d58b2c93ad5b686399ca88f502e2";}i:224;a:2:{s:7:"ignoreC";s:32:"74d41d503d14c501f2911f28ccc2b732";s:7:"ignoreP";s:32:"74d41d503d14c501f2911f28ccc2b732";}i:225;a:2:{s:7:"ignoreC";s:32:"675d272983f6e177bde58912f9743db9";s:7:"ignoreP";s:32:"675d272983f6e177bde58912f9743db9";}i:226;a:2:{s:7:"ignoreC";s:32:"0709585d0fd844116fc006682ac07f51";s:7:"ignoreP";s:32:"0709585d0fd844116fc006682ac07f51";}i:227;a:2:{s:7:"ignoreC";s:32:"63e8272626c7a6db13ad34fd29901011";s:7:"ignoreP";s:32:"63e8272626c7a6db13ad34fd29901011";}i:228;a:2:{s:7:"ignoreC";s:32:"9eea4e68fa027bc4ff3834f4cf5393c7";s:7:"ignoreP";s:32:"9eea4e68fa027bc4ff3834f4cf5393c7";}i:229;a:2:{s:7:"ignoreC";s:32:"a3ac687e5d01f6dfa4ec1829aebfd8ee";s:7:"ignoreP";s:32:"a3ac687e5d01f6dfa4ec1829aebfd8ee";}i:230;a:2:{s:7:"ignoreC";s:32:"c9e8fa273010398f6962ad344600ed18";s:7:"ignoreP";s:32:"c9e8fa273010398f6962ad344600ed18";}i:231;a:2:{s:7:"ignoreC";s:32:"24cd14eaa4c0c66a7fdf0c25c33e8f82";s:7:"ignoreP";s:32:"24cd14eaa4c0c66a7fdf0c25c33e8f82";}i:232;a:2:{s:7:"ignoreC";s:32:"4ccc432324a7b6034bbae63454605e60";s:7:"ignoreP";s:32:"4ccc432324a7b6034bbae63454605e60";}i:233;a:2:{s:7:"ignoreC";s:32:"f6009d4276583e323b9137543e8a8911";s:7:"ignoreP";s:32:"f6009d4276583e323b9137543e8a8911";}i:234;a:2:{s:7:"ignoreC";s:32:"3e6a9fed90fcd526be3eb5a6fa3dc9af";s:7:"ignoreP";s:32:"3e6a9fed90fcd526be3eb5a6fa3dc9af";}i:235;a:2:{s:7:"ignoreC";s:32:"cf7e2650406c524faa1f1799e6850486";s:7:"ignoreP";s:32:"cf7e2650406c524faa1f1799e6850486";}i:236;a:2:{s:7:"ignoreC";s:32:"f3acd21596f92145a53352c30909a742";s:7:"ignoreP";s:32:"f3acd21596f92145a53352c30909a742";}i:237;a:2:{s:7:"ignoreC";s:32:"313c35597b7237d529932523bd07bdd4";s:7:"ignoreP";s:32:"313c35597b7237d529932523bd07bdd4";}i:238;a:2:{s:7:"ignoreC";s:32:"5c5b7bbf318752bc6b177b15a480daed";s:7:"ignoreP";s:32:"5c5b7bbf318752bc6b177b15a480daed";}i:239;a:2:{s:7:"ignoreC";s:32:"3f019334a80a395a3067659dc6086ff2";s:7:"ignoreP";s:32:"3f019334a80a395a3067659dc6086ff2";}}', 'yes'),
('disableConfigCaching', '0', 'yes'),
('wafAlertOnAttacks', '1', 'yes'),
('wafAlertWhitelist', '', 'yes'),
('wafAlertInterval', '600', 'yes'),
('wafAlertThreshold', '100', 'yes'),
('allowed404s6116Migration', '1', 'yes'),
('alertOn_firstAdminLoginOnly', '0', 'yes'),
('alertOn_firstNonAdminLoginOnly', '0', 'yes'),
('lowResourceScansEnabled', '0', 'yes'),
('scansEnabled_suspectedFiles', '1', 'yes'),
('lowResourceScanWaitStep', '', 'yes'),
('lastBruteForceDataSendTime', '1550721335.730000', 'yes'),
('alertOn_wordfenceDeactivated', '1', 'yes'),
('disableWAFIPBlocking', '0', 'yes'),
('cbl_cookieVal', '58198fd7ce89f', 'yes'),
('scan_maxIssues', '1000', 'yes'),
('scan_maxDuration', '', 'yes'),
('scansEnabled_checkHowGetIPs', '1', 'yes'),
('cacheType', 'disabled', 'yes'),
('detectProxyNextCheck', '1551103401', 'no'),
('detectProxyNonce', '', 'no'),
('vulnerabilities_theme', 'a:3:{i:0;a:4:{s:4:"slug";s:13:"twentyfifteen";s:9:"toVersion";s:3:"2.3";s:11:"fromVersion";s:3:"1.5";s:10:"vulnerable";b:0;}i:1;a:4:{s:4:"slug";s:14:"twentyfourteen";s:9:"toVersion";s:3:"2.5";s:11:"fromVersion";s:3:"1.7";s:10:"vulnerable";b:0;}i:2;a:4:{s:4:"slug";s:13:"twentysixteen";s:9:"toVersion";s:3:"1.8";s:11:"fromVersion";s:3:"1.2";s:10:"vulnerable";b:0;}}', 'yes'),
('detectProxyRecommendation', 'REMOTE_ADDR', 'no'),
('vulnerabilities_plugin', 'a:11:{i:0;a:4:{s:4:"slug";s:15:"ag-custom-admin";s:9:"toVersion";s:5:"6.4.1";s:11:"fromVersion";s:5:"5.7.1";s:10:"vulnerable";b:0;}i:1;a:4:{s:4:"slug";s:7:"akismet";s:9:"toVersion";s:5:"4.1.1";s:11:"fromVersion";s:3:"3.3";s:10:"vulnerable";b:0;}i:2;a:4:{s:4:"slug";s:11:"coming-soon";s:9:"toVersion";s:6:"5.0.23";s:11:"fromVersion";s:5:"5.0.9";s:10:"vulnerable";b:0;}i:3;a:4:{s:4:"slug";s:14:"duplicate-post";s:9:"toVersion";s:5:"3.2.2";s:11:"fromVersion";s:5:"3.1.2";s:10:"vulnerable";b:0;}i:4;a:4:{s:4:"slug";s:14:"fancy-admin-ui";s:9:"toVersion";s:3:"2.1";s:11:"fromVersion";s:3:"2.0";s:10:"vulnerable";b:0;}i:5;a:4:{s:4:"slug";s:15:"wordpress-popup";s:9:"toVersion";s:5:"6.0.7";s:11:"fromVersion";s:5:"5.0.0";s:10:"vulnerable";b:0;}i:6;a:4:{s:4:"slug";s:12:"pdf-embedder";s:9:"toVersion";s:3:"4.0";s:11:"fromVersion";s:3:"2.8";s:10:"vulnerable";b:0;}i:7;a:4:{s:4:"slug";s:19:"popup-with-fancybox";s:9:"toVersion";s:3:"2.7";s:11:"fromVersion";s:3:"2.4";s:10:"vulnerable";b:0;}i:8;a:4:{s:4:"slug";s:9:"wordfence";s:9:"toVersion";s:5:"7.2.2";s:11:"fromVersion";s:5:"6.3.2";s:10:"vulnerable";b:0;}i:9;a:4:{s:4:"slug";s:18:"wordpress-importer";s:9:"toVersion";s:5:"0.6.4";s:11:"fromVersion";s:5:"0.6.3";s:10:"vulnerable";b:0;}i:10;a:4:{s:4:"slug";s:13:"wp-migrate-db";s:9:"toVersion";s:6:"1.0.10";s:11:"fromVersion";s:5:"0.9.2";s:10:"vulnerable";b:0;}}', 'yes'),
('totalCommentsFiltered', '1', 'yes'),
('tourClosed', '1', 'yes'),
('hasKeyConflict', '', 'yes'),
('showAdminBarMenu', '1', 'yes'),
('wp_home_url', 'http://www.investors-watch.com/wp-staging/ranhill', 'yes'),
('dashboardData', 'a:5:{s:9:"generated";i:1550655192;s:3:"tdf";a:3:{s:9:"community";i:5676;s:7:"premium";i:5678;s:9:"blacklist";i:18025;}s:10:"attackdata";a:3:{s:3:"24h";a:24:{i:0;a:2:{s:1:"t";i:1550566800;s:1:"c";i:4994407;}i:1;a:2:{s:1:"t";i:1550570400;s:1:"c";i:5035803;}i:2;a:2:{s:1:"t";i:1550574000;s:1:"c";i:4770674;}i:3;a:2:{s:1:"t";i:1550577600;s:1:"c";i:4886454;}i:4;a:2:{s:1:"t";i:1550581200;s:1:"c";i:4933886;}i:5;a:2:{s:1:"t";i:1550584800;s:1:"c";i:4787594;}i:6;a:2:{s:1:"t";i:1550588400;s:1:"c";i:3939356;}i:7;a:2:{s:1:"t";i:1550592000;s:1:"c";i:4557656;}i:8;a:2:{s:1:"t";i:1550595600;s:1:"c";i:4485861;}i:9;a:2:{s:1:"t";i:1550599200;s:1:"c";i:4603799;}i:10;a:2:{s:1:"t";i:1550602800;s:1:"c";i:4623594;}i:11;a:2:{s:1:"t";i:1550606400;s:1:"c";i:4501673;}i:12;a:2:{s:1:"t";i:1550610000;s:1:"c";i:4565518;}i:13;a:2:{s:1:"t";i:1550613600;s:1:"c";i:4109690;}i:14;a:2:{s:1:"t";i:1550617200;s:1:"c";i:4470575;}i:15;a:2:{s:1:"t";i:1550620800;s:1:"c";i:4250457;}i:16;a:2:{s:1:"t";i:1550624400;s:1:"c";i:3957369;}i:17;a:2:{s:1:"t";i:1550628000;s:1:"c";i:3689802;}i:18;a:2:{s:1:"t";i:1550631600;s:1:"c";i:3646611;}i:19;a:2:{s:1:"t";i:1550635200;s:1:"c";i:3609763;}i:20;a:2:{s:1:"t";i:1550638800;s:1:"c";i:4060326;}i:21;a:2:{s:1:"t";i:1550642400;s:1:"c";i:4547161;}i:22;a:2:{s:1:"t";i:1550646000;s:1:"c";i:4626360;}i:23;a:2:{s:1:"t";i:1550649600;s:1:"c";i:4582905;}}s:2:"7d";a:7:{i:0;a:2:{s:1:"t";i:1550016000;s:1:"c";i:90880147;}i:1;a:2:{s:1:"t";i:1550102400;s:1:"c";i:89014835;}i:2;a:2:{s:1:"t";i:1550188800;s:1:"c";i:91872534;}i:3;a:2:{s:1:"t";i:1550275200;s:1:"c";i:88134140;}i:4;a:2:{s:1:"t";i:1550361600;s:1:"c";i:90629580;}i:5;a:2:{s:1:"t";i:1550448000;s:1:"c";i:108249871;}i:6;a:2:{s:1:"t";i:1550534400;s:1:"c";i:109894498;}}s:3:"30d";a:30:{i:0;a:2:{s:1:"t";i:1548028800;s:1:"c";i:101050775;}i:1;a:2:{s:1:"t";i:1548115200;s:1:"c";i:113505609;}i:2;a:2:{s:1:"t";i:1548201600;s:1:"c";i:113637762;}i:3;a:2:{s:1:"t";i:1548288000;s:1:"c";i:114032756;}i:4;a:2:{s:1:"t";i:1548374400;s:1:"c";i:130263644;}i:5;a:2:{s:1:"t";i:1548460800;s:1:"c";i:118457141;}i:6;a:2:{s:1:"t";i:1548547200;s:1:"c";i:125234656;}i:7;a:2:{s:1:"t";i:1548633600;s:1:"c";i:121972532;}i:8;a:2:{s:1:"t";i:1548720000;s:1:"c";i:113597132;}i:9;a:2:{s:1:"t";i:1548806400;s:1:"c";i:106688938;}i:10;a:2:{s:1:"t";i:1548892800;s:1:"c";i:117077923;}i:11;a:2:{s:1:"t";i:1548979200;s:1:"c";i:118948702;}i:12;a:2:{s:1:"t";i:1549065600;s:1:"c";i:111601109;}i:13;a:2:{s:1:"t";i:1549152000;s:1:"c";i:120830911;}i:14;a:2:{s:1:"t";i:1549238400;s:1:"c";i:126128707;}i:15;a:2:{s:1:"t";i:1549324800;s:1:"c";i:122838712;}i:16;a:2:{s:1:"t";i:1549411200;s:1:"c";i:114762418;}i:17;a:2:{s:1:"t";i:1549497600;s:1:"c";i:116518342;}i:18;a:2:{s:1:"t";i:1549584000;s:1:"c";i:115443355;}i:19;a:2:{s:1:"t";i:1549670400;s:1:"c";i:105265272;}i:20;a:2:{s:1:"t";i:1549756800;s:1:"c";i:108249537;}i:21;a:2:{s:1:"t";i:1549843200;s:1:"c";i:123199047;}i:22;a:2:{s:1:"t";i:1549929600;s:1:"c";i:95402956;}i:23;a:2:{s:1:"t";i:1550016000;s:1:"c";i:90880147;}i:24;a:2:{s:1:"t";i:1550102400;s:1:"c";i:89014835;}i:25;a:2:{s:1:"t";i:1550188800;s:1:"c";i:91872534;}i:26;a:2:{s:1:"t";i:1550275200;s:1:"c";i:88134140;}i:27;a:2:{s:1:"t";i:1550361600;s:1:"c";i:90629580;}i:28;a:2:{s:1:"t";i:1550448000;s:1:"c";i:108249871;}i:29;a:2:{s:1:"t";i:1550534400;s:1:"c";i:109894498;}}}s:9:"countries";a:1:{s:2:"7d";a:10:{i:0;a:2:{s:2:"cd";s:2:"CN";s:2:"ct";i:100680385;}i:1;a:2:{s:2:"cd";s:2:"US";s:2:"ct";i:74199985;}i:2;a:2:{s:2:"cd";s:2:"RU";s:2:"ct";i:68151742;}i:3;a:2:{s:2:"cd";s:2:"UA";s:2:"ct";i:49399111;}i:4;a:2:{s:2:"cd";s:2:"IE";s:2:"ct";i:35544195;}i:5;a:2:{s:2:"cd";s:2:"TR";s:2:"ct";i:34559490;}i:6;a:2:{s:2:"cd";s:2:"PL";s:2:"ct";i:26790809;}i:7;a:2:{s:2:"cd";s:2:"FR";s:2:"ct";i:26534035;}i:8;a:2:{s:2:"cd";s:2:"IN";s:2:"ct";i:25078771;}i:9;a:2:{s:2:"cd";s:2:"BR";s:2:"ct";i:17738020;}}}s:7:"revoked";a:6:{i:0;a:1:{s:2:"id";s:10:"network-GB";}i:1;a:1:{s:2:"id";s:10:"network-GC";}i:2;a:1:{s:2:"id";s:10:"network-GD";}i:3;a:1:{s:2:"id";s:10:"network-GE";}i:4;a:1:{s:2:"id";s:10:"network-GF";}i:5;a:1:{s:2:"id";s:10:"network-GG";}}}', 'yes'),
('lastNotificationID', '1631', 'no'),
('lastScanFailureType', '', 'yes') ;

#
# End of data contents of table `wp2o_wfConfig`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfCrawlers`
#

DROP TABLE IF EXISTS `wp2o_wfCrawlers`;


#
# Table structure of table `wp2o_wfCrawlers`
#

CREATE TABLE `wp2o_wfCrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


#
# Data contents of table `wp2o_wfCrawlers`
#
INSERT INTO `wp2o_wfCrawlers` ( `IP`, `patternSig`, `status`, `lastUpdate`, `PTR`) VALUES
(UNHEX('00000000000000000000FFFF42F94219'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550721994, 'crawl-66-249-66-25.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94714'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550364885, 'crawl-66-249-71-20.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94715'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550340793, 'crawl-66-249-71-21.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94713'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550366967, 'crawl-66-249-71-19.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94719'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550638565, 'crawl-66-249-71-25.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94F27'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550627156, 'crawl-66-249-79-39.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94791'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550577712, 'crawl-66-249-71-145.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94218'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550715660, 'crawl-66-249-66-24.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94217'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550709927, 'crawl-66-249-66-23.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94216'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550682241, 'crawl-66-249-66-22.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94214'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550682449, 'crawl-66-249-66-20.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94215'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550682451, 'crawl-66-249-66-21.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F9425A'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550693041, 'crawl-66-249-66-90.googlebot.com'),
(UNHEX('00000000000000000000FFFF334D34A0'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'badPTR', 1550701467, 'ns3138484.ip-51-77-52.eu'),
(UNHEX('00000000000000000000FFFF334D34A0'), UNHEX('69B1B37C0420ACB24F6F442198C30E9A'), 'verified', 1550701467, ''),
(UNHEX('00000000000000000000FFFF42F94F0B'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550276640, 'crawl-66-249-79-11.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94F3F'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550416842, 'crawl-66-249-79-63.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94795'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550577714, 'crawl-66-249-71-149.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F9471A'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550625119, 'crawl-66-249-71-26.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94718'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550625121, 'crawl-66-249-71-24.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94F3C'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550177747, 'crawl-66-249-79-60.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94708'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550132482, 'crawl-66-249-71-8.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94709'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550211687, 'crawl-66-249-71-9.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F94F23'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550104223, 'crawl-66-249-79-35.googlebot.com'),
(UNHEX('00000000000000000000FFFF42F9470A'), UNHEX('8BFC17C095903E8D6230AB6F51318CF6'), 'verified', 1550386900, 'crawl-66-249-71-10.googlebot.com') ;

#
# End of data contents of table `wp2o_wfCrawlers`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfFileMods`
#

DROP TABLE IF EXISTS `wp2o_wfFileMods`;


#
# Table structure of table `wp2o_wfFileMods`
#

CREATE TABLE `wp2o_wfFileMods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfFileMods`
#
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('828E0013B8F3BC1BB22B4F57172B019D'), 'index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B61B25303BE0F573A6B9446D5CBE3A5B')),
(UNHEX('98CD14C95BB22F9D397DA0603A77D950'), 'license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9348DA52C104F75FE1BEFC73609020CF')),
(UNHEX('E7C3D54BFF679BD0E5876F1B23E71330'), 'wp-activate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9ADA240D4BB1A08E696BF1E6E273D43F')),
(UNHEX('7612398CCA68550F24894DA6C86854B6'), 'wp-admin/_plugin-install.php', 0, UNHEX('D5F87CB9D74B95BA3A7C26173132ADE9'), UNHEX('D5F87CB9D74B95BA3A7C26173132ADE9')),
(UNHEX('5A04871A92A20A599CC9996EAAEC8659'), 'wp-admin/_plugins.php', 0, UNHEX('9E3B41EC24C3FE40E052F215F8ACFC09'), UNHEX('9E3B41EC24C3FE40E052F215F8ACFC09')),
(UNHEX('2D87BA2937A63579B03863DAE25776D8'), 'wp-admin/about.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD246B5875B8E81D66F707F3A44A2EDF')),
(UNHEX('0E58FFE648E5A5A528BB3AC85AEDA914'), 'wp-admin/admin-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A48454C9E64613A558061B49A66CFB11')),
(UNHEX('213162DD8539A0AA2AE3C0FF5C11E1C6'), 'wp-admin/admin-footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('37AD12E95EC47BF1E6A128EB8D6E9958')),
(UNHEX('1510C84B55F567304D55BF2F9AF6CA87'), 'wp-admin/admin-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF0B46EAFB24E3733A8839836D256146')),
(UNHEX('40E86DBEB7EBC54F0C1208C5DD571201'), 'wp-admin/admin-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('741D81821039B1F77F5258B923D38F92')),
(UNHEX('ED5D9A1DA740830A97AB3EC4BAEE596E'), 'wp-admin/admin-post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('163ECC5B73B40CE02BA418A3EDEE2C68')),
(UNHEX('0B941D7F88A62C482862E6105F46944F'), 'wp-admin/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('450C7C2AFA12684F28FF976CADE11985')),
(UNHEX('0958CE740C5C34764E493582D86ACBC2'), 'wp-admin/async-upload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('320481C6834442BFD77C3C8BC95348BF')),
(UNHEX('22D3C4360D0C2B4B137BD7181A216105'), 'wp-admin/comment.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D78FF82D6FE2CCA6B06CF36D78A581DC')),
(UNHEX('6B4DCFFC969CA69A020CEECC99597370'), 'wp-admin/credits.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB9DC962E13AFC3789B0D18A3C6CF1F7')),
(UNHEX('A42A4F2DA14CCF84AAC2E20D5B7FDB75'), 'wp-admin/css/about-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F68812437E18CC5B27B48ADE01E6319')),
(UNHEX('55AC056EC99362346C5A052C05490403'), 'wp-admin/css/about-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAD438384D68D17329FC137DC4E70F6F')),
(UNHEX('C94137A827E143239E778A53FB738E1E'), 'wp-admin/css/about.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('058A5C94A16613204B8B983BE03B16C6')),
(UNHEX('FC4A92A7F3122132A0A8DC00AD80C1FC'), 'wp-admin/css/about.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C32129F38A610AFEB5DAB84CC2B42E4C')),
(UNHEX('1C0B94176D81C76E390EC646B136B703'), 'wp-admin/css/admin-menu-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DF6AF8D274C9C84F00995C4B06B8668')),
(UNHEX('0654B45D5C67F8AFF634C5BA7550B23B'), 'wp-admin/css/admin-menu-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7834F756DF7BCD9B6158CABEFE10FEB5')),
(UNHEX('90C122EA5A3000D8BF6585D4A670DF1C'), 'wp-admin/css/admin-menu.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E1349161A85839BE024488A50DE95B3')),
(UNHEX('FF453538BEF979AAE4D45773D64FBAD5'), 'wp-admin/css/admin-menu.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1056F3272EBE83F13D5D3F86A82A77F4')),
(UNHEX('EFC010FB50868961600E5875EEA5A106'), 'wp-admin/css/color-picker-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F875FFAD5553D662BEEA97E63EC24BBF')),
(UNHEX('11D272881F57EAAE33A899E3E1A5BE56'), 'wp-admin/css/color-picker-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6996BA94F4B34F766673AE879E4A42D5')),
(UNHEX('46F3C2EF3FE689433B248CE948190D0D'), 'wp-admin/css/color-picker.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12B60D94F9826D402E66C2E9194AA80B')),
(UNHEX('150F98AFDCA139EE755F5C0AC339C127'), 'wp-admin/css/color-picker.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C7F4ADC0CD1FE1A15E89FF4082F4B7C')),
(UNHEX('B84A7C0601367DCB0C50DF2C020DD99B'), 'wp-admin/css/colors/_admin.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD2094E9DC3209E839476EBA00FF5838')),
(UNHEX('7565F61E1D08012C220A09EE68B8672E'), 'wp-admin/css/colors/_mixins.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F5A52B31CF5ABA613AA845F2DB7AC9F')),
(UNHEX('A9A21C3D43D1A0D4E62A5458F4B9B434'), 'wp-admin/css/colors/_variables.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3AB501096B1A091972D84C85B284135A')),
(UNHEX('3538E764E1605336314B3E1CDBAE8676'), 'wp-admin/css/colors/blue/colors-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D69489D26322D01D3B284A6B71A65F9A')),
(UNHEX('1144A9386846DE9B4256690552EEA81B'), 'wp-admin/css/colors/blue/colors-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D76E3F993F962326E6A2336DB75D3FD6')),
(UNHEX('E7E046FC5A5916BFD14338C08F1C3345'), 'wp-admin/css/colors/blue/colors.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B29881CD8A024AF1C890F689893E50B')),
(UNHEX('746D36DB97C07108BAFF8E2E90A33D6A'), 'wp-admin/css/colors/blue/colors.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('835228F437B76CB4336FD2DB1841A984')),
(UNHEX('4CF13E0F74061199F59A4EFF88868BDD'), 'wp-admin/css/colors/blue/colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9D03549D79484672C29145AAD594DB3')),
(UNHEX('8C9DBDB4866A754743744FC6FED813E2'), 'wp-admin/css/colors/coffee/colors-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74DAB612B62647EEAC56102D9FDED496')),
(UNHEX('B28B713F25CDF57270FEF830F737EF71'), 'wp-admin/css/colors/coffee/colors-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F867FD7ADCCD1ECDF764739053A6EC2A')),
(UNHEX('04CFB4203315080B506023385EDDD65A'), 'wp-admin/css/colors/coffee/colors.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BD83C43AED60C175A0F8C5D2738639B')),
(UNHEX('EDF9EB654398BE028407F0446921D7E7'), 'wp-admin/css/colors/coffee/colors.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A585D4EB32332D90B23F792312BC4D8A')),
(UNHEX('7849061D48DE2E9439945915C3E0424F'), 'wp-admin/css/colors/coffee/colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('397E3820B27A234330C95E05250F61CE')),
(UNHEX('6A6D4504A4D14158DD75779B7F3EDC86'), 'wp-admin/css/colors/ectoplasm/colors-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('093DCCE1588C3B8CC4B40FC311974412')),
(UNHEX('44D5B9EFDAF8BBE5D8244F61AAA3E9F4'), 'wp-admin/css/colors/ectoplasm/colors-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E5AE890A49AF4D069A4F732D85B1DE3')),
(UNHEX('9AAAF4A2EC4800DB99C0AE689943C1FA'), 'wp-admin/css/colors/ectoplasm/colors.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B21F32953AD167424E9997C8FF5330AE')),
(UNHEX('5B8CC323DCA7151A3E5DBF1E02813CA6'), 'wp-admin/css/colors/ectoplasm/colors.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C121862A0BA5B3BD489D428CC926624')),
(UNHEX('CC4DCF5471265B3FFDF93EECB98AE50A'), 'wp-admin/css/colors/ectoplasm/colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('940171D1392BD8071122A905D12B9195')),
(UNHEX('DF71821FF99C158A1D25C5B193206D2B'), 'wp-admin/css/colors/light/colors-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F60E0EB47F81BBC633A19B19E6CF6F7B')),
(UNHEX('2D8E1666E2C8345DDB23227512B8B36C'), 'wp-admin/css/colors/light/colors-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D12C6321C2905A72081E07D1F3696532')),
(UNHEX('76F07B23BFB96C9A936200167DD3E342'), 'wp-admin/css/colors/light/colors.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0A2E41CC8E4FC1D20B51923CC1412B6')),
(UNHEX('FC3928468C526A7F32B96E05365D818A'), 'wp-admin/css/colors/light/colors.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4C299FA424111F5C08A1965011CEC210')),
(UNHEX('1388DE4B532BA11565D78E418640938A'), 'wp-admin/css/colors/light/colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('480B9BD647E5B323EF88D63CE55E1D6F')),
(UNHEX('FA9894E7D94C1D3F40A79A2E127E4FAF'), 'wp-admin/css/colors/midnight/colors-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9527914DEE63A89CF72473FB23BF063F')),
(UNHEX('ABF4F7E1978FD81033852D831BAB34B0'), 'wp-admin/css/colors/midnight/colors-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECB168AC881B1974386D6722018589DF')),
(UNHEX('3B0BDE1362AD66C89630FF96A6AD7805'), 'wp-admin/css/colors/midnight/colors.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0657508B14C063564F0001878EA88D07')),
(UNHEX('DB02E38E5F0DAC4A4CE823AE4042CCD6'), 'wp-admin/css/colors/midnight/colors.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC678F19E1681AE3CFC6CC15D1B0A128')),
(UNHEX('DA178677FA3DC5A2C44FFA26B94610CA'), 'wp-admin/css/colors/midnight/colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26DC8DAAF0C47C4457B8BC2145F48634')),
(UNHEX('9F3C84A028C8EAC0892A415D8E4FEDA0'), 'wp-admin/css/colors/ocean/colors-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D868FE77C55AA8086815541A5FEBDF5')),
(UNHEX('B1A7A9D97B5E8E8657C8EDE8F343B118'), 'wp-admin/css/colors/ocean/colors-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6C6CCBF9D3324987324ED2802A695DE')),
(UNHEX('CCC38A356666CD3B2C472127F6F3272D'), 'wp-admin/css/colors/ocean/colors.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A51A395483D77757C9E1D236651417B')),
(UNHEX('9E2A0254F1750DA2EDD3D61DA07EAA6D'), 'wp-admin/css/colors/ocean/colors.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DEF631DCE1084CD5E47EC236997AC76')),
(UNHEX('2D7FB2EAD118E111C7B88625773DF5E2'), 'wp-admin/css/colors/ocean/colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A7C5BFD9FAF7F6CC77CD9B166062568')),
(UNHEX('116AD7BBFD8204F3712EBB2A3BA7E132'), 'wp-admin/css/colors/sunrise/colors-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1EE46C95C1FEE5816652EE120A70F6B')),
(UNHEX('326AFF4C2CC3D9DE570DBAAE57249BE9'), 'wp-admin/css/colors/sunrise/colors-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2718052027E9D64F65FDCC683368AF7')),
(UNHEX('9C8589018AFE793835F590DCC3A662D6'), 'wp-admin/css/colors/sunrise/colors.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36DA31029014D5CBA2E1D6B2C3C94903')),
(UNHEX('CF2DD32B8E65C6E1D46DF17522B6C378'), 'wp-admin/css/colors/sunrise/colors.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E15962B9D758CA2C599163FF60C6D528')),
(UNHEX('FFB51C53A94305520343FEFC076CB8C5'), 'wp-admin/css/colors/sunrise/colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5692871A8A7A1914EE0968DDF9923DEC')),
(UNHEX('B318CC57327FDDD84481F14787378756'), 'wp-admin/css/common-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86CCF56BBF7478EF06B2BF12E93BDC3C')),
(UNHEX('8E9F1885589282988148F66F9D76CB0E'), 'wp-admin/css/common-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57D1D231D84D16E1068F6AF8219C16BB')),
(UNHEX('FC8970B78A0739BD367F17C3A8E552E6'), 'wp-admin/css/common.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1992B6DE3600F82B893AA6123F2972D')),
(UNHEX('0D83764EF516CC5B42E1D326EAD8534C'), 'wp-admin/css/common.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19783C0C8C8225B3FC31EA04E77EE50A')),
(UNHEX('F3FF56AC936B39DBB4EE73BFBB80D6BF'), 'wp-admin/css/customize-controls-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BD099C199B51A2A222D0C87B8A791FA')),
(UNHEX('CD0FA9FFE1877011F76AD69B6092C877'), 'wp-admin/css/customize-controls-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA5DAF07137183C4710352DF09D941F3')),
(UNHEX('8C3F9A0A35FCB448E33FE2E0C1C0E0E8'), 'wp-admin/css/customize-controls.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C04504D1B70332284C7C83425A7742D')),
(UNHEX('FA2ED5B6BBD5F15A67027BDA3DF19ACC'), 'wp-admin/css/customize-controls.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C248A66D772F94A0476323E4D0515D15')),
(UNHEX('4FE1FBC6D5DE7920AEFD6B1B010962B1'), 'wp-admin/css/customize-nav-menus-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('301312307914214B7A5A7BDAE880A395')),
(UNHEX('484184B8FE66BE2CC1F5E424462DEE16'), 'wp-admin/css/customize-nav-menus-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7A848EE830C0C5B67DA1A0566C3B4EC7')),
(UNHEX('410CAD6C417E695E98829BE975D3C398'), 'wp-admin/css/customize-nav-menus.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC1398F94377751DE7FFEAD484DF8333')),
(UNHEX('E88C00855DA870DDD2DE91EA96090D47'), 'wp-admin/css/customize-nav-menus.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0567F480FAF8B31D9121FA36FC2CE535')),
(UNHEX('4EF1E3FE4856FBAE13D50CF57DB63447'), 'wp-admin/css/customize-widgets-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DD2A79D285E607BE1AC31534FA8C6F1')),
(UNHEX('BABC3454B828E2045C39278CE433B129'), 'wp-admin/css/customize-widgets-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC6035EBCC286399AE80C63933562FAA')),
(UNHEX('F0F6B4F803FC95F836245BA3AAAE4FC0'), 'wp-admin/css/customize-widgets.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49F0AD63A90D6CF3146AEF5F705361AD')),
(UNHEX('97F162A6FC921FC1FF0CA3BA7C657EEB'), 'wp-admin/css/customize-widgets.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8ABF8533B9E8ED351E6F32B2B2E49C8')),
(UNHEX('351CEA3F89810B7998C43C0ED932CC02'), 'wp-admin/css/dashboard-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3C3FCC9F814D55D40F611BF5680E0B6')),
(UNHEX('B54D9FE973E13B272C10BCDEDA2D457F'), 'wp-admin/css/dashboard-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('85D54BB343A31B620A1AF2D429FC5436')),
(UNHEX('17B2FEA3B24B714D8DC3E47B83B1BB03'), 'wp-admin/css/dashboard.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDE40A4A2C18BEE8B93C01F7E55245A8')),
(UNHEX('E62B821EF9AB2EE2F8C765161046ABC8'), 'wp-admin/css/dashboard.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('151DFE98FE81CF303DDD51228AC6F3D0')),
(UNHEX('38A94029FDB13679675B0679E5735152'), 'wp-admin/css/deprecated-media-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('071DB78449E52B5A8E4F74881F45CA76')),
(UNHEX('9870745F205987C18CCA374C06E34B74'), 'wp-admin/css/deprecated-media-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC5BC02B710E35115CADCA960308560C')),
(UNHEX('BCF09BC25822AF2D7BE3CA2434387378'), 'wp-admin/css/deprecated-media.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2257F52A92D7817195C7EA9659345EC0')),
(UNHEX('3461E4FE5B0349BA7DE7D8DC48FF6D29'), 'wp-admin/css/deprecated-media.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1CC8030EB9A806F2FA3A4AEECDAC87C')),
(UNHEX('5DA79F8BE2F9227D5B1D921759DC52DA'), 'wp-admin/css/edit-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F48EF6A45393EFDFDFBE8F8ED6A2506')),
(UNHEX('9342DD482A12046D7A97CD4E3833FCEE'), 'wp-admin/css/edit-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A72BD32F3D21C3FCDA385AF3E8BFF5E3')),
(UNHEX('0D9C8D3A893A8910EC1DF54848F93A64'), 'wp-admin/css/edit.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0902EDB1B33E62DF3B89E42EE0FB9284')),
(UNHEX('F38715E72CB76FD921C20E7ABE6A22F3'), 'wp-admin/css/edit.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36BEBA49DDD70365704E68B6641CAB63')),
(UNHEX('363B490528D648B26DC925ACC31666BA'), 'wp-admin/css/farbtastic-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('118F1189FFBB71E014402121B5456BC2')),
(UNHEX('82014FCD135815EBC1675D0B3C664098'), 'wp-admin/css/farbtastic-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A884C09637A47AF300C7E6C3057DDC2')),
(UNHEX('ABC2ABACE4972D6A3DB475B64E5C7127'), 'wp-admin/css/farbtastic.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F9E33829B8FAED7D7BBEF843FB683255')),
(UNHEX('4B816ED28B4426067352F4575519288B'), 'wp-admin/css/farbtastic.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('30996981C129BD331B5CDBB88A2FA23B')),
(UNHEX('4F6C714363DB8ED0EFD6CAE3CFCCD0CD'), 'wp-admin/css/forms-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('195F55F6344AF6AB4483DE40FCAF6D46')),
(UNHEX('BBCA7BFC5D5CD6B5AD09F4E864F3BBDA'), 'wp-admin/css/forms-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7EE4C4A582042409D1324354271DD33A')),
(UNHEX('F5A5DBFD28EBC5F8259E23803904796E'), 'wp-admin/css/forms.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70FA643D71370CBAAFE974AD9CA04569')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('C5826AA844DF8BBF2E11A5CB9644A589'), 'wp-admin/css/forms.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECB1FCF9FD153BE961A297B91D5DBFE5')),
(UNHEX('B58DF8A70584A1C96B4DD4D53FCA7558'), 'wp-admin/css/ie-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12E3799F007D1876B12835D0E5EF2F52')),
(UNHEX('1C7603739D25C27AA1EFB4FAF8BE46D3'), 'wp-admin/css/ie-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29628F240CEB396EF0B56DA19CF30F8C')),
(UNHEX('0445F82617AFD1564E05AEB30891224E'), 'wp-admin/css/ie.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A86BC93CBDDB1A2B44FB30A46F66A8AD')),
(UNHEX('06D1A79B045F8334156121A246A401F1'), 'wp-admin/css/ie.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3AD10E15B536D246988E4107372192AD')),
(UNHEX('CD77FF393D9F5F0C220768251792D776'), 'wp-admin/css/install-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C9F28632838146EA5B1F9DE9AC289C8')),
(UNHEX('69B22DFFD058B1380B07565B7E45FB12'), 'wp-admin/css/install-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97E4D5C63A4BD3A4F073BBA5DCAB8CA6')),
(UNHEX('3C8F8939FE75FE6AB3AEFF8421C1240F'), 'wp-admin/css/install.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5AAC84283AA7183C30A25527EDD3152')),
(UNHEX('83E2E8CA86D7E9906EA544E3AE96CB28'), 'wp-admin/css/install.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E95806E74D09390ABC3DC7B8094CDEEA')),
(UNHEX('1EA1D00E272DF470DA2DCFFBF10B66A2'), 'wp-admin/css/l10n-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69B0527BE5B3AA2C1644FE5FC1C34AFA')),
(UNHEX('76C3A22C5C13AD2B51B9E5D5DBF1D6A7'), 'wp-admin/css/l10n-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('395EBBB01F0499DC79323D9E46BF99C9')),
(UNHEX('C9D203B086933244B41D69DC651C10BD'), 'wp-admin/css/l10n.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5C4B8F85029FB7C84F0719F72B280AD')),
(UNHEX('E548C6CC34852E5CE3013A89E723E0EE'), 'wp-admin/css/l10n.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55D6B57D8020D981DD12E3308C6D326E')),
(UNHEX('A2792585CBC6C7BA7E10B96E657F2256'), 'wp-admin/css/list-tables-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('746B23CD955A0B7107F57B83BB42EAA8')),
(UNHEX('FE46CF25ADB3430FC2D43081BBA3A12C'), 'wp-admin/css/list-tables-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('703A6A20853140742564C197783D7574')),
(UNHEX('7C056AAA957837C728517D8E30C027F0'), 'wp-admin/css/list-tables.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42D17149C8BFDD7BEBAB0F53091A540A')),
(UNHEX('EA0C116B4C4E00F4E7BB781836400E07'), 'wp-admin/css/list-tables.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1979A03E73DE2BFE8AA90AAD9FFD6073')),
(UNHEX('417B26CF18208AA2563EEC07B2CE9D73'), 'wp-admin/css/login-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94FC4B1B3B506FAE95E65C01EC8060AD')),
(UNHEX('68405AC9258F52EB9546DF3B74695C6D'), 'wp-admin/css/login-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2730E933C7A1A342A216A88B59090922')),
(UNHEX('B61DBAA47C8F6A5896F9A9DF7CEA6662'), 'wp-admin/css/login.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E98AA1F1D14FD4FD2B80D456948B6262')),
(UNHEX('1060990126ADB8E994A57E4B33052F64'), 'wp-admin/css/login.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5986A1680538AC8E83D217027D57543F')),
(UNHEX('72F90FCE0A97DB62B0952315F0A9E97F'), 'wp-admin/css/media-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5FBBC80155B5414F2A4DA9C852BB9C0')),
(UNHEX('C17ADDBFE4AF2658E29D9936A498CC73'), 'wp-admin/css/media-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE0809F2C9675D09FE4F48B617A7E6A1')),
(UNHEX('988DA3FD549DB94489C046D24B3106C7'), 'wp-admin/css/media.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48BABC981CF0F439A769286D6A70FD48')),
(UNHEX('25D01550622ECEFFBA38BA4764CE74CD'), 'wp-admin/css/media.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('31BB9D767DC660883CBE4F139D4A1594')),
(UNHEX('1AEF798204843852234F1BAC79CEC618'), 'wp-admin/css/nav-menus-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('63AF64BA89F768E448BAB87EE0CB94DA')),
(UNHEX('0C4483AC209A321EFB944B16167C26E5'), 'wp-admin/css/nav-menus-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('985B33C3A44691C0E59B3B40DD5DF611')),
(UNHEX('B9AE8315710168CC6E9B1D0C4AFD6AAF'), 'wp-admin/css/nav-menus.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FC6AB945E28C3EC1018D27359FC6FE0')),
(UNHEX('BD5A079EC0571974C770A5084E8C680F'), 'wp-admin/css/nav-menus.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F236F953D732FFEA81874F232246A427')),
(UNHEX('C32ED642E20F7C78D3B3E2890ED745B1'), 'wp-admin/css/press-this-editor-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('464DA848980476CD37DE1C0D7964C1E4')),
(UNHEX('2685ABBC58C942605D223FD7B0B2011A'), 'wp-admin/css/press-this-editor-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('143DA4E979FD86E002FBA6CDA338CF7C')),
(UNHEX('1DC0226AA812C7A76092D5C0BFE731B8'), 'wp-admin/css/press-this-editor.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B01941463721A9E3D36D4B4DC3781C66')),
(UNHEX('7C31E9E25141CEE4CFE8B7C945E16031'), 'wp-admin/css/press-this-editor.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2CF3344CB737EC622532596AC21CB85F')),
(UNHEX('F98148FB114D7ABB40F50F4101E986E9'), 'wp-admin/css/press-this-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE05E92E39DD7C54887E9AFF05928AE2')),
(UNHEX('A820AB2854023513211FF1E18068C275'), 'wp-admin/css/press-this-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4C4155FFF66945EF367F81B9F007F23')),
(UNHEX('DC467C0AB54D4E2C3887DDAAAA27E918'), 'wp-admin/css/press-this.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('670D07B379F5BFAD08E0625EEC4699BC')),
(UNHEX('2E5A7B3D1455BC75DFA902414AAB872A'), 'wp-admin/css/press-this.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01AE9946E7A7A08C32F1261D031C0320')),
(UNHEX('FB5068DCC81F077F1EB3B7A4117256E2'), 'wp-admin/css/revisions-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2BB91A5E175182FD98B92423245B886')),
(UNHEX('40EA7419DC523E479C4868C4ED06D7A1'), 'wp-admin/css/revisions-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0114C79D89D3E0EDD14D711C868D4FD7')),
(UNHEX('A2206110224B77541B06D50E62633153'), 'wp-admin/css/revisions.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2311887A1E17B942DE617BA70BAEDA36')),
(UNHEX('0AFD47C6996E02E5F01A40312B555DA3'), 'wp-admin/css/revisions.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DB5304EC20677C46BBCBD7B9E9FA350')),
(UNHEX('02F70FAD3072E3884822E1594B5D54B7'), 'wp-admin/css/site-icon-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06FA2062900EC9B9561403625050C939')),
(UNHEX('8991DE51E316A31D5773F1074137640A'), 'wp-admin/css/site-icon-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52189E8F1862001B7BD1F5F0ED71D30A')),
(UNHEX('273D215A6184CD61E2DBE66A1055D151'), 'wp-admin/css/site-icon.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('02F37C95552DC7CDA5E2CA3C4EF6AC20')),
(UNHEX('9B9A6E26A2E21B1FF06EBC21E5B4ACEE'), 'wp-admin/css/site-icon.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66A5336284DB6DC9874764FA8548A471')),
(UNHEX('08A6B196EB67847ED2771A11D0056868'), 'wp-admin/css/themes-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B845E2804487A2C5A4B64938A6C431E1')),
(UNHEX('B59C359D8E4174DF82966D30698E7AAE'), 'wp-admin/css/themes-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46C7EEF970445884324C035F739CA63A')),
(UNHEX('CA52B110ADD902D188E9B0DEBFBE0830'), 'wp-admin/css/themes.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1ABB7C12D4E54061E011CA25C524ED8')),
(UNHEX('B19AC4665375B942ECCDA53F075E794F'), 'wp-admin/css/themes.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68EB02C6DC043646186B59A360559F0F')),
(UNHEX('87A2A83376B455801A339850C55E4F20'), 'wp-admin/css/widgets-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52222282329F1E2BA87D9DF556B9DA51')),
(UNHEX('73B2451EB8CE9E1E71C870B042EDDAD6'), 'wp-admin/css/widgets-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56DCC8388A67EEA5A342DC00491867E4')),
(UNHEX('942148554E26EF228BA8D30E8C7AF7F4'), 'wp-admin/css/widgets.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53BFA004B8EC5ED07348B9FF3E79AF55')),
(UNHEX('459C7DBE7EEE17A54DCAC52DDB5D8861'), 'wp-admin/css/widgets.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FEEB10BAEB29B091F5D9CD6BECCC0C16')),
(UNHEX('8EB0D6975D4E528DBCEF537B71763F85'), 'wp-admin/css/wp-admin-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74F9DCF5AB8C92F6666FF52C699873C8')),
(UNHEX('B586BB2428AD678B28C1AED450DAE72F'), 'wp-admin/css/wp-admin-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06DD9AAEA22AD8C13722470196C5AAB4')),
(UNHEX('64E8348F6AE0320B55C2568EB724F650'), 'wp-admin/css/wp-admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFE4BD90350018ABC7C9210BFB9D2A5B')),
(UNHEX('D7C76A3096A9DE77FE06457DC2AE529F'), 'wp-admin/css/wp-admin.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2E2F67626ED6F9BECA5306C1A16ABBA')),
(UNHEX('B98C3F83307CC3F6E03575C6A18301BE'), 'wp-admin/custom-background.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2389591E3797A7E80160BEAFDC1AA04E')),
(UNHEX('75E171671A008738896803D4ADFB00F0'), 'wp-admin/custom-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('137FE9C1430A98E361FC46D7E606F09E')),
(UNHEX('AA3B133F32E8E18853FDE3A700FB9A70'), 'wp-admin/customize.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('307E460F67E7DE4AC4FB5AF856BA2BF0')),
(UNHEX('9EEE703F455EA240B7278CE3501245C5'), 'wp-admin/edit-comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD1BF88C3A453EC4DDB8505229AA54F1')),
(UNHEX('E60DF2625CF19989C4C98DB21AC412EB'), 'wp-admin/edit-form-advanced.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('92E5F145D0A5B367E11BA4046B638040')),
(UNHEX('479637181A089EE6B249263AED190778'), 'wp-admin/edit-form-comment.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('31AD01B2BA65A4A2E631E422B2581580')),
(UNHEX('0A93B591622DD356F83A88837C6DB5FF'), 'wp-admin/edit-link-form.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9069905B0515B4163C3515E985F02EA4')),
(UNHEX('25BA0CD2E0EB380E5E1B9C563CD174CB'), 'wp-admin/edit-tag-form.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78D68E8699BEA1EFF2DEDA5C68470A12')),
(UNHEX('BE8A68A2DDDF29554740C87896CC7609'), 'wp-admin/edit-tags.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82EB39E062CF43CF5C9E5F3DFE7CBCF4')),
(UNHEX('59854C61D80E1F181180B56818D02801'), 'wp-admin/edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55373449CC2320C57803F1F5B52B9CE9')),
(UNHEX('C2C0318C92C17CB80F7D9A94E264511D'), 'wp-admin/export.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9FEFC2DFAFACCF4644DA004BC5DB0CFE')),
(UNHEX('4FA783B5E026C27281E8938F951EEA20'), 'wp-admin/freedoms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BC3B573CFBADC367148FC4439ABD723')),
(UNHEX('E6CE57FBEAC322FADAEA01536B073ACD'), 'wp-admin/images/align-center-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9EBEB22DF3728735042A4A37A1496611')),
(UNHEX('262A83CAC464C486D6B88F0905D64835'), 'wp-admin/images/align-center.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09D91ADDB6B53479E68C645931D9658E')),
(UNHEX('F65639B4D44BB1E1C4676F58B1B937D3'), 'wp-admin/images/align-left-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('698538B14FB9839AECD01D5E97C66316')),
(UNHEX('E9AACA6DAC164D1E74A88604DB57B342'), 'wp-admin/images/align-left.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CFD7930CFFA6412F75AF26F2E689ED4')),
(UNHEX('D45D7F2EF56F6FF0C8A6074D2D6E0987'), 'wp-admin/images/align-none-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F858439905295BD705B09B2DBA3418BD')),
(UNHEX('4D57800912E510A6BE1F3AC9E498D98A'), 'wp-admin/images/align-none.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F1AD65716432A0A1DA7591A5C2F10D04')),
(UNHEX('76E247822EC267B741F5C62306F572E9'), 'wp-admin/images/align-right-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6883026CBD3E72BA5DA36C57C60FC078')),
(UNHEX('C3CD746E529FD894C0E1AFCEC6255E81'), 'wp-admin/images/align-right.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42D8F3E2874F6523D36C403A502B2276')),
(UNHEX('995B82179FAE514822705331C8AAEB63'), 'wp-admin/images/arrows-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('972051F086017DCEF17964622336840B')),
(UNHEX('D345236CF0C24CFEE65F26DCAAB3C2EF'), 'wp-admin/images/arrows.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FDA76920124F03E88D1DFD93E03BF59')),
(UNHEX('A14453E6E2E1330F172EC4AF797DF33B'), 'wp-admin/images/browser-rtl.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('442291D9D3A041E41AAEFEBFBF25CC9D')),
(UNHEX('980E9BAFD0C28E0FD9EA48CB300836B2'), 'wp-admin/images/browser.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1B2F9C29EB54B1F5C0284629524FE46')),
(UNHEX('47803971F3F1EB3DCAA55B333F1961E8'), 'wp-admin/images/bubble_bg-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16523D5BF9EFD8CA3B92E7631EDFC513')),
(UNHEX('51756F145058D8D80005AB15B853DA9E'), 'wp-admin/images/bubble_bg.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D2CB3F7BAA628C9E51A326356E72038')),
(UNHEX('D2D54C7435393396755E98EBE429D9D4'), 'wp-admin/images/comment-grey-bubble-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D5459D3C59D32B602732C0DF56D83BF')),
(UNHEX('05A2D81BC01D65DF6257FC4130CF1E64'), 'wp-admin/images/comment-grey-bubble.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F59128F2A27B489B0A974C0B6B21046')),
(UNHEX('10CF4915A2D85C6AB6ACD178CCCDCB67'), 'wp-admin/images/date-button-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2952932C246BF9828429361643A8BB63')),
(UNHEX('FDCD6184ED274054E791938903F5D6CA'), 'wp-admin/images/date-button.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('979D8E2E08AADA49819556950EC48FF6')),
(UNHEX('8F6A254DBBC98DF2D17017295A89C40B'), 'wp-admin/images/generic.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F88E1B95FF278A5B231F39380B211ED0')),
(UNHEX('C81A7B0867DDFC3F17D13367DAA21ABD'), 'wp-admin/images/icons32-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B525A42AF908FAFCF8CC07679AB4FABB')),
(UNHEX('9FCE1B9626BFA24EC22CF5A5EF8C3650'), 'wp-admin/images/icons32-vs-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A12A3034FF4734469709265A83697D22')),
(UNHEX('87AB4C209D55FFD5C0B966AFE075E23C'), 'wp-admin/images/icons32-vs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('052CD6502A05E7D3F17B3E76A5B15566')),
(UNHEX('C231A88C575628329F9836B284B31594'), 'wp-admin/images/icons32.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1DBAC5BE76D39851CE74AA134CC1AEA')),
(UNHEX('124CD6C4FCFD38E0EF80F55CA8DDBC2B'), 'wp-admin/images/imgedit-icons-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2CE3EE2783A33655A6BDFD9DC3CCE174')),
(UNHEX('7BF5871F903FECD1D5FC0D92DA0A1B27'), 'wp-admin/images/imgedit-icons.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4BD55C320B9FD9D8127DA94789693B4F')),
(UNHEX('A23467818C651FCAD8E93EA9F3D3DF9D'), 'wp-admin/images/list-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68D5BB134953C23217FDD36982679A0C')),
(UNHEX('ADE25A0A7504D56F4BB020AFB6543B65'), 'wp-admin/images/list.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E123E96BD2A1CE2C0D3B305D153F1C3')),
(UNHEX('1C29FA4DE6C85EF0B6C3BB6F7AF0A905'), 'wp-admin/images/loading.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D5B92B61674C850BFF00CECAF0864EC')),
(UNHEX('BB00B2D725335B247800E8E22EB08E28'), 'wp-admin/images/marker.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3313DC2A4F322FD43349329CFDE8191E')),
(UNHEX('40DE3B358B5811F5F156A87F944FC65A'), 'wp-admin/images/mask.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FCF693677EA822E6D24AF7B2E4A98E99')),
(UNHEX('40F773028D5AF6945E99A5D3E8718D76'), 'wp-admin/images/media-button-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('23DB5749E51D85105CB8D03FC81305C9')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('31DC456651A4762329F30AD930456B51'), 'wp-admin/images/media-button-image.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7EA2C9C157C38EDB40B1CE62D572D5B3')),
(UNHEX('615C632C49223554CD05B123CC8B1FFE'), 'wp-admin/images/media-button-music.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EFF55DF37F325C5AAE2F02E4D913DE95')),
(UNHEX('014E519E222A687A1CAA72C3777C1AF8'), 'wp-admin/images/media-button-other.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BC6B46BC70C7C1918DCE62C4FE3229C')),
(UNHEX('FE1BFDFE819C03297A5D213FBBB161C0'), 'wp-admin/images/media-button-video.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABAAC3DFD81FBF72E578F13451EAE7D0')),
(UNHEX('61299E544D57E1B84F6F88B851947CDC'), 'wp-admin/images/media-button.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2B6C3E336054070E8927A5E7965F3CE')),
(UNHEX('0522929F4EDFAC6A6A29859F008C954E'), 'wp-admin/images/menu-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A47FFF5FEE2F97BBF3EAF5E3B2482D3')),
(UNHEX('2A2061D846B2CC19F0349FB075DB7655'), 'wp-admin/images/menu-vs-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AA85A0C593CF769C7185911AE8462F8')),
(UNHEX('0215745D95D99F75C3D575DBFCE56AFB'), 'wp-admin/images/menu-vs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('719980F24CF02C0C5FA53B312FEF45AC')),
(UNHEX('40BA58440AC30A524E867F9074EBCDD3'), 'wp-admin/images/menu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E10D8139230F1F8B64F35960098F8CFF')),
(UNHEX('EB462019F338C72BB229D0D872DD50E8'), 'wp-admin/images/no.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C86BBF1C64C924F99FDC9F5637F0C08B')),
(UNHEX('B513E5B5152B449E46DCBF545A5B4837'), 'wp-admin/images/post-formats-vs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A68F53A66C93F4485CA9ACAFAFFC81E6')),
(UNHEX('E300BC95D7956F786933250D2B5D6B67'), 'wp-admin/images/post-formats.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC4BFFE1D10093E4D92533A8D60CBA07')),
(UNHEX('6E0E0E5DFB6A16373C331349537351DF'), 'wp-admin/images/post-formats32-vs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7742E45B6ADEA3547A54E1AF3FE761C')),
(UNHEX('CEC593FEFAFACF94F2031F3D9FBA2336'), 'wp-admin/images/post-formats32.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57597E8F4F92F87BF02B5F4C896B453B')),
(UNHEX('F2B63F7B6F0B5FB1B0B527BB186ED611'), 'wp-admin/images/resize-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5E118653F892606682EE9C51D0ABA99')),
(UNHEX('AC3321390B16E43DE8369D0C12DDA10F'), 'wp-admin/images/resize-rtl-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7C99EE74014FE92541012303AAADC7D')),
(UNHEX('8849DD7B8B3FBB8672F45DAF1E1DA037'), 'wp-admin/images/resize-rtl.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB9217196313C95A59D43601DA19C51D')),
(UNHEX('7E3FA14ABC49D6622A15D7BAEA65E843'), 'wp-admin/images/resize.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FBA1544DF24F40DDE5876C8C0AEC461')),
(UNHEX('0A669D868959A1B703023426FC4CF0A6'), 'wp-admin/images/se.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6C89442C360BD1E08DA2E7D1527373A')),
(UNHEX('58973A382B7FCB93323E565DACCB38E0'), 'wp-admin/images/sort-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('186E51267FCA5D20B230C72D9A8983EE')),
(UNHEX('DD5B36BB02358084112BC809E16E39E4'), 'wp-admin/images/sort.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2E8ACB8DEE99BFBCB61BD46C486A995D')),
(UNHEX('874ABC26065F23B9F13353D471A08DAD'), 'wp-admin/images/spinner-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C1371BCB4392968647852A9C9DF5D6C')),
(UNHEX('E866F569BF60B81D3D4054B5E76FD902'), 'wp-admin/images/spinner.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0A3DDE331637E27AA6476D476481871')),
(UNHEX('50DE3124B61B1B89F3025C170F2AE543'), 'wp-admin/images/stars-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5EA4194A79C23E653B24D0C65032E5E')),
(UNHEX('E946CE6A2159E97B072E4A3D2CB5AE12'), 'wp-admin/images/stars.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5BACE01F99903E3CF56BB27BD2EC2891')),
(UNHEX('56726D914B7F451FA770BC6AD7E43697'), 'wp-admin/images/w-logo-blue.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD5B4EB05706A2F05F707FE077AE1030')),
(UNHEX('4A0B66B80F333FF693875F72DB431F91'), 'wp-admin/images/w-logo-white.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6EA6CCEE4A0176DBA27EBB79AC175C85')),
(UNHEX('C62B92A0CD67D405BEC27136A55E00E8'), 'wp-admin/images/wheel.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4530BD2071306DBBC61A592556B958A0')),
(UNHEX('1D8B2584E4105CF9C24D4182EDD2EFFF'), 'wp-admin/images/wordpress-logo-white.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19BDD97150FB43AA862D53500C44E6F7')),
(UNHEX('05745A518FA5597A3085FABDDFE8B7AB'), 'wp-admin/images/wordpress-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6B0F979B9E66FC338F4CB3853A5608A')),
(UNHEX('0BF263221B6D6C8F20FFC79E073E6F13'), 'wp-admin/images/wordpress-logo.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F34EF6259364F7EF0CCF67CD1DDDC970')),
(UNHEX('80D3DABAE8758FB6BF4D97C91DF75B0D'), 'wp-admin/images/wpspin_light-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DEF33AAD959CD289D49DDF2A41F076D')),
(UNHEX('0B22771D1725E25F83844B5CA0E175CB'), 'wp-admin/images/wpspin_light.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD4E6DD268A70CE4C1C5143B1A4092DD')),
(UNHEX('FCBB3C6CE66117AC802C9B62582CB3B2'), 'wp-admin/images/xit-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FB0729C541CBDC4609FAF3F4AD02FC7')),
(UNHEX('9DA76DCC119CFD7A34E84CE4AF04FA4B'), 'wp-admin/images/xit.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5012902A358FBB96031ACDCF048D7CA')),
(UNHEX('D84D268F33160DDCC13315434D61517B'), 'wp-admin/images/yes.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C42BF814A237DC89970D715AE8516B13')),
(UNHEX('94C91E54B2A256A8EDF4AA935C989705'), 'wp-admin/import.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3EE1EF15A9A620217059A853D728D7E')),
(UNHEX('C4B34AF50A607C19C6352C4854F508BB'), 'wp-admin/includes/admin-filters.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFE9BB0D8D6D7CB717CF3E7B829FA572')),
(UNHEX('4492C9F1BED5296261EB6BDAC57BCBCB'), 'wp-admin/includes/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C7B0C8C7ACD69508D8F19C3C61A71C0')),
(UNHEX('D2AA2A8FE3D41F489AAAA80A3B74B2FB'), 'wp-admin/includes/ajax-actions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48703518A4FA90CB1D43165094C2B25C')),
(UNHEX('B6B0CE9D48BA012AB6E12A2EDA811F53'), 'wp-admin/includes/bookmark.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('125E5914DD11E40DC55C2E1DCEE8EFF7')),
(UNHEX('22D810770E13B21DBE68B21088AD14C6'), 'wp-admin/includes/class-automatic-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3D19EE4C85726B0F24CDD1F36C414F9')),
(UNHEX('6EE3D0BA0B9D99D30C76FD6E6A3DCDAE'), 'wp-admin/includes/class-bulk-plugin-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A3DE5FC971707B8D955B57241E263651')),
(UNHEX('2027D3D21CAA5F550F0F3B30982F3CC2'), 'wp-admin/includes/class-bulk-theme-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1EB1414C632E0BBBB647BA40A46DC11A')),
(UNHEX('0E5737A4947B2884A63B3A50A59A9D3F'), 'wp-admin/includes/class-bulk-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A6F637C880ABC3DB8B33F57BF5D5947')),
(UNHEX('C26AD5E755C355E991581AD0E82F4A2F'), 'wp-admin/includes/class-core-upgrader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32238F9B19232BFB4BB4BBD9F854DA9E')),
(UNHEX('D74D00F7C2DA63B09AEDF8A1A25F64D8'), 'wp-admin/includes/class-file-upload-upgrader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F161CD539B60EFD6C87DC716A7C77D8')),
(UNHEX('17A93A38CF1F4961F617B9C3B86CD56D'), 'wp-admin/includes/class-ftp-pure.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42E4621745BDE04512803E8702DB1152')),
(UNHEX('A56166683D46AFD5DE54D23AFE9336B6'), 'wp-admin/includes/class-ftp-sockets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('076CA839E8552B45A3EEF558AA2B1996')),
(UNHEX('F105F8E59372702E187585337A78800B'), 'wp-admin/includes/class-ftp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9BED1265F9EFAE3736499726A7A1B2E')),
(UNHEX('BAAD3AE6C058A9BC40007B2AC5D6AFA6'), 'wp-admin/includes/class-language-pack-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3E92F246FAB0106917406A8B1B73395')),
(UNHEX('67D017B67E29B27EA573BACA9E93FB49'), 'wp-admin/includes/class-language-pack-upgrader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28FF8DDB3C48D106C7BC05CA5EBC8BE5')),
(UNHEX('E71E1622D5C6A181FC9F173776732BF6'), 'wp-admin/includes/class-pclzip.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('59C701D09896CF859689DCF457597084')),
(UNHEX('572613CBD6B420AA292BF4DAB1A5F6E5'), 'wp-admin/includes/class-plugin-installer-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D80ED75337DB94D22047C28CC19203D6')),
(UNHEX('AE682F07CD94909E6A9743EAB600E66E'), 'wp-admin/includes/class-plugin-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5DF98F9427E3C54DD8650BD22751E51E')),
(UNHEX('7610962946BC18DB7E027184879C3F62'), 'wp-admin/includes/class-plugin-upgrader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6C8FAB06303F985708A8A270781A024')),
(UNHEX('BF997314BCF383499E71468D9B8AA3B5'), 'wp-admin/includes/class-theme-installer-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4964EBDDE7CA0C6151768FCDE6F38953')),
(UNHEX('4860B05C07F120E69C72B2A7B759EA43'), 'wp-admin/includes/class-theme-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3F6CD7C70FC0E10E30B885E604C5C80')),
(UNHEX('9B33E2F46144957716B750B69C8AC671'), 'wp-admin/includes/class-theme-upgrader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16F444CDE309BC27E1387BBF775F7361')),
(UNHEX('7B7922B614D2B5B5D0DDA9B67B8DAD9D'), 'wp-admin/includes/class-walker-category-checklist.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C54A5FFA9365B471F384A85F350F1F1B')),
(UNHEX('8AF851737CE263B74CD89C5648B31929'), 'wp-admin/includes/class-walker-nav-menu-checklist.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC18AB19D5F50E93B47FF0CB0EC46EBF')),
(UNHEX('D8B1A52DA45F7D5A916813FBEC0AB11A'), 'wp-admin/includes/class-walker-nav-menu-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86218708EDBDDC9B8153E350982CB301')),
(UNHEX('C19C1021E7E07990CF46BCBF5DC9C6C3'), 'wp-admin/includes/class-wp-ajax-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A945F43277E7E50758D17A819A9E9DD7')),
(UNHEX('EDA7A45AC51A61594800209B35EE7E20'), 'wp-admin/includes/class-wp-automatic-updater.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('81097F6F3DA72F42A523822A6FF7B2A6')),
(UNHEX('1E8BF6C25965B8032EF00E3073049682'), 'wp-admin/includes/class-wp-comments-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2E4325AF8637C1A0E5046070D60EC5B')),
(UNHEX('E025E78F665C2B2C080285E6CD005C59'), 'wp-admin/includes/class-wp-filesystem-base.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('31A9030A07853F40E96D873DDDD401C9')),
(UNHEX('CA6846034D3C40602503712DE3E61503'), 'wp-admin/includes/class-wp-filesystem-direct.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('547828F43EEAE0068C00DBFFE98C03FD')),
(UNHEX('36CCA02CF5F85F908BEC71F2EAF97585'), 'wp-admin/includes/class-wp-filesystem-ftpext.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFB31034E27E41277316DCDB2EDADFA7')),
(UNHEX('9CD5138B800C50518B457C457D372B01'), 'wp-admin/includes/class-wp-filesystem-ftpsockets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('950B2F460E8702C2C048EE8C00218F6B')),
(UNHEX('CDF889BB6A2867F91F807E6A5523B7D6'), 'wp-admin/includes/class-wp-filesystem-ssh2.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E2DB6060C873BCCC20CA441A05ED98C9')),
(UNHEX('767F5DBF7A8BF0D4E5039AC333BB7442'), 'wp-admin/includes/class-wp-importer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C77F5CDE4095FEACAC9D72F4A53053B')),
(UNHEX('82EC9CFDAE76BF410A4772CF33433960'), 'wp-admin/includes/class-wp-internal-pointers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3BE49879E4E749823539E234113D6CE')),
(UNHEX('5FEE9128ED43988CC21B4D360E9839C9'), 'wp-admin/includes/class-wp-links-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E8478D2B29EFDCCDF6BEAB89D365F79')),
(UNHEX('BCFC55649FA513064D8592D95324806C'), 'wp-admin/includes/class-wp-list-table-compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C59822E294B33495054A4FAF43919528')),
(UNHEX('4F0987D253A0FD95C723C5FF5969F276'), 'wp-admin/includes/class-wp-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FC8DB19BA9565C6227896B64517A741A')),
(UNHEX('B35662286B74885722ED36283BC6B4A0'), 'wp-admin/includes/class-wp-media-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('43033837E46B975FFCFA848C98F838E5')),
(UNHEX('AEEB8DFEA7AAEAE273709BD0E46510FC'), 'wp-admin/includes/class-wp-ms-sites-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03E807509156EE0F2C192A95F19EB36A')),
(UNHEX('E40C7706A21BCDD3D656A5D0EBBC21DC'), 'wp-admin/includes/class-wp-ms-themes-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71867BA40A0293CAE97E3427F9C291A4')),
(UNHEX('06FCAB6929331633DCA5D1C773DA2A17'), 'wp-admin/includes/class-wp-ms-users-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C98B065D07E6E6513CDA179B5070A29')),
(UNHEX('652E50C8B44E42875378115BDB26C1BC'), 'wp-admin/includes/class-wp-plugin-install-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A4FF918BE799FA527ED9F4FB09C0E73')),
(UNHEX('B88E94A79C5BAE8F3A81B09784850F71'), 'wp-admin/includes/class-wp-plugins-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C776FD728B16C29096480E6A685E49C7')),
(UNHEX('6314A7171C344C5DF4CB9EAE04B74D63'), 'wp-admin/includes/class-wp-post-comments-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C34F85A05EEE305EAC2654E5D25E544')),
(UNHEX('D747C8A9F5EFBF3694A415B3C8000859'), 'wp-admin/includes/class-wp-posts-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E5FE4B5FA51FD291AED933504451D63')),
(UNHEX('9DE0E53CA7EFB1701A6F4053FE71A8E1'), 'wp-admin/includes/class-wp-press-this.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('611976C2D9554BB914AD12D2D8359572')),
(UNHEX('544DF2A2C6FCCADD6CF2FE01D5F4BADF'), 'wp-admin/includes/class-wp-screen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CFA80BC5BEF9085EDE2AD08F7422F25')),
(UNHEX('274DFEF87788F1918DB783E3C70D4B6A'), 'wp-admin/includes/class-wp-site-icon.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5E883F311AE9C875822DE71218C7CCC')),
(UNHEX('4C23D61FAC2FDBB02ACCF833F2D2EC0D'), 'wp-admin/includes/class-wp-terms-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F4A9EBB5F3B4E0B0CF5B10F38032BCA')),
(UNHEX('AC22DA954B5B408947C70CFBE1E13991'), 'wp-admin/includes/class-wp-theme-install-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6114525C7A92C179FC343EA2ABC22C2C')),
(UNHEX('2249466EBAA716ADB840F761C27D9239'), 'wp-admin/includes/class-wp-themes-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6FA2AC7C4DEC692A6D91ED23172FE538')),
(UNHEX('DF3D405CF0124A7051F36D5C1086C036'), 'wp-admin/includes/class-wp-upgrader-skin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2787360D4F8C565E9390CE1857F401A6')),
(UNHEX('7AACF6D5EF4A58D4777B210D46ABC0BA'), 'wp-admin/includes/class-wp-upgrader-skins.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB3F151FC0A8485AE1CB1E8CB9EB7655')),
(UNHEX('58C2D7DF47B07FA60493F695E57A8458'), 'wp-admin/includes/class-wp-upgrader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22A21203EC022B637902903ABD9B9993')),
(UNHEX('90DDF2AE10961978385B01213E10F158'), 'wp-admin/includes/class-wp-users-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B9D4C6607EE77DEA53125FA811D077E')),
(UNHEX('1E7CDA26183B8C72A2020E4C7335F98A'), 'wp-admin/includes/comment.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D097EE8CF112A84FFA3E9995A3F90D58')),
(UNHEX('336BADA86F1C175791351B096B5B6D71'), 'wp-admin/includes/continents-cities.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('448B712E4F42BEB00C3612990AA76686')),
(UNHEX('B9B9CE3CFF09CF6625D56E9F174FB303'), 'wp-admin/includes/credits.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D546A1A2AC9C890AA9FD68CCA4B221D')),
(UNHEX('5C9AD182923F241880CD8438C092A1E6'), 'wp-admin/includes/dashboard.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6611AD8C214F7C86BD19CF7B982F3504')),
(UNHEX('F23FB2E2455F1ECF298A78DA85249E9D'), 'wp-admin/includes/deprecated.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5DB1D301B72E63E55227DF914CC1C58')),
(UNHEX('9FF4785BC76584F2B6BE3E4D078D0C01'), 'wp-admin/includes/edit-tag-messages.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED872AAE05BC79FDE6C864EDADF77C81')),
(UNHEX('85B93EC141E40C42C737E5537A218865'), 'wp-admin/includes/export.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7583047B883C965C82122F649094065D')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('5154ABF1F22A018F66D75084E5A52EBF'), 'wp-admin/includes/file.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9CDC95653E6087F203A266F40EBEA55')),
(UNHEX('93AB14378BD64523BE77C5A76AAFB2B2'), 'wp-admin/includes/image-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('846816F264EAAFDBCB9D22A846BA3D9C')),
(UNHEX('00C77C39E8D7758565E4F1E1964083B5'), 'wp-admin/includes/image.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3964B7C2BDF321885F3B9514EB2B6F7D')),
(UNHEX('D84105AF682949881A5D4772DEF68345'), 'wp-admin/includes/import.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A481A69FBE321C95E019B1841D4A2467')),
(UNHEX('FE63B5D4776B9D2894910FF8348D33C3'), 'wp-admin/includes/list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E7C28CCA8A3462521D71D0685B2F36F')),
(UNHEX('FA01529CDE3DFADD2AC964F2D56E0390'), 'wp-admin/includes/media.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C03663FE126BF95650EEE9C57A9FD7FE')),
(UNHEX('9001060A99716FE3715A5679589CBF39'), 'wp-admin/includes/menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A16C328791716CCE6D032B933F4C9376')),
(UNHEX('48C3BDCDF16919ED5ABE552C4818BB4C'), 'wp-admin/includes/meta-boxes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2FA7537472D3F63F0DF58C698277C7D5')),
(UNHEX('8631E4886555FC9D4D56FDB85E9A1499'), 'wp-admin/includes/misc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53CEA3A70E5D2F083F07CB21C270BB1A')),
(UNHEX('AF6AD03C4DBD4464B197FEEE08346DB3'), 'wp-admin/includes/ms-admin-filters.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('513716C01839CD14E187066C3B191F80')),
(UNHEX('89372AFB8FF8227BEC0BF3830A8D4B3C'), 'wp-admin/includes/ms-deprecated.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA200286CD6F6D89DF9A6FC2B5AB824D')),
(UNHEX('66A0E99CB066D89F7C68FBB955924C03'), 'wp-admin/includes/ms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A94DAC11FA28DA5B8CF3DABDB6C2F491')),
(UNHEX('0328BF800497D199978DC9DA00483C5F'), 'wp-admin/includes/nav-menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C26DFAF6EE75AE92C75C834F942B99F')),
(UNHEX('56D780E3C42768FD97C4882B073A9FC0'), 'wp-admin/includes/network.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC21265688E995F6E36904D717F8F78D')),
(UNHEX('77AE15F4604D0CCBE13EC77BD40F83B4'), 'wp-admin/includes/noop.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D54BD098E964F2D4B0ADA68BC12FB4AD')),
(UNHEX('043B0770520339B2B62BF3711070D5AE'), 'wp-admin/includes/options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E0B31153BAF0CE43A5DE42A5AD9E060')),
(UNHEX('5297A77C52782FE3627A6E39002AD14A'), 'wp-admin/includes/plugin-install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDCBFD48C3440038F250CACA2AD0B1F1')),
(UNHEX('71228D636FEBDE19A33EAB325268E95D'), 'wp-admin/includes/plugin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CEED1B36F196390263BC750C2762FC12')),
(UNHEX('C3D5C535DB5622F3B0242411EE5F9DFD'), 'wp-admin/includes/post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FE7B49516EE37B9FA0CD1A76A1BE7E5')),
(UNHEX('78965E6DDD5DCCB29A2FF5C54C347655'), 'wp-admin/includes/revision.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D80C16BBA97299DBCC7B5FCCF715891')),
(UNHEX('C7ABC93DC5E86D04912FE01FC19C5E12'), 'wp-admin/includes/schema.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('88990CD134C53937241F0E7EDB753209')),
(UNHEX('2881A0EF08767C548FE2809420C2A5D4'), 'wp-admin/includes/screen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E197A008123886C7F810F3B8021FA0C')),
(UNHEX('5AAC8DCAE8C420252FBB5ABF7A39FDEC'), 'wp-admin/includes/taxonomy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('362F31B73F462CEDC8AAFF1FD730DB5B')),
(UNHEX('3240DC6A0BE56A00A16BD3B294A1D398'), 'wp-admin/includes/template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D81BBB9B85C8111C215D24E352F541AF')),
(UNHEX('1093167E98E24CC9CE2AC42CC43C3AA5'), 'wp-admin/includes/theme-install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5A463F03DE9A3EDF530952DCB19B5EE')),
(UNHEX('E95D1FF7572F3EEF7D3C38E8205646E3'), 'wp-admin/includes/theme.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68AC5086DC3847364708FFAAB95A3E62')),
(UNHEX('389E5236DA4448B08A71A32D7B8E3A60'), 'wp-admin/includes/translation-install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09C05A716D4E845FFBF0382106FBB6EE')),
(UNHEX('AE0BCCE45505792FFF052A25FEE5FD3B'), 'wp-admin/includes/update-core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D92966E91DC17E8E43C076F9A30BD9A')),
(UNHEX('AA5D16DA2EC71904310B0D5018584CA9'), 'wp-admin/includes/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECDB2F3C7F51E392EED22B089932A395')),
(UNHEX('EDF10FB2833DC3FA63E4D9879CE60BFD'), 'wp-admin/includes/upgrade.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2588D9B7F8DBF165E375BDBFDA28B8FE')),
(UNHEX('0651A120B7D4283BD8A07C7E5238BF62'), 'wp-admin/includes/user.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4BA9CE1C16D655AB3EDB412D6B6F8839')),
(UNHEX('B4F049C7E5D8FB2E2455305D2788535F'), 'wp-admin/includes/widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89CB4FD9847B53BD30B216D0F5D62738')),
(UNHEX('9D92D1BA9F22CC5035ECD35E55811A69'), 'wp-admin/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0DDF88662108AF941F0E4B43C96D345A')),
(UNHEX('42861217A16A088429DFD071BC448A53'), 'wp-admin/install-helper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6456B260AA9DECE9B30431260CDB1A6C')),
(UNHEX('9636B67C3BBE3B38C551B934996B85F6'), 'wp-admin/install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F9C2FDA49E1EDFC038A9B72C81DCC19')),
(UNHEX('7A3B6A325744BA36B28C115BA1170856'), 'wp-admin/js/accordion.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF3FE33D4CE12FE5254E5AF1025CE70A')),
(UNHEX('E95E2E976A547DF93CDE04048C49BE99'), 'wp-admin/js/accordion.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('226BC149FC7A1D2D56E4530D3B685E58')),
(UNHEX('FFB48D548396BE8AC3873D779BB19D15'), 'wp-admin/js/bookmarklet.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95C9EF35B76AF2ACEAF9D6C5958E8D43')),
(UNHEX('7E3739AD68C267242BD13D94A0DD5C30'), 'wp-admin/js/bookmarklet.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A91CD95BAEB66D4873DBE424B75970C3')),
(UNHEX('9C3519F4870FAC83DC0DBF18CB6BD4C4'), 'wp-admin/js/color-picker.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05C7F6756AEAC3F2CF7D276AF6881826')),
(UNHEX('E7CF48E2B6C7CD6CF6B17B214423AF21'), 'wp-admin/js/color-picker.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2E3A1F2A0AC299060D3C853E61D002B0')),
(UNHEX('1C4303F02FF93B290E9FAAD991EEB06F'), 'wp-admin/js/comment.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9E3DB00DCC6EF4D4C03FF455DCB9C55')),
(UNHEX('51FDA983CFDBC16CEA149D67B42DC4F3'), 'wp-admin/js/comment.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F3603ED0D77C4A1AE8F82DBD3159ED9')),
(UNHEX('77FDFADAF2E1CA3A027D1956B910BC50'), 'wp-admin/js/common.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('462A161D672F6A44BEEC251A7AA6C8D8')),
(UNHEX('F2C2CC5F667F04C2A0181024C14F3C6F'), 'wp-admin/js/common.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F2235EEF66DA7F38777C524A9C36205')),
(UNHEX('640BE3ECAD31EDECB5932D853B4F98F6'), 'wp-admin/js/custom-background.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4CEFF60E63046245443BC55EE7BABA9')),
(UNHEX('8D7D208D79541E8EEC5ADD488463444A'), 'wp-admin/js/custom-background.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('351F2EEF1D5033D68E8982EA86167E3F')),
(UNHEX('158F16DBDE430A8E0C97E455BE8416FC'), 'wp-admin/js/custom-header.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32B3005887A4CB606FECC09C756605BB')),
(UNHEX('A58FFC6E7670AC6584EDC6D0EECA7DE8'), 'wp-admin/js/customize-controls.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71654E9542DD10AA8078F8C005D2CB7E')),
(UNHEX('BFFF64411F2385F6CD2AE782C5B96F37'), 'wp-admin/js/customize-controls.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A0D38AD2A3BA06C2933629BE5497559')),
(UNHEX('3A44E94A9D24EDA56813BB86C7850DD9'), 'wp-admin/js/customize-nav-menus.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC3B7E6BB1B67C77A8259D19DF7EB7B1')),
(UNHEX('484768270FDFC178FA5287BC8E7E170A'), 'wp-admin/js/customize-nav-menus.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38F10B79FBBFFC9E741893014EA002B4')),
(UNHEX('AD295B224AB94894EE7CE76A6B8AFB24'), 'wp-admin/js/customize-widgets.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA08D3E88EE6525511DA0CA1518FEF08')),
(UNHEX('1D664D7892EDAAB9AE09E92B399555A7'), 'wp-admin/js/customize-widgets.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06E1B9A8B892C70E1C85D6E71A818042')),
(UNHEX('E2E4C4B80F3ADF2C70B431BFDB1B4872'), 'wp-admin/js/dashboard.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6AEE15AE7CBC39C41E0CAA2E93EF635')),
(UNHEX('E4DFE6A8DE7A704B43B27B5C3E82F390'), 'wp-admin/js/dashboard.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0DC133E28D19ED6AE18702A58A335180')),
(UNHEX('6025ADD6BDE16AAEB12787D250F9B414'), 'wp-admin/js/edit-comments.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EABCC0C5E7D7A437B614FAB4089A6810')),
(UNHEX('46D027A342A42FED34087B4ACD7B1777'), 'wp-admin/js/edit-comments.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A219A0B276225BB3BACAC8C2CB3776B4')),
(UNHEX('E552CBE4353F922D2053A3065E4897FD'), 'wp-admin/js/editor-expand.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7D8E24F4C208108B7CAF2DF88D9B54A')),
(UNHEX('49F1562F92F0B536A4137311E3C3F80B'), 'wp-admin/js/editor-expand.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4500034A26D73B737F761ADCC7EF5C79')),
(UNHEX('383DC049E5AFF461F7259C836BD27EAF'), 'wp-admin/js/editor.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76DD539631F379CA702E9757F52A53F3')),
(UNHEX('E6E2A3A3F44DE54FD716BAEEEF8355AE'), 'wp-admin/js/editor.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D23FDBFC8B0862FB2F292802CCB8A60D')),
(UNHEX('3B52DE79689BEB9FD052784B8D111C0D'), 'wp-admin/js/farbtastic.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A73AF354A03241715D8698FEEA340B92')),
(UNHEX('98C42F47CE9ED3B65BAD13C79CEED943'), 'wp-admin/js/gallery.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78CFA96506BF3965C18AFA6DE5B5ABB6')),
(UNHEX('DB20E649D95F58B2D3039ABC101BA83F'), 'wp-admin/js/gallery.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E7B25E9BC3374CF391D5A652651A277')),
(UNHEX('1D17475F620F63A92E2C5D2681C51EE8'), 'wp-admin/js/image-edit.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16A3CB26CB0814A231D58B38C97DF814')),
(UNHEX('B5E31B2D5A08BCB38011023A45BE3A1D'), 'wp-admin/js/image-edit.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53286D003E3E19EACC26926F76C0D7DF')),
(UNHEX('9B256EA9CD54DF92095E04C76758CEB0'), 'wp-admin/js/inline-edit-post.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A86FF8375F6AF6A1793F20FCDFBBFFC')),
(UNHEX('A331E06F1425A8C00471C5031541B580'), 'wp-admin/js/inline-edit-post.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A92828462403C43B71D05AF005DB85C3')),
(UNHEX('CA28138671823450E87DFD354F7AFC6B'), 'wp-admin/js/inline-edit-tax.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC5818C45238461CBCE1FEE187236490')),
(UNHEX('F9A28DB870F66C345BB2FEB0659BDBFB'), 'wp-admin/js/inline-edit-tax.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDE9127DE4C2995FC434B200F0DD615B')),
(UNHEX('F36C4691AEBEDC63EB9295D24CC180F8'), 'wp-admin/js/iris.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45076064FDCBFCF9F5C8996E10AC4BC9')),
(UNHEX('69C05CB4AF817F9B123D58EF05681424'), 'wp-admin/js/language-chooser.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09E20150C7561D0330D7158F744ABB4A')),
(UNHEX('A18DBBAB5A801A780F6379956490F327'), 'wp-admin/js/language-chooser.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D6822384A71090C74ADD106E4468581')),
(UNHEX('EDB0515222E6C3400B331DAAF676E053'), 'wp-admin/js/link.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C8675DCD035CFB374F67BFCBF117A8C')),
(UNHEX('DA7CC023E91CD4B0239D7B95C4FE9FE1'), 'wp-admin/js/link.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F9FF4694933001933BDEC2C133B2252D')),
(UNHEX('6E5A2F31543A7B265E842F086EBFFD86'), 'wp-admin/js/media-gallery.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0809048874D234E35ABAE65DC17710A')),
(UNHEX('3A8C8AE525486021ACFBE10D06E8805A'), 'wp-admin/js/media-gallery.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3296D1FA20D292B002BBA10490F1BA6E')),
(UNHEX('D0D85EBA5CB6580CE8507653AC5CF77B'), 'wp-admin/js/media-upload.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94B464E9B4EC6B545486AF795F24016D')),
(UNHEX('81656CF704358F73989845EFC3BA51E2'), 'wp-admin/js/media-upload.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F320174ED63DE275264DCF5430C309DC')),
(UNHEX('7289286ED59E90A8F36AE797DF62220B'), 'wp-admin/js/media.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DDD4D762D805B2C5EA458515CC5E217')),
(UNHEX('D79E947984376D4504359D83854F5FC1'), 'wp-admin/js/media.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9BE63ADBAF5A5ACFDBFDD555DC19777D')),
(UNHEX('A9DC201DCD011FE71849743133052619'), 'wp-admin/js/nav-menu.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5AE9E78B47C5096B10AFEB0E1E951E5')),
(UNHEX('DD6685E39D18798EFCAC1BC4A7972A21'), 'wp-admin/js/nav-menu.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('030DF1F8550983EEB6F34FF46BFD8D7B')),
(UNHEX('0EEBE503220D4A00341EB011B92769B4'), 'wp-admin/js/password-strength-meter.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2847576EC45293AB96DC0030974E2629')),
(UNHEX('A8ACCCC880E77E5F71DA49B6C45310A1'), 'wp-admin/js/password-strength-meter.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AAA74A24AEF982B82498717C1D1E6D1')),
(UNHEX('7436B7EE9E4F11AC0D618D8CC886EB66'), 'wp-admin/js/plugin-install.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B606CF2BA06353B0E383E36B4BD19A30')),
(UNHEX('21F4FFB7ED59302D057A31E0646D3E87'), 'wp-admin/js/plugin-install.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46AC03875245E24A0D1BE489B6CB4C2F')),
(UNHEX('569E85EF168299EB8C8F24D8EF8C8A78'), 'wp-admin/js/post.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('410FD99A0ACA02DCF6ABDA8B98222D99')),
(UNHEX('4D3F2C35D82AEEF3C904FADC4B2AC566'), 'wp-admin/js/post.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDE5F7E8431DBEB790E8CF9665192171')),
(UNHEX('50278328B502F4EB3F2B8B7AB49324A1'), 'wp-admin/js/postbox.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3DFC3B71FEFC8C6EB82DF54E3460B53')),
(UNHEX('4FACACFAB352AF72BEA9A3E844953F97'), 'wp-admin/js/postbox.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDFE27F4EFAE737B800BAD96ED8A0969')),
(UNHEX('4062E24866F30F51E122050B248F8453'), 'wp-admin/js/press-this.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F248F30A8A7D782D4E38962C8F0E6329')),
(UNHEX('1617D590280FE206D5EDBED3D9409097'), 'wp-admin/js/press-this.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CEEC025D4710581C8A0986860C8DFAC9')),
(UNHEX('BDB2BC5C869339BAD195810146A077ED'), 'wp-admin/js/revisions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4EB824B75D3E4D62BDC80A6D2A79A377')),
(UNHEX('F86BE67F1401DE12BA94653C46EADA34'), 'wp-admin/js/revisions.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('189A4D84349FE1F4DFA0EC48C82EFB04')),
(UNHEX('4BFA11DA57FF2600004BB500368247F4'), 'wp-admin/js/set-post-thumbnail.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B5153576D1EEE4002FB7ED9E5831251')),
(UNHEX('1C54CB67736C46EDA2E6CA9EE0F54C79'), 'wp-admin/js/set-post-thumbnail.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BC5CA12FA38A607D5AF2181311B7A5B')),
(UNHEX('F15A2FA5BCFB7B4C74E5D5AE4624801C'), 'wp-admin/js/svg-painter.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('87DCFBE97F902FA77CC4A9889C827AFC')),
(UNHEX('CB553CDD3F592CF5CF1381A7D8BB2810'), 'wp-admin/js/svg-painter.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A79ACA561A5B87B62A710B0526A8E4BD')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('9D47A87C240C1D10701CD6A02B28AA1B'), 'wp-admin/js/tags-box.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAADAE9FAA6E901537E10B4292184771')),
(UNHEX('A79C9F4A3180AB4D10DF46B0863C0BFE'), 'wp-admin/js/tags-box.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABAA02B7BDEB06985CA76E06968B3F25')),
(UNHEX('7D5CA435E60D92F024D46C9257AAA0F7'), 'wp-admin/js/tags-suggest.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6B0ED85E26E70669C5715C7AD0F093E')),
(UNHEX('6B6DA77CF7874B0F6D6130ED222A886B'), 'wp-admin/js/tags-suggest.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0E2E58BBCB8654F8F6C09726C8DF7E8')),
(UNHEX('7B74C8457EAA7FCC50DB41B431F8A003'), 'wp-admin/js/tags.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4CC64266F1B35A86C63CC1B2C42F7306')),
(UNHEX('A2666B6A9212C24E89556569343D25C3'), 'wp-admin/js/tags.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4EC2AE66360AA0EDC72274EA7188309A')),
(UNHEX('F3235CFAB7E2A82F87760E0516581E52'), 'wp-admin/js/theme.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECFB55DDD7B2F7340EE501195F636AFB')),
(UNHEX('473655E632001E3152FCB8938DA2CF4A'), 'wp-admin/js/theme.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('64CFE6D2916C9B29264414A55F79E038')),
(UNHEX('2B390F85A3048C5B4255FB45960B6514'), 'wp-admin/js/updates.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16789704A2A7B8A4C3C15BC8DDF57AAA')),
(UNHEX('285B648998F9BAB1A11DD7EF4251B58B'), 'wp-admin/js/updates.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D52FDBC0A62E4BFB9CFC1C5F033C520F')),
(UNHEX('81D6F084CB273E02E15B01BD9ECE87F7'), 'wp-admin/js/user-profile.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C5F95E8F9CED3D06D137EC7F5A12DE5A')),
(UNHEX('F6A8A392C2FE4814A953213BF820F396'), 'wp-admin/js/user-profile.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4A664EEC9FE972FFA4F58A9932A6BA1')),
(UNHEX('52C2A5F8B2AECDCA4C65FD7109F026D4'), 'wp-admin/js/user-suggest.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E33290807FA8B2829DDB0347D0A9305')),
(UNHEX('D51658E9F0AF97248461B2D442C8D25E'), 'wp-admin/js/user-suggest.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E089545CD7FCDE5C7CD70DE3A70139E1')),
(UNHEX('5251F7623766A714C8207C7EDB938628'), 'wp-admin/js/widgets.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB1FE8E4E2D28B34933170E7651D9C3E')),
(UNHEX('10AE53781EC3DF34AE406FC177EF0E4E'), 'wp-admin/js/widgets.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0CC751ACBD9D40CFE25F0A5520899326')),
(UNHEX('5037336FE8A90209A7EB00E63DE18AD2'), 'wp-admin/js/word-count.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7717109F8797A1B6CFFCACCD2F69181F')),
(UNHEX('96E24367BFB8F11E8B7D1D7CC745F7FD'), 'wp-admin/js/word-count.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('997F505FC9D24A27E4939641450E96A4')),
(UNHEX('29E8B9663E3C7A01302D024155698D02'), 'wp-admin/js/wp-fullscreen-stub.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('968528CB325471EB001FD8578A8625E5')),
(UNHEX('9ED2228CB870E5222D439A0FFDA59577'), 'wp-admin/js/wp-fullscreen-stub.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('700A94E9934C7B419DFA6790B1DC4A35')),
(UNHEX('76E6FCE1E234DD7C3E1DED3CB4FFC0A8'), 'wp-admin/js/xfn.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E2D6EECBD774AF1E2BB1A16EC117286B')),
(UNHEX('E9A0BBC0794E3C8EA08039806F1A3C0C'), 'wp-admin/js/xfn.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66B227CA28F41F2E0615B04A390D5E04')),
(UNHEX('7CFEBB598C1C3EE080D01D09F9C686C4'), 'wp-admin/link-add.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A0EE0EAAB7C6F32171B0215409CAA2FC')),
(UNHEX('8542257636CD49224A62BDC734D3A154'), 'wp-admin/link-manager.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05827856DBDBAF9824E28DF033399750')),
(UNHEX('F60B807EA191E4E215BBE27284439B9E'), 'wp-admin/link-parse-opml.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('58436A5AF6F318352BF596AB8A3F4962')),
(UNHEX('3A0F7BC3E2EC7B37CA39B0899FF01F7F'), 'wp-admin/link.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E4173FD43A2A01B3509C80EE984D22B')),
(UNHEX('36825D6AE07619D957B96B0D332D7FE7'), 'wp-admin/load-scripts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA4354EF9E729A065BA4DB8943962705')),
(UNHEX('577D29D39637A38CEA65E77D35E6392C'), 'wp-admin/load-styles.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B94AA72A6E283EF7EC401B4517B9DA4')),
(UNHEX('B4D24BB4E7E74F05C89639D7337C3C8D'), 'wp-admin/maint/repair.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E180A3BB17B896E1CDCCF337995BFE2F')),
(UNHEX('4A7BA3D6B9065A6906055EC3B9789549'), 'wp-admin/media-new.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('836F9208C65682AAB7681909D9A80ABD')),
(UNHEX('86B311AC17BA12C3EA1982E2EB7D95CD'), 'wp-admin/media-upload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C227209106B2C2D1A895E1C1AB233F2')),
(UNHEX('B9C38F754CE72CEE9F26C7918B0D311E'), 'wp-admin/media.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CEF201E4C977C908C869C63503C291D1')),
(UNHEX('F0249FC4ABA549885EFD9333B794D112'), 'wp-admin/menu-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65613CC3462F90F6ABA3D1E77F2E3698')),
(UNHEX('A8AFDF5CE04420FC3EFC46142CB587E7'), 'wp-admin/menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09212F70ACF89503257896B9142C94A7')),
(UNHEX('577BB0671B2D201458F2E9FB273D6E38'), 'wp-admin/moderation.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('541242A293805952A0E22234F09D6FA9')),
(UNHEX('7677D9D140050F8848CAC91E7A9646A6'), 'wp-admin/ms-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A05B49740DFCDAF4516851B623606E4')),
(UNHEX('266565EE0A334BE812D4E3765A04A695'), 'wp-admin/ms-delete-site.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6AA203D65F47C11A0D7D2A25148C74F')),
(UNHEX('45B856E0F3F72CD525A6D72C53124D3D'), 'wp-admin/ms-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16D42FF617C4A616C3BD94BA103A4582')),
(UNHEX('22287D47C57FC572E7090230978E5628'), 'wp-admin/ms-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A21D278E00CA7DCCFE3A81D4E386AFA9')),
(UNHEX('AF2D31F038FC3BA754F6022F58E2A95D'), 'wp-admin/ms-sites.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D186224EBF4DDD0F1719C9EF4B80468')),
(UNHEX('1C9DB43D62A4369ADE68738011AAE674'), 'wp-admin/ms-themes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('521CB94B9501CA24BC495A31C66925D8')),
(UNHEX('5C16DCDC0E0F85958C398783B7C8CCF7'), 'wp-admin/ms-upgrade-network.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7CB492260F22EE53816D96BE3868BE6D')),
(UNHEX('B16BCA06554C9FEDC7A1B924C198FA7F'), 'wp-admin/ms-users.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4823C8667B23CA83B31BF9093647E5A2')),
(UNHEX('0D78DD8D815EB4A7BF1AA08302BD3C3B'), 'wp-admin/my-sites.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('368C092F440E48809A8911E362832D43')),
(UNHEX('12B8B7E1436C6FA6081EB6B196AFE9D2'), 'wp-admin/nav-menus.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('258C7FC7409EB971E2F3AAB1093C6F0D')),
(UNHEX('AB6FA2F9A0B46C3EBCE2787E49B020C2'), 'wp-admin/network/about.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36FD6671A5493CC8C5405621D96DEA7C')),
(UNHEX('B79B029C5A5134C7D85C012882DC8713'), 'wp-admin/network/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48F1FE3370F9D713B027655B6785E694')),
(UNHEX('2BC4E3F874A825523FD2DB08F5F8A0CC'), 'wp-admin/network/credits.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A1BE54253E72ACD96CE6317127E5A5C0')),
(UNHEX('0427DA9E003BBEBF3FC32B5607D2AACE'), 'wp-admin/network/edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94B2A24A1FC9883246FC103F22818930')),
(UNHEX('CF7546F3E2915E47FAA545082B88B663'), 'wp-admin/network/freedoms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1AF39E94239A944440AB2925393AE60')),
(UNHEX('00435F0A7F08ECC2146A440BA8E9406B'), 'wp-admin/network/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F120ED6F644578B5179093487580794')),
(UNHEX('5DA5821650B7BFEE546B76748ABA3841'), 'wp-admin/network/menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B59E56DFE003B948EC73C0E91F33F02D')),
(UNHEX('99985B69785402BA71D4C37E5776A165'), 'wp-admin/network/plugin-editor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('658CF64B77D435555AE217A5BBB1536A')),
(UNHEX('AADA70BA245E8186F48DB5649D125A05'), 'wp-admin/network/plugin-install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('132A6C9D6E2CC68D650E2FCA9A015ED2')),
(UNHEX('B698C003E38EC622530CCEAD60137440'), 'wp-admin/network/plugins.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E4F7CDFCADDC4693FE0BCC39BB55D68A')),
(UNHEX('1DC63DC5027D430BF0E3EE69F0DC4854'), 'wp-admin/network/profile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6874157FDA181BC2866FD860D93376B9')),
(UNHEX('EDE91A61985D5DE34189EA27688EA480'), 'wp-admin/network/settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB87BA3001E447FACDD45609C7F15ADD')),
(UNHEX('2FBB73BBB543348C98E0D6C0108F809E'), 'wp-admin/network/setup.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE74E43D24D9C36CD579E932EE94B152')),
(UNHEX('2BB3A718472A23F4B1EDF4A694FD66B4'), 'wp-admin/network/site-info.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2ED12E7782BBB666F95A27B7CCF93C5')),
(UNHEX('79EA018EE447955C6098E1F9A24D5294'), 'wp-admin/network/site-new.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EACE356DA77D4B54DD429910EBC97348')),
(UNHEX('8BF37963E2304FB06729CF81AD4D66B8'), 'wp-admin/network/site-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8265010A9DE203BE9387850BB059590')),
(UNHEX('A071F2AC68A2F6BE4263F8393292EE11'), 'wp-admin/network/site-themes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9EEC8995D0CCE45E7EA52FFCFB7CB19B')),
(UNHEX('E1718D402FBBB9EAA691D99E2D014DCB'), 'wp-admin/network/site-users.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('945F0CE717838B873E35239BCE2876F9')),
(UNHEX('6E93C6EDC44092A741068EF9114607B4'), 'wp-admin/network/sites.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41B8AFBEC2335981E9B11C80DFD67B40')),
(UNHEX('7B184EA488C832ED51AE75D4DE3D099C'), 'wp-admin/network/theme-editor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E1829BF1794CE06C5AD77B7E2D17142')),
(UNHEX('687C68458888663A16C6B132029A827E'), 'wp-admin/network/theme-install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('629704E41FC670178A4226B323B6A9EC')),
(UNHEX('D9EBBC217DF13DF6602A841B675A3D1F'), 'wp-admin/network/themes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F0F14575D5640321F393A8C1B723F1F')),
(UNHEX('377C6F4F559B92F97A0045660EBB9CE4'), 'wp-admin/network/update-core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95B7D47ED7134912270F8D3059100E8C')),
(UNHEX('821FFD5CCF28E5D97742EAC44912E39D'), 'wp-admin/network/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FCA6110BD2F3FBD9F247540677FCF1AC')),
(UNHEX('720C94AE6892C57686CF4C6B2F8516F6'), 'wp-admin/network/upgrade.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5233EE990C50AADE7C4E3AB9B4FE524')),
(UNHEX('0030F6F123168A39FD9CAC5A34CE6A24'), 'wp-admin/network/user-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('030BB6AD3F1C614F7F1AA7FD27B79509')),
(UNHEX('F8C2364B31FDFE9B28EEF6DD7D2F4158'), 'wp-admin/network/user-new.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF7A0EDCB7994581430379DB56D8D53B')),
(UNHEX('09E9F1CFDB30398DF72D62B185CDA957'), 'wp-admin/network/users.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('458A62EDA0585CAA1C199C45202EC631')),
(UNHEX('CD1E64DDEAE36C50914FEA92F9490484'), 'wp-admin/network.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D5F41D6B9177D211D420AA6AF3D3358')),
(UNHEX('AD4A54563044B7EE6F5441EFBCBB40A1'), 'wp-admin/options-discussion.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F3D4D4586CDD781884C46FCCB50E5DB')),
(UNHEX('6FED935BACD06E337582C8CAB99F5035'), 'wp-admin/options-general.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E969023A07783930BA42BB765649A6C')),
(UNHEX('0DD1AA10311C73313DACA16006289879'), 'wp-admin/options-head.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A616E7DD468D1C2499B90600E710DA5')),
(UNHEX('B6A6E25CE4C6012E31B0DB2D9CBE0F3A'), 'wp-admin/options-media.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48B3717CABDBCCDE59136C4F5C0C4C60')),
(UNHEX('15FC1829A7A3998A740DEE2CBD4ADABC'), 'wp-admin/options-permalink.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B399E3F16FFBAD978D7DEC67ADF66EB0')),
(UNHEX('D2B20B45357CD2D1B589438264E997BC'), 'wp-admin/options-reading.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('240BB0DB18C56A59D4873653DFFD55CF')),
(UNHEX('E24CB63E81D99F89237B36707D59E3CE'), 'wp-admin/options-writing.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D8155A195B6CC0EB4287C6FC8F16C20')),
(UNHEX('64D52819C4C8254AE9F9DE40F5478610'), 'wp-admin/options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D32E65A1FE08DA8C016D7206CD2FC85')),
(UNHEX('61C963B543480D8508913D076C40C4B8'), 'wp-admin/plugin-editor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('115C80B5F3824DB517DE6020F9740093')),
(UNHEX('CA786A5013D5F6BCA8D92163C8177813'), 'wp-admin/plugin-install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7D05C6607AB4EE72848E928D91A8634')),
(UNHEX('4F90FB5CA9A2B55035D1D3FF7BBE52AE'), 'wp-admin/plugins.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4655BEE21E216157601DCA4C2BB2606')),
(UNHEX('946B8BA5977ADFA3F3D4ECD7626FD352'), 'wp-admin/post-new.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C964821B5784905159F63045FE5983BB')),
(UNHEX('EBDD7641C06473BD8397B5AE4BB55D0F'), 'wp-admin/post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0A3218393CD971B56ED5D6E6CBA4C51')),
(UNHEX('51B7106016BA12F6E4380815FE4DB838'), 'wp-admin/press-this.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D59E753240AC6313ED685B34F9D50FA')),
(UNHEX('6834AC8BF22333C7608E2DDD88A822A2'), 'wp-admin/profile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9184E53F96BADE3E7AE7CDA9EDDF7A26')),
(UNHEX('5CD3000BF5A33EA62BA2B3C14662D0ED'), 'wp-admin/revision.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C7275A9483338D119C46811DCB31E17')),
(UNHEX('A763E386CC8EB488240A27409B0DF2E8'), 'wp-admin/setup-config.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7717C6FDF6F5488BF9008889DE8EF831')),
(UNHEX('CE7C9ECF1566F780EEE8C92C32AD5409'), 'wp-admin/term.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38C38AC9A1CD474E528E042D8302EB00')),
(UNHEX('26C960D74FCB115135915110D53433BF'), 'wp-admin/theme-editor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E922F3177C1F8FABA183B6857B574849')),
(UNHEX('0AF40DA30C4283E4AE06087016CCAD05'), 'wp-admin/theme-install.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D23C476E1987A5298A7E26EEBB26CDB2')),
(UNHEX('BAA9C214E3125E5B5892E68E69B309ED'), 'wp-admin/themes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FAF7215FCD7BB25A6BBF189C9F5290D3')),
(UNHEX('F13773FE5C5DD47D884141F9776531B7'), 'wp-admin/tools.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C138F39D1B0711AB921C60F3B47E315')),
(UNHEX('CC217FE94C54E133959F69D9EA781BC5'), 'wp-admin/update-core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D74641E309FAD17DD4F23689087E70EB')),
(UNHEX('210F0B6F8D0DBFCD41888E7637E0DC65'), 'wp-admin/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('695951F144FB833C410BDF40ADDE1A99')),
(UNHEX('5E40D5B2017B27ABA95FE8E2079B3932'), 'wp-admin/upgrade-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68070DE41736E57F8757648A80B9CBBB')),
(UNHEX('10E9E1E66A37725BBC2C94CCFC5AD6E8'), 'wp-admin/upgrade.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2EFDD003AEACD49EA8325FC923000C3')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('26740221305E6787DB624A88632C3E33'), 'wp-admin/upload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DF7F6140C4763A0BE89283B79DB673B')),
(UNHEX('5E39282D28C5B2C5792089F7CA30712A'), 'wp-admin/user/about.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99EC00DA8D914B4EFD2098A3E44EBE2D')),
(UNHEX('3173B82936AAD3B69995AF43A785CE97'), 'wp-admin/user/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('702D5220C70456456FE9FC8CC08CC524')),
(UNHEX('C91318A583DBD07E0D1A4B342823E3C5'), 'wp-admin/user/credits.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D920B4FB1BE2C2C780081D5B4B7DE55A')),
(UNHEX('A5523B6C7A4FE9386D3C3314944E6965'), 'wp-admin/user/freedoms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1BA6CBB9E2A9D3DEB348997492ED692E')),
(UNHEX('5BEAA08FE67C4BF26F0ECADB8C6237F0'), 'wp-admin/user/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8FD98F7FDD52D78BDADF74E620789FA')),
(UNHEX('F5E6D8F5A379A0F800BA0C22ACEE5105'), 'wp-admin/user/menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A529E3D3C2BB86671FB9CC1145CF70EE')),
(UNHEX('F6D3E3AD60D726583CC461519F56685C'), 'wp-admin/user/profile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9FA17A9811195800079DDA4B1262D03')),
(UNHEX('0217F48D7F133DFCF071AF0D6C6A412B'), 'wp-admin/user/user-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A7A75A363B0F88F0B6D094A91EF65EA')),
(UNHEX('D20F4A687CB19430E7830B605A709845'), 'wp-admin/user-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9077B2E6F6D9959290427561FAB73883')),
(UNHEX('202A404144D29388123D7075B098D345'), 'wp-admin/user-new.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A683E73E8934EC32EE4990673B66FB52')),
(UNHEX('508AC510697AA174EE6103E9127DD461'), 'wp-admin/users.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EFB27212FD5BB84071A33066B33C48AA')),
(UNHEX('019954EA68CBD4EC7A07509FF91972E9'), 'wp-admin/widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9018F1ADDCA06BF5F9C70146D166F961')),
(UNHEX('4995C43A17420E73DE23D7E7FFDE40D7'), 'wp-blog-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDAD74614D6D3FA2252C3D74FF037AC7')),
(UNHEX('5388FFF7DC70D83ED9DD5772BD0E5945'), 'wp-comments-post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E54CAE70B7252C32C1F9C0C8C1A7D1A4')),
(UNHEX('7EC5A5CF147300CC3179EC24914C7D68'), 'wp-config-sample.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1490486FC3F4965A6200256A7FE11B9')),
(UNHEX('764B3B0240D173BA6155313BA9095EA9'), 'wp-config.php', 0, UNHEX('13EC01BC3F4C29303DBBC12C37A1F5A0'), UNHEX('13EC01BC3F4C29303DBBC12C37A1F5A0')),
(UNHEX('90446A56DCF3AC025B8E4C954C65D26A'), 'wp-configbk.php', 0, UNHEX('48A7C65A5E7A618E3FB237FF4826D34B'), UNHEX('48A7C65A5E7A618E3FB237FF4826D34B')),
(UNHEX('FA2D5E67FF88CCBA4000072FF7119386'), 'wp-content/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('67442C5615EBA73D105C0715C6620850')),
(UNHEX('663C52975452132E9E57BA914CF3BB1D'), 'wp-content/plugins/LayerSlider/classes/class.km.autoupdate.plugins.v3.php', 0, UNHEX('36B53C1C0769F44E5EF6C78FADDA0BE6'), UNHEX('36B53C1C0769F44E5EF6C78FADDA0BE6')),
(UNHEX('A70B96DE56EC4A6127858ADD930CD1E3'), 'wp-content/plugins/LayerSlider/classes/class.km.autoupdate.themes.v3.php', 0, UNHEX('9ECC438D9B79EB370A3AEDC35E7F46E0'), UNHEX('9ECC438D9B79EB370A3AEDC35E7F46E0')),
(UNHEX('D0EFF143C39D181EEECC9842D050FE2C'), 'wp-content/plugins/LayerSlider/classes/class.km.autoupdate.v3.php', 0, UNHEX('56557594AB3B3F6CE96B7C22931C1865'), UNHEX('56557594AB3B3F6CE96B7C22931C1865')),
(UNHEX('B0466313A99542A74DC8DB343ACB555B'), 'wp-content/plugins/LayerSlider/classes/class.ls.exportutil.php', 0, UNHEX('78ECCE9E8326BCA859D1AA3725721942'), UNHEX('78ECCE9E8326BCA859D1AA3725721942')),
(UNHEX('57943C6929B9AAB2EA042B8041D933D5'), 'wp-content/plugins/LayerSlider/classes/class.ls.importutil.php', 0, UNHEX('C3A4A509460149F2F910A5E23D63231F'), UNHEX('C3A4A509460149F2F910A5E23D63231F')),
(UNHEX('0F25EBF80FDCB9D75E044A9EB854E1FE'), 'wp-content/plugins/LayerSlider/classes/class.ls.posts.php', 0, UNHEX('2E3A758F093C798800C35B1DFA6A690C'), UNHEX('2E3A758F093C798800C35B1DFA6A690C')),
(UNHEX('92CDA1D3212B1E558804B75F771ABA97'), 'wp-content/plugins/LayerSlider/classes/class.ls.sliders.php', 0, UNHEX('0C4D329384808C7AAC880063D619E530'), UNHEX('0C4D329384808C7AAC880063D619E530')),
(UNHEX('404DCAC27E25E0F4DB38977FFF75C377'), 'wp-content/plugins/LayerSlider/classes/class.ls.sources.php', 0, UNHEX('8BE401B6DD5BE16F4346E760A7C5FE3D'), UNHEX('8BE401B6DD5BE16F4346E760A7C5FE3D')),
(UNHEX('F88B2B84AE3F5945AC9E9EB3D7475D57'), 'wp-content/plugins/LayerSlider/classes/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('041C3241771BAAFCE451F1A0BA294A2E'), 'wp-content/plugins/LayerSlider/config/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('0DC1FC97522CFC85FAEEA8E24B95A44F'), 'wp-content/plugins/LayerSlider/config/layer.defaults.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('68CA9BE8918C0464CA5262C338F8FEE0'), 'wp-content/plugins/LayerSlider/config/plugin.defaults.php', 0, UNHEX('F2B10B4A4E46E87CF2BF23D91AA9B68B'), UNHEX('F2B10B4A4E46E87CF2BF23D91AA9B68B')),
(UNHEX('D60BFCF58B5765A1B382CCE8381F367A'), 'wp-content/plugins/LayerSlider/config/slide.defaults.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('B1A16026B08BF2D2673ACC6886CAF615'), 'wp-content/plugins/LayerSlider/config/slider.defaults.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('36D43A33C741E5926CDDC6DD03E74008'), 'wp-content/plugins/LayerSlider/demos/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('E958AB45DF055116900962510C695E0A'), 'wp-content/plugins/LayerSlider/demos/transitions.js', 0, UNHEX('BAC9DB5C722456E68539E959F90FD9B0'), UNHEX('BAC9DB5C722456E68539E959F90FD9B0')),
(UNHEX('F8E4EB27F5D80AE131B6FE717E5F259B'), 'wp-content/plugins/LayerSlider/helpers/admin.ui.tools.php', 0, UNHEX('E4C95E49D882614B653A23A4B5E7CB17'), UNHEX('E4C95E49D882614B653A23A4B5E7CB17')),
(UNHEX('2462E4A5D643C0ACCD08BB297CA3B97C'), 'wp-content/plugins/LayerSlider/helpers/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('7466267C3AAB11792D2C761528F293C7'), 'wp-content/plugins/LayerSlider/includes/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('E5010CBC9F0436DE97A12938BBEAD646'), 'wp-content/plugins/LayerSlider/includes/slider_markup_html.php', 0, UNHEX('D9B2E166AF1759C63EA2043C91CABDFD'), UNHEX('D9B2E166AF1759C63EA2043C91CABDFD')),
(UNHEX('8876DE6BD97A351ECB6D659A7CDB8AE7'), 'wp-content/plugins/LayerSlider/includes/slider_markup_init.php', 0, UNHEX('E9B310A0884DF3BB7DE6937EE4BD0056'), UNHEX('E9B310A0884DF3BB7DE6937EE4BD0056')),
(UNHEX('CB9CE4322C991790C1CA34E2DF392CAE'), 'wp-content/plugins/LayerSlider/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('FD9688CB8BBC849CAFF566806C2D724E'), 'wp-content/plugins/LayerSlider/locales/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('9F970F1E3CEF73DC08E3D9EF02441AB9'), 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/brace-fold.js', 0, UNHEX('9101BFC75C0EF2A677CE9F43C4F5A070'), UNHEX('9101BFC75C0EF2A677CE9F43C4F5A070')),
(UNHEX('E9BD3A697E57D3D859C60CF9D321FC59'), 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/foldcode.js', 0, UNHEX('E893A0FAC9471F9E71F40F7E86169AEB'), UNHEX('E893A0FAC9471F9E71F40F7E86169AEB')),
(UNHEX('E550D18188FFB7584ACB0AB8B3163A0F'), 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/foldgutter.js', 0, UNHEX('DBD06E3E9D88CA6E9149BF75AA25849A'), UNHEX('DBD06E3E9D88CA6E9149BF75AA25849A')),
(UNHEX('48D082692054519475066A215DA6C5CA'), 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/indent-fold.js', 0, UNHEX('46078B2CD0A211F3C87B80433B9514DA'), UNHEX('46078B2CD0A211F3C87B80433B9514DA')),
(UNHEX('D3CB28EE58A7B5C3ECEBADE2D7133732'), 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/xml-fold.js', 0, UNHEX('C6C84196AF7D9BD1447C66419F80AB38'), UNHEX('C6C84196AF7D9BD1447C66419F80AB38')),
(UNHEX('23683268A3D68D4CC90B8460A9948450'), 'wp-content/plugins/LayerSlider/static/codemirror/addon/selection/active-line.js', 0, UNHEX('8C987AC8F89F7A583E06B9373E8766E3'), UNHEX('8C987AC8F89F7A583E06B9373E8766E3')),
(UNHEX('E329ACC3A408FDD689790B0AA2787803'), 'wp-content/plugins/LayerSlider/static/codemirror/addon/selection/mark-selection.js', 0, UNHEX('4EB51C4E90D891DA76182C2301AA7048'), UNHEX('4EB51C4E90D891DA76182C2301AA7048')),
(UNHEX('28BE5C4EBE6E841D6C82600ABDD8EBF4'), 'wp-content/plugins/LayerSlider/static/codemirror/lib/codemirror.js', 0, UNHEX('48C6679CB72111D4F53021CE38A98DDF'), UNHEX('48C6679CB72111D4F53021CE38A98DDF')),
(UNHEX('BA37E9FB3E5496EDC5D380E9CCED0ACE'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/css.js', 0, UNHEX('03F6B4B367E3BC3E5A865546071EEDD3'), UNHEX('03F6B4B367E3BC3E5A865546071EEDD3')),
(UNHEX('40566094D5F82E886DB7A8812CEF019B'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/index.html', 0, UNHEX('A7C62AF7B2B472E23C15AD5D89AC70FF'), UNHEX('A7C62AF7B2B472E23C15AD5D89AC70FF')),
(UNHEX('9826B025AF81FA703EA8BFE4CCAB3B94'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/scss.html', 0, UNHEX('BD8BE7E3756390B40718520B89B564B0'), UNHEX('BD8BE7E3756390B40718520B89B564B0')),
(UNHEX('F60FCFACFF81BC4F396B3D6C93B7D60C'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/scss_test.js', 0, UNHEX('220DE0E8E6471851484A37A96DC597BA'), UNHEX('220DE0E8E6471851484A37A96DC597BA')),
(UNHEX('3FE7076C1733741690C90421EFC34DD7'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/test.js', 0, UNHEX('88C426C718B836D1DE2D458FA4E88F29'), UNHEX('88C426C718B836D1DE2D458FA4E88F29')),
(UNHEX('CE4FB61924F0551789FF3695B0278CA5'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlembedded/htmlembedded.js', 0, UNHEX('800FB412D8564565E7135F8B00E12958'), UNHEX('800FB412D8564565E7135F8B00E12958')),
(UNHEX('4FF2D8A73E238B46699E9F696E45D0E8'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlembedded/index.html', 0, UNHEX('3886104EB99F5126C43E0F8A49681FB8'), UNHEX('3886104EB99F5126C43E0F8A49681FB8')),
(UNHEX('9BC68C9DAD13FD4881EF1B3BC779BD01'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlmixed/htmlmixed.js', 0, UNHEX('0C9B53ADE03EC21F4D45AC1C01CFE856'), UNHEX('0C9B53ADE03EC21F4D45AC1C01CFE856')),
(UNHEX('78D37EA304598805EE5CC54966D7925C'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlmixed/index.html', 0, UNHEX('340264D421AA63006C616078BEACD8A4'), UNHEX('340264D421AA63006C616078BEACD8A4')),
(UNHEX('F0140A07EB142F952E70A7E05878DF03'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/index.html', 0, UNHEX('154A2C34552D9D62A4E4382257FB7AE8'), UNHEX('154A2C34552D9D62A4E4382257FB7AE8')),
(UNHEX('A1E6232B7A3BE0D419909DAAA37401C7'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/javascript.js', 0, UNHEX('5104BC7E0318EDE52B0664BCE00A19BF'), UNHEX('5104BC7E0318EDE52B0664BCE00A19BF')),
(UNHEX('47D804F1647C9A4C941B9F4DD0555307'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/test.js', 0, UNHEX('B9BAE2EBB8D3DC1E7617FD41A59891B4'), UNHEX('B9BAE2EBB8D3DC1E7617FD41A59891B4')),
(UNHEX('6AF1C2AFC619F7C8FED3DEB93E7C24DB'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/typescript.html', 0, UNHEX('D306CC8186C7610353CED61D14E33AFC'), UNHEX('D306CC8186C7610353CED61D14E33AFC')),
(UNHEX('2C5E20FA7CA3F1BB688A03E4DA9EA4CC'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/meta.js', 0, UNHEX('3C722466B6340F5DDBBB220A870FC4D8'), UNHEX('3C722466B6340F5DDBBB220A870FC4D8')),
(UNHEX('CDD0EB7194AB1AE0492FD26C892F5C29'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/php/index.html', 0, UNHEX('433261DB5451E6AFAF5B61DFC3AE449B'), UNHEX('433261DB5451E6AFAF5B61DFC3AE449B')),
(UNHEX('B4908C1CCAFF15B1AF53F7E7B98F9C9A'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/php/php.js', 0, UNHEX('FD635B201EF55ED4C02A72D7C5E1531D'), UNHEX('FD635B201EF55ED4C02A72D7C5E1531D')),
(UNHEX('D7B90B6181863B2ACFAAD2AE1EE8B68C'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/xml/index.html', 0, UNHEX('BEB453A53923E9600517DEF5DD8041AE'), UNHEX('BEB453A53923E9600517DEF5DD8041AE')),
(UNHEX('040D2E9FAE3706DF6403BECFA6C044B2'), 'wp-content/plugins/LayerSlider/static/codemirror/mode/xml/xml.js', 0, UNHEX('E6425046802B9809E6C3513CCB53DFF6'), UNHEX('E6425046802B9809E6C3513CCB53DFF6')),
(UNHEX('86DBFEA4802D9D4BE314F1C954A40FC2'), 'wp-content/plugins/LayerSlider/static/js/greensock.js', 0, UNHEX('FE8905E9CD1829D1D15F91A9DFA51A64'), UNHEX('FE8905E9CD1829D1D15F91A9DFA51A64')),
(UNHEX('AA052A5B5177EAE1904BF455B32BBAAC'), 'wp-content/plugins/LayerSlider/static/js/layerslider.transition.gallery.js', 0, UNHEX('CA5AAE7060836455592B79CD0505F913'), UNHEX('CA5AAE7060836455592B79CD0505F913')),
(UNHEX('A1C15E6B9896BAA7F0CA9C57FEF00E91'), 'wp-content/plugins/LayerSlider/static/js/ls-admin-global.js', 0, UNHEX('E42C0D0EA345404B9415679109773D48'), UNHEX('E42C0D0EA345404B9415679109773D48')),
(UNHEX('F941163A24587EBB7565101A577A3936'), 'wp-content/plugins/LayerSlider/static/js/ls-admin-slider-builder.js', 0, UNHEX('77A9BE36E0DCA3870563962963B5B269'), UNHEX('77A9BE36E0DCA3870563962963B5B269')),
(UNHEX('B3AF57794DE2456E41C10CB1FAF12386'), 'wp-content/plugins/LayerSlider/static/js/ls-admin-sliders.js', 0, UNHEX('E3CDB380E922A4E0E046CCC5FCC65061'), UNHEX('E3CDB380E922A4E0E046CCC5FCC65061')),
(UNHEX('2A2B5A67DE34CB1EE05146818B94FEA4'), 'wp-content/plugins/LayerSlider/static/js/ls-admin-tinymce.js', 0, UNHEX('69271D819E55168266BE60EB23DABCC8'), UNHEX('69271D819E55168266BE60EB23DABCC8')),
(UNHEX('CFBB5595833E90EC3A58CE83027BD3DD'), 'wp-content/plugins/LayerSlider/static/js/ls-admin-transition-builder.js', 0, UNHEX('4EB888728A2467A6FDD82DA6DC19002C'), UNHEX('4EB888728A2467A6FDD82DA6DC19002C')),
(UNHEX('B9ACEF60CDAD88D0ABF3E356E3C85FC8'), 'wp-content/plugins/LayerSlider/static/js/minicolors/jquery.minicolors.js', 0, UNHEX('B35705133B8EF4A1F4951693F44EA15D'), UNHEX('B35705133B8EF4A1F4951693F44EA15D')),
(UNHEX('300EF70A7B71B933FE74146E8D431C80'), 'wp-content/plugins/LayerSlider/static/js/minicolors/jquery.minicolors.min.js', 0, UNHEX('B37BFA0ED73D567852AEA3245CC68FB1'), UNHEX('B37BFA0ED73D567852AEA3245CC68FB1')),
(UNHEX('77AE5AE23913DEA4F9B905A82F4AC972'), 'wp-content/plugins/LayerSlider/templates/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('ED9B89783AA0B0B32E1DC1E90C42137D'), 'wp-content/plugins/LayerSlider/templates/tmpl-add-slider.php', 0, UNHEX('3594D6536198940F1E4DCDCAE365F9CF'), UNHEX('3594D6536198940F1E4DCDCAE365F9CF')),
(UNHEX('8CCA961FF551F03AB25D7D953FB76900'), 'wp-content/plugins/LayerSlider/templates/tmpl-beta-feedback.php', 0, UNHEX('B33BF6A325762E20E4870B9CD667FE91'), UNHEX('B33BF6A325762E20E4870B9CD667FE91')),
(UNHEX('6145ECB75AE4EC02397FE9239A225DCF'), 'wp-content/plugins/LayerSlider/templates/tmpl-demo-sliders.php', 0, UNHEX('34E3387F90EA97635FE50450D9582FD4'), UNHEX('34E3387F90EA97635FE50450D9582FD4')),
(UNHEX('DB608AA6ADAA546EBDFF568F12B496DB'), 'wp-content/plugins/LayerSlider/templates/tmpl-layer-item.php', 0, UNHEX('C7516CE0E6AC0496DAB415E901E6DD67'), UNHEX('C7516CE0E6AC0496DAB415E901E6DD67')),
(UNHEX('DBBEF150400AA4998D5CCCBF1CA4C4F4'), 'wp-content/plugins/LayerSlider/templates/tmpl-layer.php', 0, UNHEX('2445901A50D97BFDBB2E38E83FA8A3B2'), UNHEX('2445901A50D97BFDBB2E38E83FA8A3B2')),
(UNHEX('F91FB52F8FB6B9588DE07BF9AFC6A828'), 'wp-content/plugins/LayerSlider/templates/tmpl-post-options.php', 0, UNHEX('76424C0E763E59EBAE95F9363EE3CE78'), UNHEX('76424C0E763E59EBAE95F9363EE3CE78')),
(UNHEX('E206C88EBB04CAC9A572F80C57496CD6'), 'wp-content/plugins/LayerSlider/templates/tmpl-share-sheet.php', 0, UNHEX('37C175E7F111E38EE48899536D43B41F'), UNHEX('37C175E7F111E38EE48899536D43B41F')),
(UNHEX('C5E11493FD5C9ABA6338DF218D25765E'), 'wp-content/plugins/LayerSlider/templates/tmpl-slide.php', 0, UNHEX('68E7161CD82FFF2E482E59D551CDE2CC'), UNHEX('68E7161CD82FFF2E482E59D551CDE2CC')),
(UNHEX('8498E19B832922D4396BC6A1BFA858D8'), 'wp-content/plugins/LayerSlider/templates/tmpl-slider-settings.php', 0, UNHEX('C9FC08D6279D9B402F5D3931061EF4C5'), UNHEX('C9FC08D6279D9B402F5D3931061EF4C5')),
(UNHEX('1F1615BCFD129BA1B8C61733F6EC2EC8'), 'wp-content/plugins/LayerSlider/templates/tmpl-transition-window.php', 0, UNHEX('E260D305FBEC6D9F3119CF48769184E0'), UNHEX('E260D305FBEC6D9F3119CF48769184E0')),
(UNHEX('34823224874D5399CA91309BEB6B1ED2'), 'wp-content/plugins/LayerSlider/templates/tmpl-updates-revalidation.php', 0, UNHEX('44554812F5B7FBB490FD9E6DE47D2501'), UNHEX('44554812F5B7FBB490FD9E6DE47D2501')),
(UNHEX('DDD4858CB6C4C3024F23AADA6EE3ECAE'), 'wp-content/plugins/LayerSlider/tmp/cache/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('DBEBC695EBCAF06230B756B225BD5BE3'), 'wp-content/plugins/LayerSlider/tmp/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('C1ECE0D30C407E41C7646CAB4760867D'), 'wp-content/plugins/LayerSlider/tmp/uploads/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('C105FAAB9E60944D852501E668FB8E22'), 'wp-content/plugins/LayerSlider/views/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('BE6313C1722DCDAF13BE27C5C99F21CC'), 'wp-content/plugins/LayerSlider/views/skin_editor.php', 0, UNHEX('753AB93D0C8329C40F9897F813939282'), UNHEX('753AB93D0C8329C40F9897F813939282')),
(UNHEX('AF8964C824E41251C66BFAB6EAD331D2'), 'wp-content/plugins/LayerSlider/views/slider_list.php', 0, UNHEX('31533374549D71DA48B2B5F0B82FBCFC'), UNHEX('31533374549D71DA48B2B5F0B82FBCFC')),
(UNHEX('A94F88ABAD5F3AF4F117BA1F97E4C001'), 'wp-content/plugins/LayerSlider/views/style_editor.php', 0, UNHEX('0879A37B12AD6F01B8F1907235847EE5'), UNHEX('0879A37B12AD6F01B8F1907235847EE5')),
(UNHEX('AAD890FB79904659054C184D19DEE469'), 'wp-content/plugins/LayerSlider/views/transition_builder.php', 0, UNHEX('20C3883354624388C85872C85DE8F4A8'), UNHEX('20C3883354624388C85872C85DE8F4A8')),
(UNHEX('ED9C7202B721ECDB37A382F194E34534'), 'wp-content/plugins/LayerSlider/wp/actions.php', 0, UNHEX('6EE8EC673060DE262BC1AB078DD441B3'), UNHEX('6EE8EC673060DE262BC1AB078DD441B3')),
(UNHEX('E99B6E5CDBB1A2FE71C8254C3679437F'), 'wp-content/plugins/LayerSlider/wp/activation.php', 0, UNHEX('A127DF526752804FE220236D1539E1D8'), UNHEX('A127DF526752804FE220236D1539E1D8')),
(UNHEX('61E7AD6F21F633FCFEDD092C679F9C27'), 'wp-content/plugins/LayerSlider/wp/compatibility.php', 0, UNHEX('79F9DE91C4AEAB6DDE916B75D6023276'), UNHEX('79F9DE91C4AEAB6DDE916B75D6023276')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('F12479555C5F1970877401D934D76A0C'), 'wp-content/plugins/LayerSlider/wp/hooks.php', 0, UNHEX('0ED592E35CA6E0D23AD1C85232200786'), UNHEX('0ED592E35CA6E0D23AD1C85232200786')),
(UNHEX('9A2E8B95813F00225FD5AE1906577427'), 'wp-content/plugins/LayerSlider/wp/index.php', 0, UNHEX('A605ACF2B02DF4876305872B2C14A29B'), UNHEX('A605ACF2B02DF4876305872B2C14A29B')),
(UNHEX('D5FE64A95CC0A7DF727A229FF4D598DA'), 'wp-content/plugins/LayerSlider/wp/menus.php', 0, UNHEX('94D650EC2C7B39EAAAAB00D65015CA80'), UNHEX('94D650EC2C7B39EAAAAB00D65015CA80')),
(UNHEX('5449B698DBC69B6BDACD41C574EB05E5'), 'wp-content/plugins/LayerSlider/wp/notices.php', 0, UNHEX('28691A411EB6EA5A8822C07D6AF5164F'), UNHEX('28691A411EB6EA5A8822C07D6AF5164F')),
(UNHEX('02AF91EF05A4EB1AF82A62825843DBF0'), 'wp-content/plugins/LayerSlider/wp/scripts.php', 0, UNHEX('AF91D9AE70C5D3CE14CA13EF74B86353'), UNHEX('AF91D9AE70C5D3CE14CA13EF74B86353')),
(UNHEX('9EEE8113470844A53280704B89E01E4A'), 'wp-content/plugins/LayerSlider/wp/shortcodes.php', 0, UNHEX('3AECAA5934C545B52E9C76329AF90157'), UNHEX('3AECAA5934C545B52E9C76329AF90157')),
(UNHEX('5B4F2DB891139FF17FB4E2F45F2F0306'), 'wp-content/plugins/LayerSlider/wp/tinymce.php', 0, UNHEX('3F570C282F625EE990D0FCD2550C0862'), UNHEX('3F570C282F625EE990D0FCD2550C0862')),
(UNHEX('8988BE88E56E87C1C1B0B549F13D6D50'), 'wp-content/plugins/LayerSlider/wp/widgets.php', 0, UNHEX('A25C7F0084CBC6055C06579C9AC668A3'), UNHEX('A25C7F0084CBC6055C06579C9AC668A3')),
(UNHEX('B0D8CA5DCB689A37EFEDEC24C9FC7677'), 'wp-content/plugins/advanced-iframe/advanced-iframe-admin-page.php', 0, UNHEX('2D30F5D512874E20D35375267A4B80DA'), UNHEX('2D30F5D512874E20D35375267A4B80DA')),
(UNHEX('44375C231DD024FA334762E3E98504EA'), 'wp-content/plugins/advanced-iframe/advanced-iframe.php', 0, UNHEX('50D780F556438A9D58BF1BA8E056C5A5'), UNHEX('50D780F556438A9D58BF1BA8E056C5A5')),
(UNHEX('B979466C6BDD4188A2FC450358598A0E'), 'wp-content/plugins/advanced-iframe/css/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('021A70A8979DCBB33F204BAB8A05888A'), 'wp-content/plugins/advanced-iframe/documentation/Advanced iFrame Pro attribute help.htm', 0, UNHEX('71F268D6DBF2AD652F051DA34203E591'), UNHEX('71F268D6DBF2AD652F051DA34203E591')),
(UNHEX('615F17F4BEF25BAEADFF07700AC31FFF'), 'wp-content/plugins/advanced-iframe/documentation/css/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('10DF3EB0688A4EC5D67ADF3E31F3F1B6'), 'wp-content/plugins/advanced-iframe/documentation/img/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('3C7989616774CADDF0FF56D8D88C8435'), 'wp-content/plugins/advanced-iframe/documentation/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('9EE78BACAEDD256D9B1BECDB62773B28'), 'wp-content/plugins/advanced-iframe/example/example.html', 0, UNHEX('B44EA6D433CBBAA263D01E282AD37FDA'), UNHEX('B44EA6D433CBBAA263D01E282AD37FDA')),
(UNHEX('54E56C9054BD25122269E7216D51981A'), 'wp-content/plugins/advanced-iframe/example/example_detail1.html', 0, UNHEX('3C614832E6563EE36181EDDC1BAF1F9E'), UNHEX('3C614832E6563EE36181EDDC1BAF1F9E')),
(UNHEX('F8460BE62F305AA344BCC2B5342F9AB9'), 'wp-content/plugins/advanced-iframe/example/example_detail2.html', 0, UNHEX('74308DA9CD355CDA94ADB0A326D78FA7'), UNHEX('74308DA9CD355CDA94ADB0A326D78FA7')),
(UNHEX('38B3BD184B64E5792AED6E467A92ABED'), 'wp-content/plugins/advanced-iframe/example/example_standalone.html', 0, UNHEX('141DEBBADD1CF197CEFC9A02611C92BD'), UNHEX('141DEBBADD1CF197CEFC9A02611C92BD')),
(UNHEX('F1C1D1CC4A642E36D86EBB1DF4A2BD22'), 'wp-content/plugins/advanced-iframe/example/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('5051A998ACA6973D4058898F8F4B8C26'), 'wp-content/plugins/advanced-iframe/example/layer_footer.html', 0, UNHEX('B80CAE91244093E0CB813B7C5BC69040'), UNHEX('B80CAE91244093E0CB813B7C5BC69040')),
(UNHEX('EC4495C5251C2D21B2EA382DA734AAEA'), 'wp-content/plugins/advanced-iframe/example/layer_xxx.html', 0, UNHEX('AA451A4435D8A53078ABAADEF1145EF4'), UNHEX('AA451A4435D8A53078ABAADEF1145EF4')),
(UNHEX('3E62BB0F3D963C2321370CD0A47C9C69'), 'wp-content/plugins/advanced-iframe/img/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('9CF06BA2D5DE09DFB53BEF6E79860CE1'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-add-files.php', 0, UNHEX('667A6E4CDF7D3CEBBEB7DF1CD60F82CC'), UNHEX('667A6E4CDF7D3CEBBEB7DF1CD60F82CC')),
(UNHEX('E73FF794FD3E171DA5298EDD64CFCBBC'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-advanced.php', 0, UNHEX('2F5E4CF177FC19F614C84A1B9AAF2FD6'), UNHEX('2F5E4CF177FC19F614C84A1B9AAF2FD6')),
(UNHEX('BCB9A073ADA3D4899643F0AA591FD5C9'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-browser.php', 0, UNHEX('AB730BF652DC8C3BE4300C4616E924F3'), UNHEX('AB730BF652DC8C3BE4300C4616E924F3')),
(UNHEX('FA622A9E844FA01CE3C65E8CDB8BE525'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-default.php', 0, UNHEX('440A157B8A876419BD7E874279442597'), UNHEX('440A157B8A876419BD7E874279442597')),
(UNHEX('DB61C63DBCB7A7A656E3ECF7E62C02E9'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-external-workaround.php', 0, UNHEX('0C1A570C3A4C01D461AD8F5F82CBDBF9'), UNHEX('0C1A570C3A4C01D461AD8F5F82CBDBF9')),
(UNHEX('E9DF01BBAA93FB3DBC8878820CC3868D'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-functions.php', 0, UNHEX('393568E0385FFC8836D98A14760947FA'), UNHEX('393568E0385FFC8836D98A14760947FA')),
(UNHEX('C1111B5FFCAC4DA0D8F0C2274FFE4046'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-include-directly.php', 0, UNHEX('4A93C6151D4CEF122B71C4A35CB1C596'), UNHEX('4A93C6151D4CEF122B71C4A35CB1C596')),
(UNHEX('866C1E0FFA2EB8C0ABC2142571B8DC56'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-jquery.php', 0, UNHEX('35D6F5925CFB3AB354F1A5B2401DC34E'), UNHEX('35D6F5925CFB3AB354F1A5B2401DC34E')),
(UNHEX('33B8A5171855A7E1F88E198B36600FD2'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-lazy-load.php', 0, UNHEX('4AD81C5A0471C524D9D0ED80D001A6E0'), UNHEX('4AD81C5A0471C524D9D0ED80D001A6E0')),
(UNHEX('500847D2DAA2DCA042A771D898D50624'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-modify-iframe.php', 0, UNHEX('74412CF55683F7D333D603F1E50D0473'), UNHEX('74412CF55683F7D333D603F1E50D0473')),
(UNHEX('631F7B8C4DE6148D96B674ED3D33AF95'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-modify-parent.php', 0, UNHEX('64E9962DDA6733563ABCC2874ED843DE'), UNHEX('64E9962DDA6733563ABCC2874ED843DE')),
(UNHEX('F4F7C86349A78C79B63C0DCDAA19991A'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-parameters.php', 0, UNHEX('37688A2B6B89AB18AF1F7890D31D1628'), UNHEX('37688A2B6B89AB18AF1F7890D31D1628')),
(UNHEX('CB2C60A48DA8D48F9408AF085CFD7186'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-quickstart.php', 0, UNHEX('6059B17677452896F616DDE504F9FE01'), UNHEX('6059B17677452896F616DDE504F9FE01')),
(UNHEX('220195681EC7480063131858088956FC'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-resize.php', 0, UNHEX('10E555751045BA17ACE271B3E28C666B'), UNHEX('10E555751045BA17ACE271B3E28C666B')),
(UNHEX('AA21D4B73757BE44E1FA120B9791D5AA'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-support.php', 0, UNHEX('451D054B9476E0C9F53BBADA6F5DD309'), UNHEX('451D054B9476E0C9F53BBADA6F5DD309')),
(UNHEX('877AEB0477BDA8F38ACFEBC6B08E357F'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-twg.php', 0, UNHEX('DB376CF4AB540AA26D76C1C52DCD94D3'), UNHEX('DB376CF4AB540AA26D76C1C52DCD94D3')),
(UNHEX('B95A0746D88094F51CAB8A71FD8F6BDF'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-video.php', 0, UNHEX('66CE39AF0D61385BD5BE3ED36A4FF6AB'), UNHEX('66CE39AF0D61385BD5BE3ED36A4FF6AB')),
(UNHEX('7B59D82EA4DD08C1D295371FFC368D01'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-zoom.php', 0, UNHEX('9D30D0DE3104ED525B2D15381B766AF2'), UNHEX('9D30D0DE3104ED525B2D15381B766AF2')),
(UNHEX('BC9612654F84CCD27A409060D1B03518'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-area-selector.html', 0, UNHEX('46B4428AF5CF955D0FFF0179C5AB04AA'), UNHEX('46B4428AF5CF955D0FFF0179C5AB04AA')),
(UNHEX('362A5032CD7D8D65FA5170B3F8484BF3'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-browser-detection.php', 0, UNHEX('7B1D9EFEA62E19D600FC8AFFF129B03B'), UNHEX('7B1D9EFEA62E19D600FC8AFFF129B03B')),
(UNHEX('0158AAF2AC72EA581B68F602A898BC22'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-css.php', 0, UNHEX('6BE47BD97D8E729B8632331EFE229806'), UNHEX('6BE47BD97D8E729B8632331EFE229806')),
(UNHEX('E5DC62C53A620AFCF0C67CCB9FF8EE6F'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-iframe.php', 0, UNHEX('5390CA53F98F1FE1607834049898E28F'), UNHEX('5390CA53F98F1FE1607834049898E28F')),
(UNHEX('6D187A805678E6C1507081637BD7C8ED'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-include-directly.php', 0, UNHEX('55C5DB437C3EC91B7E66E70697E42264'), UNHEX('55C5DB437C3EC91B7E66E70697E42264')),
(UNHEX('77AE5D27E048283C6956E3CCA21081D1'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-prepare.php', 0, UNHEX('0E6DEA8A275680A648C4E813326D9811'), UNHEX('0E6DEA8A275680A648C4E813326D9811')),
(UNHEX('7E17333CDB7DEF3A3AE316188689D0F2'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-read-config.php', 0, UNHEX('7973AEADE53104B5D78AC04264B03320'), UNHEX('7973AEADE53104B5D78AC04264B03320')),
(UNHEX('17B6F8A8AF9375B40EBF7D0DA8C78D65'), 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-widget.php', 0, UNHEX('3CC79CF8C9E310A2F18605E2903CEF7D'), UNHEX('3CC79CF8C9E310A2F18605E2903CEF7D')),
(UNHEX('29580F7DDF5F5953752A76D0C72EA971'), 'wp-content/plugins/advanced-iframe/includes/class-cw-envato-api.php', 0, UNHEX('684A81E590E76D088CD03F79D389164F'), UNHEX('684A81E590E76D088CD03F79D389164F')),
(UNHEX('ED100132FF7E55279C0A8D86A2C38FAF'), 'wp-content/plugins/advanced-iframe/includes/css/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('20CF7661384A4166690636B764113635'), 'wp-content/plugins/advanced-iframe/includes/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('F662B95FBEBE85AEA1A647775DA43B28'), 'wp-content/plugins/advanced-iframe/includes/scripts/advanced-iframe-area-selector.js', 0, UNHEX('F6EB04B985261FE57518153FD59E3493'), UNHEX('F6EB04B985261FE57518153FD59E3493')),
(UNHEX('DCFA4B0C0AAAFF2D972413ACCE0E9CE4'), 'wp-content/plugins/advanced-iframe/includes/scripts/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('F2C648BD5F6563035B5335DCE8A3BE56'), 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.ba-resize.min.js', 0, UNHEX('8EAEA6E6303F9268E5C32A35CB0F051C'), UNHEX('8EAEA6E6303F9268E5C32A35CB0F051C')),
(UNHEX('BE6DAC4B23A5F1657C1CE5C5055A428D'), 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.imgareaselect.pack.js', 0, UNHEX('670F993E96EAE52834D6736E3048FC76'), UNHEX('670F993E96EAE52834D6736E3048FC76')),
(UNHEX('F0C638F1F0A2F9BCD75D70D1852FFE11'), 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.lazyload-any.min.js', 0, UNHEX('62785CD803DD01282C47C50BBC1CB401'), UNHEX('62785CD803DD01282C47C50BBC1CB401')),
(UNHEX('5CEBAFCA0ED8204EE6105D147B8F5D68'), 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.min.js', 0, UNHEX('0652DA382B6FCEB033DFE2B6C06D4D11'), UNHEX('0652DA382B6FCEB033DFE2B6C06D4D11')),
(UNHEX('C1AE5783DB7E9C101EB03424C712B87E'), 'wp-content/plugins/advanced-iframe/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('E1EF941CA418C69E1F21CD3DBBE3AF47'), 'wp-content/plugins/advanced-iframe/js/ai.js', 0, UNHEX('964EDC56257642B6E9A00C0B2194D674'), UNHEX('964EDC56257642B6E9A00C0B2194D674')),
(UNHEX('0129CA2DC6D182C46036505FF84489E6'), 'wp-content/plugins/advanced-iframe/js/ai_external.js', 0, UNHEX('3CC4A046DEE8478A49A28A8DCA1A3CDE'), UNHEX('3CC4A046DEE8478A49A28A8DCA1A3CDE')),
(UNHEX('B2DB1E65B9568563B6DE35DE3E0951C1'), 'wp-content/plugins/advanced-iframe/js/ai_external.template.js', 0, UNHEX('EC6F74FD51F0FB11A87692E76ED83067'), UNHEX('EC6F74FD51F0FB11A87692E76ED83067')),
(UNHEX('31BDB1CFC44351D9B8ECA362C6CD20B5'), 'wp-content/plugins/advanced-iframe/js/findAndReplaceDOMText.js', 0, UNHEX('E16811C7B6147A03055AB2450550970C'), UNHEX('E16811C7B6147A03055AB2450550970C')),
(UNHEX('4971157808FCE222B93C461912A63614'), 'wp-content/plugins/advanced-iframe/js/iframe_height.html', 0, UNHEX('BB67AAE18A6804D4B140600475C06564'), UNHEX('BB67AAE18A6804D4B140600475C06564')),
(UNHEX('38CF8912CB24DC9109C1F4B5EBE280BE'), 'wp-content/plugins/advanced-iframe/js/iframe_show.html', 0, UNHEX('5B2EF8B9538DA12FF2273C6813DEB1D1'), UNHEX('5B2EF8B9538DA12FF2273C6813DEB1D1')),
(UNHEX('02D5E39F8938A38851B42DB47B800928'), 'wp-content/plugins/advanced-iframe/js/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('B92F3A79E44AAAEF6EFDE12789702513'), 'wp-content/plugins/advanced-iframe/languages/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('174B3F012CDE781B2E1BAA636443F901'), 'wp-content/plugins/advanced-iframe/standalone/index.html', 0, UNHEX('7109A5631D21CB798263F3B3BA40581F'), UNHEX('7109A5631D21CB798263F3B3BA40581F')),
(UNHEX('2D56A2650D973E200B907C9C2CC13AC0'), 'wp-content/plugins/advanced-iframe/standalone/readme.html', 0, UNHEX('3408F9317777FD303D97B49656086F6C'), UNHEX('3408F9317777FD303D97B49656086F6C')),
(UNHEX('9E8591FDD9CA80A976CDF8289B58BE57'), 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings.php', 0, UNHEX('CFCE74B2A89FDABB0E7FA4ACEB688663'), UNHEX('CFCE74B2A89FDABB0E7FA4ACEB688663')),
(UNHEX('5736A871969559D96C8F2DE6FFE99B0D'), 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings2.php', 0, UNHEX('DB0D83C836F8E5447F8592F7AC023B1F'), UNHEX('DB0D83C836F8E5447F8592F7AC023B1F')),
(UNHEX('F5E140F00EE43E1CF404A3DA1164289B'), 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings3.php', 0, UNHEX('D4D79F1D99128BA0C5736759FC6AC7D1'), UNHEX('D4D79F1D99128BA0C5736759FC6AC7D1')),
(UNHEX('BA5EBF4A85971DFF2CC5B5535FE1E466'), 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings4.php', 0, UNHEX('3AC7FE92ECF3D5724DA549676F38AE07'), UNHEX('3AC7FE92ECF3D5724DA549676F38AE07')),
(UNHEX('C61863279ECE11D98BDDA2640DF8E18A'), 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe.php', 0, UNHEX('75B0B7D3F3241E7AB7F2E367E0F5BA3E'), UNHEX('75B0B7D3F3241E7AB7F2E367E0F5BA3E')),
(UNHEX('EC0CC9FC4C68FA46C438DAF817665484'), 'wp-content/plugins/advanced-iframe/standalone/standalone-ai_external.js', 0, UNHEX('8746FB4C0708B64456C792CA5EB64092'), UNHEX('8746FB4C0708B64456C792CA5EB64092')),
(UNHEX('4401FF3EC73E921D770EDEAFC64B924E'), 'wp-content/plugins/advanced-iframe/standalone/standalone-ai_external_config_4.js', 0, UNHEX('86E6FEAB1A8B2403E3723ADAFCA9D1BD'), UNHEX('86E6FEAB1A8B2403E3723ADAFCA9D1BD')),
(UNHEX('132F49975C1A83DFFB8CEC0D3045D127'), 'wp-content/plugins/advanced-iframe/standalone/standalone-example.php', 0, UNHEX('7586A13B69EA5BA19FDC67C638513E2F'), UNHEX('7586A13B69EA5BA19FDC67C638513E2F')),
(UNHEX('19C7B29E76D4F89D3DDD01EE51340146'), 'wp-content/plugins/ag-custom-admin/.gitignore', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8B292E8F26FAAA64A981C556411CD61')),
(UNHEX('7CB37B45C55E27B273F45BFCDE2FD962'), 'wp-content/plugins/ag-custom-admin/ag-custom-admin.html', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6814D37BEED6B468F591EFA0EE5B7C5')),
(UNHEX('1F642E63D6AC3D2F99A8A376C2913A1E'), 'wp-content/plugins/ag-custom-admin/codeception.yml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E4E11AFB37074CC033DCCD6220FFE0CB')),
(UNHEX('D866DD806117946FD88009900D478861'), 'wp-content/plugins/ag-custom-admin/composer.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB5785C0A0E075CDE41E6C79AC15D771')),
(UNHEX('EF51B8728BEA22D3CD6679D143506371'), 'wp-content/plugins/ag-custom-admin/composer.lock', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADD03CA034059B146E2E34F81AA8A3B3')),
(UNHEX('C521AE0228581F081C091EE845A77D43'), 'wp-content/plugins/ag-custom-admin/images/agca.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9539F7E2D475C1EB71387746EB3AAD20')),
(UNHEX('2685248490E0E5E6DBEAF4AF7531B8D2'), 'wp-content/plugins/ag-custom-admin/images/btn_donate_LG.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6AF1D16FF6E3E380016C8FEDFA4D35BB')),
(UNHEX('E23D8B01BDBFF8EE51BFDB1DE66B24F8'), 'wp-content/plugins/ag-custom-admin/images/cusminlogo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46962FEAE6E52095392CED4234BD14CA')),
(UNHEX('9A56C8837C7B47D587EA671FADC773FE'), 'wp-content/plugins/ag-custom-admin/languages/ag-custom-admin-hr.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DC2D201A8AF5AE4A61C99D0C0648A5D')),
(UNHEX('44B0422C5CCEBA5CD28B567300D32B12'), 'wp-content/plugins/ag-custom-admin/languages/ag-custom-admin-hr.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE12FFB07892C9F115195385DB5C8946')),
(UNHEX('87C629D74FA032CC477CB9FD6290C94B'), 'wp-content/plugins/ag-custom-admin/licence.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D32239BCB673463AB874E80D47FAE504')),
(UNHEX('2AA700BF68E5BA059A6C6154A98DACA9'), 'wp-content/plugins/ag-custom-admin/plugin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2A58B6EBED37F95B5976B54CF6D9D77')),
(UNHEX('33CBF043CFFD89589D0D8576FA2FC615'), 'wp-content/plugins/ag-custom-admin/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('77558F2C74CD72F0A4C0300F5BA2F5CB')),
(UNHEX('105CD9F6AC3ECE0172E398E6A74D0C79'), 'wp-content/plugins/ag-custom-admin/require/dynamic.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1EB3DD5E14A3D757EFDCA726D184F140')),
(UNHEX('F0C15172543B5C8AFC2017803EA63FAB'), 'wp-content/plugins/ag-custom-admin/script/ag_script.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EFB53796C35F7D9FE25AA1BB2433A1BD')),
(UNHEX('5C9844319C77F4CF7567881F751F4998'), 'wp-content/plugins/ag-custom-admin/script/agca_farbtastic.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A250A688C05D57C980E8C7CC41A8420')),
(UNHEX('30357B2B8C0E1B40DAACE625D11E5A16'), 'wp-content/plugins/ag-custom-admin/script/agca_tmpl.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A26AFAD5E39C72EA0A430FDDCD41975C')),
(UNHEX('67A0BCFA4E34BCBB1F156FCCE119AAD0'), 'wp-content/plugins/ag-custom-admin/script/farbtastic.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB809D8C4F4DD2A69868B8CB1679C187')),
(UNHEX('225B7AFFC6EDA3FE3EC80E01189C9B85'), 'wp-content/plugins/ag-custom-admin/script/xd.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('458663BFB23935E5A896C6D946384724')),
(UNHEX('054E87A70A178524A50DD9D7B9A80CE0'), 'wp-content/plugins/ag-custom-admin/style/admin.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('E84A4D3B672266C10477CE107E527DDD'), 'wp-content/plugins/ag-custom-admin/style/ag_style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0669B809577CDDBD28F2680ED5FCA63')),
(UNHEX('99F6775EC57BB6870513DFACB9B34496'), 'wp-content/plugins/ag-custom-admin/style/agca_farbtastic.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17DBE129BB4F2292ED61F26495FA7EA8')),
(UNHEX('AB0594B66DFAED58C16AE24BD172A594'), 'wp-content/plugins/ag-custom-admin/style/farbtastic.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1988B618D3F86FADCCBBFDC090D8FDF0')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('9A9622FA7204A805403CAD778AFCEEE4'), 'wp-content/plugins/ag-custom-admin/style/login.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('E87DC3EB228E0B4F9651DB214A30BEF1'), 'wp-content/plugins/ag-custom-admin/style/marker.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F932DDBEE5D5E9EBD89A2EC63EDA2D1')),
(UNHEX('095A6022A9A6F155FE1ACF838DF0D984'), 'wp-content/plugins/ag-custom-admin/style/mask.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6DC921C0D6F2197793D9174B4267CA0')),
(UNHEX('F1E2A226891EB2D828A8BBFFE13D4EA1'), 'wp-content/plugins/ag-custom-admin/style/wheel.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B6D304868FF398C17252B7B0A0414C4')),
(UNHEX('F1A564AF01BF1B9FE590803C7DBB95DE'), 'wp-content/plugins/ag-custom-admin/tests/_bootstrap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7B2DD61BE457E9BEB978581CE725788')),
(UNHEX('5B91CF85F5BE64F3127C4290F2365202'), 'wp-content/plugins/ag-custom-admin/tests/_data/dump.sql', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D349163AAB8A16BFA72A739E0F983D1')),
(UNHEX('EF3F7EBC82EE46145D834387AFD38037'), 'wp-content/plugins/ag-custom-admin/tests/_output/.gitignore', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01B33595ED48351E65BAA4541E317828')),
(UNHEX('8FDDEC624F6BC33DEF1A1FE6DA3C101E'), 'wp-content/plugins/ag-custom-admin/tests/_support/AcceptanceTester.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF648331A3620B2A8D792A20076D7491')),
(UNHEX('775C7FBFE4BCB6541E9CF92DFA3EAD3A'), 'wp-content/plugins/ag-custom-admin/tests/_support/FunctionalTester.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('18C7970488C2E5EAC882758325F5403C')),
(UNHEX('8841C5E003EC5FC824BD839E9E2D751A'), 'wp-content/plugins/ag-custom-admin/tests/_support/Helper/Acceptance.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B90A4CE18A98786240F3D047103BDF95')),
(UNHEX('0C9D4FF48A9D338B0E7C43C843AEE32C'), 'wp-content/plugins/ag-custom-admin/tests/_support/Helper/Functional.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('31B7441A63080E52508D8B4757B405DD')),
(UNHEX('649205EEA0A527F0C79AD954C3671B84'), 'wp-content/plugins/ag-custom-admin/tests/_support/Helper/Unit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6FE906A798909AEF3CE9EC1C99A3297C')),
(UNHEX('FD7765BD344F597D06AA4B1F64FC54CA'), 'wp-content/plugins/ag-custom-admin/tests/_support/Page/AGCAPage.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAFE0C55884051A0AA1677B068112482')),
(UNHEX('9A11B28CDF198A79765CB705048A6456'), 'wp-content/plugins/ag-custom-admin/tests/_support/Page/GeneralPage.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('678457FEBC1805B92B121F04D606C5D6')),
(UNHEX('8257A2B97C15981BF7DEE48C6AE48449'), 'wp-content/plugins/ag-custom-admin/tests/_support/Page/WPDashboardPage.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B70C630B37478625EB8120A2E3B067CF')),
(UNHEX('DCE3946394F37A4D0FCB0341F28B230D'), 'wp-content/plugins/ag-custom-admin/tests/_support/UnitTester.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84B557C1B3AD2FB7C15A5FFA43B08131')),
(UNHEX('FD6B672D392CF9FB670594A84C1CFA33'), 'wp-content/plugins/ag-custom-admin/tests/_support/_generated/AcceptanceTesterActions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B22EBA1587FE5DEBED7D5DB3F6CD0D7')),
(UNHEX('4226EBEC4CB0ECD0A30064F927F55FA7'), 'wp-content/plugins/ag-custom-admin/tests/_support/_generated/FunctionalTesterActions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('85722FBEAC1870FE32914367999BCEF0')),
(UNHEX('3D754B812BF636FFC8766EEADC568539'), 'wp-content/plugins/ag-custom-admin/tests/_support/_generated/UnitTesterActions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('534F4F641B076544E28717EC419F739D')),
(UNHEX('B7AF72E591331F7FACE619378E49D8CD'), 'wp-content/plugins/ag-custom-admin/tests/acceptance/AGCAInstalledCept.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA8BDBA2B547E5B844BE1ABE56F57913')),
(UNHEX('553BBAA0C8951A9346FCAC96B9BD40F0'), 'wp-content/plugins/ag-custom-admin/tests/acceptance/GeneralSettingsCest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F02C6741A1C9841024084E0E0FA3C8A')),
(UNHEX('95684FA1DCE94ADAE7742D743547FFBF'), 'wp-content/plugins/ag-custom-admin/tests/acceptance/_bootstrap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4187C8D31266D51AD1182E9AEF77611')),
(UNHEX('A6BF708896E1B4EF6C8452DBAC85CA5E'), 'wp-content/plugins/ag-custom-admin/tests/acceptance.suite.yml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E4C8ACD7CEE1D84E609D967ED13F624')),
(UNHEX('72981418B6E20D5A165E4BCDFED03AE2'), 'wp-content/plugins/ag-custom-admin/tests/functional/_bootstrap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4187C8D31266D51AD1182E9AEF77611')),
(UNHEX('2F08E55E050DB0748B88EF10F52CE747'), 'wp-content/plugins/ag-custom-admin/tests/functional.suite.yml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('902F30C76E8083B330EBADC05028CC1D')),
(UNHEX('62F8C095B29CDA7E27D20D24146B8F4A'), 'wp-content/plugins/ag-custom-admin/tests/unit/_bootstrap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4187C8D31266D51AD1182E9AEF77611')),
(UNHEX('6FEDCCFCBC9C22680441493660D097C5'), 'wp-content/plugins/ag-custom-admin/tests/unit.suite.yml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76A93295DF6F0156B6E01028006AF49D')),
(UNHEX('440FF94AC01669ABA5931DFAAFBA74E9'), 'wp-content/plugins/ag-custom-admin/uninstall.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5012DA1C2B7504B66EE336D7FC604075')),
(UNHEX('88F0147794C1692EB977BE284D3B3044'), 'wp-content/plugins/akismet/.htaccess', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF39BE827C95ADE49C322DFE231FF19C')),
(UNHEX('F49C887F128C8E01C749CC2A9F3A6FCD'), 'wp-content/plugins/akismet/LICENSE.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B234EE4D69F5FCE4486A80FDAF4A4263')),
(UNHEX('4CE6BF0DA186C8A63A01D5E86EF26827'), 'wp-content/plugins/akismet/_inc/akismet.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D46E75152F76766188361AC195089E7')),
(UNHEX('CCBD1FF320FE981C9F5899246F42B907'), 'wp-content/plugins/akismet/_inc/akismet.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3272B57A8958C7072A1B1A9C62CBEAF6')),
(UNHEX('1C3C42B91714A2CAB1ED13413531D3B1'), 'wp-content/plugins/akismet/_inc/form.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('270F0CD7341BCE6C2AFACF2682E7690E')),
(UNHEX('9D2750F3E499545DD90902FF36FF7E82'), 'wp-content/plugins/akismet/_inc/img/logo-full-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('872E7605F61BD4370005A291C45D839A')),
(UNHEX('29CC83D532B16BD50868AF9FF2211F20'), 'wp-content/plugins/akismet/akismet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('521F24065E66E95A0AB7EE15C4B5AC5C')),
(UNHEX('F296DD05D50B6A1B4BE926B785EDD659'), 'wp-content/plugins/akismet/class.akismet-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('797476461418C68DEF39CD161FC09ED3')),
(UNHEX('8BB11866E9A4A7784DAA505D7E4297D4'), 'wp-content/plugins/akismet/class.akismet-cli.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B1B0B5AC8794AC58E3B914D2A5B47BD')),
(UNHEX('0484026CF3BF673CD0EBB9C93DC66C89'), 'wp-content/plugins/akismet/class.akismet-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFD9B1A0CA7A06BA0F50D9BCE1BCEF53')),
(UNHEX('70F9C0F6971562A57E83136F426BCC5A'), 'wp-content/plugins/akismet/class.akismet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E84C8C51AC0FA6B0441A5944474E5B8A')),
(UNHEX('41FDB089102468DC05F5D59D6051F861'), 'wp-content/plugins/akismet/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF6895AF2050EB5AE7C0BADDA2604566')),
(UNHEX('92146FAB2F02CA64F08D3478601CA49C'), 'wp-content/plugins/akismet/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86561F745E92BFA939C40D246487EFC5')),
(UNHEX('D3E2B33E5A7F62B56F26900EC2D41C8D'), 'wp-content/plugins/akismet/views/config.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D6E3150AD11A1EDECC35496896A29B3')),
(UNHEX('B9629C45879133D36727635A20289AF7'), 'wp-content/plugins/akismet/views/get.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4EFD5E1B3F2CDA93BC66B7102F8791AD')),
(UNHEX('ADD1D15764FA3B430D07BEC4DC4F1CAE'), 'wp-content/plugins/akismet/views/notice.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C4D0E2370192569D8B87F68F2CC9DAF')),
(UNHEX('A1DE3BE33B2F4A01C34B6D52FF97309D'), 'wp-content/plugins/akismet/views/start.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2AC9E400453C71D4217934E62FD3B045')),
(UNHEX('73A6ECD3A34A0EF6B312C57E92E7196B'), 'wp-content/plugins/akismet/views/stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A1ADCD419F461E8902969A68E215D060')),
(UNHEX('64463DFA88CF6A88B24863FFA0829096'), 'wp-content/plugins/akismet/wrapper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15FCD56C524B76C2E2470A2EED3426F4')),
(UNHEX('C071FA437ABABA0E8097B75B42D18298'), 'wp-content/plugins/coming-soon/LICENSE.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6687CD9232AE1025BECA4FEB43453EC5')),
(UNHEX('1FE652DE563F7DB97FE04E17ED3F5B08'), 'wp-content/plugins/coming-soon/README.txt', 0, UNHEX('5F2016A579F367C452B5904667CBB6EC'), UNHEX('5F2016A579F367C452B5904667CBB6EC')),
(UNHEX('42D758CBB974DBB4F457474517BB9D8E'), 'wp-content/plugins/coming-soon/coming-soon.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6477D412B0842B4F3F6474CA816D0DAD')),
(UNHEX('1435DA98AF0A5B77AEF1C9452DB0ECCE'), 'wp-content/plugins/coming-soon/framework/coming-soon-pro-sidebar.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C873D82BFBE27179F5D5676ADE0ECC9')),
(UNHEX('F165F28711E5FF7298972E66C9FAEE27'), 'wp-content/plugins/coming-soon/framework/css/font-awesome.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B652E3B759188CEAF79182F2FE72EA64')),
(UNHEX('BBEBF41B241DD91958B916118417E2DA'), 'wp-content/plugins/coming-soon/framework/field-types/checkbox.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8B3BC3700CF3D9293EF4D9D90EF67A7')),
(UNHEX('513DC06CCD13102207C29E992CA13E5F'), 'wp-content/plugins/coming-soon/framework/field-types/color.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A26398ACF0D1BFF3B3EB473870E57CA')),
(UNHEX('B36E03549E88A690BB757ED8B337E17E'), 'wp-content/plugins/coming-soon/framework/field-types/customsocialfollow.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9AA92AAA94B6AB5958487F668A20F5D4')),
(UNHEX('896558A36775C2AC84F14291FC331A86'), 'wp-content/plugins/coming-soon/framework/field-types/date.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0DDFC2EC9384B825645E7D0D2EFAFE7')),
(UNHEX('A1FF2E82E7F7B32454A51B695BF38BD4'), 'wp-content/plugins/coming-soon/framework/field-types/daterange.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8590C517E5E2E919EE9C0BEE533E04CD')),
(UNHEX('EBE3BB8B425463184E8AA9BB32B352E8'), 'wp-content/plugins/coming-soon/framework/field-types/export.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED671A5611DAD9999EFC246976B8CD3D')),
(UNHEX('0EB36D8821E0082254638515E4BE8029'), 'wp-content/plugins/coming-soon/framework/field-types/import.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52D09172E68C126FEA3593CF9C4DF784')),
(UNHEX('68A55A7CAAC98165E0796766A2401052'), 'wp-content/plugins/coming-soon/framework/field-types/js/color.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8604867A64D50A1A9C004F43E0AF45C0')),
(UNHEX('5D31DF1AD298C63358A93DC6A70CC8F7'), 'wp-content/plugins/coming-soon/framework/field-types/js/upload.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('18824BA8C718C82EF173D420347DE89C')),
(UNHEX('5DCD6C89D51A59E2E578F8324826EDCB'), 'wp-content/plugins/coming-soon/framework/field-types/multiselect.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0735E55B213219E59E14267E50AD7B67')),
(UNHEX('8F74846F15C3E54E22EF94D74899F41A'), 'wp-content/plugins/coming-soon/framework/field-types/password.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('949B478FD5485C9FA90CFCC7BFB0FE4F')),
(UNHEX('6D04BEF8E4118DC3C4A9B50850009598'), 'wp-content/plugins/coming-soon/framework/field-types/radio.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('498B2E4201B1BE2652CCD35C5996B716')),
(UNHEX('B936E4F5C9FAE0BE0AA1B8A2012CDE2E'), 'wp-content/plugins/coming-soon/framework/field-types/select.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F44036787A997F6A9DF8131A1187D89A')),
(UNHEX('D06C87E14456EF7299F1E44E55F4F1B4'), 'wp-content/plugins/coming-soon/framework/field-types/text.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F676C49D289ADB87B7F4A2C69B74736B')),
(UNHEX('A19147126E8A9AD9794E7349F95E1260'), 'wp-content/plugins/coming-soon/framework/field-types/textarea.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF7ED3D1903FBF6882C3CEF129E2178E')),
(UNHEX('BCF5EA0C520FCED9AF60DA8BAF63DA63'), 'wp-content/plugins/coming-soon/framework/field-types/textbox.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E93F1AF97BA4E51A9B2164AF1DDDC054')),
(UNHEX('8D39DF33EF9D2844CFFF3D0AC0F10B1F'), 'wp-content/plugins/coming-soon/framework/field-types/upload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CCCD7A9C0891EB884F234D521D559CD')),
(UNHEX('28FE547B88BA7A88E8D510D65DB86F14'), 'wp-content/plugins/coming-soon/framework/field-types/wpeditor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17138D18B1C2516E97A69D31EC2D7503')),
(UNHEX('9604B4FF053B81E1FC3AAC4326EBF114'), 'wp-content/plugins/coming-soon/framework/fonts/FontAwesome.otf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5DC41D8FE329A22FA1EE9225571C843E')),
(UNHEX('FD04CEB99F70AC4D65ABF573EC7B2400'), 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25A32416ABEE198DD821B0B17A198A8F')),
(UNHEX('F9DB1F927D10572A7CE7027F4708DACD'), 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D7C639084F684D66A1BC66855D193ED8')),
(UNHEX('0C11947AF6960BF1DDB234EC4C62FB67'), 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1DC35D25E61D819A9C357074014867AB')),
(UNHEX('49A3A5E6834F354474D6F389BB57813F'), 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8DDF1E5E5BF3682BC7BEBF30F394148')),
(UNHEX('69346B7A93026D06863464DD565A14AF'), 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.woff2', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6CF7C6EC7C2D6F670AE9D762604CB0B')),
(UNHEX('8C99B47FE914654E1E4B1986406C9450'), 'wp-content/plugins/coming-soon/framework/framework.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56D44EC67EAAE6D9A7432515BB3ED9F6')),
(UNHEX('D73D3C256C4775D25839503175E84EAE'), 'wp-content/plugins/coming-soon/framework/get-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32F139658AF8A88C19F69693C73D46D5')),
(UNHEX('5DC1FD2741A41E51D7C14C85191897D8'), 'wp-content/plugins/coming-soon/framework/review.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA8DA8E9E60B0DFD05B2747746AD7925')),
(UNHEX('FD2FAFE5B48556B76F83E10235560EEA'), 'wp-content/plugins/coming-soon/framework/settings-scripts.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A89085E827057904813BC76C81E39216')),
(UNHEX('22D2E09266E0AE3268861AE37FEA53DF'), 'wp-content/plugins/coming-soon/framework/settings-style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4BECF3AF2560DA83AE887BEC2A90982E')),
(UNHEX('AD0E33CFAFA5F8D04B15B16844AD0E7D'), 'wp-content/plugins/coming-soon/framework/validations/color.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B257649795215E271A3DB3A88EC03FB7')),
(UNHEX('620CE7ADF45672F3BA015D3723E9FD70'), 'wp-content/plugins/coming-soon/framework/validations/email.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A55E1FDBAC6E87F6754502E8A761D052')),
(UNHEX('7B8A979DC735451BDC35A26DCEE9EA6D'), 'wp-content/plugins/coming-soon/framework/validations/escurlraw.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5BF4034E2904F57D3C8B69C3F694AED')),
(UNHEX('91CABD30D437FAC913E2272B76F16341'), 'wp-content/plugins/coming-soon/framework/validations/number.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('58D4FE8FDF138ABFC626DABF8173CA0C')),
(UNHEX('845AF8EB89BC02D2A19137F450B29FCB'), 'wp-content/plugins/coming-soon/framework/validations/required.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('972BD728E806904AA50D5D500F562F4D')),
(UNHEX('6084CD1C74C00FFE754691083CDA7538'), 'wp-content/plugins/coming-soon/inc/adminbar-style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D83191A6A1C5FE734D05C1C4270F22B0')),
(UNHEX('4742140C4AC58F8999A3E18636D5A92B'), 'wp-content/plugins/coming-soon/inc/class-seed-csp4.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('148DC6BD767A56D3AB2A2F590F5AD0CF')),
(UNHEX('8BC8DE938C39A39308DA911AB1F3D4FC'), 'wp-content/plugins/coming-soon/inc/config-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A52F05205EEC52A7884A420F93EA8659')),
(UNHEX('F89D32E88954A53BAEB84250CA692F41'), 'wp-content/plugins/coming-soon/inc/default-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7553CAFE9D3C7F1240CC36C37ED2B29C')),
(UNHEX('06E3D4CA3CDA5854CE6008467767D021'), 'wp-content/plugins/coming-soon/languages/coming-soon-da_DK.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4AC89499A6549AB6CAB5CEB49A69AB3')),
(UNHEX('0901568F4248B84EE6C3BF06AD7311E7'), 'wp-content/plugins/coming-soon/languages/coming-soon-da_DK.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('43AFB7AD169A847AE01CBD82DDDDBD5F')),
(UNHEX('6EED00C1C4EBDCD3ACFC0C75D1A3681E'), 'wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3ECD66A3331F82FA67E12E6BD7D94B42')),
(UNHEX('E3876CE4F51BEB6CDDF08B87953FF2EC'), 'wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6809B20EEFD487B0CA61DB097E9072B')),
(UNHEX('99A697C3E0DEA8BBF447433AE35D7151'), 'wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4466BFCFB45626735F5DFC50C385648D')),
(UNHEX('2C4D375C8CD84BA232E06FD61581314A'), 'wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BCDAF9C5395571D4F3FA8CE48B5D72A3')),
(UNHEX('C6635971B7AA925EF87F0488CDD421AF'), 'wp-content/plugins/coming-soon/languages/coming-soon.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1B01F833C85C9A1DE5E80528EAE10E02')),
(UNHEX('F7A82EF4D2504CF2EEB6422A2E7103F9'), 'wp-content/plugins/coming-soon/lib/seed_csp4_lessc.inc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB82FB2FF0E3AEE459D686338EE1B3F7')),
(UNHEX('5D6118C9F1B782A6F780A32272DF8C9B'), 'wp-content/plugins/coming-soon/themes/default/bootstrap/css/bootstrap.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A472CECDCB09ED98490ACBC054A0FBB')),
(UNHEX('50CD338334BFF8320A95C2E3CF4CA451'), 'wp-content/plugins/coming-soon/themes/default/bootstrap/css/bootstrap.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF595E039E4769A799C5F6C6852FC393')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('EB07A92396A368AEF593AE20274D28B3'), 'wp-content/plugins/coming-soon/themes/default/bootstrap/js/bootstrap.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF1CF2FCE27179C0DE8A71C73B378F07')),
(UNHEX('B1766479D891548333E017F39FF14580'), 'wp-content/plugins/coming-soon/themes/default/bootstrap/js/bootstrap.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('353240AD37D1B084A53B1575F8CE57DA')),
(UNHEX('4F03AF432D81987F3C9D44B52EA70240'), 'wp-content/plugins/coming-soon/themes/default/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38E7D7268B7255BE1A008274F94FE473')),
(UNHEX('DC7A8C1C28F9DA036DD07CB90FF16E02'), 'wp-content/plugins/coming-soon/themes/default/images/ajax-loader.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD6B7B0BF5C3AF22499ABC0A9EE1E1B2')),
(UNHEX('6F3FC71B503F75529D2159A7B3195105'), 'wp-content/plugins/coming-soon/themes/default/images/seedprod-credit.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D37E33C09FBAD5B028837C4ABB3EDAB')),
(UNHEX('8D46BA5A095459FB24D4D2EA7512E363'), 'wp-content/plugins/coming-soon/themes/default/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CDDC9D879A5B6D5244B7EC19F88042F3')),
(UNHEX('9A41E8D704E8B2FC257A7A0473E1D382'), 'wp-content/plugins/coming-soon/themes/default/js/jquery.fitvids.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('87CAEE8233402B478B766D3D91A32C84')),
(UNHEX('8A8797AB070F17309895E517EE3AF7C1'), 'wp-content/plugins/coming-soon/themes/default/js/modernizr.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('858DF1F1DB6792962739C073A501039E')),
(UNHEX('31FFDF694AC7CBBD6F36789244F1720F'), 'wp-content/plugins/coming-soon/themes/default/js/script.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5CC3F75FCBDDC786FA7171D1C4BE4F7')),
(UNHEX('6AAC5EA3E093C13CC047DC5E478F07F2'), 'wp-content/plugins/coming-soon/themes/default/rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D165A260353C557E76E8BC29B3E3F48')),
(UNHEX('8E353F1DE7916DC609FF64ABF89B88AE'), 'wp-content/plugins/coming-soon/themes/default/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8D7077B1B872667AC2CAFF6F1907302')),
(UNHEX('9BC880AD0843C1868F7F591AAA8AD526'), 'wp-content/plugins/coming-soon/themes/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1124218D1FA57669BF898DEA61AEBF40')),
(UNHEX('2B081122DAFFDA1D738B01A2827F1493'), 'wp-content/plugins/contact-form-7/admin/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7E9AE9C0DB70B8BB789EC582984F534')),
(UNHEX('AB15D44E50BDB2A33C12559288F786D8'), 'wp-content/plugins/contact-form-7/admin/css/styles-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B17904DB6AC5D9F54C65AA5FC903A6F')),
(UNHEX('C4C90DA752D0A8DB1D3CD7B401553B22'), 'wp-content/plugins/contact-form-7/admin/css/styles.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('844575C58D1ED87701088811285B8BB1')),
(UNHEX('4692D95F3D5EABFCE4618F8745AEA67D'), 'wp-content/plugins/contact-form-7/admin/edit-contact-form.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8013ABF59D6ADCED363A36D261E339C')),
(UNHEX('488F09DA8DC151FE97B724D43F39E5FD'), 'wp-content/plugins/contact-form-7/admin/includes/admin-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4DDDC6F2443CAE80D5D62AD321810DE')),
(UNHEX('BE3B21D3990F41D44FE393FEABD75A97'), 'wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('54337D6A50788CE40AEAC26915E5DC80')),
(UNHEX('CAF439C0DDEF84337097E75E92318DC9'), 'wp-content/plugins/contact-form-7/admin/includes/editor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4293831FB9FE85716A165E19F3B4842F')),
(UNHEX('DD77B473FBC1ECBA1259AF65D7737BA9'), 'wp-content/plugins/contact-form-7/admin/includes/help-tabs.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EEBCC317EEF2AE4E005681C390D70914')),
(UNHEX('2B2BADEA75BCB1DB0B56DE36375363AF'), 'wp-content/plugins/contact-form-7/admin/includes/tag-generator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7A60E20449EA777124BA1C002E5ACFF')),
(UNHEX('A957AF5BEE12C66C462A04510C899D4D'), 'wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('62300C057B53B6FC5FF8CF7EBE210C44')),
(UNHEX('020E3E41DE58EA7FC91361B67390287E'), 'wp-content/plugins/contact-form-7/admin/js/scripts.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EEC23D3C3156872154AD6D9C4A6F9BD6')),
(UNHEX('E26CDBC98361896E64FE760E22CED751'), 'wp-content/plugins/contact-form-7/admin/js/tag-generator.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03C956BE7A0C6A89D7D01FA60A8D9F8A')),
(UNHEX('082C41E37D322B2FE978ADFAEBE3D19E'), 'wp-content/plugins/contact-form-7/images/ajax-loader.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF962B37779A443A77AB836B3B7A93F5')),
(UNHEX('57166BFA846DFFAF60A15E536356D747'), 'wp-content/plugins/contact-form-7/includes/capabilities.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('000B3DC482620D875288F1560DFA4C36')),
(UNHEX('378791419B60FC7C27CB32601435FD3D'), 'wp-content/plugins/contact-form-7/includes/config-validator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22F0CDA037DC527BE2CCD7D7CE401DD8')),
(UNHEX('108781D8D0389DBF95D1BD62B876170D'), 'wp-content/plugins/contact-form-7/includes/contact-form-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15AC3C622AF194CE80DA4F44B1F01EDA')),
(UNHEX('9C529F3019FCB79B74BE0C89EA5D93D8'), 'wp-content/plugins/contact-form-7/includes/contact-form-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C82F5CCE367A55C9CABF3C7D24BB89A9')),
(UNHEX('04A5AC8C9822404F8877515FDCA8324D'), 'wp-content/plugins/contact-form-7/includes/contact-form.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('314D5FF5B8C42771920940427F2FA324')),
(UNHEX('612E4908FD8E631FC874528CDB732EA2'), 'wp-content/plugins/contact-form-7/includes/controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('623C94D6C55D84C69C559E0E19672657')),
(UNHEX('2FC3738097A2EA4E46A43EF0B8A236DA'), 'wp-content/plugins/contact-form-7/includes/css/styles-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A250E950ADC23B5D57F692D7BA709E68')),
(UNHEX('8A0DB7120462101C214580E76ADAB558'), 'wp-content/plugins/contact-form-7/includes/css/styles.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D5D92DDCBE33C91355C20A1D35E7A95')),
(UNHEX('30343370A3DA32EF50063EE2D2A4F13E'), 'wp-content/plugins/contact-form-7/includes/form-tag.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0B578E13B2BF9A2B42E683CA2CF9F16')),
(UNHEX('B23D82D6351F115E4CE0A7F00A2D025B'), 'wp-content/plugins/contact-form-7/includes/form-tags-manager.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A6AA47BCBEBA47AD3B2FBEBE4A900F2')),
(UNHEX('7049FB828F3A5380BA880E9576908675'), 'wp-content/plugins/contact-form-7/includes/formatting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('88FB2C00C9915F9EB4BD59B426ED910D')),
(UNHEX('73CAE8D79601FE9A3A8187FBD768D853'), 'wp-content/plugins/contact-form-7/includes/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DD8C83801FB910A85007CF70FFB71CE')),
(UNHEX('F63AD3B19D60164A9CFD69A64C84A4F1'), 'wp-content/plugins/contact-form-7/includes/integration.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41A61C33FBF633C5190577B4702369CB')),
(UNHEX('F51AD68D3C72CAC3743CE45F5EC08E92'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/animated-overlay.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B912F7C0653008CA28EBACDA49025E7')),
(UNHEX('9731F2E9B5BFE7B859C66C9754014B65'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB23E30D05962C4713C0FDEBD789B7DB')),
(UNHEX('17D4557523641BC0E6E080C2785D0245'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3CF5FB9572ACE4D0640E2E6ACE60F19')),
(UNHEX('58B85BE28B9848C06EFA15D7CC960924'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6FB615D1216A8B04C59556DBAE48EE7B')),
(UNHEX('2F8B4415DA63B887136CF5D307DE8FDC'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D24C5BD50EAAE757693B5FCFD9F2463')),
(UNHEX('30FBC1EF26839EF31B4DBAF55565326A'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('288824A13295B7854838DFC01254015E')),
(UNHEX('FE577A5921AD6198CA7677510C5EDEB1'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B370DFC2F76801AAECC992AA81692E1')),
(UNHEX('45B710641DAD95859CED5A45C15ABA77'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AE1AABE41B1A592C249505F1A22D048')),
(UNHEX('4CEC158DCF9600F71D7918221E50EDCD'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2CF6000C400868DA74B0BC2BF0F5261')),
(UNHEX('453C56363BB44EA2814BA95FB36C536B'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAAB8CEC5DB99E71553F439512BDB1F3')),
(UNHEX('5E449E569D041FE590E1D5216F90242B'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C1D65A979810525490F15128F2A1804')),
(UNHEX('0AABF535E216F93DBC494B94267BEF50'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FCA21EBBAB23C2BC9221AF41A6496103')),
(UNHEX('46F4382A22DAB9FE70456D96262DE66A'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6EF84D318DDA5781C7F268B30079B31E')),
(UNHEX('182B4749BA045D246E96A86F910E52B0'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('502B17EFEEA2F63ABDB12AAE1B85913C')),
(UNHEX('C44C39D4944CEA4D55C229AA4D8F19D9'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D172B560B073F3BC42FEA160BBFF96A2')),
(UNHEX('73A1CE324B0A9AB06CC6469EAA752F47'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60F0405EDD95E7135EC6A0BBC36D1385')),
(UNHEX('A411B2450E6E5A62CDB45D770CF37F09'), 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery.ui.theme.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C238464EE5DEEA4320EADA193F15378')),
(UNHEX('3A6C0EC308CB6CAAC4DDFBB447868429'), 'wp-content/plugins/contact-form-7/includes/js/jquery.form.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('08A24670BEB2EAE7EF79A6D5AC23874B')),
(UNHEX('E2DEF7CE2FF4512697EEE11AA796B66F'), 'wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F448C593C242D134E9733A84C7A4D26C')),
(UNHEX('39E203DB7F0348884D256A9A2612CF75'), 'wp-content/plugins/contact-form-7/includes/js/scripts.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13E0E49E4DF7890CAAA4F213D9DE9281')),
(UNHEX('9AEC294BD7571626270B45A0B6462594'), 'wp-content/plugins/contact-form-7/includes/l10n.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EF79D8C410F73A74C9D2AB0D8EE01B5')),
(UNHEX('A495A78587C058106FED80ED7EAA5F6B'), 'wp-content/plugins/contact-form-7/includes/mail.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F620D9B91FE2465DCFB470A9323974A7')),
(UNHEX('ED3417EE3AB913D2CD6A3B463FB5F52E'), 'wp-content/plugins/contact-form-7/includes/pipe.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('454E28DAAABB2C6840DBAD4283B7F332')),
(UNHEX('CF7E461CA7A374C41D8C67FE9B72FAAE'), 'wp-content/plugins/contact-form-7/includes/rest-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47F95898B44C8BB2B4DE002C912FFA43')),
(UNHEX('BCB94475F7844B8E4206D40B4C6BA397'), 'wp-content/plugins/contact-form-7/includes/shortcodes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DAB6DDA50B2C04AB97529FAA57FD920D')),
(UNHEX('A53F89634B6C7DA7F66735E1B490B0CC'), 'wp-content/plugins/contact-form-7/includes/submission.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DE986546907E0B3C74DDC7FBA522E09')),
(UNHEX('D10070ABEF5747B10D7D5E0DB6CD844C'), 'wp-content/plugins/contact-form-7/includes/upgrade.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1B5346D1A288ED33983B03FAB31118D')),
(UNHEX('1320B3CC0CAEE42EF867FA86F37702E5'), 'wp-content/plugins/contact-form-7/includes/validation.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D661CE6EA50E08E5156912E5B3C64D41')),
(UNHEX('C1F7EB144EE2931B4FC6D254F0294548'), 'wp-content/plugins/contact-form-7/languages/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('085954261A986F5E4705D4A8A3C8F47D')),
(UNHEX('DD8BBC726E7DA77AB90CE47727E91D08'), 'wp-content/plugins/contact-form-7/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E60DF107D763E5EA6B906BC4C88DE3A')),
(UNHEX('8061C4C8046E46682023DB88F58DF1BC'), 'wp-content/plugins/contact-form-7/modules/acceptance.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D7CE9E1A8EB8E745EF5379D6CD2C67DA')),
(UNHEX('ECC6BFAD8EF995E66FEE8D46D76894E3'), 'wp-content/plugins/contact-form-7/modules/akismet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C182CAF18DEC29FB6E82FD8BDFA86F11')),
(UNHEX('0D766BBD502DC8748DB8479AA5A6486D'), 'wp-content/plugins/contact-form-7/modules/checkbox.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C08AACABF5E53B94348A0BBE02C496F')),
(UNHEX('28D02C005BE637DD15CCE812B9331B34'), 'wp-content/plugins/contact-form-7/modules/count.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FD300BDEC72498940A154F2509250BF')),
(UNHEX('0013DF4075189CA59C3205B6EE58E7B6'), 'wp-content/plugins/contact-form-7/modules/date.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5684AD43D143309760C0EE321B08671F')),
(UNHEX('1214594945F9E25474324CD5181EE85D'), 'wp-content/plugins/contact-form-7/modules/file.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('136789A3A24AE7917CA47E059D9727CC')),
(UNHEX('7802F33ED31C9DE6455CB095513B9A5C'), 'wp-content/plugins/contact-form-7/modules/flamingo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68D5FA7D0A44F53AECE9C0A2186E0F0E')),
(UNHEX('21F54281D8031A6C218C5A7F301496E6'), 'wp-content/plugins/contact-form-7/modules/hidden.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E251B2417B5650C156C007A5E36061FE')),
(UNHEX('B53D976664B85CD38276BA01E288FAE2'), 'wp-content/plugins/contact-form-7/modules/listo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C185874ED6CD1800C2E1871829B2EB7B')),
(UNHEX('6B09BBA7DA3CED992847DA77F4DB1682'), 'wp-content/plugins/contact-form-7/modules/number.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15249FE324666C3D3FEA08D74C68455B')),
(UNHEX('C345858A65E4225E16B8FA7A54EE89C7'), 'wp-content/plugins/contact-form-7/modules/quiz.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E60E9A8636B928DAF763ECDF981EA24')),
(UNHEX('2383C9B4A5AA2E0AEF497C2BF2C9BCE8'), 'wp-content/plugins/contact-form-7/modules/really-simple-captcha.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70B92E874637C1C3DAC8C08EB6427AB1')),
(UNHEX('CE5D1946A6A6E0847DAC7780C81D8A7D'), 'wp-content/plugins/contact-form-7/modules/recaptcha.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E15B8C94E79E3F793A835F535A87D5B3')),
(UNHEX('5C0AF13B3AC649D122EF40EF4F68C915'), 'wp-content/plugins/contact-form-7/modules/response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D91EC8F29EF042CAEBCEF6FC9048F12')),
(UNHEX('DDBA243B6BD9C24A95098F61806C31A3'), 'wp-content/plugins/contact-form-7/modules/select.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E99E8D2BC05015BDC0F59AA037E8E96')),
(UNHEX('4A3FF8AB34AD598B9568890B65213E4F'), 'wp-content/plugins/contact-form-7/modules/submit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6388BEFD40ED1DAF617368E572B0F45E')),
(UNHEX('1B62C7084E3DBFB010A82CC0C653EDE0'), 'wp-content/plugins/contact-form-7/modules/text.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7F5E6FDD8390A6C7130A304B0269E01')),
(UNHEX('FD72B022B72DA500A04598770289A258'), 'wp-content/plugins/contact-form-7/modules/textarea.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('23E24458131011355D35E4D2228E0356')),
(UNHEX('A4A18318366F38188A86A54E0C6F4C3B'), 'wp-content/plugins/contact-form-7/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89652B3B5D71F9907470B8541C114A18')),
(UNHEX('A025DF260BE0BFC50C7D701D5C3FDB81'), 'wp-content/plugins/contact-form-7/settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC176CBF97D54AFCF4A1C11CEB0D785F')),
(UNHEX('0DE2AFC2B6324F93DE328187FA26A640'), 'wp-content/plugins/contact-form-7/uninstall.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56323FC8270525FD129EBACEFE30A016')),
(UNHEX('6B4E98EB286CAB5A669D8445224C6DC9'), 'wp-content/plugins/contact-form-7/wp-contact-form-7.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B6ED880821B8E7B46B0D7E668C510501')),
(UNHEX('8344BA5F5E2FE9CC4FD2F7C3D1EF463F'), 'wp-content/plugins/contact-form-7-to-database-extension/AddRowNumberField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A285B78CBEC4006DCB5DA3E71403B01')),
(UNHEX('78861A6B589E239A0F47B9B435134E49'), 'wp-content/plugins/contact-form-7-to-database-extension/AverageField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('351A4ACC5F855977EB4B7762C14EC5D3')),
(UNHEX('4503F02FEB38CD9EC206849E68D577BF'), 'wp-content/plugins/contact-form-7-to-database-extension/BaseTransform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2756D7222156584D82C1A64B2DCCF1BB')),
(UNHEX('18AD06C15C05658852461C4AF5AAF7AD'), 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBInstallIndicator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36FF91E4F4FF99976795F9B3046987F5')),
(UNHEX('208B6AC01C1C7D0411D053DA37BAE69B'), 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBOptionsManager.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1DCD4AC581C1D99C8C15B536214F5AFC')),
(UNHEX('01BFF527A37C5B458D7D5D2D969926FE'), 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPlugin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('624438AA43E1F39F7D3402BFA76AA8BB')),
(UNHEX('28B73A41F5E0DDB03740D9C95A38E41D'), 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPluginExporter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('922BD96B05C3A4B4CB5B1911A27242E8')),
(UNHEX('7C06AFA9C333C46C476732883029BC47'), 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPluginLifeCycle.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10B81C65728F69979C680C494267914A')),
(UNHEX('43FD97126CA9F4BBC92A0C3F06AD53E9'), 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPlugin_init.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9853D94E94D882085468FDE199AF6202')),
(UNHEX('327ADD1AD34CA7B4734EEDE7A359A33E'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBAbstractQueryResultsIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C3EB3D7066E0877781C6B173DABC679')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('8880B30D13A8681BE78680A5834ECF09'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBCheckZendFramework.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A8D08B43EB603D889088D5A26A1F0D8')),
(UNHEX('B4CC18E654FCA540CE5E6CD7A864386E'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBCleanupData.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('718D590CF780626D190A79EFFDBD0E8E')),
(UNHEX('87648551F0DC123238DCDCDFBABC058C'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBCompositeEvaluator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A27E19B6261B9267B98AF76E4C130B54')),
(UNHEX('1CFC1C8426C68D8167CD3D53571CE5C9'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDataIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03BB2EA7158087B89A16DC0287D71379')),
(UNHEX('B654C576DB7DD0EB38245C4EDB500BE7'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDataIteratorDecorator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4FBAE9F56DFB6B37A6881F0183FF4B5')),
(UNHEX('43F1C51981F69E2BFD6C882978700915'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDateFormatter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35536E8C2370AFF2608C9217721B2475')),
(UNHEX('408AB79B880EA5FEBFB83D4ED3DA4B72'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDeobfuscate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FFE8D76E1AD54E0373DE14A33DB2AF7')),
(UNHEX('A5C95E26C4B7D2685DC5729A77DB8766'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDie.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9B61DC28907DBC3B6EBFB1A3DA016AB')),
(UNHEX('8309C89F70D864E55A5417E1645818B3'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBErrorLog.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C16AF697FD71CD81F975F313061D07B')),
(UNHEX('9CB4981E6D8FF73727E1861B9A021F1C'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBEvaluator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F5CF728753C8AA73C5F99DAD83E27B2')),
(UNHEX('468F9F76F02636284FE49563A26E4D26'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBExport.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('77C863DD69281ABA9CC0AFA7665B23CA')),
(UNHEX('B398E0C1E48419E9AF081F5D60B76FC4'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFilterParser.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1845A90E31F2731ADDA455646697368A')),
(UNHEX('FCCEC8BC4A410BBE0E3BF82BAB3EF8F2'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFormIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4EBC6FF4BE3929D2DAE20568615CD2AF')),
(UNHEX('568F0C8FC067D7E0408695DB959349A1'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFunctionEvaluator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CEFAB170A5C51E0D6F8E7B2E5A1095E0')),
(UNHEX('399D40E4B6E8C770B1D7EE822DA29A1B'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBGoogleSSLiveData.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('890C56FEF23C9D1377DB273E967260ED')),
(UNHEX('199DDA5B091F94613081F9AB83D9452E'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBGoogleSSLiveData.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('88E9F8BCD0DF4E3279E8789C2ADAF85F')),
(UNHEX('86F99A238D8AF32D74C20F6EE5F72084'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationCFormsII.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF7E87A45FB3084018E9D06F283CE763')),
(UNHEX('46DE4564B6401D9F62AF96B1981438F9'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationCalderaForms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46C2C0D162ADD99905E31B9849E6A1BA')),
(UNHEX('36EA3D18EE92F79AC04C23737E135E27'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationContactForm7.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C45A2D41B85977FE9B1F452D24E1ADDD')),
(UNHEX('63C8E22014E455A462938FE0B78BA075'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationEnfoldTheme.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DCE5D92AC976EC9317648DFA09388950')),
(UNHEX('816F0BFCE671AD6102BCDA1CD7314413'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFMS.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E10D91F5E7541E43166C24BF5B4C62AE')),
(UNHEX('6AC6180D1CD5E50777F4E2BAA3D5F181'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFSCF.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7535CD8A932CD412C4AB4B22ACB96890')),
(UNHEX('DC86336C2C3B6144F636A46F333F99C5'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFormidableForms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8EE20563BA8CDA7527DA423D4FFA99E6')),
(UNHEX('0C216EB6ED76FF2698A609D6DD99AA23'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFromCraft.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C2D6AD45D5148B9D2BC999EFFD19A1A')),
(UNHEX('C9281BF8611D17717DAFBD4F7D93B225'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationGravityForms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('977BC7C8C9F80274C5AC2B6A01AFF48A')),
(UNHEX('CEFFC267A74BD336AE01DB3E1564D467'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationJetPack.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A20108E9BB3057D3285EC5680FC41A42')),
(UNHEX('A1256CE4564EE0409A959F55AC76B1E6'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationNinjaForms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1305EFE484DC170F199A1A3593356728')),
(UNHEX('CC0936402B75F9A2971F2E2CE2AF334D'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationQuform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ACFC97870982B2C262773AB316E77D17')),
(UNHEX('EF0CBD47CF0610C14EB946FD75C0677F'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationVerySimpleContactForm.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26FDADCF46E7D7E46D2CF0CBACFCA7D8')),
(UNHEX('17A7403FEAA3D184F5E45DFC6DBA70CA'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationWRContactForm.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4366026F850CA27AB777B7EA252A303F')),
(UNHEX('AAEB860B40B784D2D759BF24E08AE409'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBMimeTypeExtensions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E11CDE859BF67B47FD6E0C5804F6863D')),
(UNHEX('0C7C54593F1012D00DF252E7B3CA07C1'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBParserBase.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7E1CD9AD69309C70D546DFA53951C0B')),
(UNHEX('EA2F5BA7E1853059647B5D62CFF65A0D'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBPermittedFunctions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B542A63974E94881241547B1CBF373D')),
(UNHEX('A62F978DB8539D682E2730670651A998'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBPostDataConverter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E223340FA4B20292A91BEEAF3B0F575')),
(UNHEX('1529F5C13574EA823D26991D0D0298E8'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBQueryResultIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF12480AF1CB6B5FE41158B64361EC14')),
(UNHEX('78AF423A827DF333317DD0DC20E2DDA9'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBQueryResultIteratorFactory.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06335FCF6323FD6885AF33C0EC124525')),
(UNHEX('91EF2F4311E7CD828126A97BBD6DBAA3'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBSearchEvaluator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FD18BE4EF2BC046C571988F7E53D91F')),
(UNHEX('2F701000FE65ED4E6EACA2F6992B289A'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortCodeContentParser.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52D4571519BA29B0CE6F1EAD50E5C8AB')),
(UNHEX('F00E4304F74334743025A1B50384A8D6'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortCodeSaveFormMakerSubmission.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('02C17EF88949DED4B0957E0616361926')),
(UNHEX('E1596F5D13ECF0B95A1F9FF6B0E8F575'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortCodeSavePostData.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51D8A7B911AAE297A50437CD8F5E82AE')),
(UNHEX('08B08233DCA7FAB6A19ED26A03465FD6'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeCount.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A6C4BC9329F1AFFEE43631F0B099F616')),
(UNHEX('9D8681030A11A61BCD52C635831AEF13'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeDataTable.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9CA34ECD134B47D758085F26FFF07EC')),
(UNHEX('95B8F3BA1759E8ACD3BE95120D81F3DD'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeExportUrl.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('031E56133FDBD0E1ED01C041DFAD0C0B')),
(UNHEX('FD2BB097602767F535A8D00247C96B70'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeHtml.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D641A17E65F60ACF484189C91DCB63A')),
(UNHEX('F740FEE88C08D78073E0CEF007E71E25'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeJson.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6FAB837F48652B8A7FECA9F707AA679C')),
(UNHEX('C41D6D756D80420567CC75B986BBA72E'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeTable.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('065DC8E1E11919C4322499143B9FD535')),
(UNHEX('9C5D6153E87F67896AC7754F8404C9D6'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeValue.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4554373E08FFADFEA8A830DE04357C61')),
(UNHEX('8713C540D35FA43D4E902A7CACE617E4'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCD1C9C5449432CBC903F0FD50AC582C')),
(UNHEX('D366F5893645D1F4F55AB874D4CB6ADA'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformByClassIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1D44B29D66FF80A6628ADB9353D93F8')),
(UNHEX('0B528EFC4A65770B4DEE05656493CBDD'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformByFunctionIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E9478B58305D22646011EAD3E344EDE')),
(UNHEX('4BAF2FFE660F547A7177623C336030D6'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformEndpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FFD587104B0F3A80D78D16CC70B81CD3')),
(UNHEX('2DAEB8023CB49E2D1E1CA66684C0FCDA'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformParser.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('80E6336BE2EC3B2F3310CAEAACF5F873')),
(UNHEX('CF86AD1A1BE96CA8DC905905FDD6C2FF'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBValueConverter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('156FE494B6579BBE8B2A45349CA788A2')),
(UNHEX('F612B4FB840F1FA68A94C276FA3C683B'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBView.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('024EEB8FE17743649B1ABDA54322516A')),
(UNHEX('826F264DA8E9E8F31F42D57DDF19D856'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewImportCsv.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABDC8FB4BF2EBD26329F34EA02FD163D')),
(UNHEX('30BEF6EA8BC6DE3EA4DBC7AFB76635BB'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewOptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB6892D3DBBDB7348485163D2FA755B1')),
(UNHEX('DC024E2C97B0970990985C75D391EF0D'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewShortCodeBuilder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('77A9F420F627A582E379BFEB7626F001')),
(UNHEX('356D9E7B24B3053A0FF602B9E500DDE1'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewWhatsInDB.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('64BAB6F5C7B4FE82B2A588B8367551F0')),
(UNHEX('E33E6EED98315DF0584464CEFE9E8327'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBWpdbResultIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B423E6E55843A1EDD3A7F621B61E8DC6')),
(UNHEX('F65F2223668A49368DC56B32B2EED082'), 'wp-content/plugins/contact-form-7-to-database-extension/CFDBWpdbUnbufferedResultIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D6BF71F845793A1B497094DA7A72B53')),
(UNHEX('3649B7EB604D98550795A87A7B79BF0E'), 'wp-content/plugins/contact-form-7-to-database-extension/CountField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EA5B090C7AD88A68936E58C70A22985D')),
(UNHEX('57BF82BA81BA47719FB19203AD628E11'), 'wp-content/plugins/contact-form-7-to-database-extension/CountInField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B8AE881B75550ED414D98C54BC28DB5')),
(UNHEX('3510CF7A6F50861B59B93966D4380C40'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/Readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('92288A4AB5A9A07C392BBA16EC19B3D1')),
(UNHEX('DB7E5087127F1A1EDA78410236C56FBE'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/license-bsd.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BE0B139C13BCCCD53CB26D71B9F8634')),
(UNHEX('A43E18893247D4DE5BB55E7CE54CEFBA'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/license-gpl2.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('751419260AA954499F7ABAABAA882BBE')),
(UNHEX('49E50B2BF86D251BAD41336C7240F42D'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/demo_page.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C44A3DEB74DE1D0BEF75378B3349808D')),
(UNHEX('244172FAD302D2F91952A082E2FCF0DC'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/demo_table.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA835DAB01F1B91F93F0EE4AD2DE1A4B')),
(UNHEX('C857EBADE8DDA824E0CFA764F166DB1F'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/demo_table_jui.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD968116E9ADE41F7FFDE91BB8F6063A')),
(UNHEX('095D3B4B55F4B88B210E32E3813A8E86'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/jquery.dataTables.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0CFD2A97C10400D18AE40F3B97C2FA0')),
(UNHEX('4058BD63F79593C7AA87F8EFB2DD2356'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/jquery.dataTables_themeroller.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5BDD3692A1252B1403DDB7538D34FA8E')),
(UNHEX('C12836DD79C1A9724075B3DA7A408C7C'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/back_disabled.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('574C1FDBE98E07B336AEEE94514CBA7F')),
(UNHEX('E08F304B2355FC99B3F86EF05C97554A'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/back_enabled.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2998E23D43AF7C7857149B0E725CCAD6')),
(UNHEX('3B215697B19B02ABDF141A07FDA058E8'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/back_enabled_hover.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D29134DD5E1C2192916EF9104DD877E')),
(UNHEX('99897130BE258BABD456F2E1D7787384'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/favicon.ico', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C30DC560221BCC0645B55EFF79B4741E')),
(UNHEX('821B69F721678A9FD71E5960BBF7BA94'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/forward_disabled.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72EAD25432B5A84031B8333AA5FBF259')),
(UNHEX('63850351D62108DFD26864833B590982'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/forward_enabled.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8C664B8219FFDE978DB3D8308713975')),
(UNHEX('BA461D95BC24174BCC8D46202BB51432'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/forward_enabled_hover.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9BE5F327F16BCAD317C8AD0AE92635D8')),
(UNHEX('6DBB102CC3887962B51D819B8AD5642F'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_asc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C56B94FD0540844A7118CDFF565B0AE')),
(UNHEX('7543D8A00EF770260659F0EEC4E0672B'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_asc_disabled.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('64F2D23D70CB2B2810031880F554B13C')),
(UNHEX('2CB7A3AAFA27426DA9CA5C7456E15638'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_both.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94B34FF5224BA38210D67623BB1A1504')),
(UNHEX('7A428EC6DE98ED334C3563A486EDD4B9'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_desc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F88D990024975797F96CE7648DACD2F')),
(UNHEX('786202AF4D25DF05221A8278BE3F011D'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_desc_disabled.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D48475E6C742940F44E62622E16865B9')),
(UNHEX('2C0D6B95141788BA1429D2FEAB1CE51F'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/js/jquery.dataTables.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('051441EB8008BE7093A760EE03F777AB')),
(UNHEX('F856D0E247BE8F6E69F9D22D96ED09D1'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/js/jquery.dataTables.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F1E6C13D39826544090E00E128207EDB')),
(UNHEX('A6C130058FF56D0639C2B4BDC22BA8D9'), 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/js/jquery.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D14CD3798BC4D6AAF65DD625870723F')),
(UNHEX('6DD6AB17665A26A27F4051672CC5C69E'), 'wp-content/plugins/contact-form-7-to-database-extension/DefaultField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('379F6C48DBEBCC0BB7A968F2B6115FBD')),
(UNHEX('1C292E8C48578120ECD0522A927CB85F'), 'wp-content/plugins/contact-form-7-to-database-extension/DereferenceShortcodeVars.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE11C2DE66EE7D6DD3EF8E53FEFBA109')),
(UNHEX('CE558B7B3FD40B357292BD0B845F1D75'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportBase.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D123F6D68BF871F977F65EEDB8E6A0C6')),
(UNHEX('3D318AE4DD2AF1E043540D3773E6472A'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportEntry.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5279D4EB32BBAF6B2EBC0EE8CFD962AF')),
(UNHEX('8FE82648F01FA99DE6FBFAE8EC6F1A84'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToCsvUtf16le.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('30CAEA7FAA569DF033EC442260892965')),
(UNHEX('59E73EC0AE0C5DA2BB1AFBDEFAA7E8EF'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToCsvUtf8.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2FFA20E9E8D400A38AC8AC5E1778915')),
(UNHEX('070A8CC727856678601D6F94CC90F14D'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToExcel.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1795364DCC7D57391CA1681CDA1A858E')),
(UNHEX('6A7A1B17DCECA2A3AB86495E48721D4D'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToGoogleLiveData.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74D966373EDB55B7F58EF5A639CD4149')),
(UNHEX('CF7988CF8BA423528453CF643B4AEAA4'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToGoogleSS.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B82A41B52E474FDEF049630C66787F1')),
(UNHEX('902309ECEAE474B393391ECB1EF93E32'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToHtmlTable.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A6116A7CB1941ACE2A0BC2B3FD4E479A')),
(UNHEX('8B54F255FED6D7AF59428DC04A3AB732'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToHtmlTemplate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7BB92A96B33CFED179CBD373F76E306')),
(UNHEX('646E0126AE8CA86240DAF9A9CF1314CD'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToIqy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BE1C002CE483E26FB37F6A03A69E345')),
(UNHEX('66DD4569800792BC33DDD781A750338E'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToJson.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EE2A953E379A2706CD2F2CF1814D2A2B')),
(UNHEX('951EA75A687725885C990E4DDFC0E64B'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToRSS.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A78A92A0DDF228B2A1B1229C5065CF5E')),
(UNHEX('CD25E7DE98D3FFCA9D0612A8F61238FC'), 'wp-content/plugins/contact-form-7-to-database-extension/ExportToValue.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A941C52615FA5B7A0B6794BC02E46081')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('0FCF2C1513FE2DA8B5FB9E01481E77C1'), 'wp-content/plugins/contact-form-7-to-database-extension/HistogramTransform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16C17D9693BC2F60F2961267BB8B2891')),
(UNHEX('1EFE940153E656DA52EFB78C182F1543'), 'wp-content/plugins/contact-form-7-to-database-extension/MaxField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D96051A169D30D8771BE8382F3F51F1')),
(UNHEX('AB7B8BF4703DD9BD3B159487B64FC49F'), 'wp-content/plugins/contact-form-7-to-database-extension/MinField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0EB7E20B521D89CB17F644F7DD38B854')),
(UNHEX('EEC0788472EEBB37E36B0426CB4A3870'), 'wp-content/plugins/contact-form-7-to-database-extension/NaturalSortByField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DB9DD81F735A9F2A55B28AF38F50C92')),
(UNHEX('04D18F6A449337EA868717A383420BE3'), 'wp-content/plugins/contact-form-7-to-database-extension/NaturalSortByMultiField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A60D15E2F0A2235DE737DFB4C3CE9CEB')),
(UNHEX('7B116496E0F754DBBCF16AF668F1B114'), 'wp-content/plugins/contact-form-7-to-database-extension/ShiftJisConverter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDC5E982A114C9D8176E3AD147F1FC29')),
(UNHEX('26B293FB7AA6726F2E0DC2E589981EEF'), 'wp-content/plugins/contact-form-7-to-database-extension/ShortCodeLoader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61455314E4BC94C6B6A87DAE65258DED')),
(UNHEX('D2D891CC6EAD8C45489439A20D65ACE3'), 'wp-content/plugins/contact-form-7-to-database-extension/ShortCodeScriptLoader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0809CE65D1EC4014C9B1316D7E50819A')),
(UNHEX('38700BA049FE3F3D1030837799D9277C'), 'wp-content/plugins/contact-form-7-to-database-extension/SortByDateField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B26E63A72EF7F2428D677F128010AA3A')),
(UNHEX('909416D3AE851D2D07847A09B7A3820F'), 'wp-content/plugins/contact-form-7-to-database-extension/SortByField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C3BA56FEDD97E27B6B36D032058BF8F')),
(UNHEX('406B575A008651DB59D7533DA2168428'), 'wp-content/plugins/contact-form-7-to-database-extension/SortByFunctionAndField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B277E0DC1A141B5D8ACDA0DFAC7518FE')),
(UNHEX('7FA68D605B083978789CD18BF412AA36'), 'wp-content/plugins/contact-form-7-to-database-extension/SortByMultiField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E796C31EBA8C87B391803951EEC1C3A')),
(UNHEX('A589A29D92363BD8ABD3D83DAB00CB18'), 'wp-content/plugins/contact-form-7-to-database-extension/SortTransform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91FD505B125F636F43966B732B32E3FB')),
(UNHEX('7E3AF9D325B5EF84FBA69EC79346BC5C'), 'wp-content/plugins/contact-form-7-to-database-extension/SplitField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E865F3937204EC263C3565FDD07F0C80')),
(UNHEX('D52FED1FA705827C7974B9A1ED1BB386'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Autoloader/Psr4Autoloader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72651E60250A7E8D552F6A128DB4ED8B')),
(UNHEX('B28FA4B40017C3065A5706E5B48296A4'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Autoloader/autoload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B479407423DAB55AE1E2EA4161634C2')),
(UNHEX('5A6428051DEF628C5A60EB97BAF1A942'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/CSV.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9A1BDEC7E43615BE057A38EDC226395')),
(UNHEX('15449D951C15A207C542A3D6B4BA4B4D'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/EscaperInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74FEFF1F3F17D78324F54B55BCD8022D')),
(UNHEX('8349C8B10AB6FFEF59A34D4E3B75EF7B'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/ODS.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFACCA41B01D47F7924D39836CAF03DC')),
(UNHEX('23F85D3CCD99AE14E2A64FD974B64311'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/XLSX.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51EF926C93D89A39464CDC97941AAE46')),
(UNHEX('E4B19499950A6A8A8CC4DA6EB8CAC432'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/EncodingConversionException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0190339F6704DBDB339D74863DEC8340')),
(UNHEX('7926AECE6E22A669786113727B7C6A85'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/IOException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B6AD91BBB6B2CABF4E6036B52D31D1D')),
(UNHEX('A36ABD3BC6BDF2F69045639689D3AA2D'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/InvalidArgumentException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DD8E0CC66964B5ED32B6ABAB2A34B10')),
(UNHEX('F03E0CCF20792AE68457AE37E4A58BEB'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/SpoutException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73992ACC1136CC39E38ECFDF028852BE')),
(UNHEX('4256DCE1C6469A007DAEC7620A762CF8'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/UnsupportedTypeException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89EE66C9FC49599F3261C865E7F511D1')),
(UNHEX('806ACCBC964CD14BB46B3B1A02F9EB4A'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/EncodingHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B97E0D069461E6C1EA40675D9AC59FA2')),
(UNHEX('0EF2D63F0AF3BE65F1093559ED45B5A3'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/FileSystemHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C98E8823DC4052AA81BF1984A9AF4E14')),
(UNHEX('0667EB539AB922734AC08A5E158FD314'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/GlobalFunctionsHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('862763BAE12D774975527F6DDBAD591F')),
(UNHEX('DE12859036256FCE602BCCD9BA15A679'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/StringHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0133E31DC6A62E1015F4AB101584BFD4')),
(UNHEX('96AA528A88E86E0D1238C7C5066C1106'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Singleton.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A6F9174ED66158C58ED22D3F2DA94FB')),
(UNHEX('7ABCF2F0538725A5D06395F77B294C8F'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Type.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DFDDEA7AD48B9AD62B7A756AF628A614')),
(UNHEX('31DAAC00306E9F5F09835C69E1371E0C'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/AbstractReader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0B6AC4DB4C14B75DB24103A574BC16C1')),
(UNHEX('A75F95334AE7DCDC815764113C211A8A'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/Reader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28DAAA100F810C4FDDE8575329DE58AE')),
(UNHEX('C2F5C6CF11C699CED806BB071F0D3BCC'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/ReaderOptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('96E8224AC5CD81C04D10AAB02E26469D')),
(UNHEX('422F97B673557E4ECD94E1B48D4134E1'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/RowIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9CD710A3971AA22D058FC41DE0663F8')),
(UNHEX('29CF223C801A68371E2E37490B3D89B9'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/Sheet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4ECCB15F127C929501890C51FD3577F1')),
(UNHEX('FBE12A0A1B5F289125905FE92115E9A5'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/SheetIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0145D44EE942A782FA7EE294BE28487')),
(UNHEX('64E11B1912253E03D456C5014C3269BB'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Common/ReaderOptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('476004A0A9D71D1001C2283C04F9BEBE')),
(UNHEX('E860450022ECCB1BC6EA9757957F1BF3'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Common/XMLProcessor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0DE1CC9ACF36D34DFC881C4B5BBCC96')),
(UNHEX('5477342602D1D7E52FE72004BB7B9273'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/IteratorNotRewindableException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E4739AB7D61C00B743E4BB1F0E5AF256')),
(UNHEX('C349555C4D3D5B1FD4E44AD272FC5720'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/NoSheetsFoundException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DD255691B4B9E11BDD3831672500B96')),
(UNHEX('C2D93A2905C7542CC7BC56E08D1D549B'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/ReaderException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C491054FB023F1C66A75FB565AAB29EA')),
(UNHEX('B959040A5905A4A18042762132B0D874'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/ReaderNotOpenedException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDFECB6E7A1D104F0EFC18D60A4B4137')),
(UNHEX('F1E21E57C42F53AEC1DA5EDF8A2A842D'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/SharedStringNotFoundException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55E89388EA8BA5D456F96B32D629A8CA')),
(UNHEX('71C458D3D6AA2A905B19AEADAB59361F'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/XMLProcessingException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D7F1205DF8FB99AFFB448BBB7B0D3D5')),
(UNHEX('A17ADFA674BA835B5740513E634F27EE'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/IteratorInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2729B7F216BD085E56691882CF44783')),
(UNHEX('955617B5A4EE605BECCC8648920A0473'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/Helper/CellValueFormatter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('574A38FE5959ECE29E6F124E06768E76')),
(UNHEX('6CD3C831A5E2032EB9381950FAB121FA'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/Reader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9873ACC6B2FA7970D7D7480F79FAFA1')),
(UNHEX('A9490D4D03F2454588880CF27C4081E4'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/ReaderOptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D8AFFC2CC18EB75B130A41FD55E3D8D')),
(UNHEX('838B6B4E9B141CE78C39DE1E8A68DB9A'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/RowIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11296FAA25311FE88D87E02BAE651705')),
(UNHEX('64D492AB6822447500F006D21A640690'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/Sheet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AEA23547311370BACDEB6BD506B0D3C')),
(UNHEX('DD3023FE6331258EF38DA5D887DFBEF0'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/SheetIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE36022594E709D547A1EEF51897C186')),
(UNHEX('1CBA62BCDE1EC9A0B279FA1031846813'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ReaderFactory.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8CC27EDD342A21311266C69802F77DD2')),
(UNHEX('DD4DE3688007923F5A0B6AB9217DC5F1'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ReaderInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24A44CF1C6F1D5A3ACDD76FA2464A5F6')),
(UNHEX('3989E324BC729E25163A23AB4F8D53B6'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/SheetInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA27F09AB98BD3389175A60861871804')),
(UNHEX('C3D2BC2E2C3DB03F696CEAAC1C0ADADB'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Wrapper/SimpleXMLElement.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D10BF724B6DD0A6C4C57EFC90D34E880')),
(UNHEX('9B881AF4B145ACC80AFA95AA8CEAD5F2'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Wrapper/XMLInternalErrorsHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E882A4059DF9A9C27EF83634B00EABF')),
(UNHEX('101A1C324C826FAE8717C7C1EB9FE0C2'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Wrapper/XMLReader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1B88D9C3A250732E9379161B7CEF71B7')),
(UNHEX('929E569BF5C056BE8E168E5F65EED2C8'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/CellHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15A2853FA743E9CE621B8C7EC386638B')),
(UNHEX('51AA92666A587196AA1DD94E98CCD595'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/CellValueFormatter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D0FA56A5A39AF6C5FB0A993B4BE3964')),
(UNHEX('4FFEBA6A423B5D98166B05A3ECAC9AF9'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/DateFormatHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4CA4ED0DA553EF549BD771235D88B450')),
(UNHEX('FBC9C75C0E814814E698B5E7255CDD17'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyFactory.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A976DB065B5C66432C279DBE1DA2F71E')),
(UNHEX('DE4DA998437BC9CBC706A68C5AD56DD8'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8C3164CBB61B58C61CDAF4A1C09C2F5D')),
(UNHEX('69A8D63E62970627690B93735291CB06'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/FileBasedStrategy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('23E1E00E17D6FD14ECE50254A3E6DF48')),
(UNHEX('A0089E2EF433B01D25DD45DBBA6B3EEE'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/InMemoryStrategy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A96387F1727B4F1AE78EF097F3C6B6A')),
(UNHEX('96036B6FC0E0B4ED2A5EC343BA149843'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36E4B1EB5BC9A1C8EE6AF8DC7A1417B4')),
(UNHEX('45CF8D2205BD898F4A5C67A75541853C'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SheetHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2D52547C12C3762016F2ECB5DAF5E7A')),
(UNHEX('BBFEEF5EE671A4D68D43DD9723AFCA85'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/StyleHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B58F3D2FFF54A56ECFC2C239D97C6808')),
(UNHEX('EFBA65C6E18DA50A04BC99E42C45864D'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Reader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10DA7CD953681769FB62ADB2031AFB56')),
(UNHEX('23365B3ACBBDEF04C482153E25BFB372'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/ReaderOptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('864092B46A2AF8F1B6AA74D87167E4AF')),
(UNHEX('8634C8A6E3BDCD55D7B45994A9002F0B'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/RowIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D145DBD67E3D85D6A5C1841F74EB10AA')),
(UNHEX('A3DCBE97676C9BFF2BF7936440F96B89'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Sheet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8847D6331038D96607EF4DD94A1D42A')),
(UNHEX('B367ACCEC7298AE9852BC50744524E5E'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/SheetIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D8C2E628FEDBC16BE33B54B0F62D2DA')),
(UNHEX('FB50A6491C1DE3E6E2579BAA2AFEFC4F'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/AbstractMultiSheetsWriter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8330BE72982218177974578A1706E81')),
(UNHEX('B17477E8FDFF809C79C5684602AB6A10'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/AbstractWriter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83E98E7A355D22CE852C5E44D6670B8D')),
(UNHEX('2E80B13E0A12516F897407010922E477'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/CSV/Writer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AB6F3877F349CF630B5FB96F32F92FD')),
(UNHEX('780BAA082895C0D4C02AD027A6367A9C'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Helper/AbstractStyleHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2775F9015797D13AEAAE78DACE3901AD')),
(UNHEX('2E811A4DC5C0769C89B0E89686D1E0CE'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Helper/CellHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB709E0B9F44F9E8DA1B859BF7BA3DB4')),
(UNHEX('4E591AB5B29C7E6ABBA592CBA2E99195'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Helper/ZipHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F04D43854178880546D13AAE828139F')),
(UNHEX('3CDBCB45D038CD78CD9AF0E3BE940152'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Internal/AbstractWorkbook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1D8E1B1B21BBF3C60BB13219D025027')),
(UNHEX('8669CF46871A6200CD072F996BEFD2E6'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Internal/WorkbookInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('81E31A4B1C0C63DA89F0C371275D27F4')),
(UNHEX('C5355CA6E25CDEA53E61A0FCCD3A44F3'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Internal/WorksheetInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E7E4961A60A914DE95A361058D430AB')),
(UNHEX('90C0AE0B25B40EC4BD9608753A5A135A'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Sheet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A95E2C52FBEE7479B79964846847FF4')),
(UNHEX('0E9A130BDBB5B66206253075DD98D286'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/Border/InvalidNameException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6EB9D751C39340591100A1049D8C476')),
(UNHEX('3EE1FC8DB77E28965A3342A3E7BF5533'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/Border/InvalidStyleException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C4BB65B9734EC766BE9ADE600AA37AE')),
(UNHEX('3C97111632472206A755FEA3A4F08C0F'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/Border/InvalidWidthException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B6AE1F1F2A1B6B8C2656C16B72BB0C31')),
(UNHEX('634C5461B0CAB6BEA71C088D6AF02ECF'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/InvalidColorException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('970F5A7EAB8A1D162546BEDC1F2C66BC')),
(UNHEX('06C05FCDCF295FBFD733054A90F4F5C6'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/InvalidSheetNameException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('160E2F59CF468F625F353B41637DBA16')),
(UNHEX('AE91A31423CA5B330656411AC04B86DE'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/SheetNotFoundException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A00C7ECA9CE9935670E6AA60C3DCC43')),
(UNHEX('BECE673BB82629A9921BA8DA536030D6'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/WriterAlreadyOpenedException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35C6E98D9A40FE8899121D92FC6AAC44')),
(UNHEX('9B8E9893A0A00DCA2BA07A79F2C714CC'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/WriterException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EA93300C74D9C8F93408384987CFFC0F')),
(UNHEX('7002FDED584A98FAB9CA80B587614471'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/WriterNotOpenedException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED1F9F00B16D53FE3AA93637E01C8858')),
(UNHEX('84968ABE271D8A3961BB158DE73406ED'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Helper/BorderHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3ABACE1FB93EF56BD76F5BE501FC502F')),
(UNHEX('9007D3BF41436168F5EF064DEF741D10'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Helper/FileSystemHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7224C967B740F68741BAF569D4F9BDF')),
(UNHEX('0A3B3C02D76EB4167D3C1FCA15303606'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Helper/StyleHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A7737AD983629844CA47A2E6FB6AB20')),
(UNHEX('0E48C7637CA26C749D155F0AB4A5EA07'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Internal/Workbook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BA5933BFB05BDF0159E2E232F03FACF')),
(UNHEX('36FF177E9AA16E41C0CDDD59A59F5938'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Internal/Worksheet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('200077833F9387BF7523F1E723A049CE')),
(UNHEX('94F053140B5B92A89E068CB72B999973'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Writer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1041FB8F8F9E21B287B250395176C266')),
(UNHEX('40784355AF3975D7FC0F6F167448410C'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/Border.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D59406AC87853209698157BC72F7BF60')),
(UNHEX('7B79FE464C5D1C3C5504C2DB53CDE303'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/BorderBuilder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8EB90972B4E13C0218E3E4228C389B2D')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('99495E1776F9997E363CA1B0B6F109EC'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/BorderPart.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8522A6446924A6BEB2CF1F8D7941EDC')),
(UNHEX('66E42BD3EE4A2A32FEF0FEC8FE457FF1'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/Color.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78DEC37151AE7CCFD21C3F5A499E4905')),
(UNHEX('3CF7B18CDB345F59D02F098D3D9093DE'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/Style.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('00C0B479BAAA74BA303D4D2DAC07557F')),
(UNHEX('042F9FD17CFD3BF7EED7A177C85420BC'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/StyleBuilder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('939DA6393A629C02EC2B628A512EE577')),
(UNHEX('3B3B76D57E5AB4862E7FAC092B6FB760'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/WriterFactory.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2A7FD1EC2E2F3548F34BE701F6F82C2')),
(UNHEX('EF626C56044532CE241DABC353D0F8FA'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/WriterInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C58DDE3F310B0DA1D0C6496CE0C4F2EB')),
(UNHEX('5A46A1AC518E5446AAD3E4A0B5D5F97B'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/BorderHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E45EA02D2178A88B497C2AD42C329154')),
(UNHEX('A2D03EE017BE175C970353B0C3D47789'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/FileSystemHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EEF3A7CB1E9397581C82BB1AB0474219')),
(UNHEX('584E4E231593CCDB08878D1517944579'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/SharedStringsHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE22714F2A292DED5AE1C08BF7626D17')),
(UNHEX('2B9CF860E354BCCAB73A5006277BC3F2'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/StyleHelper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('812487676B13C7163DAAC8D7E3DA3470')),
(UNHEX('0AC756E642B16D5AB96048F187DABFDF'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Internal/HyperlinkFormula.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC47E179DE89C0668185B2D1F9D756FF')),
(UNHEX('2B2841BB6D11B193366BD39EE388D1E9'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Internal/Workbook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB72D76232E066694D057322AC7B8ECC')),
(UNHEX('893614663B32B89F6D097AD23E74680B'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Internal/Worksheet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE31A4F87EDBC641E428EF700B702421')),
(UNHEX('786184A54B8EC24203D5138A22943B15'), 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Writer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7464B3DDB1F9B6974D3AA24E6C01A03')),
(UNHEX('BC70F52BAA7D6D87505BB7ED08DFFC2D'), 'wp-content/plugins/contact-form-7-to-database-extension/SumField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7CCA98A94F92A90CC7C900FAC24E1D8')),
(UNHEX('0720833AD681894DFE2B2D43F4A96BE1'), 'wp-content/plugins/contact-form-7-to-database-extension/SummationRow.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10BD80DD99924528EECA093931AF5D77')),
(UNHEX('5702FF061A7A05F0183C64D834415A8A'), 'wp-content/plugins/contact-form-7-to-database-extension/TotalField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E2906C5FE0FD6FFC7B2BC5321B707E4')),
(UNHEX('59411DC5496B37D741AD986EF36A3CD2'), 'wp-content/plugins/contact-form-7-to-database-extension/cfdb-transform-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8879EB316D20EE97A6C7B787E84AB81')),
(UNHEX('44C851753CA7954AF429ED00FC52F330'), 'wp-content/plugins/contact-form-7-to-database-extension/contact-form-7-db.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7127BFF08DBE7821A9E40E916053F50E')),
(UNHEX('184A970EAD1BC2DBC5656B26DF689D3A'), 'wp-content/plugins/contact-form-7-to-database-extension/css/jquery-ui.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D353473C45EE6AC3F47622924DD7C69')),
(UNHEX('F64D14A77761FF4DED4986F7394367F7'), 'wp-content/plugins/contact-form-7-to-database-extension/css/misctable.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C20F5FA612CF3B26F5E81EBC861E6FCF')),
(UNHEX('CD64A1CD98887F63943249D59A602359'), 'wp-content/plugins/contact-form-7-to-database-extension/css/paginate.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F074BC90B655367DE2DE67ACF081459')),
(UNHEX('69B1DB2791901F5AFFB8D295C5EC5F36'), 'wp-content/plugins/contact-form-7-to-database-extension/des.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1378452EEE935910BC4884CE4C9EE0D4')),
(UNHEX('5A2FCF06C389A2666AA0A983D51CBD15'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/_README.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AD29D76BD0D25C43B1236C9C7520C5A')),
(UNHEX('2801C004BFCE414A0A67C54DCECC4E13'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ar.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DDC04300EC4DE3A4041FE7EE884B5A7')),
(UNHEX('8F0BB190E0782C1C06DC86CF15AD1918'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/bg.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A66ACA769B5AC958AD836D7FFDFAB218')),
(UNHEX('4759675AC9C3B7F2077CABD4688CB898'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ca.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('742980D1C6873165AA9A68BE1A0A60E8')),
(UNHEX('4AED7EEA279383AF81F301FD64B158E3'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/cs.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42C4D3FF4DD0A98D2485E3103708C8B9')),
(UNHEX('54A2EABBA9534A64D540A34A983E5BA6'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/da.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61854FA36F51E482AEB57E4661162244')),
(UNHEX('A4AABEA97D38544513DAEFE330F7D7E3'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/de.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52624F9AE3CA9DCC60FF4761DC7021FB')),
(UNHEX('12AC939389BBA36DAA879C01963D1957'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/el.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5736A09C104112E01B04D057B9F39E5C')),
(UNHEX('C8E044480EE5D7115E7C559939F07DED'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/es.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('075DEF0CD597E9857862A5B91DD05C3B')),
(UNHEX('5C4177BE3F5AEF261EC52CB958141ADD'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/et.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CC56351DCFE0385468D857BECA5F512')),
(UNHEX('0307A21B5889B6277B3BECA52DEE9C60'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/fa.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2EA32054986DA72CC69446A62BE6351')),
(UNHEX('79AD5869B236D04B9211632B7C0B42E5'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/fi.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A0CFE9F59AD4D014E4121B1EBDCD6D0')),
(UNHEX('4376B88ED29BF7603EF8E12CED1081CF'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/fr.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3574EC8DDD8F0AC6FA158C280E1184C4')),
(UNHEX('70C380F553BB6FA9D99591C4A270B6E1'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/gl_ES.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B3D14345CDCC1F5746069E8B851BEEC4')),
(UNHEX('5EDC813440FABB1862CCC060E13E8B45'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/he.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D03EDE9AB184D7EDE1BEC95FA1C4052B')),
(UNHEX('5420EFEF4CC16C3CABB225D7F0FE9C1E'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/hi.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FE252BE1C5635ED78C1A9E96AB261B7')),
(UNHEX('65696F22EEF8E95C17518FD2409BE3DF'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/hr.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D70C74E49158ABF1DFE9C126E7D76FE7')),
(UNHEX('F92EA12CF3BF46125BF166A5A056C77F'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/hu.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D3F9E891FB93303410A299231C95CE1')),
(UNHEX('18F602ABA539CCD61FB6DA51287C4B41'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/id.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3A342FB858A7A08A78577A25512233B')),
(UNHEX('205A75BCE41AA893303AAC57355ED3AC'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/it.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1797062BB3A4F7F5EC128789CCCA89AB')),
(UNHEX('362CE6ACEB9F9CA456A8C75B84724C3C'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ka.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED19ACDE38999CAA2B37085B04458DDA')),
(UNHEX('E13D3282B0D05F35958D4E88F85CD19F'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/lt.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B6A82CFA997439112C6DC0C85B51235')),
(UNHEX('C7AC03FD1E7048A22507A20A51601FB7'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/lv.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A3F0C3445AEB03C56596126DDF2B78F')),
(UNHEX('D7CFFFE5F16C2BBA73EB70B14496856F'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/nb.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B0DF257FB918D9D4F041CCA92BA1F19')),
(UNHEX('6AAD7BF1D51BF5870ABBC962BDD27D96'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/nl.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A2822E7AF7D28EE504472B9C4D020DA')),
(UNHEX('9E8F8417F772F2F498616C067C46B978'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/pl.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC1759E9D22BC9D8B0ACE6112284C097')),
(UNHEX('4FB08258A199E85D50B0B6DCFDFCC1BE'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/pt.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D7A7186C7FF7F9A9F895E657F72C70F9')),
(UNHEX('2356BD227BC304ABCD715E1B3242E374'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/pt_BR.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('445FBF1E2B242F23459BACB71DE02502')),
(UNHEX('D8EC953A0AA80E8F8941BC60D103B8A3'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ro.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F108934167159C8CA5C2551A021BD245')),
(UNHEX('3CABC2E71C4C359D91BC65B4DE5F0DF0'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ru.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50D1CDAB689BCF32468119B5AC718D57')),
(UNHEX('B4B93D5ACF6099A52B09D2C28B4C4C52'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sk.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1690D20E08F0263CDA94921643F4D6AE')),
(UNHEX('A474D3F3240F94056CA04FEF4A41815B'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sl.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70BE83F340DBF3E10BEAF8F128BAF43B')),
(UNHEX('0689E33E4BD7C1BC4E843673AA89E053'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sr.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34B405B61D8097D0A23D49D6964FDA3A')),
(UNHEX('FE809C5D05DCE4F46A0601C1122EBA22'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sr_RS@latin.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34B405B61D8097D0A23D49D6964FDA3A')),
(UNHEX('DCD9AD562022AC63C7D3DE4D36BA8BE7'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sv.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6626B29A15AD577352EFE6C61D0744F0')),
(UNHEX('46A3A84A4EE3C82920D8AF84CE68AA33'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/th.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11249D7DD3C6FF5309EE12453971723F')),
(UNHEX('32B957C98F8FB18027F43FD68524904E'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/tr.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51E55D2D5C288AADE284636E520EDF2F')),
(UNHEX('FAA62C6C0D54F0A30F0A3E395F9F67BD'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/uk.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73D3D33F7FFFB6767935285F47877C7D')),
(UNHEX('77A74053B7B924CCC149F4C480B381F6'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ur.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A7F496EB6ED9F36B98824AF8F7A0423B')),
(UNHEX('B34196B49723749CFAEE28697A9B08F3'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/vi.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4853F1B999952A49C2E72CC91DA70240')),
(UNHEX('37FEEB22FF9D2AB61A5B212C4F8324D0'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/zh.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A2BB45B18BA492FAA21B1F3C5EF82D2')),
(UNHEX('32C789B40B38EDD6526EA7A6DEFB61C4'), 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/zh_TW.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('247783693F736D49D73C585D5F2C75DB')),
(UNHEX('CC9DD0F0D242A0DDCACAC3B41E873DFF'), 'wp-content/plugins/contact-form-7-to-database-extension/export.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('81C0495F650F4599D7D679C157637E51')),
(UNHEX('7B0A63F7760D59ADB64EC74B2C146766'), 'wp-content/plugins/contact-form-7-to-database-extension/exportCSV.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8AE78A17BA32CEFBEDFD4A8D727F35D7')),
(UNHEX('61B6753758A0F60E6236065DB7023945'), 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleChooseSpreadsheet.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01DDBEFC0BE7196810B2F82F21C1800E')),
(UNHEX('B541138A292A37465E535E2B61F6A502'), 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleEnterFormula.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E14E9B05EB8C9C8526E1E3FA1C41A85')),
(UNHEX('C2A17AA4B3340E428775CEEC8DAC8B1C'), 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleNewSS.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('23D29221C900FCFDC982783E46DD6B75')),
(UNHEX('B524D14AB20AE4FAD978D2BE8F092DE2'), 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleOpenScriptEditor.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('682A61C422AC857367AE39093E00668A')),
(UNHEX('553E0400DCD901F5770B8F1B59ECA0AD'), 'wp-content/plugins/contact-form-7-to-database-extension/help/GooglePasteScriptEditor.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('579B2056157D2A6B098CA097043AC14B')),
(UNHEX('B034CB953B641A1D643F5C91168171B2'), 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleSaveScriptEditor.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F59B60D07A0E7BD311DBB7C04F65361')),
(UNHEX('FEA65C7A79E2C26BA4AB0EAB9D6E8582'), 'wp-content/plugins/contact-form-7-to-database-extension/img/icon-20x20.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F301FD588708001703F1FAD5C996950')),
(UNHEX('B9FD07F03A214B0FF8D0AB98266D06D2'), 'wp-content/plugins/contact-form-7-to-database-extension/img/icon-50x50.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('107C3248A2B05397C52EB405D8FA8DD6')),
(UNHEX('BEDE7AD63C3E6F938541AA0D17751D11'), 'wp-content/plugins/contact-form-7-to-database-extension/img/icon-bw-20x20.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12E6933C4C09AF22B458DABE8E534D6E')),
(UNHEX('2D14C1168C29A10B72D0CEA50A401376'), 'wp-content/plugins/contact-form-7-to-database-extension/img/info.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84AFB78F14EF4349B53A5309A9EA1D6C')),
(UNHEX('0091745528259FB9D967B3CECAA3FC78'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A44FBDB7360C60122BCF6DCEF0387D8')),
(UNHEX('C25E3C1B0F5AB281EE4315E75E12F310'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8692E6EFDDF882ACBFF144C38EA7DFDF')),
(UNHEX('66D0E41119E44F17F79AF85CE844DB18'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8F4558E0B92FF2CD6136781533902EC')),
(UNHEX('086B7E4D3735F96D55E23F7CFCD6729E'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5A8F32E28FD5C27BF0FED33C8A8B9B5')),
(UNHEX('B7832BDE3DA77A2DDE24C834AE04A58B'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C12C6510DAD3EBFA64C8A30E959A2469')),
(UNHEX('329D0E831644D175FC6DA8E8E2D736F6'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4254356C2A8C9A383205EF2C4DE22C4')),
(UNHEX('2FCF115E87E0536BA558C021435FC678'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A3BE2D8FFF8324D59AEC3DF7B0A0C83')),
(UNHEX('7600E0A2CDC6A11F687794BDE2ACAFFC'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72C593D16E998952CD8D798FEE33C6F3')),
(UNHEX('F0493516A68C8973098CD77627538E99'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_222222_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EBE6B6902A408FBF9CAC6379A1477525')),
(UNHEX('9E91681A37DBD73B6827648643A197A6'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_2e83ff_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B99A5E48D3C3957D03027D36A25E8BB')),
(UNHEX('DC156D970B0EC44F3C4DD31786D7571A'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_454545_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('119DD0C2E94AD689DE873EF39FD43E6E')),
(UNHEX('B34C998C2C1CBF5FEC523E7B96FB2B8F'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_888888_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C46D7CAB43E22A14BAD26D2D4806D80')),
(UNHEX('C326EB83476B25E5927A426189604635'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_cd0a0a_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E450C2A2C66328D9498E7001AD7197C')),
(UNHEX('F7E85AADA169E31FF9AB24481220BAA9'), 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/jquery-ui-1.8.21.custom.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0128CA6399A1FBB049AAD4F1F1286A4')),
(UNHEX('1EF30A29AA7CD2DA696F199579A64114'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/_README.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27F3AFCF5DCCCC369E4D8CB020A10A56')),
(UNHEX('A51D4699037E46D3D3671366B0C2F5AA'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ar_SA.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5779DE0449BA312F42A37C434002FD9B')),
(UNHEX('252E214FD99D5BAB594E67F42D6F6BE4'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ar_SA.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5D7B67A97A1E1CC1F920AE2BB0F6C84')),
(UNHEX('A12E7BFFDE1F9E568DDA2037470B5E91'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-cs_CZ.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5B0D86CE590DA94335D6044C19FC14F')),
(UNHEX('08DE8A3F4E80868B25F069405842B4DD'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-cs_CZ.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A6B2593397213F9C2B082115BDEF708')),
(UNHEX('3DEE019475DC283326F03DAA6764285B'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-de_DE.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F5CFB67BED0134F53FADC9FED441964')),
(UNHEX('CF496F27F133A7849E3F1B87C2AC517A'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-de_DE.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F80B378243702BF759876F2E0CB2A098')),
(UNHEX('4CEAE47A76BA7B9BF3F2F6236D1D35CA'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-el_GR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C697F5D081E73726C06144F74F1D46D1')),
(UNHEX('60FC2208FBFD017FF650C142E5D973D4'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-el_GR.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE1FC8C7CA0070069A2C539EC6B09A22')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('3D95F1CF8A888260DB78153D365758AE'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fa_IR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CBB7FC5095E9C440A08BD071B1C3EAC0')),
(UNHEX('E9911B5611B975538E80B0803F4D7074'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fa_IR.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36D189C2BD8F86C95072575F8FE5E630')),
(UNHEX('42F3DA4244D8AD4B770806E7907F6B1A'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A0E175E2F17C4E629D648B297C4D412')),
(UNHEX('C06C1BA766F5A980AE1CE310A363DC71'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FD66F4FE134EF69D55ADA0A44F01311')),
(UNHEX('A8360958ED3AFD6F8F9034BC4D4BA8A3'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi_FI.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A0E175E2F17C4E629D648B297C4D412')),
(UNHEX('5271C16A25751BFBD4031EF0A5A1E217'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi_FI.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FD66F4FE134EF69D55ADA0A44F01311')),
(UNHEX('C80DE1949AF80894162255E754B7D647'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fr_FR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8DFA801AAAC85CD5BFABEC94487F0DFF')),
(UNHEX('09678F2420AEB9DBC75C949597139933'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fr_FR.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE86F8B6363780DF36A5D5ABE40ECFE9')),
(UNHEX('8E7AB84216EBC1F7AFC4E238B904C1D9'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-gl_ES.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DEBE49C8BEAEEE0279522396B2DF33FC')),
(UNHEX('D5EF07FC3DDD1FDEBF2A8069965823F7'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-gl_ES.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12AE984BD03EE27A2FB3DA2D59F47335')),
(UNHEX('4BF6C3B5B8FF735FC3BCFEA04B2C7D60'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-he_IL.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3417287BAE608BA0AC2A15EC434DA916')),
(UNHEX('4F1B84DAA71109BDD6F3F8EEDAE6F98A'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-he_IL.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DA7A4855DEA22382156702129101C6F')),
(UNHEX('1E78B077E33D8652264EDD5CF9C9AAFA'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-hu_HU.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CBC92490265E1D6871AF307B9343670')),
(UNHEX('C7B4A8861BC9C8D2BFC2CBD3EDD53AB4'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-hu_HU.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5657BF35CB306F969978803B249C8EBE')),
(UNHEX('3D6942A18F1CF57430663332E5486210'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-it_IT.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDC02F42936ADFC8CD4537CB605CA924')),
(UNHEX('45872953C30C635EB463D9633AE6308B'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-it_IT.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('629A8620E750B74AAAAF6F29F8B5F37C')),
(UNHEX('EA9DFE2A3614BC2726F0DEBD8BAEAC90'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B9BDA57518D25BD42AEEBFAD1395F03')),
(UNHEX('932B478FB182C0A5E1476131C55D2F86'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B3C77C5A5FF44993984D55C474656F70')),
(UNHEX('14235C33F26ADEB93828B5D9527102B6'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja_JP.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F630DD755A76E9484FACED9102F2BC4E')),
(UNHEX('6DFB81024015F1F7F5D538F9CE3FD900'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja_JP.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E22DC829C85119345E2147E02951B3F5')),
(UNHEX('841553849974108F968BA81E3157B69E'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nb_NO.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83DB2108DCBDE785D7D8F9A59D95CC13')),
(UNHEX('3B803E71DCBBA6831A493BBECFCB73EB'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nb_NO.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D759BA812FC8231C7AA6D6351E82136')),
(UNHEX('2DA8A2E457000CAEB7BBDE4BDF676E8E'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nl_NL.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D15272B507D85AC7CEA5BE8B5547285A')),
(UNHEX('C6BE66B32C592469ECE74CD497AF5106'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nl_NL.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6429151318D1A63FAC3E196F670DFB08')),
(UNHEX('6A667ADBBC95CCE7A14382D00FF233E5'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pl_PL.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C277F20A076C22F7B8D72D4C1F6D5147')),
(UNHEX('DF695A193A696AC1343129812E2A3326'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pl_PL.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('40FB07D495523408B23B5D6E04EA84BD')),
(UNHEX('D8775B8692DED38DF906C9CA4D431ED1'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pt_BR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('912148796AC0BC90B2D20DD5BD1B83E1')),
(UNHEX('BE71183821275D54D85B769E67DA2EED'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pt_BR.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('08BC11FBF2FE41EBDBF9C37DF313C69F')),
(UNHEX('77EE1323C16A93361D2D7276DB0A69E1'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ro_RO.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('534740CCBB013A981516E64F82CB46CB')),
(UNHEX('4CECD06F22DF04684C3B0B6353460DA5'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ro_RO.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F96D5CC56CB779273F97EE8C277A52B')),
(UNHEX('0508F7E5C3E6082BCE7237510589C90D'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ru_RU.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DBD1FB55910FA7EBD951247208AD5079')),
(UNHEX('772349AA19EC69796C391D4F01A76314'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ru_RU.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A44E6AD7E28C9143B028A63F0BB6BC68')),
(UNHEX('36154E7BA83485E12F6AAB8D64895251'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sk_sk.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0A7A62A60F653F8C44ACCBD95508966')),
(UNHEX('FDEABB503B53FB044964F75BA66134C5'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sk_sk.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A3E0A1AEE4767EA87E5461AA341503FF')),
(UNHEX('21D8A74639C2085CEFC180C556858187'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sr_RS.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0AF83C52362ED74DAA9053346EDB4FC')),
(UNHEX('68A2D1E9192273D3DD9E2821ABAE8D3E'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sr_RS.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47AE430EF5BADCB97ECA63EDEDED5D74')),
(UNHEX('C9AECCEFFE0DCC18E7441DE99C5CE45B'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sv_SE.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DED35E7201FA67B75545B165FF79490')),
(UNHEX('CDDB0EA4D3347CDDE2FCB5FD4008C350'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sv_SE.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5622941B493105811E2F9B69468D1458')),
(UNHEX('110A2398A443FFAFC105A63694F0D920'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-tr_TR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC308CD7027F75EDF8DB84AF00A9C47F')),
(UNHEX('1B321E042BFD4DAC114689C6826DCEA5'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-tr_TR.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29BF5F27A2B51E61E610B24DC43B61EE')),
(UNHEX('3A776CEF0703FFC2C7985B87CB4AA959'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_CN.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD3F61FE9D910CD8BABEDF7702812719')),
(UNHEX('B414896522FBE93C52F5F3D8216184D6'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_CN.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D2595F2DDA4E32B1FCDCEBE73334125')),
(UNHEX('CD408DB021D10D4825E0D2122B74B124'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_TW.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4FBCE63E67E4EEB1FD79AEC89BCD997C')),
(UNHEX('CAE195AFE6FF4C31A3CBF8654CE31FCA'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_TW.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A7EE47906929FF18A338D2EAADFAE95')),
(UNHEX('4C378B120A6DE6FC3CE3896C2AD200BE'), 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8ED3F4F518783D2041658729A7B16328')),
(UNHEX('508C3EF9D7F4BB837231DB1C4504FFD1'), 'wp-content/plugins/contact-form-7-to-database-extension/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE06497ACAF4F45999925D348C2605F9')),
(UNHEX('4499F20F677B083D506AEF5ECFEDC44C'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/BuildInStats_Test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F75684748C00F9ACC2E6BF934D07D33E')),
(UNHEX('86E94BC6BBEFFA2C65D2D3B08A62EC37'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CF7DBOptionsManagerTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06DA736C9C01170F47F229B2B7AFF463')),
(UNHEX('E8CF5C6E27C8E23652A625045B18936D'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBErrorLogTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFB8E1863B9892677312B87E43C45769')),
(UNHEX('A6EA07C0A42FB3AB96B06A5EAEC27718'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBFilterParserTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('433A1426647D6D01A3D019A2BF414F84')),
(UNHEX('CA72B6EB9D2D1E40CA6D604357111310'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationCalderaFormsTest/form.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2295089499C013C19A58464483BF826B')),
(UNHEX('CCA1A1B179288C631D03452B48F8CB2D'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationCalderaFormsTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5582891A756075DBC25CAD1330DFF732')),
(UNHEX('5D3F25EB4B6185460E5632E384118F8E'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/dataContentEmail.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F85A2ACA58E4F9EDF0DB941FEE3214CC')),
(UNHEX('2D8489C7F221C5DB7DFE70B474214C73'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/dataForms.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7F0B951C248913CE668F6392990E0F8')),
(UNHEX('3EA7AA6984F337F7A1E20661314109F2'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/nameFileByIdentifier.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B069DBDB0D18A2DA4D6C5CBF2951EADA')),
(UNHEX('C6A71D5659510F1A2D7A294200029D54'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/post.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0254CBA49474BE20AEB41D36064FEFC')),
(UNHEX('2C962CA715346257D13304A49159923E'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/requiredField.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('607F675B4A250E427D8077E0092F8DE2')),
(UNHEX('945A0CB76B2242F39E6040E33365CB12'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/submissionsData.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41A38C2F3D0C0595D19954E02333227')),
(UNHEX('2374BFC3EC2374AA6DAB9E6A655B3EAB'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A8F377D16F290EABDD76695BB1F6766')),
(UNHEX('0D9FE03FC27786B351D90CEABC108258'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBPermittedFunctionsTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E1E98A4B9F686E5A0F1AEC1DB11057A')),
(UNHEX('07671F6E4D56721C5E182A30D7DF371C'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBShortCodeContentParserTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83583DFD2D75E51D907AD846AFA2F07C')),
(UNHEX('2CFFF779D0EB100273E7C5FCF9D99FB4'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBTransformParserTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F016C7C40D44789241C6C8CB22653115')),
(UNHEX('6C3337E96DDEB1E13D7539736ABD7AD8'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CountInField_Test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91520D2022F5FAA95FC9F8C26E676379')),
(UNHEX('991493E5C4192B6B7AE01C1E59A5B2BC'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/DefaultFieldTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('652808B0F24803A9615020D249A6E77C')),
(UNHEX('8EDE108D727BC172236475EA5CBA5D9B'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/DereferenceShortcodeVarsTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A796C586DD981987899560670540956F')),
(UNHEX('8860B1B0452A5FDD7D91AC70C602BC77'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/DereferenceShortcodeVars_ExportTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8DF0DE99BF5D007317E717B93FD47A6')),
(UNHEX('D88975ECD0AAA046A67DDA2728A83542'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateMissingFieldTest.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5AD127110242E9ED51C479EAEA84B578')),
(UNHEX('93191D5B441D5290EB9EB46C1886AAC1'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateMissingFieldTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0FB6ABF9E29AF04DA4A09098A20A6A5')),
(UNHEX('0DB48C68005F1523F2EBCF01DD6ED7DC'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateTransformTest.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3965D755C44C24375B582E6261F6BDC5')),
(UNHEX('7657AAC8C2E4277FA8A16A0238E56CC1'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateTransformTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC510BD5871DB8C2B2C5615BB5244CF1')),
(UNHEX('776B7A7CBAE0639776AABA550E75ACB9'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/MockQueryResultIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('367EA3A8BC5F45D863370FF8AC8ED59D')),
(UNHEX('25BF538C79CDC910FA6C9FE1B2C3738D'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/NaturalSortByMultiFieldTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7FC58AEA1EF3FDC1E7AC872D39755DD')),
(UNHEX('E86F26FEF889C68A698813BC1AB73267'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/ParseFieldMatchesTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E741FA9545C958C934C84EDB2AEE5B5')),
(UNHEX('A775237B12F02FB46B285E195BAD73EC'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/ShiftJisConverterTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8AB698F07785703F2BB240CAA055469F')),
(UNHEX('4DB00B3A1F0912ED235F2D94FA45D9ED'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/ShortCodeBeforeAfterTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A35AB46BF460B3B982C80E56A6810A82')),
(UNHEX('9CF1F0A88BEBEFB19653727EFA3884D1'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SortByDateFieldTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('045871E55D3D4A8045ADDDC46F04C0DF')),
(UNHEX('C3132DECC3BE3E2CA6733D087B0D972C'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SortByDateField_TransformTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA0C4817356C7C78ACC8B0EC9FC058FF')),
(UNHEX('CB82E44DF8A8551CEDFCA3F9431D1583'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SplitFieldDefaultDelimiterTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3B05067D1C3809698B8243BD643BE4C')),
(UNHEX('6DD1E2F3F69B7432A06FA06BA33FCC0D'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SplitFieldTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2616730846FD118AB6337AE356A2985C')),
(UNHEX('4CF43FC4AE990CE93B3AE1CEC232F1EF'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SquashOutputUnitTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E07D1F991D5F7AA8F5156D33FCF02375')),
(UNHEX('78AE576195F161780D68FF6DB8AD2BEF'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SummationRowTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E7695F39EDD0B139BEF7FE9F40995A1')),
(UNHEX('00E1A80D1E093139214108402D365B63'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformEntryFunctionTest.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DDFAEE347CD41F543A47218926F889B')),
(UNHEX('0AE1163234D4CD84C890771350BA7696'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformEntryFunctionTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB067EE1D2B8A21CD269819DEC52974E')),
(UNHEX('9C83D5E3E1E287FA728A8F7FFDF6B1DF'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformsTest.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA4D0DD87B5C4BF228A6ADEBEA897D38')),
(UNHEX('5942B64904E8A5BF9EAE47CB05FA2C1E'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformsTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22C6E33B8DD414BAD06D57AF2699BCD4')),
(UNHEX('0101BE3889C6930037320CD99274B023'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/UnCurlyQuoteTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26CC95824131440513FAF52CB495F141')),
(UNHEX('1CD86A35834D8C4269B0809C5FFE5746'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/WPDB_Mock.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42260F136730E845367B08213AFC9145')),
(UNHEX('0455234AB04321CB6EDB40D940367287'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/WP_Mock_Functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47680CC7AADA91704D1B38C2ACECA43C')),
(UNHEX('B73C12D41D50ADB889B680E33F00F777'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/compoundfieldsComma.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C267C9AD3102E80844CBA5C014AC45B9')),
(UNHEX('605C6C2D141F224C161BEADA3EAC7787'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/compoundfieldsPipe.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC760447E47D1B0F676F4B19575D75AB')),
(UNHEX('83D3E72F7710FC76F4B5EE54E4EFBA6F'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/phpunit.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF76C66C0F98C26808B42E173BF26A0E')),
(UNHEX('234235F0B1CBE9319EA56F99670265FD'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/scores.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('067075E6F14E6116077258B4E3EB5B3A')),
(UNHEX('EB16D6CE5CE3397536AE2E02736A6B3E'), 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/votes.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8DE9CFF0D0CC804ACAE350337C9E94B')),
(UNHEX('85B8CEB2D6B65EB90ECE8DAD15BFE423'), 'wp-content/plugins/contact-form-7-to-database-extension/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F32FA954D64F6483465404F089FE921')),
(UNHEX('0712A4D020F924347F3D1A5A1EB88DC8'), 'wp-content/plugins/contact-form-7-to-database-extension/screenshot-1.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E851527E5A4C204CE0D8D813A664DF65')),
(UNHEX('733CACADAE434875AC9B0DC2902527C3'), 'wp-content/plugins/contact-form-7-to-database-extension/uninstall.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D4EAD7E287D2E0FE053A21A3D59F24F')),
(UNHEX('849C09C4C188D39F17F7B3221CDAA585'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/dialog/dialog.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C89DCE10B44D2882A024E7BEFC2B63F5')),
(UNHEX('E2C8A84C9DB01F7315B388730073C540'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/dialog/dialog.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB78922DB190627D63BE39F54B6AE864')),
(UNHEX('440D48C4E3E20CD7F69019EDA9AAA0A4'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/edit/matchbrackets.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF2CDDD87704D84E74CF17CE4FD7412C')),
(UNHEX('C1CC894D06D551E8E7022C7A64219B4F'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/scroll/annotatescrollbar.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7206739F16151E2B54468FC9B8CEA190')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('D3E51A035E014B7841EDB26A641CFFBC'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/match-highlighter.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF67B0F13A4A51BF2698BBD9DB34932D')),
(UNHEX('5357AB796B9D2400B25F14172E793E67'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/matchesonscrollbar.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('00EA2770C568A848190BCF52E4241276')),
(UNHEX('6D06A2EA45083EE5A1FD63721D86808A'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/matchesonscrollbar.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2CECE6DE1E3AD73489C170C8F08DD561')),
(UNHEX('39ADD4CE3123E27CB1D6C911DE1A6B84'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/search.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47BB6B424F284D63DE461AAD385CDC10')),
(UNHEX('2EF7DC785B7EFBA838D6E8F9E464650D'), 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/searchcursor.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A11E9186F471515209A5583F1AF6421C')),
(UNHEX('D4DDFF655FE3CD1535C31E3249F806A0'), 'wp-content/plugins/custom-css-and-javascript/codemirror/codemirror.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('118754B4FDEAEDD20D1FA2E8FEF7E51D')),
(UNHEX('8E3A32889166445AF8D9EC5E0D86E887'), 'wp-content/plugins/custom-css-and-javascript/codemirror/codemirror.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF349A04B43B60A313D0358C9ECBD1A9')),
(UNHEX('A4CC1B4677283633748964DEA358CEE3'), 'wp-content/plugins/custom-css-and-javascript/codemirror/mode/css.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('463DF4AAB87621C6FB0331BA5AB8838B')),
(UNHEX('3FEA77F91D4F659D9A8D93F30B37E0EC'), 'wp-content/plugins/custom-css-and-javascript/codemirror/mode/javascript.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2DBE04E390CD6B9E96D28D21E4C5ED35')),
(UNHEX('E7192770E6D61567A6B9DDBEFE545C8A'), 'wp-content/plugins/custom-css-and-javascript/css/custom-css-and-javascript.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53B29670B89C0237E5810B6816DAD0C1')),
(UNHEX('B803DD1FEE5950C59DE6991CC7E778B6'), 'wp-content/plugins/custom-css-and-javascript/custom-css-and-javascript.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A72345CCDFBC9D809E43C5D1EBFE7B6C')),
(UNHEX('B805352FDE09D4046269D472C76C0318'), 'wp-content/plugins/custom-css-and-javascript/images/potent-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1EAF613B92AFE1D8734BDBFB3AC315E')),
(UNHEX('1C8C0E2D198CF2411B33EA1E516E6BDD'), 'wp-content/plugins/custom-css-and-javascript/js/custom-css-and-javascript.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BACFF50290C1A273933C5B13A9B747EE')),
(UNHEX('EDD96715A9DAB30829666C4B6826DEA6'), 'wp-content/plugins/custom-css-and-javascript/minify/LICENSE', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84E306E3BC06843EA897D61F83CE5833')),
(UNHEX('11FA63E49D27736D0605BC42F513875B'), 'wp-content/plugins/custom-css-and-javascript/minify/data/js/keywords_after.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7A2BA5584B99665262113D522FE6AF23')),
(UNHEX('2A809A142A679CE22C3D5493111DC193'), 'wp-content/plugins/custom-css-and-javascript/minify/data/js/keywords_before.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3764CBB8C75B536A4A8A9B63186A0ACF')),
(UNHEX('603863B49FEFD8FB85C65DE85DDA64EC'), 'wp-content/plugins/custom-css-and-javascript/minify/data/js/keywords_reserved.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A535081A1E4FB1F825D0A4AB5A1D2207')),
(UNHEX('F2BE1E08EDF617EAE3AAAE1B1FDA0215'), 'wp-content/plugins/custom-css-and-javascript/minify/data/js/operators_after.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3DB131730DD1732DC3B3365BD0D6BD32')),
(UNHEX('142E2C15918C41135D99346B0C086A05'), 'wp-content/plugins/custom-css-and-javascript/minify/data/js/operators_before.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('124A606440748B19F0FC2A10C7567B96')),
(UNHEX('78E825A84BAD2450D125A9F5C9CE49ED'), 'wp-content/plugins/custom-css-and-javascript/minify/src/CSS.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D500BF838BE1E87D33B74C0E73BF045')),
(UNHEX('DF11E1C160E5548B46561A8CD7C8C7A1'), 'wp-content/plugins/custom-css-and-javascript/minify/src/Converter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29A53C7CEA027E4D269D2BD6BF46501D')),
(UNHEX('A1F1581465B161F8D69DFCF3457CF9ED'), 'wp-content/plugins/custom-css-and-javascript/minify/src/Exception.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5ABAF91AAD338F643C23809FE6FE0F0A')),
(UNHEX('1EE48FDE4947A81FDBA9CB43355A3B9E'), 'wp-content/plugins/custom-css-and-javascript/minify/src/JS.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A6C625CD0E190703CBAF2E8F8F567DA')),
(UNHEX('0DFBF6C9FE8FB28915AD5CDC8D54DAA5'), 'wp-content/plugins/custom-css-and-javascript/minify/src/Minify.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24CED3DF0E824CC5AEB8D9899FEF9A0E')),
(UNHEX('F15696F6C03B2B8CEE1FD6B890EAB58B'), 'wp-content/plugins/custom-css-and-javascript/plugin-credit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83A694AD2345CB6612651477D4D5C614')),
(UNHEX('7BDB68827764447C9EFEBDCB55515A7C'), 'wp-content/plugins/custom-css-and-javascript/readme.txt', 0, UNHEX('9F4127A62A313014F57D664E23C1EA07'), UNHEX('9F4127A62A313014F57D664E23C1EA07')),
(UNHEX('B2F1368C9A7C9AEC82CD54C3D9170915'), 'wp-content/plugins/duplicate-post/donate.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82E87E20A642B868BF414DB64F3A1DFC')),
(UNHEX('6514075D9C299B128A0BC7BB298FB733'), 'wp-content/plugins/duplicate-post/duplicate-post-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55086E17186CFE57A6EBBCE32B6B1CA1')),
(UNHEX('B2943CDA90F3880BC6C7E3565B0C6706'), 'wp-content/plugins/duplicate-post/duplicate-post-common.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D4CC816714E872E8A41D282DFB383C3')),
(UNHEX('204D248FEBC4FD14470EA2D45FDB57C2'), 'wp-content/plugins/duplicate-post/duplicate-post-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1915F0826D1F0F6CA6D1A9CBD9F00BF7')),
(UNHEX('2C9FFDFD81BF2D558237822E80D08A8B'), 'wp-content/plugins/duplicate-post/duplicate-post.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('212251B36F0790ED4B0707CB62530414')),
(UNHEX('C591786D20FCE574F49E69731268A6E7'), 'wp-content/plugins/duplicate-post/duplicate-post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8315D67477EDF3EA4875389A83A77E7')),
(UNHEX('9DEE0DC29C2D39EB8749924BF7F708B5'), 'wp-content/plugins/duplicate-post/gpl-2.0.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B234EE4D69F5FCE4486A80FDAF4A4263')),
(UNHEX('8C50A9B0FA816637AEC722BAE005D27C'), 'wp-content/plugins/duplicate-post/readme.txt', 0, UNHEX('B313B4362E0F5BBD653911B02E1F1045'), UNHEX('B313B4362E0F5BBD653911B02E1F1045')),
(UNHEX('F4D7870BE18783843189F7D76A7E6252'), 'wp-content/plugins/fancy-admin-ui/css/fau_styles_admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68266EA43AEA84473A6EFD5A1FBB7EF1')),
(UNHEX('E9980AF9C7BD961B0DE52254B35B73D7'), 'wp-content/plugins/fancy-admin-ui/css/fau_styles_adminbar.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F77219CB5DCD37CCD28023B94776346C')),
(UNHEX('5533011CF21B3479FB4AE9E7303B5CCF'), 'wp-content/plugins/fancy-admin-ui/css/fau_styles_login.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1219A82C5020F96CA474134E69BFEAA')),
(UNHEX('78B7C24B8F9442937AD6EF8B4CD8A069'), 'wp-content/plugins/fancy-admin-ui/fancy-admin-ui.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E335140195A677BBD21C516CFB4EBD93')),
(UNHEX('729076A5D2B65705A8B707060FD5C6D1'), 'wp-content/plugins/fancy-admin-ui/inc/fau-colorpicker.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('49706675DC078DE22E090A06E8069C15'), 'wp-content/plugins/fancy-admin-ui/inc/fau_settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C043993EEECE6778BC9AFED99E20650')),
(UNHEX('905579FD4F4762E553F9CBE91DDE98C1'), 'wp-content/plugins/fancy-admin-ui/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F0929BB45B09C3D0B748096E765986C')),
(UNHEX('6CC3EE257B951FC44614B4169FDB68A9'), 'wp-content/plugins/fancy-admin-ui/screenshot-1.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03D49C35B977358C61784502ABBF10F7')),
(UNHEX('3689C186541EB5930B844D43835979A5'), 'wp-content/plugins/force-regenerate-thumbnails/force-regenerate-thumbnails.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A37E0E49CBF57BDF9CB7EF1C909237ED')),
(UNHEX('74F68DFD64B2B43EE9BCEBF184C14F80'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/jquery.ui.progressbar.min.1.7.2.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45EC5F07704AA4B0A98C913E3D9BA644')),
(UNHEX('CA40236CFB5EF743934E58D1B694C744'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/jquery.ui.progressbar.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F66A2BCB84E3EBC573F3FD0CDC0747B9')),
(UNHEX('CB271F0680989B160758BB2C11E120A6'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A44FBDB7360C60122BCF6DCEF0387D8')),
(UNHEX('055648DD6E8CD0E6B19CD43FA81E56A5'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_flat_55_fbec88_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C2FBDBC691876AFFCFFF95CB1302AF1')),
(UNHEX('9E30CC14F6D77947FF2643A3694FB383'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5D28F9ED0EEAD945E114696AE7B4C67')),
(UNHEX('044FCBBD6E17E80AB1918DC43B49BC96'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_glass_85_dfeffc_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E4710322DED115C72EFBD0756234B6F2')),
(UNHEX('B3CA51706369319F9EB7E75A053A37D6'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_glass_95_fef1ec_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A3BE2D8FFF8324D59AEC3DF7B0A0C83')),
(UNHEX('F2B02512BB0FBDF54872F52D8C73C206'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('527D96CB51EAA54FA74A90DB078008C4')),
(UNHEX('C5BCFC8B4B92D095D13A85E07AA7A5DE'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3964EC1CD6FCBC20FBC2ED63D320CAF6')),
(UNHEX('D888032E14D863E23410B2F03C43125A'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BEA0BFEF4C3C17F578450B58DC805599')),
(UNHEX('83D86263FDB369BF6CAFF59AF5CC8541'), 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/jquery-ui-1.7.2.custom.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('161AAC1253EC374571D910F83B7E99DC')),
(UNHEX('3E8EE8B4ACB65172ADF78AEC0ED195BF'), 'wp-content/plugins/force-regenerate-thumbnails/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('98BCB81A6D61AFC45FA5784FB540D1B0')),
(UNHEX('8798A7E0BE04F3E74EE4F156AEED1012'), 'wp-content/plugins/force-regenerate-thumbnails/screenshot-1.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7CD681D66FCCEE8BF636B35A75325FC')),
(UNHEX('F21687F0D6E7A07A0035B83EE40DD7FD'), 'wp-content/plugins/force-regenerate-thumbnails/screenshot-2.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EEBE40D4DFE580D58B6744270F9D6B37')),
(UNHEX('18DF2DC3F363B91618C7CCC6517EABAF'), 'wp-content/plugins/force-regenerate-thumbnails/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5091F927F64C899C297DE07941B30FB')),
(UNHEX('70FAA2750EFC77A89C5389C9B41430BF'), 'wp-content/plugins/hello.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52A7F011F362416F939A74215F7EBD12')),
(UNHEX('D40CE8F2FF010FE59DCD302AEE57C7D4'), 'wp-content/plugins/index.php', 0, UNHEX('67442C5615EBA73D105C0715C6620850'), UNHEX('67442C5615EBA73D105C0715C6620850')),
(UNHEX('6959166842504951C0AA4DC6EEAC7385'), 'wp-content/plugins/jetpack/.svnignore', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2135BB13FB7A226F2971EFADB7421AE5')),
(UNHEX('AC3AF7E87A8C34943A016B5DDD47EB5A'), 'wp-content/plugins/jetpack/3rd-party/3rd-party.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A13A7E2F6C6DB3176A10DE768EBFA131')),
(UNHEX('3E62A7FCF9620D121BEDC6211BFA971A'), 'wp-content/plugins/jetpack/3rd-party/bbpress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E4FDEEF90FBE3B501B8371D7C1316B9')),
(UNHEX('B6ADC34CBCA12CF22CFE3333B0CCC03F'), 'wp-content/plugins/jetpack/3rd-party/bitly.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('112F2B40FF0DF3FE6E41D7B04F7BD240')),
(UNHEX('8B14FD787EF076A32C79475225689D60'), 'wp-content/plugins/jetpack/3rd-party/buddypress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('422482EEF5502C652F36E57C9D334D5E')),
(UNHEX('9BFEDDDCDDA3CFD9098FBDC664768C27'), 'wp-content/plugins/jetpack/3rd-party/polldaddy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F17A72C7967A0B5D30EC39C9CECC37E')),
(UNHEX('7914F3FC0C7AE2FB5932D28B8729A651'), 'wp-content/plugins/jetpack/3rd-party/woocommerce-services.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12D0E8B9A4F6558967BE9A9380078035')),
(UNHEX('BB57690E08544E878E97DE23C1E3EB3D'), 'wp-content/plugins/jetpack/3rd-party/woocommerce.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAE562495F895B87DE8BF45F0F82D0C3')),
(UNHEX('3D637A2078A9138AF4CA2816F0F8B89C'), 'wp-content/plugins/jetpack/3rd-party/wpml.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('175C6707A110A2593D92FB7F288B1BCE')),
(UNHEX('3762880E9121CF511C909F3129A9059D'), 'wp-content/plugins/jetpack/_inc/build/admin.dops-style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF135B32685165B8D6332F5310A30D67')),
(UNHEX('8A8DE76BC6CDEA3BA07970F4A7692139'), 'wp-content/plugins/jetpack/_inc/build/admin.dops-style.rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B14B9A6C3B168D671D0870CAE93E375F')),
(UNHEX('AD24BAE95D1F816FFE498D60D2D32A8A'), 'wp-content/plugins/jetpack/_inc/build/admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E8397B8C3917DF1EE92A442E8F01624')),
(UNHEX('91576CA8534659552FC276F294DEDCCE'), 'wp-content/plugins/jetpack/_inc/build/static-ie-notice.html', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB6E2B41EC41A65444AEED944931F9B0')),
(UNHEX('4B7F339A27BBE158E4E9F73B60DB700A'), 'wp-content/plugins/jetpack/_inc/build/static-noscript-notice.html', 1, UNHEX('00000000000000000000000000000000'), UNHEX('117B5CF0C67394E00B49C8C50169D915')),
(UNHEX('0759E98AF8D883128BE02A91A970B1F1'), 'wp-content/plugins/jetpack/_inc/build/static-version-notice.html', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76095919A53CBADADB265D92849FA37B')),
(UNHEX('E4E757622E64331ACD56F00F44A7DB0C'), 'wp-content/plugins/jetpack/_inc/build/static.html', 1, UNHEX('00000000000000000000000000000000'), UNHEX('578B299050B2A1CC63FFB1E3E93F78FD')),
(UNHEX('5B6833583BA6957CC574B73785561656'), 'wp-content/plugins/jetpack/_inc/build/style.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3315C7F753D47809FB067D831D0533F')),
(UNHEX('EC1CD36C5A2FFF2D6037189A14188A60'), 'wp-content/plugins/jetpack/_inc/build/style.min.rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F55FA7FBD633492073D8180861E6D88')),
(UNHEX('D3A9094EDC38C565930771F3E79BFA2F'), 'wp-content/plugins/jetpack/_inc/facebook-embed.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6FD21721B99B97D1B8D6D0C1B57BE264')),
(UNHEX('5EE6A94363D6F42DB9A537244D8C86FF'), 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('260E6601D42A749F3EE0FB464BEFEE9E')),
(UNHEX('9C0F55078F0805A9AC8190BC0CF44A03'), 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E4357F809A3C91C89C65965E16CBC5B3')),
(UNHEX('3BA210911E2193A19EE17BA7102CFF01'), 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0FCAE5DB01A205380AE71B71871BEDAD')),
(UNHEX('FCB3AE4537BD93A9F006EBD01D79C542'), 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B1F63E7CF9EA085089C86D339776DA8')),
(UNHEX('8B803B6B940B00A0C10F92CA8F0D9495'), 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33BBF49286333D85A64FCDFE60CD1F55')),
(UNHEX('01E5BD3B797F0FA632659AA3F2FFC680'), 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('558DAD6B0BA0216EE862637EF69CFE62')),
(UNHEX('CD13F87D25630B31A7496444FF614263'), 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3715CC3007CC5D70500975CC7B56575A')),
(UNHEX('23D85E9D87E73B539ECB544ECE85F6C0'), 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF02C3BD65EF826186A4BD7AC2716A5F')),
(UNHEX('FEC10B1BAAD8AE4611E26891B7FF16AE'), 'wp-content/plugins/jetpack/_inc/footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('381633000F843D1D5FEDC3C30F9C7C8F')),
(UNHEX('FB985B3AA438E73CC4CC3162D830CC2C'), 'wp-content/plugins/jetpack/_inc/gallery-settings.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42BFD7F3A4F76F51C929CBD0E81AE1F2')),
(UNHEX('022C6ACE86C85BFF5D2C291673E70776'), 'wp-content/plugins/jetpack/_inc/genericons/COPYING.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9423B96EB6160477FD4A2B7DE890419')),
(UNHEX('E834C505AB260A1C3402E2A57F761CA1'), 'wp-content/plugins/jetpack/_inc/genericons/LICENSE.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B234EE4D69F5FCE4486A80FDAF4A4263')),
(UNHEX('4DE76C87B390EC7CFAA3A2E54F0BB2AC'), 'wp-content/plugins/jetpack/_inc/genericons/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('031EC4ED36A007D7D9F15600D7EBD5E8')),
(UNHEX('E125CF573B01A1EA8A0970C158AC6861'), 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BEBB165302A5D3A90AB9012F3B5D733E')),
(UNHEX('5E93396FA43D3E68CC0350F01C016157'), 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29816C642AAA0E5A8C9402F4D2DA62CF')),
(UNHEX('D118ADBF7F2B05A5507D041E697718DB'), 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('008827208FFC4EEAB99BF3CC14FE1E56')),
(UNHEX('FBFF3953F11FDE618687EF8192CB64C4'), 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3F73B280148EEED102D4A6874AC7886')),
(UNHEX('EC86DF4265DA7EED53EE34CE6B65CB1E'), 'wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13A6500DDF36C6DD581877AEFC78D34D')),
(UNHEX('7486644DF1A3124A516EBF1099F71412'), 'wp-content/plugins/jetpack/_inc/genericons/genericons/rtl/genericons-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('592B0E60968BBAC98F235967494BE001')),
(UNHEX('64DBFD7C315B9DF21BA15D74467F55B6'), 'wp-content/plugins/jetpack/_inc/genericons/genericons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C14DD6E84E694A66C7E27F11220ED49A')),
(UNHEX('FF87C4E526C40E59931ABB3F80FACEC0'), 'wp-content/plugins/jetpack/_inc/genericons.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB642AA97EC3122DDB8D31BCE31FD323')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('32B738A0F3708F3766827512A991F5BD'), 'wp-content/plugins/jetpack/_inc/header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E3AF0DE5161466057A8F35EB6D44714')),
(UNHEX('3A8BD74157DB7AEA6CA39F2EA3DDDAAF'), 'wp-content/plugins/jetpack/_inc/idc-notice.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15892D28724152033F1E56078A6874DF')),
(UNHEX('D178F1383D87817FB5F44956A7FB7966'), 'wp-content/plugins/jetpack/_inc/jetpack-admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB3811738A9E3173D0282FE8EFBDCE64')),
(UNHEX('DB4827BBB67E5DABA884DABD1D35208C'), 'wp-content/plugins/jetpack/_inc/jetpack-connection-banner.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BEDD713BAC03C638E3F38AAFC54D5C3')),
(UNHEX('04CE5E9E24344067BEB84B9497310166'), 'wp-content/plugins/jetpack/_inc/jetpack-jitm.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A57E780D35CA13D52D5F16E19D4039B')),
(UNHEX('FCCF4A23A9CF0A1AFB22DC81C7C0ED58'), 'wp-content/plugins/jetpack/_inc/jetpack-modules.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B08D3F325F5F0D1BDEEA3B34A38238C')),
(UNHEX('7878805C912C5CD8D83226576E749106'), 'wp-content/plugins/jetpack/_inc/jetpack-modules.models.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD45257774426C3D4694814FCDBEF9E1')),
(UNHEX('77735CA00356B96A2BF82F9FA0639C13'), 'wp-content/plugins/jetpack/_inc/jetpack-modules.views.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BF9D9E86B0A2488A3901308F4A3F603')),
(UNHEX('4AD582374BC28FF31B3E6B0D51AB0B1B'), 'wp-content/plugins/jetpack/_inc/jetpack-strings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DC78A218A1BD623F4FF7EAB200D09C7')),
(UNHEX('051836B0446582ABAFAD397593E85331'), 'wp-content/plugins/jetpack/_inc/jp-my-jetpack.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0CC0C6D50F5DA9F5AC308AFC55BBA955')),
(UNHEX('C920B9CD6F93102045F32802169E33F2'), 'wp-content/plugins/jetpack/_inc/jquery.inview.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19BFEC332D16523574AF5E4298D6A374')),
(UNHEX('70C3B015F9CE720E7A6A449A1963486C'), 'wp-content/plugins/jetpack/_inc/jquery.jetpack-resize.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('483419D4C8D05A1603E147BD62591A3C')),
(UNHEX('67442CB2C667B3679BDFBF45139357E1'), 'wp-content/plugins/jetpack/_inc/jquery.spin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D7277FC13A0C90BA1FEF6E5FC2341B3')),
(UNHEX('8F73781972A291F37EBF0FC1C02072DB'), 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38C0DED830474E4D588ABAC69A5816D1')),
(UNHEX('DF47ED5EA7B39020DC86F3C6F5031A1C'), 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-landing-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A3492395BDD7EEB7A5DBF722882AFAD5')),
(UNHEX('A68EF3AA79FA0E49595919AE7809A477'), 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-my-jetpack-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('931A642A4F6AAD57E595337120D1AA7E')),
(UNHEX('B7BCAFC7563B2E909E810A36C9A999AA'), 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65143EAC6EE9AEC043C699C29FA49471')),
(UNHEX('FDB6F2C5D23A63AA4FD6AB4F9E1219EF'), 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-settings-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56F2E1B16A4E86352ED143E2BD875689')),
(UNHEX('11AA10C20837D20AB26EAD753A4BE3AE'), 'wp-content/plugins/jetpack/_inc/lib/class.color.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('98852F9D9B1BC5CEE0149DC859E3FDCF')),
(UNHEX('68CFA9D84EC1E98F16F044CA56882B09'), 'wp-content/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A2DC87922E716480583DD679F5CA8AA')),
(UNHEX('ABB23A965B92FEBCBF031DCC7970E938'), 'wp-content/plugins/jetpack/_inc/lib/class.media-extractor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB0D11C347B8C41C32AA0BAD7BB21DED')),
(UNHEX('0F72AA593D95616BD56E815A19575372'), 'wp-content/plugins/jetpack/_inc/lib/class.media-summary.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CC905AFD35FE8C18BF4F4450352AC9C')),
(UNHEX('396E6776B4A9BC18F6F430D82A457258'), 'wp-content/plugins/jetpack/_inc/lib/class.media.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('884ABB0155A59E4EF029819E3DB5C8F8')),
(UNHEX('045BB80D1F7F53F8AE740D21F9A64E39'), 'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60448A64072B14F7D04AC2E235997B6C')),
(UNHEX('7F51DA6E2DD764F5DC1161F29D9DE95B'), 'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7683EEC05DA4D46061BA2E9F53D0E0DD')),
(UNHEX('E6552B00652DDB3A34794BF66C8D7CC7'), 'wp-content/plugins/jetpack/_inc/lib/icalendar-reader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('481FEF37FD6D2CA845CECBF1AA457125')),
(UNHEX('5DBF916EE5B41F22433D11A9DFB5EA76'), 'wp-content/plugins/jetpack/_inc/lib/markdown/0-load.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3285A9E4BC3A05CA188816466AB909A')),
(UNHEX('E0059C361D14B028B2B8549840568833'), 'wp-content/plugins/jetpack/_inc/lib/markdown/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C7D0DDC619D404100C788B70041F5AF')),
(UNHEX('60ACD24BD78B1C5A9786F9DA85085403'), 'wp-content/plugins/jetpack/_inc/lib/markdown/extra.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61F0C1A611A487BA2324A76FD26C8B57')),
(UNHEX('18D6421725F1BE4130860AB3EECF65CD'), 'wp-content/plugins/jetpack/_inc/lib/markdown/gfm.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3748D1BCA644CF88AFD5A5DBAF7DFDA5')),
(UNHEX('B9A08FB3B01D7F51F5DD85CC27962155'), 'wp-content/plugins/jetpack/_inc/lib/tonesque.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CA6963F6534ECBAE270C6679D7AC8C9')),
(UNHEX('60C73FB7CE51A6F77F615D68FDE73A10'), 'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-client.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B09A3C9C709C74D45C9C68B521839D22')),
(UNHEX('F6DB82661B4AFD08EB86599039195D9A'), 'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-event.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A099D3594E594D997905C6B18DD4B7E')),
(UNHEX('36CAB4423524ABB48EF3D57852D9C0C2'), 'wp-content/plugins/jetpack/_inc/lib/tracks/client.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99C90D556B59C87095D22A1B104C1117')),
(UNHEX('3A5958AD91153207185BBCE9B93BF6F3'), 'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCD9276DA015B92AFE35D5E210284889')),
(UNHEX('4356E98741B45170965E4D3BE9620D97'), 'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-callables.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('62557F141608BC6191BB4D0DD176255E')),
(UNHEX('8788C25A133D47F8EB2455B4C0E7AB1E'), 'wp-content/plugins/jetpack/_inc/postmessage.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EADC5832513D5670884A975C6DE10F01')),
(UNHEX('91808F85A1713507489DAD24830F4F14'), 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('02B10231F7F8A5B5D363F097CE588600')),
(UNHEX('A44DA94A1E2B8FFB31AE2A1C752ACEF1'), 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D77D4DB031B0E02FE460FF4EFA5F96C4')),
(UNHEX('9060B50004FA45327AA2355D966D3FA8'), 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.html', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E45DC27DCF98C2C0892EFA5E054D9B70')),
(UNHEX('87EDD53D0096BEB11DE2403B9209F66B'), 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E5027BEAA7F9AEA5A2D81C33CAC11AA')),
(UNHEX('BB0FB9E18C00ED2D1CD847E6FB29F566'), 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68276CA1A64FF1465A5FC16221BB371A')),
(UNHEX('5CE76F493BBE553045A4FE51673F8F67'), 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff2', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E67F59C2BF087988F340EE941C7D205')),
(UNHEX('4E7C8A3C2EFC50E5B9612DD360BEF9D9'), 'wp-content/plugins/jetpack/_inc/social-logos.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F32BA61F85763FA6B2B4FEADB0526E8')),
(UNHEX('9FE84CB61367FC8262EC5AF4BC94B7FD'), 'wp-content/plugins/jetpack/_inc/spin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE24B79426E1BA35FE2CC4ABBD3BCF4B')),
(UNHEX('8A075FAF054AAB1C6C7A4C744291097F'), 'wp-content/plugins/jetpack/_inc/twitter-timeline.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA91DBA89E86E6D757179067B0BACB19')),
(UNHEX('80780932573FA2A2BDA88CF04A256D84'), 'wp-content/plugins/jetpack/bin/travis_install.sh', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF085D5DCBE8BF79D95393BFF75B9DB9')),
(UNHEX('8A702D1E785CFD0DA69C1A0E924646CD'), 'wp-content/plugins/jetpack/changelog.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29F4D05D9950B428F547A95D918D84A1')),
(UNHEX('B58D8949A06EE1A50D3B5DD05F6E397F'), 'wp-content/plugins/jetpack/class.frame-nonce-preview.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF1689264DE99240845EBB7ECBF3C2FF')),
(UNHEX('CB70C8A9D20348F02663771258959FA0'), 'wp-content/plugins/jetpack/class.jetpack-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17CA5FE7A9C69E4F52F5CDB919011A1B')),
(UNHEX('04FA9BCACAB5EC870271773E95A3CEC6'), 'wp-content/plugins/jetpack/class.jetpack-autoupdate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C79D132376DB566CFE2D43DBC320BE8E')),
(UNHEX('6D5BAC3EA40F9E4C143A5469EE3000BD'), 'wp-content/plugins/jetpack/class.jetpack-bbpress-json-api-compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1B1E7B464BC15A186C5AE20C5D5BBAE8')),
(UNHEX('CFED4D61EB445ED623DCD126A7063C11'), 'wp-content/plugins/jetpack/class.jetpack-cli.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A354E7339EE55088BDAB7AF9743A6E1')),
(UNHEX('6C298CDA5C5C79201FB8893154829F5D'), 'wp-content/plugins/jetpack/class.jetpack-client-server.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('631549170F5138F07D2559ABE4E24457')),
(UNHEX('3F6CB73D91AE7FB9ADF9C2514C79A373'), 'wp-content/plugins/jetpack/class.jetpack-client.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F2DE8031393539AF40A7C5EFA5524A9')),
(UNHEX('07B460A73FB739E05AC947CC05115603'), 'wp-content/plugins/jetpack/class.jetpack-connection-banner.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CE543C9E8FCE3CB1EB60BA4E8A23434')),
(UNHEX('15AB13F8F969EE16A4617092D211F76F'), 'wp-content/plugins/jetpack/class.jetpack-constants.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('93AEAC4406B8FDDAA27CC0FDB5E20D74')),
(UNHEX('78CA889B1A064029B4D1ABF67762320A'), 'wp-content/plugins/jetpack/class.jetpack-data.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBD08539354F4BDEFBEE146AC6D02EE5')),
(UNHEX('E42F1811A2CFCFFBF62D84579740A0A7'), 'wp-content/plugins/jetpack/class.jetpack-debugger.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E0819702800C4E367E265BA534FCD3D')),
(UNHEX('EA387560F68A7A11A950BDB47D822AEE'), 'wp-content/plugins/jetpack/class.jetpack-error.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFBD4BD9F83E4E164D3D7532DA438E1C')),
(UNHEX('F7C0811F787B88A213CCAEC8F8CC906F'), 'wp-content/plugins/jetpack/class.jetpack-heartbeat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FEC5F638B90DA75A103835ED28B10EAE')),
(UNHEX('DFDA4247DB8D5619464CEC14FBC55B86'), 'wp-content/plugins/jetpack/class.jetpack-idc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9ECD87DEE0AEE55328A356E01625DE4B')),
(UNHEX('73DA077A677B5B1B3DE46E1C5AF7A0BC'), 'wp-content/plugins/jetpack/class.jetpack-ixr-client.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD0F9614076A906CD9A34559C823529C')),
(UNHEX('BCF72E286C0DBFC7A2751403097F3B39'), 'wp-content/plugins/jetpack/class.jetpack-jitm.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AEB18ACCB18FF2C7EFBA787090B5127')),
(UNHEX('276F63746839E04E1120E099E43F431B'), 'wp-content/plugins/jetpack/class.jetpack-modules-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A01527289509B25457FFE5F143A2392F')),
(UNHEX('1552808422399FCDCFFD9C2FFBF41A33'), 'wp-content/plugins/jetpack/class.jetpack-network-sites-list-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9718AC86AC0A1F4099597D8A482872DA')),
(UNHEX('CE2C6A922A080480E84D4DE2500EB470'), 'wp-content/plugins/jetpack/class.jetpack-network.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('858B7B5BEA94C4FBD5B63A75ECC0C537')),
(UNHEX('B2DDAD96CA743ADBA868993498BB881B'), 'wp-content/plugins/jetpack/class.jetpack-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15B54F552EC7A48A84C5DF88314F7220')),
(UNHEX('D6D33808B1379411282DC3A47AAB52C8'), 'wp-content/plugins/jetpack/class.jetpack-post-images.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4239EA9A60D4FE60016A4378F52F852')),
(UNHEX('E3D59FBEB1B7BD137E2EAA00F03BA2CE'), 'wp-content/plugins/jetpack/class.jetpack-signature.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('852A1E3F6D4862E002AAA64CF961634D')),
(UNHEX('751A65DBA28C0F8F6A39643A622BBA35'), 'wp-content/plugins/jetpack/class.jetpack-tracks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('63B3F43416D54DF2632824467CBC6A38')),
(UNHEX('B94064EAB5787C82E0DC7024EDCA168E'), 'wp-content/plugins/jetpack/class.jetpack-twitter-cards.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49D868BD97716B8513B5F52FECA57E6B')),
(UNHEX('3D2D210F2DD3AA2E95F444D6AB84F1FA'), 'wp-content/plugins/jetpack/class.jetpack-user-agent.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09E87A637E0FEFC9A524856FC6CF54ED')),
(UNHEX('95C60656FB781F25461B580DAECAE897'), 'wp-content/plugins/jetpack/class.jetpack-xmlrpc-server.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91144562679967591F939FB75FB17CEC')),
(UNHEX('E00F9F956F6EFD8E0513536B4D7DC15C'), 'wp-content/plugins/jetpack/class.jetpack.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3DF9BCA449F2274584F70790803017A8')),
(UNHEX('DAC7C154161708662116EA8E879FAF24'), 'wp-content/plugins/jetpack/class.json-api-endpoints.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7CB6A15BD586410E4E2A2AD6DB960D8')),
(UNHEX('CBDB06F30C24B91040C28596153BD1A0'), 'wp-content/plugins/jetpack/class.json-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FFC5CCBBB50A909379049A647A35AA63')),
(UNHEX('56B244670E690EC713B241CC909B1D67'), 'wp-content/plugins/jetpack/class.photon.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C34C90A7868B1A1A33BDCD57978DBD7')),
(UNHEX('A26B7F668A2B639134307C5CE4E0F61A'), 'wp-content/plugins/jetpack/composer.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27BB90634DF69FD986071C037F37B456')),
(UNHEX('245A96E4458937C8D9EB6907A8AC2AB1'), 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('98BE6ECC6E6E400178BA222EF3836A83')),
(UNHEX('E84684F66F2091365826B6CA0D9AC3D4'), 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13161AD09470EC05F2DBE5D2873CC7B6')),
(UNHEX('AE94872F123035F3409ECD8DD2B0262E'), 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('20C5EA2156C1D08A39B7C137C8597612'), 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C14FD9C4C04364C8DA7A985E90C81E2')),
(UNHEX('050F23340F728F30C8DCB9EDBB419333'), 'wp-content/plugins/jetpack/css/dashboard-widget.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BB1A24E90C0AF9CF9DF70C0E4A439A0')),
(UNHEX('D2F31133CF78000136C6D935B2F658AE'), 'wp-content/plugins/jetpack/css/dashboard-widget.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C4D0F3315EFA4D6F846F5E5BC1394BF')),
(UNHEX('F84EFBB7345DE4FAFFBDDF1963CB476F'), 'wp-content/plugins/jetpack/css/dashboard-widget.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('A416F462DAFE1C8ED75513EB2B6C642E'), 'wp-content/plugins/jetpack/css/dashboard-widget.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFA496ABCC8C2A909F90F88D99E7EF62')),
(UNHEX('9F3E0ED18C84FDA1BE6AB4F779DF1044'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B47BB0821BD7C03C50735C32941C9958')),
(UNHEX('78B74CBC547CC228D9ACD26E960A5888'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51686C43780FF6CCCDABB11F9C68DA4F')),
(UNHEX('E9202F22E9337A492535275DBB564FC7'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('87BC4BBC5E32E34F376A7879BEB3569E'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C5B5E26C177F3C84438E77F6420FC003')),
(UNHEX('6B5F61E18A1384EAE3268F4185CECB72'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0350714C29B93F9D1C2D9CD08CF25A2B')),
(UNHEX('A6AE9874491D04725149A28002476502'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CFF3C6C19F26F2EE702385719F0B062')),
(UNHEX('6CC6A49C69425309902650B849F35EF7'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('43C85BFE256100843852A446CBA357A3'), 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C087CAB156620926E3144A30AEE89D61')),
(UNHEX('D9C2F127003BA530248C70BDC9DDA8AC'), 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0ED912556962AE735E88E63194E89BE2')),
(UNHEX('03E02B913D53F1C5F1820340CD135A60'), 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CE4FCD361143D08574252B4027A4789')),
(UNHEX('EAD2B87019BE4742DD3D6F5C93B8B4BC'), 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('E77C58A282944B8182FFAB7A6E3E1153'), 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9FEF6AFF2028CDC322FBBF80852E860B')),
(UNHEX('A4544EDA0E856300FC0C3D919FA69A6E'), 'wp-content/plugins/jetpack/css/jetpack-admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29FDD6327A6E2D59430A185749E7BB92')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('E5C4779926FFDACD79D1EA991A070B52'), 'wp-content/plugins/jetpack/css/jetpack-admin.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21DB702B1CE0A4FBC0A6A742FEDB9972')),
(UNHEX('E2789AAB6382211DA66D18438C0B711C'), 'wp-content/plugins/jetpack/css/jetpack-admin.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('4835E794D95E2FE0510E1B65E8E0894B'), 'wp-content/plugins/jetpack/css/jetpack-admin.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FCDDDB40CAF7451B9F9F0A632A3BFC59')),
(UNHEX('88FAFC4D2413D172E4BB323278FFE538'), 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('77A379FA340CAB7837B8A732A7F3B639')),
(UNHEX('A78D046243E1620B1B40CE0A258D36EC'), 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70CAC58321534065EDA8671153181D32')),
(UNHEX('FC339C7F70099481EB873E93E8375D56'), 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('4DE00940DB2F9594A1E72D5F177D11A2'), 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B48DFD57B11544E694F46C396079B558')),
(UNHEX('A40A802A09D1B956217937D6597868E9'), 'wp-content/plugins/jetpack/css/jetpack-banners.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F6ADECB9FC9C95DB89461BDB09E99AC5')),
(UNHEX('9CFCBF374F5BD3B8A583D447A90D67D6'), 'wp-content/plugins/jetpack/css/jetpack-banners.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68AB22FEBE92F17C6C04D0CFC780E240')),
(UNHEX('698BB1716B941711EA1B0913F8E341D1'), 'wp-content/plugins/jetpack/css/jetpack-banners.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('92ED336A6B89C7E248CD1FF6484283FE'), 'wp-content/plugins/jetpack/css/jetpack-banners.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F1E6B6E931591F0756EEFF0328BAF05F')),
(UNHEX('13AAD40ABD3D2A3D16AE23020D424CA6'), 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10F35A0437088636E50E58302AB39ED7')),
(UNHEX('64A87413F633C59B0F667960D73EBD09'), 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38AD8FE82C28B3A85A89E0C24913F609')),
(UNHEX('AA6FBC481233EF0AEAEF80033715EC7A'), 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('5576425042BAE9A3E1BCC28BBF32DC06'), 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B170AF62591A888AE10C4F42144E24B')),
(UNHEX('7EA3597A4239ECE0B255E2C91C9C1933'), 'wp-content/plugins/jetpack/css/jetpack-icons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EACED25084D73B0B27B77E97811ACEBB')),
(UNHEX('ED3225DAB9EA0885D80B3E964A39088B'), 'wp-content/plugins/jetpack/css/jetpack-icons.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA0E4308D8996CFCE86C259B1CD21D70')),
(UNHEX('D384EE4EA7AE3405D18AB496C792C0FC'), 'wp-content/plugins/jetpack/css/jetpack-icons.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('B757E1141D0762CA1BB17327F266E4CA'), 'wp-content/plugins/jetpack/css/jetpack-icons.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B170AF62591A888AE10C4F42144E24B')),
(UNHEX('CF96B960B66B7844E62FA38427D33FE7'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD12863AFA247682B1C12D9FA1DBED78')),
(UNHEX('C071BE9F8E467CCED82CDAA9E8CF07B0'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1DE16AAA60C3D86FACC8E1FAB48AFA1')),
(UNHEX('248B64C548F2509B8B00EBFF7EA71670'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('89C357EF90FD57D7B1E01D83CDC63E93'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A746DE32BC20433285569BACC07BCC01')),
(UNHEX('B544FFB2023D038AEB042324C7CFD38B'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('226F6B58D1CBF4D92640C0724833EDA7')),
(UNHEX('D504BA83D4D42DE6FA31B977F3F23C63'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4FF9DEA5DDAD430FBF7ED74D635E829')),
(UNHEX('5FD7B9D6688D7646C22AAB24AECEA8CE'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('DBDAB43DC5E48FA6716019B5FB9BD69D'), 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A746DE32BC20433285569BACC07BCC01')),
(UNHEX('E2C8FCEA8E3CD0E2243DF925E959577E'), 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('953ED2AF8867109D2425A6149980BADD')),
(UNHEX('4863F3004B014A023276478CB0B70E30'), 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8ADD6377B548209A8E92D2762493E89B')),
(UNHEX('9D9BA8B9EE1633D0A5584BAB10C1C363'), 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('5A06ADCFB98DA3CA387F8685A9D57C00'), 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8911F3BC407BAF1C4EE0C57D18CC4F3F')),
(UNHEX('8D5E0B373012BBFE52A4E28D653D9A2B'), 'wp-content/plugins/jetpack/css/jetpack-idc.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC7321203DC914E3F36C072BF5D525B8')),
(UNHEX('1AC175056FC64EE1257FF36625F1B97D'), 'wp-content/plugins/jetpack/css/jetpack-idc.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09D44B45569FD5258D2A172F88C5D1D3')),
(UNHEX('EDD8DC1016082706852A501FE19B191E'), 'wp-content/plugins/jetpack/css/jetpack-idc.css.min.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('F7385484975EF75BADA681F74AC92481'), 'wp-content/plugins/jetpack/css/jetpack-idc.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('127D144B71B1867D8A2A6346C39B6F56')),
(UNHEX('C4337E0AD06EB2DC6646A2A780D3C0EC'), 'wp-content/plugins/jetpack/css/jetpack-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('02E3EBF5F35B62EA0EED75315BCB4958')),
(UNHEX('09BF2F2DB14F87810CF41E6397A074CC'), 'wp-content/plugins/jetpack/css/jetpack.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('994C9B4F42601A8B4E2EA1E4D0F34378')),
(UNHEX('CC14443F9EDFBA8EC65743F3A87F91A6'), 'wp-content/plugins/jetpack/functions.compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('790756B00A149CCC10233D11870337F2')),
(UNHEX('58EEF2682114B1B3A7FCC36284319C5F'), 'wp-content/plugins/jetpack/functions.gallery.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9A6FE9E85C00EA2A60DFE2B889A6C47')),
(UNHEX('4942680CA2D310FC69EA2755A85211A3'), 'wp-content/plugins/jetpack/functions.global.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAA019EA6E2B8DB27503D63D2BFD4960')),
(UNHEX('0DCA021C39488487F09A6E6D73C819E4'), 'wp-content/plugins/jetpack/functions.opengraph.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D6D523416F67C4CFE4E816A15C4A695')),
(UNHEX('F2840DAC508766E4AF4EC7949CF96F5E'), 'wp-content/plugins/jetpack/functions.photon.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2836AAAFDF1FBC95C8F4764C4AB8BBF9')),
(UNHEX('9EDE22AA3B4EF2558A76883D3BC057BC'), 'wp-content/plugins/jetpack/images/apps/triple-devices.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C41930F5FCE9E2C6CE7122A922EC50E2')),
(UNHEX('14E8D2D1BC9AD0E93904E4C9D5F53C39'), 'wp-content/plugins/jetpack/images/aurora-lrg.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C66C4C343BE1745282CC178A9C3585B8')),
(UNHEX('00F7E5C23625C935B88E0D7E4D5C99EE'), 'wp-content/plugins/jetpack/images/aurora-med.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95D6990854FCE152A5B4B9CB6CECF05A')),
(UNHEX('58B3A0DC5DB3E410311D815290DEB4C2'), 'wp-content/plugins/jetpack/images/aurora-sm.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('506B4A883FC99D8E3674BF351BA675DE')),
(UNHEX('F64F6E59A84DC4356BA09C34CE7BD59D'), 'wp-content/plugins/jetpack/images/connect-plug.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B481A35DFA9ACF7756D8D081D7E430B0')),
(UNHEX('DF6298D0DBF08ECCE6DEA071FA71B5D7'), 'wp-content/plugins/jetpack/images/feature-photon-lrg.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AB5C1A220EC96D67484EEBD5B693A64')),
(UNHEX('2E4A7EE4A83C4EB3D1C90332EB523271'), 'wp-content/plugins/jetpack/images/feature-photon-med.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('524F96746152C01F0DBA76729AC98A96')),
(UNHEX('86A2127280ECB9E5382B3BF809866BFF'), 'wp-content/plugins/jetpack/images/feature-photon-sm.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27BA279FA2DBF030DF47EA50824E22E9')),
(UNHEX('D3600617A429FC6D5B85461A4C04098C'), 'wp-content/plugins/jetpack/images/jetpack-icon.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAE45F613E5E8C268F231EAFF83291EE')),
(UNHEX('A34127FC671C99344967870030D5A3AB'), 'wp-content/plugins/jetpack/images/jetpack-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF250A8B98383756F6ACE8EAC79941A9')),
(UNHEX('5A6208EC5E52D2C10EE03E45809E6A65'), 'wp-content/plugins/jetpack/images/jetpack-logo.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC4C7DF933B8A86E2055DC49FE8083E1')),
(UNHEX('C3494D29211F610C7DC6B30C53310310'), 'wp-content/plugins/jetpack/images/long-clouds.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B94A0EFD50F1243C13A584D6EF802BB9')),
(UNHEX('6B725F9E3E58B90FB13F97C1ACD148A4'), 'wp-content/plugins/jetpack/images/plans/plan-jetpack-free.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('382755D91161A8B16C0AF17AB575FDB8')),
(UNHEX('6E28ABB6ABE15AF8F2165E824EB920A9'), 'wp-content/plugins/jetpack/images/plans/plan-jetpack-premium.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DB3B71351C837FCC1FA0DF99F37DC3E')),
(UNHEX('374CE3DE9879DB83479D4361997E1D79'), 'wp-content/plugins/jetpack/images/plans/plan-jetpack-pro.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('98822A8A60B2BCDF67711AB46DE328CB')),
(UNHEX('39D07796AD3534E48FD5E7945E06BB68'), 'wp-content/plugins/jetpack/images/rss/blue-large.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB41F460DA3B696F7CB595D7755E657C')),
(UNHEX('FD77C4A22B7DC06475F1DFB3B057332D'), 'wp-content/plugins/jetpack/images/rss/blue-medium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2E15254E2C21DD2243AE18FC4CB9711')),
(UNHEX('A61100AD6D81511848DF52FDC12200F4'), 'wp-content/plugins/jetpack/images/rss/blue-small.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('958AAED0315C8EC63A032B7594E9D5E7')),
(UNHEX('0BA73E7670D1753969B5007F572A5639'), 'wp-content/plugins/jetpack/images/rss/green-large.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AECE8230E060E88721C536BA2BD84C64')),
(UNHEX('08DEDD8C14AFBB40F30CB7F94C3001AE'), 'wp-content/plugins/jetpack/images/rss/green-medium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8659961A82FCF22666E740E8404E8D2')),
(UNHEX('19969B1B70A1B7FF448E7CBD3B03CC50'), 'wp-content/plugins/jetpack/images/rss/green-small.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21D36F515D11776E9DA222B3943BBCCE')),
(UNHEX('EB8499C5474B46617DAB231EAAB93850'), 'wp-content/plugins/jetpack/images/rss/orange-large.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB9C2112FED027B475648A4C747B1C62')),
(UNHEX('CF35ABBD47CC3B2EB0B81A408DC14385'), 'wp-content/plugins/jetpack/images/rss/orange-medium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C8808C9D3C5DE07898548F92D993FEC')),
(UNHEX('ACE451CB14506A846ABFBEDDBF989722'), 'wp-content/plugins/jetpack/images/rss/orange-small.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2003A2B667CE6594AF0F86D16CF8CAAD')),
(UNHEX('008BC02AE1401C6602F9D9BA64AC6B75'), 'wp-content/plugins/jetpack/images/rss/pink-large.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA39A2DD6AA2EFD67FD694631A297FEB')),
(UNHEX('5567E4BF2A3039DA7086F0014345ED66'), 'wp-content/plugins/jetpack/images/rss/pink-medium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('546BFD0ABEC2D471FD0E41213D10456F')),
(UNHEX('6A551DF6DB861383C9869638FFB57CA3'), 'wp-content/plugins/jetpack/images/rss/pink-small.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F1D6F762D0BC9A33A2160C4F8C23D90F')),
(UNHEX('319B8B4101E01E127DFF012497477D7A'), 'wp-content/plugins/jetpack/images/rss/purple-large.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('733C1B4F56E678C0E8CE257040294759')),
(UNHEX('35CBAFC2179F5903DB6B0DF2B4A9B0EE'), 'wp-content/plugins/jetpack/images/rss/purple-medium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F0554AD8C7FD177057563357234F025')),
(UNHEX('CA1A11D9866C672D6C9BC6ABFCA2EAF8'), 'wp-content/plugins/jetpack/images/rss/purple-small.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('577288F5A98B18B655B3BE8202740917')),
(UNHEX('7A364889EE3ECFDB7E9AD25A13909E5E'), 'wp-content/plugins/jetpack/images/rss/red-large.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB50FC35AA5E5004D6E4C586715A92D6')),
(UNHEX('9C175AD8F9EB312A95220C72D8D8E6DC'), 'wp-content/plugins/jetpack/images/rss/red-medium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA83728D083806AA9F1845A1E79042A3')),
(UNHEX('9284C7FB05EF59113742E56DA5266CC9'), 'wp-content/plugins/jetpack/images/rss/red-small.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5470427A9F02B562F613DB1259A0F88')),
(UNHEX('B80262AA55262F594EE408CF9962DFFA'), 'wp-content/plugins/jetpack/images/rss/silver-large.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B85441C09E9547023DBF1B91BA068CE')),
(UNHEX('8AC6ACA398D40CC17046080973CDB0DE'), 'wp-content/plugins/jetpack/images/rss/silver-medium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('02D32583A6A9FFC8540917EE765C4580')),
(UNHEX('BB03BD355FE5AB9898C7B21198935086'), 'wp-content/plugins/jetpack/images/rss/silver-small.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('30237B6A459A771682BA8EB25D3662AF')),
(UNHEX('EE4BF1A220E74CC9543381267AF0085F'), 'wp-content/plugins/jetpack/images/stars-left.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2E81E668792E164B3281D069C9769E8A')),
(UNHEX('ACE5B83E289292515A70936340D034F1'), 'wp-content/plugins/jetpack/images/stars-right.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E06323C2585C173B2BA7517F64B37FE5')),
(UNHEX('8F754664A46D621FCC5971FDE89B8E2E'), 'wp-content/plugins/jetpack/images/stat-bars.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24CF62AB8F147D1EFF9E8561617B2A77')),
(UNHEX('BDFE8512467CF0B85F6B320F6584DA21'), 'wp-content/plugins/jetpack/images/stats-example-lrg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE1B1A02B274AEA92393D9861231F290')),
(UNHEX('5F6CD60FCD45202D20AB8160E6912E99'), 'wp-content/plugins/jetpack/images/stats-example-med.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F028D00CB345C6B560EC4918161DF35D')),
(UNHEX('37F8463E8A622A928447D2F60DC866C7'), 'wp-content/plugins/jetpack/images/stats-example-sm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33DDAEB55A5064B9440A0DF559E77E58')),
(UNHEX('4D555008F849AE2BBA7D1212B5B28A8C'), 'wp-content/plugins/jetpack/images/stats-smiley.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E4D673A55C5656F19EF81563FB10884C')),
(UNHEX('4E438F1F11DE217483468E124EB710CC'), 'wp-content/plugins/jetpack/images/stats.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F02FEEEF4A7089DED7B5B7CCDB6D45CC')),
(UNHEX('C10632020DF69B319F96F797EE98AC0A'), 'wp-content/plugins/jetpack/images/white-clouds-reverse.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C42369F3A94507FAEAADE0A0B328C82')),
(UNHEX('45A7074E790D529E76BC0799E1D8BF28'), 'wp-content/plugins/jetpack/images/white-clouds.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D4D2427111DC9E1A3EA3E2C6443A118')),
(UNHEX('4AB2A4097A4133DCCABE298FC19CBC59'), 'wp-content/plugins/jetpack/jetpack.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E9FC56193731A9E34FC1DC5705A73C32')),
(UNHEX('AC0E0777A0493D8E27003B2D3869CB27'), 'wp-content/plugins/jetpack/json-api-config.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FEAA6519E44A91E9397EC2CAF163211A')),
(UNHEX('99A3BF08F1EADC39AFBD5DAE693646C5'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-autosave-post-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9633766309360CC697B84B0561A5704F')),
(UNHEX('1186654080BB0EDE3B3F83683B29057C'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-comment-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDA1375D5B0F8065A49E864A7BD1CC39')),
(UNHEX('18D1DDAD31784E6570665DA84501E319'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70EBB854597DD5B2FCBF5D9B519FBB1B')),
(UNHEX('8FE6547AB922D3757426E75CD199CC84'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7A125FD819D612E36C357586320E46A')),
(UNHEX('E6153890C2CAA1BFD986B53FB87271BD'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C5CBCFE4799BF6DC612B523F4930BB74')),
(UNHEX('DC721C953E3E929B2FC267B4500816D7'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-autosave-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BC612DEA87D3D081717C9304BBCA01C')),
(UNHEX('AF00A4D36852EDEDBB18D60A0910CEC6'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2A5E03295121DAFB7A956A776549699')),
(UNHEX('288D22BBF604DC6E9FFCC84845E7BCDA'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-customcss.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F1F740B29F18EEBFA94B23D0B1D2691')),
(UNHEX('4619476EDB7FFF2420AB2DF64734B373'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F98C46BB343E13BF44A98A9F509CECB6')),
(UNHEX('E14C47D9B54E3F1D645D607F50CC1A8F'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB84A6A0A80F1D3598302992C5ACE52E')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('FC571ECF32D8276B4E48C8C6071AB1FE'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-2-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F28A2E6937901BE866E0FCB54AADA3F')),
(UNHEX('31006684E4A5D2A0308FF71E815643D8'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A25B8E35E9A3A823EAE2647F965B116')),
(UNHEX('09F3B4AF4E6460ADEEF918902E3953F6'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22A49C6BE1C432E0ED68B79B501A253D')),
(UNHEX('9F496225A482075E827DC79CB49C7F1C'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('890CFAF1918C96872E15EF55CE9C97AF')),
(UNHEX('B505A20884A75265AD3000E6F7A06ECF'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7CA783E4168D73EA25CE8053230E72B')),
(UNHEX('B514174771D9268639247D899939BA0C'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-v1-2-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB5C69EE1B763791D7EA3D637532AAEF')),
(UNHEX('F416900345C7B5A4758015D8109DC643'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomies-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73B86AF04340E22EF1F64A5071692BD0')),
(UNHEX('768788C08E3AC37FBB70426811F8C732'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8A47B75D9ADE211B6ECC1DDB5DC07FA')),
(UNHEX('B354AD06D4FE7C34689300D328E068CF'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-term-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26076F048850BF885AE3D54024E04600')),
(UNHEX('9F0EF79E6271179AD39328D0033DE7C6'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-comments-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('488F80B0BFF1A1906CAFF611F336C899')),
(UNHEX('740BA91EED74E2BD6CE5554D3F2693CB'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-embeds-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D57A4536677D73A394CDE93C8144513E')),
(UNHEX('124C5C642A7285976F664E205A0935CC'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-invites-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6218FE2DCEC0C5B4CFF376F147F2E3C5')),
(UNHEX('B39D7C1885EB56B783E4AE37478FF3A8'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9B0575CE1A2067CFC3A315DA06FE470')),
(UNHEX('4AE6919C42871ACED587F9D9E5BCB762'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BB2A8E695D266A066083E90C92E826A')),
(UNHEX('35399CE8A24E9BB59FDEA4DD5AE360CE'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97D74AEB999ADF63068F25EA4FE18A9D')),
(UNHEX('01AD2DBBBF0599C8B0618E43808DEBEA'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('43CA88A211ACBDA0E0F9AE0057AE8701')),
(UNHEX('BB227A3C2248270196D9715238458B3C'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38B046C5A7C35214F2748E7A98CB8E56')),
(UNHEX('EB7AE10F81EEEC050FE0B9E0855DF6DD'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3FAE431E9B418BF62C83C5852190986')),
(UNHEX('CB51A9B6FD9B75ADD1200B9E4964EFF5'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-roles-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E87143198AF7CBB355B53B518275829A')),
(UNHEX('41145CE35BC501A1995E6AA9EA7A8AB4'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-shortcodes-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('332C87CF66254DFD3594283B384924AB')),
(UNHEX('C25FCF797FF0B229C0248A4A1314A640'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-terms-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE5BAB2D0C38C0CEBB986E0708E56E43')),
(UNHEX('296E072ABF526647B02332B61BE83C95'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-users-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01519DD0C985CDACD8F038FC698FFDBF')),
(UNHEX('78A6E39C2D04AAE2D06686B4D7FB56B0'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-menus-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A46818415EA5B0C60525A51EC9E6F8C')),
(UNHEX('11F472CE95F80871E781EF55B0A27073'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8409C3BABD443558F4DC73F53AB6DBD')),
(UNHEX('3BD84F16E7B08F75A0E8AED09C47CEE8'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A0BF81C0DE684F86DFF3A2B80C4CD74')),
(UNHEX('3EF94D1A089FCFE600CA5CADD8B769A7'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-publicize-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C848E76BDF781C98C197510A658750B')),
(UNHEX('4C143550A472AF40D2693B0BB3A18687'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('30EED92C428E4DA144E365E4BDC9A57E')),
(UNHEX('D89E4A21C39F38B540E6466EB4DC598B'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-reversal-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45A6ED73B9464472A3C3EAB74624798D')),
(UNHEX('9D80644BD6B19D77385681D146EAD258'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B45099F7D3686A44ED4D3260BE19D3D')),
(UNHEX('F198FED95633D1E5102A458B6757812B'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-shortcode-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3EF67E027089FD7BC63B4CA90367EBEF')),
(UNHEX('B8BBB53E79836029500B7399EE3B04FD'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-sharing-buttons-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F13C6D5C0FDB2879E13B60B39A06B06')),
(UNHEX('03D815FD6F2E188950E1F4F37E58037D'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F30DC606665F8EDFFBF50F30C723CBE2')),
(UNHEX('1154D366EB2EFDBE6FF7FB12CA77BD92'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-2-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF1074D13177ABDC18153C116047BD04')),
(UNHEX('4825C3C4D2B94CE7A065B9C210927237'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-user-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('754B5F5C0F789E26AAAD54B25E91C6BD')),
(UNHEX('5FC5239B23AA38E0F36524AB2642E7BC'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-taxonomy-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAA3FC29EC1034C0196331A4D5E5C579')),
(UNHEX('00BCC2476D804DE8AC81DC01A7791160'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-comment-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7A5BDED631BB24347A625BF079782C1')),
(UNHEX('E7C90DDE02D39EA639DB04F0311AB555'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-customcss.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1BE9B2BD6C70130C0E310DD5F94A6985')),
(UNHEX('239D178D853EAD8B5BADE91AB86EBBD9'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-invites-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3788BA0A3A5B7CEA52DDB75E83360CC')),
(UNHEX('5A13324806D43E97716991C43625FF4F'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('316DA3B9BE68FC74448FD78FEB312574')),
(UNHEX('A5760213EB8D7959CD246D20F4F61735'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('934F773A386F2A665D2BA6BA060CAD44')),
(UNHEX('C49BFDBBA8AFCE8DED6671D2169B3AD7'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BEA43422F3973ACD181140D72477AF2')),
(UNHEX('2D0F6601A60FE8239EED7F4C0BECD577'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('481B7B9142119708EA80E9CA594B8138')),
(UNHEX('FEFC3E1209678421B4A911DCD92D2DE7'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55C3511D2CB7F9526D53AE09C7601909')),
(UNHEX('E9D2712E293B9A5F53A05D9336587FB1'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('543A67E03F425752D039FCF856312132')),
(UNHEX('E0E9F7E55905ACEE0E98610AB591076C'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6E9EFB19D925F69797B8876CD879939')),
(UNHEX('DF26073133559E8094474395B398FD0B'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-user-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('62B5937C86761CD3173D6E723C22009F')),
(UNHEX('9F5B9046B6CBC650218E458F9B65691C'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FAD1B90DCC67F1F3005BAA86B4EA2E14')),
(UNHEX('D0CA3A92765FC3CD989698B282C74F6F'), 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-v1-1-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68A0CDE58F2D90F47944CC267561BE69')),
(UNHEX('227139B10309EBBE3D270E990812E691'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-check-capabilities-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('484605F56C2ACBDD756305A51C3721BF')),
(UNHEX('81681468213E4C4322EF6ED183079CCE'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86FD7B49D355FB274892DBD2A6530B6A')),
(UNHEX('4DAE4DCA6EC6DF8ECB43510BA629F915'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-modify-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C51BABCE5527798AF7EE6C07ADF48EDF')),
(UNHEX('7053D520EC928FC6ABDFBEF0D7985211'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('111D3DA68ACC034964B92DA9B52FB9EA')),
(UNHEX('33EF688D3672F8AF9A2800C09A1F6ED2'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38E1B61B40F7632C6726AA7F69DE480F')),
(UNHEX('70C358D85C7414A5BFBCEA450F5BBA55'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-post-backup-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('554A4FB3B645B5C1262A9040ACD90038')),
(UNHEX('7870F5A1A09F5C44EECE65A5225C3337'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-log-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F6AD24AB8E25922DDD5E4E0CFE0A74D')),
(UNHEX('B2ED04A6FE5D766E958C43B9613B0720'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-maybe-auto-update-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F952EC255078C1C2523EB3044F2E30FC')),
(UNHEX('72D29CB2ED553C4C32562A4ED2168209'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('612CABFC46686EA409A32AB0A39515B8')),
(UNHEX('B7736E26ECFB3B62D303B9FE21B0709E'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-get-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1C70E8B57D665CE7C7E48F62A9D49CA')),
(UNHEX('62F8B846B683665D908E1257E84735B4'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-list-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FB406BC70CFE330E70CB1B620E41E7A')),
(UNHEX('D94A05F7E1C9F62BDEF36A16AB5A3124'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-modify-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19F57E52BABC040AE6CDECC996A7295D')),
(UNHEX('3A955F9E95EDA69BFEE0307AD87FCE5E'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-delete-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('98D43AAEAE2C122F2F4379997E9D1501')),
(UNHEX('BB2946F003134ECC8621338B20A848C7'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0608144C365C5F189F4BED273E8777E')),
(UNHEX('3D8BFB5E387C7FA04DA87CB2939380C0'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8BC4B31A1F44318499168F04A02A6E5')),
(UNHEX('16C11A97E3DD005B2C2B014CB629256E'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-install-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41CE298704C786BA0C79F046854A7640')),
(UNHEX('04A4192E5F8A2AF877DB61C8D9B789D8'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-list-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0FD918D5FA38C1BA8CEF7C50EAB479BD')),
(UNHEX('FBB1E7C7C4367AE73E9EFF54701E22FE'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83E61216DA3FF39815C515F298D4FF1A')),
(UNHEX('2649C85CE8FFBD670EF8F18A6916EC29'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-new-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65F94F8AE0EA120BDCBE9582F507F76F')),
(UNHEX('A87AEC2A5D17389B4D408F32F9DC6593'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A831CCF18787478473C64C7FD2A14710')),
(UNHEX('4DDD7778DDE60729A1F46012AFA9B8F3'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-active-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F573B49914C0257C6C5C204D3C9F5F9A')),
(UNHEX('524AB4692DE94F8E0F4AF28F82A0BDCC'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-delete-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('435599ED712BB98653EDBB00A75A042A')),
(UNHEX('9E10425F3A64701F3F8C17D52B05CD54'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E45DAE4B74D019DA0FD7635A8B120B4')),
(UNHEX('03D3DD2AD55B50E66C7CE5365B4F4199'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C96BC3B296A2310D365E1725D9B3C504')),
(UNHEX('0979A81BFC690B53BB64D06B94F92834'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0180FB0F5594A628E550CFC88E2C57EF')),
(UNHEX('F007A5DDFCC9C965C2DBAE6EB99D033E'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25D0BF55DB7378A28F6FD061DBE1A845')),
(UNHEX('023835924F09E7D5A10827C033185AD2'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DA463E9342EC09C26E2BAB8E2CDDCE0')),
(UNHEX('C3C79F51653E0387F9C738920F87F392'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-new-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53B6957B26139320AA7F38D4F8235CAD')),
(UNHEX('0172F1A682361FB2CF92BC2F93FE68E1'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('87EA7757352075BCBA747FCCA7933C1E')),
(UNHEX('11398A810D206C73AB451F7D13D99456'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-modify-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C1ABB13730788F2E26394D7F22B5D2F')),
(UNHEX('2C0475E841026BE715E6371F6F38DFF5'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-updates-status-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('176A30329574F95414FE3171F99ECE4B')),
(UNHEX('817FA2040123FE1A4937092D5894E28F'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E57E25B6BBEA075E2C42A33707F7B105')),
(UNHEX('8BF4F522B65DBBA28F5557FC065CEE16'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-update-option-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5142B781C268C0597659F11771FCC71')),
(UNHEX('8B3A81C6D1367F965D039447B8D5D48A'), 'wp-content/plugins/jetpack/json-endpoints/jetpack/json-api-jetpack-endpoints.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91BDB3341A7AE949F23D83550768DAD1')),
(UNHEX('14080058797906C4AAD1DEC9ADE9C321'), 'wp-content/plugins/jetpack/json-endpoints.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDA7718CC9A44522D16216DE4C4C9A97')),
(UNHEX('B3F76ED9655227C7449E4CF91388DB58'), 'wp-content/plugins/jetpack/languages/jetpack-af.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6615D499BB4E9D758E35D947A20D4840')),
(UNHEX('657FFB539D68B21523C51B6CF312991F'), 'wp-content/plugins/jetpack/languages/jetpack-ary.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0723B3D92B50322346A6874232534069')),
(UNHEX('1638F8173C69A4C0DBBFB372DEB712CA'), 'wp-content/plugins/jetpack/languages/jetpack-az.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82F5380F6A108D1A0F1D66EE39FF644C')),
(UNHEX('8CE4515CD8EB4B6CB4C1BE2FCBAC7170'), 'wp-content/plugins/jetpack/languages/jetpack-bg_BG.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('957EEBF15F7DA75B526E4BD4F8577275')),
(UNHEX('AA001E433CE2FE073E35468A080E72C9'), 'wp-content/plugins/jetpack/languages/jetpack-bs_BA.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A30D4E0B62DBDE8721385385C234C2F4')),
(UNHEX('FAA9A8737D20CE6FD2212C59EF032809'), 'wp-content/plugins/jetpack/languages/jetpack-ca.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2DF82EB33BB5C020B405CA62F2F3178D')),
(UNHEX('391A781BADEB0460D1D79BA699907457'), 'wp-content/plugins/jetpack/languages/jetpack-ckb.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3591FD5448AA7C6C67C3621E1B1E038')),
(UNHEX('0FE55A3EA7141ACE176D71E7DB567210'), 'wp-content/plugins/jetpack/languages/jetpack-cs_CZ.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B693E777275375310B95C49F37237FE5')),
(UNHEX('6AE390D9443CD44AEAA44594818CACF7'), 'wp-content/plugins/jetpack/languages/jetpack-cy.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('300D10952D7342DE90A7CE327A3E40CC')),
(UNHEX('914C97352B1E5BCDE39EC02A872CFB16'), 'wp-content/plugins/jetpack/languages/jetpack-da_DK.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1852E9E384927FD59500D7185EA2E035')),
(UNHEX('7A973361E28EB5A9B9F99667825DC119'), 'wp-content/plugins/jetpack/languages/jetpack-gd.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D18F4916374582E4B7187BFD42992B6E')),
(UNHEX('8CC4F63E57E5C73FA1D4B1BB2A66786A'), 'wp-content/plugins/jetpack/languages/jetpack-gl_ES.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('791C9D5EB6718BE7DAC56B65881F4616')),
(UNHEX('346AD038B02A4F24780F2D4D6B295B18'), 'wp-content/plugins/jetpack/languages/jetpack-hu_HU.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F9E29100848553F25620F912148B64F')),
(UNHEX('4E7888949A26C71DB9F71EF6FD5C1909'), 'wp-content/plugins/jetpack/languages/jetpack-is_IS.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('31F913A7EE335ECDC046B33419675E20')),
(UNHEX('81AE3F6BC0DF504AAA5D51A38EB77C7B'), 'wp-content/plugins/jetpack/languages/jetpack-ka_GE.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17D32F376324A7C43DCB25C4E2C3C4E8')),
(UNHEX('2695719285B8AB938110BE9A8622B0C2'), 'wp-content/plugins/jetpack/languages/jetpack-lt_LT.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6A315DF38DEDA5DCB23C3BAA6F6D250')),
(UNHEX('9EE3CD6823CFE3ADB59FE974F7A08A1A'), 'wp-content/plugins/jetpack/languages/jetpack-lv.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53BE4783637E606306701E29F9EE3C2F')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('6087C152958B574BB8DFC1F9F5D9BC40'), 'wp-content/plugins/jetpack/languages/jetpack-mk_MK.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('743F90FC144705365F0CA12542703334')),
(UNHEX('B54933069DB7BD929E1D62409641F5A0'), 'wp-content/plugins/jetpack/languages/jetpack-ms_MY.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('567AFB8C8633E260067A30751C771DE4')),
(UNHEX('346BBDC9496340617E7D6AF1E77722D7'), 'wp-content/plugins/jetpack/languages/jetpack-my_MM.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82FB5DE3106F8DC3A0416320D7EBE9B7')),
(UNHEX('6657B04105EB51FAA466B350D1A199D3'), 'wp-content/plugins/jetpack/languages/jetpack-nb_NO.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDD84F30EA40995AA71BA8CB1E8B97BC')),
(UNHEX('73F006B3B4784E11F0CFB31F1C558000'), 'wp-content/plugins/jetpack/languages/jetpack-nn_NO.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10AE88DA2DB2841AEAA45332E21D2F8E')),
(UNHEX('0A9E90AD932BFD727BC385F077B9F610'), 'wp-content/plugins/jetpack/languages/jetpack-pl_PL.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E759E03C406946F3D6F230316B61EE57')),
(UNHEX('984C5D828037D73E96DCF4DB39E644EB'), 'wp-content/plugins/jetpack/languages/jetpack-pt_PT.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EAAF1F690787B37A5DDC708E95C2AAD6')),
(UNHEX('65A0C35E1C5E53FCADD0A016256A9E36'), 'wp-content/plugins/jetpack/languages/jetpack-sa_IN.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F70B542C78F8FDE59D172DC8FDD56C9')),
(UNHEX('4DE3152C25519D6C1CC7073271C33A5D'), 'wp-content/plugins/jetpack/languages/jetpack-si_LK.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('794376DFFEE799CE96E7A4C570F0A800')),
(UNHEX('6ECE78155F41A80C0964DC52E4632385'), 'wp-content/plugins/jetpack/languages/jetpack-sk_SK.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BDA3C6BB21A64F47B2DA6406A174DAE')),
(UNHEX('FCC3ABBEAF770A86DC1734F02D6131D3'), 'wp-content/plugins/jetpack/languages/jetpack-sl_SI.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69945785EF52B88B857873A77C581C5C')),
(UNHEX('9F72689B05E58CD9649FD9110FAEEF5B'), 'wp-content/plugins/jetpack/languages/jetpack-sr_RS.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4022510ABE463CED6F29A55001280A9')),
(UNHEX('C6F01E54A7900CB7E9BE2E25F55C90F7'), 'wp-content/plugins/jetpack/languages/jetpack-te.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AD5B34ACB8E35EF1CF2D54CA876C400C')),
(UNHEX('DA5E01EC5B74BE1F06B827F2F319A39D'), 'wp-content/plugins/jetpack/languages/jetpack-th.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86E5EE5BD4831D2120B0B29FA310D9AE')),
(UNHEX('DE075F41C54AEB26A65B9838FFC82ACA'), 'wp-content/plugins/jetpack/languages/jetpack-uk.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('98748CB68A246BCF0CE7EE52EBE53185')),
(UNHEX('3F8C8D4B2B62971D662ADC9F1C192B0A'), 'wp-content/plugins/jetpack/languages/jetpack-ur.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('705F51BA287581AFC384F7F545C16793')),
(UNHEX('D1FA22A8A99E0C9522C758E59AC282C7'), 'wp-content/plugins/jetpack/languages/jetpack-vi.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('08D25A6807317D89DCE5D50E2A793C7F')),
(UNHEX('2EE924D57ADDE355CF53F622060EDCEE'), 'wp-content/plugins/jetpack/languages/json/jetpack-af.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0B854F4979AE510C822619C2614857E3')),
(UNHEX('07D4F658542A5B3071B956169053D9C6'), 'wp-content/plugins/jetpack/languages/json/jetpack-ar.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6357010A264A0A0D842246CB07A6516')),
(UNHEX('B76658B5B8448497D4BE6035617209C9'), 'wp-content/plugins/jetpack/languages/json/jetpack-ary.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7273461ABAE43A243C4070A942E170BD')),
(UNHEX('E7AA194AC7519F863404FB12A562B2FF'), 'wp-content/plugins/jetpack/languages/json/jetpack-az.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9581DFAD615F928008CB9744C75B888D')),
(UNHEX('4CB5AA22736CD86E0757B7215253F7B1'), 'wp-content/plugins/jetpack/languages/json/jetpack-bg_BG.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9F9F3C0AE1B9CE3B9A2B4D082A66197')),
(UNHEX('C416A519D71700B2C2CEE7E5D09FD667'), 'wp-content/plugins/jetpack/languages/json/jetpack-bs_BA.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0EEB3B37B8F5687180B46098E337EB07')),
(UNHEX('0993C07C208470A8DC430D4B21466C57'), 'wp-content/plugins/jetpack/languages/json/jetpack-ca.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('79E040259390B07D00165C6105432A9C')),
(UNHEX('B54DDEB7D4BFE5A2ED05A6D0E010731D'), 'wp-content/plugins/jetpack/languages/json/jetpack-ckb.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FFA0978D3F0F79CBF6EBF53BF4B225EA')),
(UNHEX('AA99380D2893B40C39269226000947A5'), 'wp-content/plugins/jetpack/languages/json/jetpack-cs_CZ.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDDD1AE686F6AEB89338E3D059FF5A6B')),
(UNHEX('681D09FC752B82CF6A9AD62133C63D22'), 'wp-content/plugins/jetpack/languages/json/jetpack-cy.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2393BBAAC6FFF63A0A6BAE311E59096D')),
(UNHEX('2BDB6629EDCA1E6A431170F144367A2A'), 'wp-content/plugins/jetpack/languages/json/jetpack-da_DK.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B8881A3749024E5706C0F031FF57A16')),
(UNHEX('359C2BF63AAFF9A44CD58AE27E7E939D'), 'wp-content/plugins/jetpack/languages/json/jetpack-de_DE.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('093A200D53A114E6C58B6543798B1F56')),
(UNHEX('1DB5C358442E5D787AD75C24160780EB'), 'wp-content/plugins/jetpack/languages/json/jetpack-el.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E41FCCE144F25EFC67C034D3EACD384')),
(UNHEX('DAB0D501B0F75C7D1D767CA3C6B10FBA'), 'wp-content/plugins/jetpack/languages/json/jetpack-en_AU.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A18D2FA3DB826F6618A5C00F0463DEDA')),
(UNHEX('0B4B4302CC5EE63E46111E9EFCD33959'), 'wp-content/plugins/jetpack/languages/json/jetpack-en_CA.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3C0E8C0585537541BCE9646EB87C213')),
(UNHEX('532BE26CA9168ACC709F4E68D3596AEA'), 'wp-content/plugins/jetpack/languages/json/jetpack-en_NZ.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75308A9B3B929D8D2BB9C045C9D171B1')),
(UNHEX('2A1407CCA5C846CC6A3A22E579856E4E'), 'wp-content/plugins/jetpack/languages/json/jetpack-eo.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('717FED04006245E06EB4CB4EF8C80B58')),
(UNHEX('C8CEC765D63321ADF40A5E1540457910'), 'wp-content/plugins/jetpack/languages/json/jetpack-es_AR.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8900A429814793875CBFDDECAE11238F')),
(UNHEX('46ADC9C3AA9E34F108ED69BC0F2A0DF6'), 'wp-content/plugins/jetpack/languages/json/jetpack-es_CL.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DB29F1A60187348391087BEE6057762')),
(UNHEX('D610DB8C8716C30EEF4EE5443623DEA9'), 'wp-content/plugins/jetpack/languages/json/jetpack-es_ES.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9187A02D700FFE310A7C5D0605568179')),
(UNHEX('9E64280539A98CE1A45CA9EC75FE06AF'), 'wp-content/plugins/jetpack/languages/json/jetpack-es_VE.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8BB92A654DBFA24AD96FD24C0F039FC')),
(UNHEX('68B32675A5A0EFE98847DB25597F6808'), 'wp-content/plugins/jetpack/languages/json/jetpack-fa_IR.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E63FA16849E0C85AA5FA9006EDA8A7A0')),
(UNHEX('EB6B09647B99D97F8E04F9488E476BD2'), 'wp-content/plugins/jetpack/languages/json/jetpack-fi.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C8EEE236075E3EC0E1894F39F3D2695')),
(UNHEX('51AD023E21DEAE69089A3DBCEDE70D34'), 'wp-content/plugins/jetpack/languages/json/jetpack-fr_BE.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('77C1346E1F2BF4B79D07298071931CCF')),
(UNHEX('291416F507F3BAE050C0E2F13214F8DD'), 'wp-content/plugins/jetpack/languages/json/jetpack-fr_FR.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EBAF28DB6EA003A9620449720493C6FB')),
(UNHEX('B24BBEEE64BFC583A2AAC05CA5C035CF'), 'wp-content/plugins/jetpack/languages/json/jetpack-gd.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8558973651BA510274D15BC87D6C05A')),
(UNHEX('D9A8FB355FB2DD8B86C42496131C57FA'), 'wp-content/plugins/jetpack/languages/json/jetpack-gl_ES.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5BC6291176F7A656E1CDD63B5C15A5E9')),
(UNHEX('3AC5BC0008A1298AB4C7E26D55323C64'), 'wp-content/plugins/jetpack/languages/json/jetpack-he_IL.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C005D84ECB744BFF1707E359455F23AA')),
(UNHEX('3E85E2C927A3CDB69F2182182E38AF11'), 'wp-content/plugins/jetpack/languages/json/jetpack-hr.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('113D8DD8B24B4795B50A572E9A19288E')),
(UNHEX('DDAD9512A88C1C9A9494E5EBFB98812C'), 'wp-content/plugins/jetpack/languages/json/jetpack-hu_HU.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF20A250D00731EF50F3270FD8B8B320')),
(UNHEX('C1D7312247B6768CA821304A5BAAB05D'), 'wp-content/plugins/jetpack/languages/json/jetpack-id_ID.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9336B1E7C4E7464CE7F0E75C499E0647')),
(UNHEX('A993043CDAF3FB165BF2E5A029915F97'), 'wp-content/plugins/jetpack/languages/json/jetpack-is_IS.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('406B0A9797C54E2BCCF90431F2E54C33')),
(UNHEX('F14F4958981BBB1B8943BD07905F0FC5'), 'wp-content/plugins/jetpack/languages/json/jetpack-it_IT.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2568E18F8A219CFE60BBECEDB2148A7D')),
(UNHEX('95E4D10CB8A1F2E50F893071E9FF7FD9'), 'wp-content/plugins/jetpack/languages/json/jetpack-ja.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6B5D39DC0EE3B164344CF6F4B4E290B')),
(UNHEX('DF8A46E90AC6E44B7408F84749ECC534'), 'wp-content/plugins/jetpack/languages/json/jetpack-ka_GE.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA22F99A4E19082C5B4B65BE7BC0B39A')),
(UNHEX('D62B2F509E7FB9BABCE3B39570DB8359'), 'wp-content/plugins/jetpack/languages/json/jetpack-ko_KR.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6480509B4ED6E44D18CA534E0162C1F1')),
(UNHEX('F1AEB531CAB179D593FFEC7075F29BF6'), 'wp-content/plugins/jetpack/languages/json/jetpack-lt_LT.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E0C4B20C927623B67322CBB6F49610D')),
(UNHEX('C7F166D65C47AFA5E8BE9B2B7FA2E4AC'), 'wp-content/plugins/jetpack/languages/json/jetpack-lv.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38C684225937A871D4CBB448C0F85D0F')),
(UNHEX('CFDE0CC5018F3B0227950BE614E990D4'), 'wp-content/plugins/jetpack/languages/json/jetpack-mk_MK.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF0E4181B735B4795A96346ED4CDAAA8')),
(UNHEX('37A48A2BDCBD071854BDB6FB53A904BC'), 'wp-content/plugins/jetpack/languages/json/jetpack-ms_MY.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69AC99119B1854F364FE29F2ABDBCBDB')),
(UNHEX('F596206E14F91729398AE0FE83731BAE'), 'wp-content/plugins/jetpack/languages/json/jetpack-my_MM.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB491AE740F3CC4CD07DF5B2371D5B47')),
(UNHEX('23618AD82F6DF00573FB783350117248'), 'wp-content/plugins/jetpack/languages/json/jetpack-nb_NO.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7153313870284F6E5F23B3DA02274305')),
(UNHEX('12E764B3B0B3E10F0FC87BC299AF3B47'), 'wp-content/plugins/jetpack/languages/json/jetpack-nl_NL.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86B13C333F0FCDB46E8EA8A0B48FFA2D')),
(UNHEX('797F78E15798F798FEC550F5ADEDBC10'), 'wp-content/plugins/jetpack/languages/json/jetpack-nn_NO.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D186E9B9155D0CC409FFBB2889F42FC')),
(UNHEX('BB59B5F942F0AED658CBE0B3956C6671'), 'wp-content/plugins/jetpack/languages/json/jetpack-pl_PL.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2541A440A30926BD3207CA1CAC4844E7')),
(UNHEX('41531079AFA51409254E2ED7EF45E090'), 'wp-content/plugins/jetpack/languages/json/jetpack-pt_BR.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('62CC639A4DB5C3561345AE9BABCD8582')),
(UNHEX('01BDD60EC7BD519C25D56854FD371BB5'), 'wp-content/plugins/jetpack/languages/json/jetpack-pt_PT.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4EFF575EB372AD8F225AA1012BCC885')),
(UNHEX('1A7BFC30279238795805101D71E32935'), 'wp-content/plugins/jetpack/languages/json/jetpack-ro_RO.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F31D307CF25F8967921ECA412FC2B05D')),
(UNHEX('D27102B96F86F5120ED7938A89EB38F5'), 'wp-content/plugins/jetpack/languages/json/jetpack-ru_RU.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0FCFAA33AE34FF4DB28125DEDE8DA389')),
(UNHEX('A1E019D4BD1D9C27F51C39ACFBFEE2C5'), 'wp-content/plugins/jetpack/languages/json/jetpack-sa_IN.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1FAC381EAF9DF531428156F4566A326')),
(UNHEX('C8BF414D19E0146652D45FEAB56986B6'), 'wp-content/plugins/jetpack/languages/json/jetpack-si_LK.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0DB3DE8A9BB34B989BA0D65CDA8B6D69')),
(UNHEX('66E314FE4947ED1786014935A57F2094'), 'wp-content/plugins/jetpack/languages/json/jetpack-sk_SK.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8280F9B080B4A85C3A1A7C0A3A34F419')),
(UNHEX('5D7FC512DF726B3E7984D82DE67E30AF'), 'wp-content/plugins/jetpack/languages/json/jetpack-sl_SI.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F195102C8962957276C06125FAC22F4')),
(UNHEX('64A1DE3FE062C8391792C9707ACEBCD4'), 'wp-content/plugins/jetpack/languages/json/jetpack-sq.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BEA6084F694620EF847CBED04854D48')),
(UNHEX('07FB617F4C2600EDB39DB37AD19454A3'), 'wp-content/plugins/jetpack/languages/json/jetpack-sr_RS.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04D02933CA0117E4A01AA2BD464EFD6D')),
(UNHEX('C4F7CFCFDF8ABA52B5C43B7778B442CF'), 'wp-content/plugins/jetpack/languages/json/jetpack-sv_SE.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A62088E04DF2E26AB49528A8EF68A8A5')),
(UNHEX('1E95DA72E9C5BE98877D828503C6E35A'), 'wp-content/plugins/jetpack/languages/json/jetpack-te.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3CAC8CDEF99469BFC419889E2B17653')),
(UNHEX('4FE31B285C1950B116CBD9033930BF4E'), 'wp-content/plugins/jetpack/languages/json/jetpack-th.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB51CAA3BA4447BF0AFEF9E63EF87A59')),
(UNHEX('02B44E28019458218EF902125CC02CC8'), 'wp-content/plugins/jetpack/languages/json/jetpack-tr_TR.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF6EA7C60144DA0E03A1CA177A9FEC3C')),
(UNHEX('8676F2F8D933E9E7D62A83921DFF7BF8'), 'wp-content/plugins/jetpack/languages/json/jetpack-uk.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFEA6E388444E547C4E5F32FB8B3B617')),
(UNHEX('B0B2467DCC2A28FC9C5F73DCDBE32B2A'), 'wp-content/plugins/jetpack/languages/json/jetpack-ur.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E197C120DAA4CC1B88561023E9F48DE2')),
(UNHEX('7E800E9D26913D1716BA7381522EAB8D'), 'wp-content/plugins/jetpack/languages/json/jetpack-vi.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('39C4570D1600920B3B80E4F92546932D')),
(UNHEX('A7A3D1EAC3EC6B2A432D8F62EF587A6F'), 'wp-content/plugins/jetpack/languages/json/jetpack-zh_CN.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0E4CF186962FB96964580D6B783D091')),
(UNHEX('82331DAAB3B7A95ECC2FFF6546682465'), 'wp-content/plugins/jetpack/languages/json/jetpack-zh_TW.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE5BD8618BDC0A8583328EFAC6437136')),
(UNHEX('A3616B7F26C5902AED80BF0BB9780429'), 'wp-content/plugins/jetpack/languages/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('502D5FCC18ED2C04176603DC616D2254')),
(UNHEX('D5CD38C824419E477E2AE4C6116F9A9A'), 'wp-content/plugins/jetpack/locales.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6AE1798F897B6248A94558C91F441FEB')),
(UNHEX('952A2DF2BCA1F9567891F8DBA7B6E6E1'), 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-autoproofread.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89B66AD81AD11227F7C4B13D157A4B5E')),
(UNHEX('D998A6EA94ABECBDAA6C023E160BC6E3'), 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-nonvis-editor-plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B758AC2C1B3DCD4145273CEEE65CD58C')),
(UNHEX('4CA6EDC62E1C07F638BA47A0E6EE1934'), 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4354B822E81D011733C41D0AD608814B')),
(UNHEX('6200782868BBE3D61D182A08A936BE16'), 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60094663CA70223289EAF41FBE7E38AE')),
(UNHEX('86926E0085C7BDF5C0EA94C366483B64'), 'wp-content/plugins/jetpack/modules/after-the-deadline/atd.core.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('58D2C7FEA27BDDC74943EBF680474126')),
(UNHEX('51B8E0261A287925387C64F85D5FB887'), 'wp-content/plugins/jetpack/modules/after-the-deadline/atd.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7393FFBBB368701FF6C02C3ED4CBFD7E')),
(UNHEX('A9AC563E130F6C16B5B6486C30959349'), 'wp-content/plugins/jetpack/modules/after-the-deadline/atd.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0BEAD142E6BEFCCCEE4C06D43A60061')),
(UNHEX('8EEF16919333EFDCD6D960B0D3635DD3'), 'wp-content/plugins/jetpack/modules/after-the-deadline/button.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C69D231A0D95A1E4851431E2FF9D70F7')),
(UNHEX('79BFE4853D632697D29C9B3765E4721A'), 'wp-content/plugins/jetpack/modules/after-the-deadline/config-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A3F243BD5E077FA71ED931C5CB07EA58')),
(UNHEX('D36E012D92B4AD63D96FB67A25D6BF0B'), 'wp-content/plugins/jetpack/modules/after-the-deadline/config-unignore.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B29708B35CBB7FEDEE108C727CD040C9')),
(UNHEX('F9B7BBD5C1512FBEE0D67A827A80DF3C'), 'wp-content/plugins/jetpack/modules/after-the-deadline/jquery.atd.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F9F469C8E2EDE22B945A73395410EE3D')),
(UNHEX('8448E87F9CB4BEBA96D9D353F5ADDBF6'), 'wp-content/plugins/jetpack/modules/after-the-deadline/proxy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCA46BB0218CD753891C9210B9BAAD23')),
(UNHEX('E4DD4FEAC273640E4068DC17565C7386'), 'wp-content/plugins/jetpack/modules/after-the-deadline/rtl/atd-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('256B5D43D8917FE5262A10F5024805AF')),
(UNHEX('E65656566918EA88E251FC0476439310'), 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/atdbuttontr.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05C4AB0E28DCF78DE3DEB012982E92C8')),
(UNHEX('5E9834A29C906A2367727B485BA707CF'), 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D17CFA497964AAB91A17E830926C4B6')),
(UNHEX('2AF666DB36D5C85677921A12274E2E86'), 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD53F215210F6C2FDC50232232362ABF')),
(UNHEX('E9FB4BC3BAD58A54C7C579384307ECE4'), 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('190EAFE3FCA3C841F76DB8F20173DDDF')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('2F40162BAFAA485D30986429A2B8A5BA'), 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9D3AC37383D63A8F3D12C851C761CE5')),
(UNHEX('4D3900D627FF27DC93C6CEB854E83852'), 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F09F1405F89269909A7E05CF8917B1A')),
(UNHEX('AD0B198DF6F9AD107A9F8595E0B63DDC'), 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BD40EF9C876F1DCD8DE74E64E0503FA')),
(UNHEX('A1410B779933EBD7D2E56F18CB2108D5'), 'wp-content/plugins/jetpack/modules/after-the-deadline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3785C71C1C4625B3CC497F294C3E863D')),
(UNHEX('04DC5EC5D6B533B2D440EB00E1E9DA01'), 'wp-content/plugins/jetpack/modules/carousel/images/arrows-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0DBB8C03409B7C8DFE2929C285DC32B')),
(UNHEX('55CB912291F129C134DB71A3AFF61D67'), 'wp-content/plugins/jetpack/modules/carousel/images/arrows.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E76673F350144110895AF690997ED99')),
(UNHEX('9CE9F4149F2C3EFA831441E83F63DE85'), 'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E53AFE6232B1731E34371DDA76274CB')),
(UNHEX('6D0206D191A6E697F73AA88D4CFF8B3D'), 'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C666DD84574F4496AFE8375506D288D7')),
(UNHEX('20D59D829DA0DE711D03BA4915F714B1'), 'wp-content/plugins/jetpack/modules/carousel/images/carousel-link-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8241C5322386FBD1C5423F22CECC4948')),
(UNHEX('AF68F1F903118BF76C275835DABEE0FB'), 'wp-content/plugins/jetpack/modules/carousel/images/carousel-link.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('022668822F4450CC2EB4A4C8A22D0106')),
(UNHEX('7C0D4F48AFF38AE5F6A8BE29AD384235'), 'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04AF750B52B4BEF7E5CFEEDEC2091184')),
(UNHEX('883C16930943A43BB74640DBDF729D7A'), 'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('935DB30D3E1BECEEF12FB9A4BB86BDD2')),
(UNHEX('C8DCF5B94F13EDECC8EA0670E2418E6F'), 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-ie8fix.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('218090DD1F9ADE484D724EA8A40B393B')),
(UNHEX('64B8AC83150B409AF5D4C9F15C117624'), 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2FBC293218B2A40EE205C795F619438F')),
(UNHEX('7B87A776BCCE72641FF77E3F91E5573C'), 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28EA1C83CF29DA9572E10251A501BE2D')),
(UNHEX('E3AFEB0A99243F395EB85792CCBD74AD'), 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE6E90294E469F8512053FA41E33D489')),
(UNHEX('BE6FE7B9AD852BE7A91B4CF9F2B2962C'), 'wp-content/plugins/jetpack/modules/carousel/rtl/jetpack-carousel-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86E36B52F90EDC305C9CB0AC0438ECA4')),
(UNHEX('77169251F01BBB2D74F9BD3F60C8499B'), 'wp-content/plugins/jetpack/modules/carousel.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBF0A8442770DE3B50A419645067C132')),
(UNHEX('A86F8810EACEFE121F9179640D35C8EA'), 'wp-content/plugins/jetpack/modules/comments/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9670D236930679449C85C61594E7221B')),
(UNHEX('AA9DBCF4B8C0F925BE75482964B1E075'), 'wp-content/plugins/jetpack/modules/comments/base.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6470640A3F0BEC407CC251F607791092')),
(UNHEX('4854E8EAFEDBBABF88682EDA9A6EB8F5'), 'wp-content/plugins/jetpack/modules/comments/comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E910DF4A15C1FE19E56130C5B2BD497A')),
(UNHEX('609BC711EB8AC5C0A0BF05C73661FBAB'), 'wp-content/plugins/jetpack/modules/comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED7A8F72909B421070ADCD45B9EA610F')),
(UNHEX('A5F93D02DFD4CCA4EB519EB93D1B3DF3'), 'wp-content/plugins/jetpack/modules/contact-form/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E192E6D31E089A6DCEE8F4548467B6D')),
(UNHEX('9CDB56496335569839AB5A341D9DB120'), 'wp-content/plugins/jetpack/modules/contact-form/class-grunion-contact-form-endpoint.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1017108A3813518C0582DFC92936F25C')),
(UNHEX('BE5D11474757E3EF244D51A130B99917'), 'wp-content/plugins/jetpack/modules/contact-form/css/grunion.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('020CC97811E3C44A9F789685112196F9')),
(UNHEX('BE95DC4EFEA33932FA7CADD3B4C78C7C'), 'wp-content/plugins/jetpack/modules/contact-form/grunion-contact-form.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45B71277B7C547F39DB037462E152AE2')),
(UNHEX('DF092AAFFC4ADA2EE7AD27ED09B476B2'), 'wp-content/plugins/jetpack/modules/contact-form/grunion-form-view.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56CD33FCEEA9625353CFCB053CF97FCA')),
(UNHEX('E54E93DF37439ED0D7328FC9DCA151FA'), 'wp-content/plugins/jetpack/modules/contact-form/grunion-omnisearch.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2721B506AA86DD57C53CAC7FBCFCD303')),
(UNHEX('D4AA8F3E28A5CE7588CD0E3D7CA719EA'), 'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-akismet.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03F6780857F2918A19FF52D496705C5F')),
(UNHEX('DA0FEBFD0D11D2CC9EC384260058D42F'), 'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-button.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C52AF89FDF8FCBF85D2DB08DA9CDEAD')),
(UNHEX('639B67F2D6E0D03611DB8B69C1160719'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73671E85E266DF880907C169F909F161')),
(UNHEX('57DF92F4E6EE2D503518342D14D5A0F9'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C199961E8D5E4920E97F965ADB41B28')),
(UNHEX('D15A258E192B7A3DFFDBDCBC38DE42A5'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4AC1CE1F59DDFED940C1550AE24C424')),
(UNHEX('969FB96D79350DB1F9313C8EFBA80D8B'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D57076946CF202A3EFD03A20AE1DCAF3')),
(UNHEX('63CEEE39251748B6CA728DADCA055A7D'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0B4BDB3056A4359BD62C9BB39AF83342')),
(UNHEX('A8B25BBAFE16ECC72560F0304388EEF3'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7195485AF0C0061DB38E270E6BF4425')),
(UNHEX('F22F10D3C5C1EB27B5FBE6BD766CC21E'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('995755B0DBFBEDBEE68E9402E54061C4')),
(UNHEX('82815C7FC67E158B568A30D364FA4B15'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F3B7261B49E30FE3EBCA188B7D52211')),
(UNHEX('37F4C9DC75E0E056FC8A188B51901D78'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC2CF4797833E9716AC51246E89A7B6F')),
(UNHEX('48271DB129B16C8E93DABC7EACA9D59A'), 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDBE95733DFECCCF63BD0FD8AD250BC1')),
(UNHEX('F25B24EEA0EA6AC4212E6C82CE27BA04'), 'wp-content/plugins/jetpack/modules/contact-form/js/grunion-admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE886BC4FB47391E04288E02D3B7D33B')),
(UNHEX('50B307DDE4FA9338C8EA098D435A2577'), 'wp-content/plugins/jetpack/modules/contact-form/js/grunion-frontend.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('454E5915646C0FC3968F6C85D20FACBC')),
(UNHEX('81F1EA18B2FED04489F6C380AAA1FA52'), 'wp-content/plugins/jetpack/modules/contact-form/js/grunion.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7003617CAF0DD198D89153C8F95A82AB')),
(UNHEX('12410A7841CCB3665B713F5CF921E532'), 'wp-content/plugins/jetpack/modules/contact-form.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E32C8F9E4FD31CF0E97F79634342ACA')),
(UNHEX('7B7373B352B96B6C31150D91C7269A02'), 'wp-content/plugins/jetpack/modules/custom-content-types.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90C191129E644ED9E22636FEFD8653E3')),
(UNHEX('820A33C940D3B885BAD0C1E71E183C24'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9771C57C8C42F68B149A67C1F6E34D6F')),
(UNHEX('CCF71F5056157D14BDA1376084A1109B'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7797BE88E38DEAD1B39EDBF3F2B2D9E')),
(UNHEX('DA9E28C2B52758455F22D62A28CB0BC3'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_optimise.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27C42BA01DBAEEB1484D0810A413B1FB')),
(UNHEX('5C80AD94E1E49B2F3CB3B715921E3D17'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_print.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16039A85B10CCA1D8385347D628EDD64')),
(UNHEX('0FE00DBE2E2F36729209B8A99FF75465'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('352BA6B8AF140C48FFB747CD703554FA')),
(UNHEX('841975BB02148FD2C89E8BAEB2C55F59'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B054CF86318FDB9EE5566EA1F3ED55C4')),
(UNHEX('FFBD0177D31ED8608211E2DAB6B7817C'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61FF16102BE6B9044B483385539DBFF6')),
(UNHEX('5595CAFC1E5A8D4D58C01D2B72CAA7A5'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E2177C95B2AD98DFD9177F6B0E6F373')),
(UNHEX('94C2BA405E4C900290A25FC501955F2B'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('867FB730341A81B52560EF607C806B81')),
(UNHEX('26DADBA07139BFBD442792288F821231'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDCDCC993C8647E406C20F6D17F3437E')),
(UNHEX('162C23FA0471310B9ECA4E9697DA45AC'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A0C24612040D104F7BF02A422133D06')),
(UNHEX('6F434467C69D2A4745B304325E920FB4'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BC985EFA8D3F450BD116B2159BFF529')),
(UNHEX('03077B75B248C376A103717EFF64B8F6'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/data-wp.inc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D56B3CA01E22C4261CC46877E6874E21')),
(UNHEX('80F1340A62B049A6FB4C7287B820BAEC'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/data.inc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('54830FD0E280F135D90E93718F0740B0')),
(UNHEX('CABBFDAD3DB801C7734ED3D37433CC25'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/lang.inc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F5C1CC6C9FE9A7670DA3A54B681E3C6')),
(UNHEX('FE40EC14C14E3843E4202EC03AC99204'), 'wp-content/plugins/jetpack/modules/custom-css/csstidy/wordpress-standard.tpl', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09A3F56584C7D638FC7FF45E75EBEE19')),
(UNHEX('96BF045E78E8994F069B7FA9EE021040'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/blank.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('750E2B14C260D45039EDD2046466B4CB')),
(UNHEX('CCA834CE63EEAE82D30E0B66CC08F00C'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('487D4CF0C7E35D068D0A18EA68E0216A')),
(UNHEX('0786A852E90014F9346085ED274A515E'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33DC3FCC86FA83F47764FAE6A8B0AB58')),
(UNHEX('EE452D021C7DE64AD869E108CC8E1FF0'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C1EA387AFD68E43D258EDCB7343E4D7')),
(UNHEX('0927EFECB32131A79CFDA51D6865551B'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('061656C0C4072567AA4B497C01EDB253')),
(UNHEX('307653F25CACC0955E747CAF89D7B500'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C5B06DBB2E77A1B9CB4913D91BC39D4')),
(UNHEX('DAAAF40EF5E291E39848B17B8A7F98C4'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B945163FCB1B0302FE00EA118D81EB5')),
(UNHEX('687DF85255F9DAE0E282579F292F30A8'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75F9671EBB6CFFD94FCE10A433BD316D')),
(UNHEX('527DC154A54382A6A256687BEEC3BF3E'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6775994007EBA6CB825B3E0F21D86A11')),
(UNHEX('00147CCD432191C00DDEEFD39DA479B6'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/customizer-control.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('306AE7EF7841A519A0667C0E34565CB7')),
(UNHEX('784E62F97D32991C35069E301B7D2C54'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl/codemirror-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('535FBBA812AF1AE8D7999C67C214D00F')),
(UNHEX('A5A4D0394965AF1FA103A5FF4502466E'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2677FB32DE4BEE680BF24B4601369770')),
(UNHEX('2F5183D5AC523F9421BFD18901A2D525'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFA365A630347242E1711FF87492721A')),
(UNHEX('83D5431CE71ED4D1BEA23C13C6C5BDB4'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('611290D83893075786096A209C405CAB')),
(UNHEX('4FFE512BCEF1F7BA9C53E91D45CC5E2E'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2DE3773B2417B26C966868B06D131286')),
(UNHEX('0EE2EC6ED979EFF9F9F485E006ACABF5'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/codemirror.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17679A768A3DF3E67CA2E73CA83C0985')),
(UNHEX('E22531792A8FD4600E128F7419259524'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css-preview.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B5C44BDFBB37549F5BC7D64EF1F4142')),
(UNHEX('771F66F571F42603BC0705BF903F42F6'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13428A42478627C6DE7DA1D8BAA5C997')),
(UNHEX('6D03F3804EDD80B2245852F1973D91C8'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/css-editor.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1BC72FE768E75665F94A4DDA651EE9DE')),
(UNHEX('CA3225BD3C691C8EB706DBF92B3CEE3C'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/use-codemirror.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABF4AD25B43BA85F5248B640B2D12F0B')),
(UNHEX('70A5235C2F7049B947DB32B40AD68AE2'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FBE26FA02C038616A45972EC08A1E200')),
(UNHEX('073C560D989C05FF08ABCD9819FBA7D5'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7A02B97C9F5E644D2824263686CC5C1')),
(UNHEX('1E2F1B2BA2BF8BA1E9383DB37249224E'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B264A91C37016E2D255446330F560E6')),
(UNHEX('51444C06147EDBB1D85DD5BCDFFA6DA3'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css-4.7.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1BF785C433A2028D97A1A03D9B1A1982')),
(UNHEX('D37D33A0DBFF7C2113FE698F38EF4FBB'), 'wp-content/plugins/jetpack/modules/custom-css/custom-css.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F18A82C79BD593D9AB9268AA03F06DCC')),
(UNHEX('FB48EA6AEAEF9CBCD00199943CCD7502'), 'wp-content/plugins/jetpack/modules/custom-css/migrate-to-core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A22B3C10F8382D11AA49933D034F528')),
(UNHEX('E7C563D5EDC70BC0F73DF6D49604F25A'), 'wp-content/plugins/jetpack/modules/custom-css.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF670825AE5C08497A6D1A42B382FF7B')),
(UNHEX('E36CD494EAA0C23DB31BAF989D31CB31'), 'wp-content/plugins/jetpack/modules/custom-post-types/comics/admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F201FD0012BE940A2D3FB540D17A2B4')),
(UNHEX('BC1FA22BC1421C98E9F425EA1CF23EDE'), 'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1623D8420184377B3BB27DE67BA48B0')),
(UNHEX('29316DBE97C03E5930EFD1FAD0D28FBC'), 'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED7881258889C630B2D3DACAC08161A3')),
(UNHEX('13AE3967DB73F1188F3865F3356C9641'), 'wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04DF3E61D18F0D5B41BC64A6DE5AD9CA')),
(UNHEX('ED6974B53387F68A5DA77CA86537D4A5'), 'wp-content/plugins/jetpack/modules/custom-post-types/comics.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('667D3C2195B79970A2CFA56F588B76CC')),
(UNHEX('77EB46A373C6A996A85D232134AC75EB'), 'wp-content/plugins/jetpack/modules/custom-post-types/css/edit-items.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3834CACFD8C2EFD0D043F24D94D63D00')),
(UNHEX('86560D58E73539C94BDDE2C26E398561'), 'wp-content/plugins/jetpack/modules/custom-post-types/css/many-items.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75C2B7960466EAE949128AEBDD4BF4FE')),
(UNHEX('27EC23DC2D0785204DF7BF4FB8576BBD'), 'wp-content/plugins/jetpack/modules/custom-post-types/css/nova-font.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D450EAF93E3F43972789408468F55033')),
(UNHEX('7EDE6E112FFFFBF8A766BE18C592937D'), 'wp-content/plugins/jetpack/modules/custom-post-types/css/nova.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('831011D20531170E7E5A99D7ECBF1EA9')),
(UNHEX('C598907F332A59DEE0348B9FB72BBA4A'), 'wp-content/plugins/jetpack/modules/custom-post-types/css/portfolio-shortcode.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E3E71552B41F7B74FE3690645604B4E')),
(UNHEX('B434284C109033B7E08C2C95B91C03E7'), 'wp-content/plugins/jetpack/modules/custom-post-types/css/testimonial-shortcode.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9CECB4E1D04C652A8BDDA1E128028FE9')),
(UNHEX('F27DB40CE803C64DA08F17F6B6E373AD'), 'wp-content/plugins/jetpack/modules/custom-post-types/js/many-items.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('85E2AF7F0D1B1F5E87E9F3E70B875E89')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('90FFA96E34C13016FF9398EA29B3A6A4'), 'wp-content/plugins/jetpack/modules/custom-post-types/js/menu-checkboxes.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C2881B146C7CBB867D4C378AF50A217')),
(UNHEX('C70817D96697B35DDD581558BA4A1515'), 'wp-content/plugins/jetpack/modules/custom-post-types/js/nova-drag-drop.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D21C0C8CEAA6AF9A4F810BACBF538AF6')),
(UNHEX('84B28E071BF4D57DB74A7415ABBF58D9'), 'wp-content/plugins/jetpack/modules/custom-post-types/nova.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78316897BBD27D9C2CC813A9FED646F6')),
(UNHEX('5D8745D487DC303FFC348C1B48E6A075'), 'wp-content/plugins/jetpack/modules/custom-post-types/portfolios.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE7EF5EFEB78A1A9CEC26646395F4407')),
(UNHEX('CDA29EBA6CA57E7FE236307D1C0115C3'), 'wp-content/plugins/jetpack/modules/custom-post-types/testimonial.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1329BDA54B118CDCD026A3D9A922A24F')),
(UNHEX('2A84DEA03A1F5CB2E6D9F565F1F1F256'), 'wp-content/plugins/jetpack/modules/debug.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E4010B5BEA79FCE1CF9B57D822EF350')),
(UNHEX('4477EBF7B60D14869E37784D58984FB1'), 'wp-content/plugins/jetpack/modules/enhanced-distribution.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('00BC26C4D83C4852499F771F30DF3D1F')),
(UNHEX('45289B91B102D6D8B08B18B15E061F30'), 'wp-content/plugins/jetpack/modules/google-analytics/wp-google-analytics.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3EAF59A35FE242E5C1C08E2FD4095B17')),
(UNHEX('AA2206B2E3F9D2DE54C428878ADD80D2'), 'wp-content/plugins/jetpack/modules/google-analytics.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('054CF32FB51F7C50E49335ADFF9E9FFD')),
(UNHEX('C8C3AA930814642D4C74E3407EFB5F81'), 'wp-content/plugins/jetpack/modules/gplus-authorship.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E4010B5BEA79FCE1CF9B57D822EF350')),
(UNHEX('EF8653964D2F8220A56BD1945FBE92B4'), 'wp-content/plugins/jetpack/modules/gravatar-hovercards.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('428A2B7FEEF769BE88CDE6FECC6261E8')),
(UNHEX('9A32583AB2BE5109BFED06EEF482DF5E'), 'wp-content/plugins/jetpack/modules/holiday-snow/snowstorm.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1ACC3D7026C979616F31D989B9128601')),
(UNHEX('04E21DDF00E2061D8BCEC10199698BA5'), 'wp-content/plugins/jetpack/modules/holiday-snow.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('432661FCBE5D5999BAA3E7F51FFB3E8E')),
(UNHEX('2D88A0B2D4740C0A8A9A776027A37EA1'), 'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8582FD468CB45F7FA72792952BE9575F')),
(UNHEX('0C10788E663CA8588FAEE4AA503BAD04'), 'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E50B03AE3B4239DB49BFE8FC0CCDAB5')),
(UNHEX('648D263B632790502A57E814B453FAB3'), 'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD672436918238D8202E89297D1467FB')),
(UNHEX('B39E6F46A839BA7948899688E19B6CF6'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BDD51ABB9070C85F15C26C1C06F643C7')),
(UNHEX('6C6E3AF037CC7A6088D08DCF1C1F6131'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A68E40B857C22A7BA4B20A965C36A611')),
(UNHEX('9B6FCA86A1F9DE8BB7D70177526038C0'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46E4670C5E2EB42058548C8D07780706')),
(UNHEX('D9BB9E0535C607B5B692D11C487E2F1F'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7F13244F480BB2A2D0EC38DEBBE6488')),
(UNHEX('A4710E5D5FCB419BE4AC369FEA9F83E4'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E07A8FAFFDACA442E096BE3DDA67812F')),
(UNHEX('1C445F825DB5A5680B5CC9DB987D2AFC'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97A01E039D5CA0F764C9E38BD38E9D5D')),
(UNHEX('8A41CFBB373597DFB9B7C11CD92A0FE6'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7845F9EC94BB3EBB330C16724C16BF50')),
(UNHEX('24B8319388EA884DED47A7790250F669'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2DBF1D04A9B7D1CC9AB08FD0970CA00')),
(UNHEX('AC1361F5DD32B4666A2E21858C6757C4'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('80BCF65E6AB29F047897EF55BE806B21')),
(UNHEX('1F03DC243A3955DA82B51E41E5AC5BB5'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('96D18EBADB6EA2EEB3BDB0DE2A73045B')),
(UNHEX('B54500444A8565094749504B9E5FF55D'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D30B8DCE4B2D40D1BF3DF38A6A828E0B')),
(UNHEX('DB615D251CB559ACD9DB0A5D2E23920A'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B14DFB4F6F8F393D0FAC7F02E41263C')),
(UNHEX('5D62F2F7EF5B3EDEB7CD98D708D43B86'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4893859A0F9763AF1F2B52CD3A4BF118')),
(UNHEX('D82F107BAE6FB18BB22E8B4FBCB32B00'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B96B20806B5376F76DD5DCE56760B8D4')),
(UNHEX('F352A1C9FD2DE63123DC7FB5B4813569'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3E79315E80EDD87D0BBFDBDA33B1CFF')),
(UNHEX('F5283B595832C106D975090152877AB8'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5A92541D245075CBB3BDC6378AC807E')),
(UNHEX('620A20EF54B8816148AF90DF38D6FAB5'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('100AC4B2C9A3B79B5FC4FA0949CF5309')),
(UNHEX('A28FAF788A7BDA057966C8C133030BAD'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F29E8E155E41429F12C74EA6B69FAE8')),
(UNHEX('884D8E85860DFEA6E8990692C9E7F126'), 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C70E4AFD9C51C166F2719DBF608C1C5C')),
(UNHEX('79725CE14938F7B48D91D6412797771F'), 'wp-content/plugins/jetpack/modules/infinite-scroll.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9AA0AC2680C9BE7E8BB8B7B1731645ED')),
(UNHEX('FBFE5A145C8033F3F2E1C6921F4C8E45'), 'wp-content/plugins/jetpack/modules/json-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0FA518FA8FE46390D2348B82D4C56C6')),
(UNHEX('99E285F2A1D624B5A15273624CAD1B7A'), 'wp-content/plugins/jetpack/modules/latex.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74C26C3E8F2D666F77EF7BD1FED08D76')),
(UNHEX('6256B22145507AEB092D239FA37C1BD1'), 'wp-content/plugins/jetpack/modules/likes/post-count-jetpack.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('493F3BE859CE102AB7CD2952525459E3')),
(UNHEX('79FB83FDC66E527AC802092F23AD4881'), 'wp-content/plugins/jetpack/modules/likes/post-count.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49151A1C52319C9092C105B33B4ED4BC')),
(UNHEX('21A473A9D93C1E24B4005F4DC87155A3'), 'wp-content/plugins/jetpack/modules/likes/queuehandler.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2878645C9E0B9DA847DA66F8774B8790')),
(UNHEX('AAFF552AD608F3B779170734BAC9A82C'), 'wp-content/plugins/jetpack/modules/likes/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36EB95E671A252D2278BCE479358A189')),
(UNHEX('4E5192CEB42895D0F29052AEF3122066'), 'wp-content/plugins/jetpack/modules/likes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D451190C23657231A6AA21CD6B751709')),
(UNHEX('77DC1224F1822A989758AF0D40612E95'), 'wp-content/plugins/jetpack/modules/manage/activate-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2CCDF467E0FDE772901D67FAD1EDE1CE')),
(UNHEX('17B9479703EB2EAFE204902D22FA7D22'), 'wp-content/plugins/jetpack/modules/manage/confirm-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BE931194D2547A9A2E2019CAA195593')),
(UNHEX('A77168E46D763A0C8F1DBB7D571BF8E3'), 'wp-content/plugins/jetpack/modules/manage.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0CC0DE99DAB9AAAE5A4AB720E1C06B8')),
(UNHEX('2C597DE4164AA1A28593D908F3318376'), 'wp-content/plugins/jetpack/modules/markdown/easy-markdown.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D36CA167626CDBED812F666B537C9AC')),
(UNHEX('2C27015D7A96E5AD98DDE7C38887288C'), 'wp-content/plugins/jetpack/modules/markdown.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E637800E49A7854A21A5382AA65DEEF0')),
(UNHEX('8F1C1934DFC4AD9C9050FB78060BB7E7'), 'wp-content/plugins/jetpack/modules/minileven/images/wp-app-devices.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('245F0D127283AB8DAD5910A07B9C29C9')),
(UNHEX('CE0188DA69049941E7AA1B6CC29C6E7D'), 'wp-content/plugins/jetpack/modules/minileven/minileven.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A7C4B3755767D858BF6FFAFCAA925070')),
(UNHEX('0E954BC29561D6E7F9B39016703B1D92'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('37BA0CB6C45F7E4CA59FC260A0E723BE')),
(UNHEX('8FAD0D6FE2F7013F6020E5BCCB48F0D4'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content-gallery.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A53875289587A50054E0C7F30F6CF29')),
(UNHEX('7DA0F5814B843FBD76201E5272F56FED'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25A9E32CE2EBA13D903542B0B976A310')),
(UNHEX('703957D85A37A9E1931E2CB5FF1A9C0B'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFFEC99B4ED4F1C913EF8180E6330663')),
(UNHEX('764FDD3177382C54E31592AF1FA12CF6'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C6F2A0F98D9B8162D7966C575071543')),
(UNHEX('705C1045B232AE028DF0440A72D69099'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8DC3185A4A8E1DDC4682B59B365FC585')),
(UNHEX('38EE7BEEA83C2B99B1B435E82BE330C7'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/image.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('679A3F481E602A18253A53FC2B5090CA')),
(UNHEX('4347361E1A637B2771C9756399A4999A'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F793135B6BC40E794E2A6EFAEB288D5A')),
(UNHEX('0CE53170BD43E7CF8508003D62FDA961'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7990D9E8C42928B46BE0F4C517B1DFD6')),
(UNHEX('302ACE52A47020422530881AD7A38F70'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B29322963AA7DB6E97B9F2B9DCB8B06')),
(UNHEX('2D44F72659505901399EC2628384DD9F'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9D06B7BE470E9160D33E2F3A6E15660')),
(UNHEX('B499D698E6ABFCC8DB772F30AA6B95D8'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7B97039A632D52C4A980958D3A29D2C')),
(UNHEX('458ECDDEED6C5D9C39D33C177A60932C'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/template-tags.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFF4FA526F804B2C1D4F231B3F4C7C11')),
(UNHEX('E2455904D19BAFCA52C812EE64511252'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/tweaks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F7BCE314A708389080BCF3D30B60D76')),
(UNHEX('42E40EE02BED47D96F2A16EC2FF3E313'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D975EBF2583456080053E03F8071CC8D')),
(UNHEX('D91389FA269423A5B09B2028B356B357'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/js/small-menu.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5236BDA94F27DCB0D98A133AFF2CF358')),
(UNHEX('14DA3FE8C61525C6BADAFE90367EE431'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0BB1CAEFA7CAD08591EB3C5375B6120')),
(UNHEX('FEFCAACBA402FEB7C62590F7ECA1044C'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60FB0BB619E84BB3A3FE2FE9D21079DA')),
(UNHEX('C8652D9E7FE55A50A2E135C68A443D06'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/screenshot.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EFBB12616756434587ADE2378BC077A')),
(UNHEX('F405E382D406870532567F4715A51AA5'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/searchform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C467C51514F98518EBCFB8D932E2533B')),
(UNHEX('2B29B922A19F5AF7BC2C0F295E73ABAE'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/sidebar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F8DA71D43D01C133B85CB2D76B93CE4')),
(UNHEX('BB2671DAB74A37992733E89F2334279D'), 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99BECD2A8318D93393B6F23730CFC293')),
(UNHEX('026464D40BFC34CF5DD7C38115C72F3A'), 'wp-content/plugins/jetpack/modules/minileven.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4CB42F86793858E9A021B5CF79E93FE6')),
(UNHEX('2C931FA693507ADB9EA2703A88195F39'), 'wp-content/plugins/jetpack/modules/mobile-push.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1C065D58587CD4063AE634BD728DFBE')),
(UNHEX('BB6376DEBDB8E8662749D39BED5AA345'), 'wp-content/plugins/jetpack/modules/module-extras.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65B7DF6CA049385AF7C39F6BC99C6F5E')),
(UNHEX('3DE0A5B27C7A0F3BD62455255190384F'), 'wp-content/plugins/jetpack/modules/module-headings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BD6AF23E20A47225FC94BCD029F5315')),
(UNHEX('BA1A6416D7AE202D0C608CA03FCC686E'), 'wp-content/plugins/jetpack/modules/module-info.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5844A747EE2B6C2FB49CBC466F9FB992')),
(UNHEX('DBE2A4E58896086ADC9B53650FA77C43'), 'wp-content/plugins/jetpack/modules/monitor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1B0078D0EBD55C7E67DC156ACC25D0F5')),
(UNHEX('994517151655F0293704D22DC9279CBE'), 'wp-content/plugins/jetpack/modules/notes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('856E4F3CADD3FE077E025FC21E78DEBA')),
(UNHEX('C8FE125521A6DB154CEFF438BD00A4F8'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3B348EA007F7B9285BDFBB3610141BC')),
(UNHEX('DF80435C7F59B9664795DC62AC590615'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('730109C749024172F25200061B329397')),
(UNHEX('41C9BD472264F63F7232C814BE358FC0'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8DB0CF938248ACD1F2A6F019A19DC2F')),
(UNHEX('25517CF07F1D7BBBE97F9FFC7F296589'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8AE92637C351371902DB7F5C7760BC9A')),
(UNHEX('13AD6814CFAED6E600BD34187221901C'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C0D3E24B15D261E1B01C543EEC15BBE')),
(UNHEX('7D8BA915FC8A260CC33F04F22D19005C'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71E77006069733C90520203FB791E399')),
(UNHEX('E3AF0E020B7E96623925EFACE8DCAEE4'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-media.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FFB9C639625BE050E8EA7CF7011F841B')),
(UNHEX('5B1B89FC8256D8D77E604DF9F640287B'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-plugins.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('333B9A472E3D858ADC3A7AD5C8795E4C')),
(UNHEX('A39E35A098562EA011AAAB23AF51B075'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CCE0B00C8C3A1EBAB64113E489645EC')),
(UNHEX('A22C1C6C1D0A56E922E8CDA64950BCB4'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F9B927B43AE1950F730725EF24F64B36')),
(UNHEX('B3E360F47FB676923CF35DB9CDE14A56'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5672E65A86F9E5F4C11D8EB6159DCE5')),
(UNHEX('00B1F5F611E62FCE5ACAB04F202738BF'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BCECC3EE307BF64636C305DF9312485')),
(UNHEX('EE72DD068157EDAC6F57B01AEFB9237A'), 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3962FFDE02B60F4F02487E9AA8D1E737')),
(UNHEX('2B0FE219AFFCFD3D1B8F518568B7702B'), 'wp-content/plugins/jetpack/modules/omnisearch/rtl/omnisearch-jetpack-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F576253E39C51CFBBDE8376B7C1F4784')),
(UNHEX('59A34AD9D3C1FDD7DF928CC9A5B403B5'), 'wp-content/plugins/jetpack/modules/omnisearch/rtl/omnisearch-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F173A86F2AE0A77A8B8D2424E99FC18')),
(UNHEX('6369E6FB5B7AE3E86F097A00469D1446'), 'wp-content/plugins/jetpack/modules/omnisearch.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F65C2FFEB43A33E4B1AEE8C4CD77C948')),
(UNHEX('885C238C0C002AD0B33777C75E73E900'), 'wp-content/plugins/jetpack/modules/photon/photon.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('366237F21D8C5A9D8FCFE0D78C13362B')),
(UNHEX('B31868129974BEA5486378AFC6B9EA09'), 'wp-content/plugins/jetpack/modules/photon.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F72988E85843C65CCECDBF860C07F2AD')),
(UNHEX('C6802EB432C5D6DF31EB9BD7F1EFF666'), 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1902FB7A434A426D631A877037484BC')),
(UNHEX('680487922615363282C2DA39FECCE2E3'), 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C3D64DADE4897219971F39400608CA5')),
(UNHEX('3E4CE33FE2961CBC1CCDE818580849A2'), 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0095E60166EF696644DCA4273175BC46')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('B54CA42B1FDC573B33BED8E3609810C4'), 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84A5137A01E3A048F0A55935AD6FA0EA')),
(UNHEX('F8FAE32A97F13B7BD8A58350E172C103'), 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D1C6A9D20BB38290C7AFBCB6AD664D6')),
(UNHEX('716BF850FA72D9DA365ADD4CA9E23B8C'), 'wp-content/plugins/jetpack/modules/post-by-email.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46A23D1EA42AC9525CC2431C545CFAD2')),
(UNHEX('6195EBEC779684F50189CCAE67FD7C33'), 'wp-content/plugins/jetpack/modules/protect/config-ui.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36263570297786D0D2B4F3D3ED056105')),
(UNHEX('984865443EBCF0CF39557FDB35891916'), 'wp-content/plugins/jetpack/modules/protect/math-fallback.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C99B5E766C7EF9371C2EC88F418F568')),
(UNHEX('FBA1C9DEE72DCE0162C114BAA246D1FA'), 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('64622E75679377083C63BAFBD45AE16E')),
(UNHEX('D6C90452E95289BCA4F88A2CD1203F2A'), 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F426806601F58A7604E557B03A4F8CF9')),
(UNHEX('5233C5C595D87AF1287DE71BF1DD2358'), 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0EBF7F7A0E02FDFDA10E9B71CA221223')),
(UNHEX('A68ED02E68717EF6F37B04026C7399DC'), 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1EC349FC71089D3400FCBE80FA855494')),
(UNHEX('E5E90CA129EA6DE59C78DA8E537116AB'), 'wp-content/plugins/jetpack/modules/protect/shared-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC88CBEB16E2CFFF069A0E25AAECAE0F')),
(UNHEX('CF9FEB9C7004E1F314B5F513D943CA63'), 'wp-content/plugins/jetpack/modules/protect/transient-cleanup.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A0F71E7BF5B599DE8C60399896E3F38')),
(UNHEX('53FAA5DEB6C301C54E187A5FB4E744F7'), 'wp-content/plugins/jetpack/modules/protect.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D6DAF695EDD97E96A4BD78336725823')),
(UNHEX('30F5241800A50AF76F0A4DCC3A955D40'), 'wp-content/plugins/jetpack/modules/publicize/assets/connected.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF374F231F167E4978021909F197DA63')),
(UNHEX('F313626D791625ADFA869196CEF56436'), 'wp-content/plugins/jetpack/modules/publicize/assets/facebook-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68D64C8D9878C2B71E2945EBAA2B6439')),
(UNHEX('0323ECF7E32AA56D35AE886279D5B188'), 'wp-content/plugins/jetpack/modules/publicize/assets/linkedin-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C7E9B101BDB888401E818CE9FDAB005')),
(UNHEX('9B9E6124A5373378E3C4D8461E1F9540'), 'wp-content/plugins/jetpack/modules/publicize/assets/path-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7042DAAA320A49EA89921C319933991')),
(UNHEX('D3ABD25E342DEB2B46D42EA83234B8B2'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-fb-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C4E66F8786E60F1060A80DBB41CC1BC')),
(UNHEX('D4EF4AA74020427312B73259AF2C97D5'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-google-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F781816373E9BA3842010BF9C6A6BFCF')),
(UNHEX('7067E9E65C97C8ADC45889813FB53AD7'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-linkedin-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33A2B63A76A3D55EADF4866ADAAE708B')),
(UNHEX('2C63D89DEA2FC1ED03D85344224DD2C3'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-path-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B09F0D46DE091A96304BF71B729CB5F5')),
(UNHEX('E667409D96E7BD6BE15C3B68F111F0ED'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBB364BBF974DFD990DD295D6C3FCA12')),
(UNHEX('FA58358FB12DCEDDEEC52CF45C82C7E3'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26128034D3AA629953F15961F7240699')),
(UNHEX('B72DE47305E37CB384D083F3E22AF565'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-tumblr-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C368BD6296A50C56CEF792EE3BD1345E')),
(UNHEX('F9AA341324406083A665626D2F29B471'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-twitter-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DA136D844A31AD2105709008F6EE833')),
(UNHEX('7C2775F00F2F83539C65243A92EE4537'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2884ECC8F2B7D285644E40AF841B012E')),
(UNHEX('E3A245D524D15DFA27E08D22D6F70CBC'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA663AF8C9847D29095BC5D3DF0A81A1')),
(UNHEX('4B741EF353F77A8201A89C5523F1E741'), 'wp-content/plugins/jetpack/modules/publicize/assets/publicize.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0834C4162E857E227B5572D1A4F3CB1')),
(UNHEX('75E516E519ABF97CBF4F86E18AB6617B'), 'wp-content/plugins/jetpack/modules/publicize/assets/rtl/publicize-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8614B8D2521D8FFA0BBF1C34B8EBA4E1')),
(UNHEX('FF03D2D498A032A7D14C0068B430F65C'), 'wp-content/plugins/jetpack/modules/publicize/assets/spinner.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C71E992A25C2B8CEB78576A9826C81F2')),
(UNHEX('445F3AE1206254AB1A6F0D308DDEC075'), 'wp-content/plugins/jetpack/modules/publicize/assets/tumblr-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D252AF3126F59874713C23583437246')),
(UNHEX('05034A9DF7AA99B3B66D252764400520'), 'wp-content/plugins/jetpack/modules/publicize/assets/twitter-logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C86AE9561608F4915DC310C6D7B3A961')),
(UNHEX('68D39935DD276A6A50E72B35DD0B83F7'), 'wp-content/plugins/jetpack/modules/publicize/enhanced-open-graph.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3E117800531D16990AF52D141047852')),
(UNHEX('37B675C0C39D5C24D5ED5817D6405835'), 'wp-content/plugins/jetpack/modules/publicize/publicize-jetpack.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2D57BF26838E18019DFA822AC07399B')),
(UNHEX('77D75EC110958B2F06B02ABAAABBA3DE'), 'wp-content/plugins/jetpack/modules/publicize/publicize.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC4BB7987BE5E336BDA5673239FE69B5')),
(UNHEX('7734EBA3E095904D8FB064DCFFC6E48E'), 'wp-content/plugins/jetpack/modules/publicize/ui.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9FE36EA62D0A96767E8E0FCC340FF6BC')),
(UNHEX('26CF659BA0609993CA6CFDE28ADE4E0C'), 'wp-content/plugins/jetpack/modules/publicize.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7787B59C7E3BA94CD8101BCBE770B66C')),
(UNHEX('BA3CE14037D202A71715BDEDC9A9661A'), 'wp-content/plugins/jetpack/modules/random-redirect.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E4010B5BEA79FCE1CF9B57D822EF350')),
(UNHEX('313E913E833BBDE5C656FA4799107098'), 'wp-content/plugins/jetpack/modules/related-posts/class.related-posts-customize.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D55D7086609B0079A28CD98AE01D4A4B')),
(UNHEX('B590EC02D47FD143107010A3363DEB18'), 'wp-content/plugins/jetpack/modules/related-posts/jetpack-related-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2724B1B9238B23CEAC06890C4437F1B')),
(UNHEX('AE0C08BE169C31A471C972F364325C50'), 'wp-content/plugins/jetpack/modules/related-posts/related-posts-customizer.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DEE27A5C3EA5267A78182F058EB7C48')),
(UNHEX('2FE883226B239D5771478328E66EF1A3'), 'wp-content/plugins/jetpack/modules/related-posts/related-posts.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D2C2FF980F58DD1C4D3191579A1ADD7')),
(UNHEX('273E77518FE2568EA8822A4E16C84495'), 'wp-content/plugins/jetpack/modules/related-posts/related-posts.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D5A1ABC2EC00ABFF63116458D293BEF')),
(UNHEX('8E7E651B14AF92FE9FFEBB5F312E06C7'), 'wp-content/plugins/jetpack/modules/related-posts/rtl/related-posts-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('104E87B723D9AE16C4C5BE4FDB389F4C')),
(UNHEX('FD5CAFF0E9D74543BDE02633000D4C7D'), 'wp-content/plugins/jetpack/modules/related-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('59631F8CA8C41AC74EDF20608445C24C')),
(UNHEX('18231ED32CA5AD16BA1FEDFC8E935E2A'), 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A146768CE895862F49E9B35F70FDCEF')),
(UNHEX('1C7D5CE8413D6AA25FD7F500C459C244'), 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-titles.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71EA510F93E111C77A8E734DFDC71439')),
(UNHEX('C29C4227C45B5FB83BA14D525060AF13'), 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-utils.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6AB2713134B56CA9CD1140CA1F8718F1')),
(UNHEX('A1D6FB2C4680C1223A282972A6D5FE46'), 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EE2E59006832B68B1CE15413C443EC9D')),
(UNHEX('CC3B2AAC81DF746044CE8981F158552A'), 'wp-content/plugins/jetpack/modules/seo-tools.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('18170514F6F1FFAE69AF295E50B51769')),
(UNHEX('4C65E6338A35641838CD70E1257E5767'), 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB20C87608E81A44ABD8F8FA8E50094F')),
(UNHEX('8ED13060E4D5014CC646D8DEDFEE60A0'), 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9D4524CF22D3DE879E57055104B9B51')),
(UNHEX('760292F801A679AD40A591D70C67716C'), 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1FFF6DBCB2AC739139CD14B5F9BDA450')),
(UNHEX('F188E40DF9FB2C7162C30B21AC6ADE80'), 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A6050CF11679593152131FEB89728B9')),
(UNHEX('E9642BD499DE3A33AB32E49B61C17BE3'), 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3AB7F7F9694073DCE19CB8D1878A5109')),
(UNHEX('A213D904B8FA5EEBA8E9A677305FF90F'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/after-the-deadline@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE49F245318E6F888DB51045E14F6AD3')),
(UNHEX('51316E96BB0E9931C0B89283422ADE7A'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/comments@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('79A22E433CAADE76AE60C6F6720DF458')),
(UNHEX('84CF46B365A52043C1B7FFDB01503ECB'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/contact-form@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86C55A175F59FB1BCA5F5F9C1602CD19')),
(UNHEX('AB642074F92074FE42FA2E836A2E729F'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/custom.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4813DCA21454F1BC6CB797D629924BD')),
(UNHEX('01547774B8824AD9B9DA8337B743B786'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/custom@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0CD28CF2ECD07410EBF222491677C5B')),
(UNHEX('731C1025648BC8178FBCD99DD43128F1'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/designfloat.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94453E8A6FB161AF42FCA46EBEAC7E64')),
(UNHEX('6046C87054BA3C034A570048E0513A0F'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/digg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE80ACD38F3FEDF60E5931081D6AAA3F')),
(UNHEX('151150745E07581CCFD5BC9818A96609'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/digg@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CEBBE1F7910E981F7E26648CB09BE81')),
(UNHEX('C9B99E5299E99B2DA0694BB893638A82'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/divider.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D003A01D0389FC9D898BD9AC328A50F8')),
(UNHEX('F02006FE2ABE7A09D22E292DE6BD0A58'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/divider@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1A7AD54A5B553692C2E9674AE48F183')),
(UNHEX('8DAB51F07FB35A99C7666CAC6B2C81CB'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8777B6718BC26B2BAE563D588B90F315')),
(UNHEX('C9769C97433D2E8F4B33D123F7777C60'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF26A8DCEAB813254451857912446A2E')),
(UNHEX('85EC87876ADBB98A95E6FC0D6FF37F93'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/email.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('631D6B9952B9476475C11C4B6B00703F')),
(UNHEX('D3B962745A8FAFC28D73D22ED830FE44'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/email@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F0E7DE7D64A1895067721E7B4867187')),
(UNHEX('9D2F11C3A68AA352F8F3541FAA6C0891'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/ember.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5684AA4099B6EF391255A5AE49DA0C2')),
(UNHEX('3A96F9A1E6BE46BB5757C4F6FDBA6927'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/enhanced-distribution@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D21499385AC859D3528B01E03080D261')),
(UNHEX('68E9A62D820C192368F6179FB29254AB'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5AB377BE2609290FDBE1898E91A86EC9')),
(UNHEX('8DF3BDCDA661287E8F8EB6A31EA5A8F8'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('384ECC302758ABCA13A33CE234CEFD6A')),
(UNHEX('920E5D4932C7A43C48A8AF921F25C8AC'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/feed.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61329CF7603F2BAD64C8AB6DBCA4CA3E')),
(UNHEX('CB11F5E6FDEF6070FB1CC5122B9E83EF'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8DA54A4418F211F912388396DD36389')),
(UNHEX('2361BF34D79E7061902C6E8A043EF8EB'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C691F1A2448229EA0761C5ED82F9763C')),
(UNHEX('CC26A85B55BF62C94EA7CA3B9CE1CC2B'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29D024098C57B3E150FD7BD70D1983F4')),
(UNHEX('19B750F55FAF819AC458BDFD09D22D34'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DDF510AA45FE2B52DA04EEB54842CA6')),
(UNHEX('63259A64308CBB83C53B7EEFF19AAC0E'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13746BBD257A1FFE808CC202A6DA5A17')),
(UNHEX('F75FC2E4E73DA463EC37562C08C453D9'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9ADEE57FAD5B844E64A31D0134227E9A')),
(UNHEX('9C5A0E9EAA4CCC536C99384C4F74CB5F'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E78B182027E6C9712B4824B8CC0C46F3')),
(UNHEX('DD74571B0173459DB1BB8B489940EF57'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BD9E67AFD4D522C4CEC9475926AE525')),
(UNHEX('0E958742FA031D3B0BDCDE597C1FD075'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('616AC8F15C749B71AF39443A746895C7')),
(UNHEX('66716C227E00DF77442266B5EC46435D'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8AAD1B4B0C9670C0126C32F90E2BD49')),
(UNHEX('A82B6724CB69836BB6438CB05096F64E'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A1C66C45F36413116808C73ACDD69B0')),
(UNHEX('C6797C4625E5519279D2AE51ABF66414'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C0BBDECD2513EF3228EE85A4247C056')),
(UNHEX('3D4726A7A1F8135006F52947DA760F43'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('426610FB51006A904CCCD58243D4E89C')),
(UNHEX('4DBB41C84B4C76CE39419D2BCAED9DB1'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09F45C1C02D2B785032C37D6A3EE05E0')),
(UNHEX('6B8B249CC2D3CC1BB9FB42C61A2D9808'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E1D4D628F9C396BC7367827E9AAE85E')),
(UNHEX('C8694015E4B39152F895CD1EC40F7EC9'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26AB96B3CC7D2D0248D1EB596E28E074')),
(UNHEX('F1000740E8F34E080AD0A7A22670B22F'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('426610FB51006A904CCCD58243D4E89C')),
(UNHEX('232859BB83306EC3A9708B627DA1AE7F'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09F45C1C02D2B785032C37D6A3EE05E0')),
(UNHEX('547FFA52FA7509573AC9176E3FF93F89'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABC8E56F448305A4D293A88DA993B180')),
(UNHEX('F41CE0069CD8D909F8AF691044DEB57B'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E26B6DC110E3381ADDE783D26185F1D')),
(UNHEX('05C2977BFDA6AB075AFF4E3996CB3936'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4FBB03CC72ED5E3904EB1C97038092D5')),
(UNHEX('B62700CFE0D8892D8AC56FE1F186CDB6'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5319E1E34F8DB5575CAC620DB32EE8A')),
(UNHEX('7C48DF69B7201DD7FC1F89A926AD280C'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A8269421303631316BE4AB5E34870E1')),
(UNHEX('19C207B22E55F222D23EA28F593532AD'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/more.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB26635F2F3611C5E6F09081F2D45611')),
(UNHEX('6B32B1CCEC3FCFA27D0826A48FB6A2B4'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/more@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4C482098EF79D07BEB47F65933954D61')),
(UNHEX('7F47CEB4826C3CEE2E2A9AA1C7D6F465'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2BB647E8EC1B64E57C24E3F1126F976')),
(UNHEX('2451BC79BC028958844460F6FF1D36B0'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9543160953F17B3FD76E6627EC65AC7')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('086264B3D473D487D663DEC2D2D7DE99'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6672E47A260AAEE9CBC76527D71E39E7')),
(UNHEX('45BC03BE47F5C72BB028EF4949A8981A'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('633E531A0D69723A2262D8B7A8449C0C')),
(UNHEX('F1A04668E8C26133E0C45CAD03611B7E'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/print.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C24C1E745D8B9A3EE5163E81C6C15883')),
(UNHEX('349F04540A11D448F12809388F8C58F9'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/print@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D748B69A494C1E67F2BED8A60B05D779')),
(UNHEX('E79DE5B3D596083A960E27F3E4802DED'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B421F79664E698B465DE59E56D59C7C1')),
(UNHEX('3B4FABDF8EF1066133CB78E4C2CE042C'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45E5B07A067F3565B109B6024D480F42')),
(UNHEX('C97E12AAC43BA8DC24B89764C8B26CCA'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/rss.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E4FA3FA8E636FE63D557FC223A63110')),
(UNHEX('5BF07EC598982CCDA44DC3AF971BD32A'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/rss@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2718B00002EC87F201091B8ABBA06F07')),
(UNHEX('7164EC1EA79823D76B1E2D925CF76E33'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/share-bg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89CDFF19ED9FC677F2B2E503EEBCE8D7')),
(UNHEX('BA67B1A2FD5C40A6F86FC9AC408D162B'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EACD637965B1FF6934F3CCB81AC99CA')),
(UNHEX('D694E5F6EBA38E58357DF202DD0068B2'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D10B0C1D2D81E7AC504378CEFC78085')),
(UNHEX('989D2C44F03249DDAB72117DCCC6AB58'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C4D4BE7BF9051A71F8D7048A211DEDA')),
(UNHEX('B1499CEAA0EFF9A7C4DF520FC15AE5D5'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('838A59DF7B8BEC47D56BD4D85B534F5E')),
(UNHEX('15A6F949E2551F718BFCE5F3C8FFF6A6'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D6BC44E81DF55B72DB8B5C4996D9E53')),
(UNHEX('0D5995894192F87247D65EA8E865A384'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8E2B6DAFD735D7DD3A810C96969AD75')),
(UNHEX('30588841B62BEA217E47297776FF9A11'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('92ADFE384DF291871A32E19EBDB60297')),
(UNHEX('20CBE5F5CCA0AC0C02CB999EFA1295D1'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11138EA87107537BE62BD234C7FF73ED')),
(UNHEX('2E4B0D003BF33CE25FE0ACD1580D2740'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60DEAE6D46A07E135ED90D5E63E24A98')),
(UNHEX('91C60A2A945B4DEC085A91B1AF59D1CA'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22F2B9D1E87E863BCB482D26801C4B5F')),
(UNHEX('6619EAC9C67E2ECAB1072E453B878F5E'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('988D082BD830964D2916203A1E47F80D')),
(UNHEX('986ECF10C0E25E3210F51DFDCAF0FCB5'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B142212DB9974A5740CC39F09B46310B')),
(UNHEX('765E628BA358D611FD376940A4BB6AF8'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D5D1A2479ECE8E15C755D0E59ADB207')),
(UNHEX('3C067FD48B9D3F3A161D52E72556C133'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9038E21C33852B0EA10554111480C94')),
(UNHEX('B30809F8D2643EDAB08F2E17C9D497EB'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41BB6856CE61E312C12EFF2B1115CD7C')),
(UNHEX('36BDE7D56ABCFED2A8F7DF66CE4B7464'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68EFA22151E97A419CFDA1AF437E2842')),
(UNHEX('5F6144201B446A5F4B5A7EF1ABD665E6'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE8270098514F34FF15C828A09DBD1F4')),
(UNHEX('B3F94DED73065564ED6A5E0543909935'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CBE58E5A407723FCD162EC587455F549')),
(UNHEX('0151F7E246FB6484EDB29875316A560D'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A1DE45FB06CBB197DD250B077637356')),
(UNHEX('7DE5F4FC253A6543C07ED6262E49FB15'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D818CA7C894CE5E5A029506653E6A0B1')),
(UNHEX('4F925847C922AE852FA3E0376CC3474B'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4784293BA3EB1DD5354DA91EA033C096')),
(UNHEX('5141DA3492CBC9EC75A35FD99830E17B'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8203980C2B4BD38EF45F3FB8A1E5C97D')),
(UNHEX('82A46D9E5912B23D6C515C65E68D1C2E'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7BDF8C8BD7EC82BF2469325851EAE03')),
(UNHEX('48ED1F2D9A91EA544D8B279B181FD3A5'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D916DFC9F5E350864B1A0497C8D21A4')),
(UNHEX('F36C75E293C6A4EB1C8ED7228F458770'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8BC4D43C888FE1A17D2DA9D246540D7')),
(UNHEX('3FE82186968445459982354E4B48B6C7'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('58607A79DAEB355986BD9947C3C72FF7')),
(UNHEX('421A5CE76DF3A5DF7120DBEB87DAF156'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BD9E67AFD4D522C4CEC9475926AE525')),
(UNHEX('1F684CCDFFF9BC7D85ED51C664A62FFA'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC5EB2F4DDE1F180B6A82A6E25C00037')),
(UNHEX('47CFBDBFBEAE022076A8DD755AC21071'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF5E8C724E86F3DD840D3B730E719702')),
(UNHEX('C828B523D7119274DEF697B94729B4AE'), 'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3F2E19FEEA867E1D3822AEE0CB56512')),
(UNHEX('C475700AAF5F86EAFE866E837E2FC5D1'), 'wp-content/plugins/jetpack/modules/sharedaddy/recaptcha.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6768752F775309F523DEED2F72EF3BAD')),
(UNHEX('947F9A4B34B9575591CFF044DD1B0280'), 'wp-content/plugins/jetpack/modules/sharedaddy/sharedaddy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15A3AFE71DCFE444A61C979A569451A6')),
(UNHEX('55355703B881473C5EA9C3ACD9CC76C8'), 'wp-content/plugins/jetpack/modules/sharedaddy/sharing-service.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4F1D248CF2C852CECBF961873BA457A')),
(UNHEX('3DB9B744EBB375BA525AC8DBAE17A425'), 'wp-content/plugins/jetpack/modules/sharedaddy/sharing-sources.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7135DBA81B53AB4A63D2EC7D8D8860D1')),
(UNHEX('6CB86819D0BAF9CD3DB7FDCE40610B73'), 'wp-content/plugins/jetpack/modules/sharedaddy/sharing.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E8BE9FA409C38E0597F1D0F4ED55E15')),
(UNHEX('4B7166C398CD490DEE9E2D4F21DE61BF'), 'wp-content/plugins/jetpack/modules/sharedaddy/sharing.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF2DB0082D95355CBAB78F5FEB76D63E')),
(UNHEX('1F95F7E2F0F6E2BD05CDF7B4C931F1F6'), 'wp-content/plugins/jetpack/modules/sharedaddy/sharing.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('603CEF9ADEBDB30DE31AF529777770C7')),
(UNHEX('B26FA9E6AA862C0D963BFEF6D42F6BC4'), 'wp-content/plugins/jetpack/modules/sharedaddy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2E8DBC90B33A95F1A7AC1C2B4060C055')),
(UNHEX('D33A39CB58D739544126BB702D6F942E'), 'wp-content/plugins/jetpack/modules/shortcodes/archiveorg-book.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE9C954132214C0974DB9F7E0F4E2204')),
(UNHEX('ED7EEAAFD5738E3DC75ED6FCF1126396'), 'wp-content/plugins/jetpack/modules/shortcodes/archiveorg.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8650F3AD45C43692B9DFFE85C53EC8D')),
(UNHEX('436DB47A1C97CBF30CD6004AD3ECDA77'), 'wp-content/plugins/jetpack/modules/shortcodes/archives.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2436DE53D9AF307F68DE779F627A0E3')),
(UNHEX('1E82CF9583E2C2DBAD0699FFD078D82E'), 'wp-content/plugins/jetpack/modules/shortcodes/audio.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E4010B5BEA79FCE1CF9B57D822EF350')),
(UNHEX('E235832F5579842A38A1D98E680F51F4'), 'wp-content/plugins/jetpack/modules/shortcodes/bandcamp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('784B94E1A5C438DB97D1A4FE0C000CCE')),
(UNHEX('2FF71FB0D645AB1C085963549A3E6882'), 'wp-content/plugins/jetpack/modules/shortcodes/brightcove.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('327322ED47DFFE32B6C77EC114CEBC79')),
(UNHEX('94CD2B8CAED405ADEF2A4279534A0866'), 'wp-content/plugins/jetpack/modules/shortcodes/cartodb.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('153EBC9D1CC71FF99CF622AA34BD1245')),
(UNHEX('6B5EE316DC1D4FA268512D4D5FCED703'), 'wp-content/plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F1819B3C4A3C7558FE31FADAEB91166')),
(UNHEX('5E837FAFCE5BA0D40FBC4ED8803B4FA5'), 'wp-content/plugins/jetpack/modules/shortcodes/codepen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFE97B960B3FF1C4E8D86F336239AF88')),
(UNHEX('EB1BC84D746DE2DE3F7081B830AF3C8B'), 'wp-content/plugins/jetpack/modules/shortcodes/css/quiz.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C764D13B229FAD339A5DCC08ACB854C6')),
(UNHEX('2F3869AB55630AEC75BF9D90A66340AF'), 'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86CBD83C4DB9BC919BCD590985ADF0E9')),
(UNHEX('D9E8E7DDB5FE7D99DE532E536F7E6DCB'), 'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC662832F0CF2478436722943361C5DF')),
(UNHEX('372E098BD5EFCF8BB6D359DD5C37EF58'), 'wp-content/plugins/jetpack/modules/shortcodes/css/rtl/recipes-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCFA5844846065E79A0F1BB191E9E80C')),
(UNHEX('9D591CFA956C61CCF06698675EF28DE5'), 'wp-content/plugins/jetpack/modules/shortcodes/css/rtl/slideshow-shortcode-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D472BA290BFE241DD4A279376EBAAAF6')),
(UNHEX('05B3EBD0C498E56084ED9368F1E56F6A'), 'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48A0C5A779F32002C23FFB1E1DE373D3')),
(UNHEX('4B17BBB58F5447819A42D67360A420DD'), 'wp-content/plugins/jetpack/modules/shortcodes/css/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BCD60330F5B20579092A9EB18A9AEA2C')),
(UNHEX('936C4D075BDC8530AEEB1212FBB25E5F'), 'wp-content/plugins/jetpack/modules/shortcodes/dailymotion.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EDB5B0C6E628B03350B2F11A5505C6B')),
(UNHEX('27F71E37B9760E9DCB4087F6B52DB74C'), 'wp-content/plugins/jetpack/modules/shortcodes/diggthis.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED331729BB3AF26CC6973925441EC022')),
(UNHEX('E4B6D16D4B8D4C279B2528040D2697C9'), 'wp-content/plugins/jetpack/modules/shortcodes/facebook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB89A594F507DC7A8F4EE80B2BAEF48A')),
(UNHEX('CB72E8356097C2D75BA27E61CBBCB811'), 'wp-content/plugins/jetpack/modules/shortcodes/flickr.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('034E4F70FA59346C5AE0BD8B8BE82C1F')),
(UNHEX('C239AFDB2B9A62DB0AE4381851CD1B19'), 'wp-content/plugins/jetpack/modules/shortcodes/getty.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA48BF98C06BA5361DDBAAA72F4ED94E')),
(UNHEX('8426D46C4EAC55CFD0B9A192A16A85DE'), 'wp-content/plugins/jetpack/modules/shortcodes/gist.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('275FD4C9406CC2A2C1B62E35F1830D8B')),
(UNHEX('FB24BC97F91029F740066C593B9D6283'), 'wp-content/plugins/jetpack/modules/shortcodes/googleapps.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50CD74830814C2B892D4469E9990ACCD')),
(UNHEX('4C71BCA2D1520A1C904B2936157A9C38'), 'wp-content/plugins/jetpack/modules/shortcodes/googlemaps.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('267F93873F9C1856309A5F5814188682')),
(UNHEX('7107D91293B019D2B5C775924D095CDF'), 'wp-content/plugins/jetpack/modules/shortcodes/googleplus.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8508CC47E5FFCF8E178840EC6274ABA')),
(UNHEX('F1237054EAE9DA613B23EBB4870B5FC1'), 'wp-content/plugins/jetpack/modules/shortcodes/googlevideo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99B378D600927EC5B1415DCA4880CBCB')),
(UNHEX('46BCD4886C32FE97E44546B9E1BAD9B8'), 'wp-content/plugins/jetpack/modules/shortcodes/gravatar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('380C551BB0B61F9A4853C7E04A1CF831')),
(UNHEX('7433C2D8ABF7ECB510A40C92FF2B7733'), 'wp-content/plugins/jetpack/modules/shortcodes/houzz.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82526C08E9ED37649E69DBF45F1E051E')),
(UNHEX('61C0B72ECD590062A96B2D03980A4AD2'), 'wp-content/plugins/jetpack/modules/shortcodes/hulu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D6479A919CA5446EC6F4FE8E984D1C5')),
(UNHEX('CE3F58DD515245B000A69E2002046B52'), 'wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A6861A2480524C8C502618A22F1E50DB')),
(UNHEX('76143F551ACF6EC39FDF4A353790053F'), 'wp-content/plugins/jetpack/modules/shortcodes/images/expand.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D12BEEF1BCA8E939DEAAB2D204460399')),
(UNHEX('156A97D43AE692DF4F4E311430BAA4F6'), 'wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('385AED438DD36ABB1B7EBA1EE9BEB4B9')),
(UNHEX('BD2AE7F8785890AA2ED02822500CCBE5'), 'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F38FCBF5BA7D61AF83B04A18C7A1A37')),
(UNHEX('7D891B237EC801EFA6A221D9C705C823'), 'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C0D5CFFBAE3E43DE3ECB6264F4A872F')),
(UNHEX('715EACD6A8CB5EA1A142F31FB8AEC134'), 'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-loader.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5045FB65E47020447E130C1924AB9261')),
(UNHEX('6D6BDADE780CC5E2699B86095785FF76'), 'wp-content/plugins/jetpack/modules/shortcodes/instagram.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56EAE1DF28CB4C78D445F358BC27401F')),
(UNHEX('19E24D64F549BB04DA110F8D9889803E'), 'wp-content/plugins/jetpack/modules/shortcodes/js/brightcove.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C693FE63734B85D63F0F751565FF8FA2')),
(UNHEX('67114FF5FFAB00DBBA405528B14B9A45'), 'wp-content/plugins/jetpack/modules/shortcodes/js/gist.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BCFC86CA711EFC8EFB04454EC81F0044')),
(UNHEX('C6FFDFF40BFD5D4A768160498CC9218F'), 'wp-content/plugins/jetpack/modules/shortcodes/js/instagram.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B6C29F6F9ACA2AC05D443D4B46700A84')),
(UNHEX('D67B161502FF3CFE6424EBDCE78BCF8A'), 'wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A0DDBF84752A10E5C61D30173E1BC23B')),
(UNHEX('C9DF298BE7D0C70DEE9C63C853C33EF0'), 'wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41D89FC39B6DBB52B3E9880DD4551022')),
(UNHEX('FD557DE26A9E9CDCDF0F48E61C74FD92'), 'wp-content/plugins/jetpack/modules/shortcodes/js/jquery.cycle.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C17C34B6395DE9E1A467BDA34C824900')),
(UNHEX('94A28B1210375AB5C630EBD6134169E8'), 'wp-content/plugins/jetpack/modules/shortcodes/js/main.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C62BE49EB9EB87B64EDA223A516A94F8')),
(UNHEX('EA4BAC355AA65401A0E30BC063C49DA5'), 'wp-content/plugins/jetpack/modules/shortcodes/js/quiz.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E65334DD98BE0C147B79FC02A9C1A265')),
(UNHEX('BFD4D116EAD2CF819DCF09FA7972CBB4'), 'wp-content/plugins/jetpack/modules/shortcodes/js/recipes-printthis.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('888D74BEAC6F2661574B09EE967F10E6')),
(UNHEX('717EE434219FF1E5B9CB83215CD07E15'), 'wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D93D77DCFB532D5FC913B9705DC766DB')),
(UNHEX('2208C289AE90784226DBA518E869B585'), 'wp-content/plugins/jetpack/modules/shortcodes/js/slideshow-shortcode.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4E12285A4AB8ED0D8E472F4B6781237')),
(UNHEX('38C50994D1C5C82EA7B8C5CA8688B19E'), 'wp-content/plugins/jetpack/modules/shortcodes/kickstarter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4B0C0D4C5B992ED329EFEAAF5C5762D')),
(UNHEX('10ED2C207D4D19811C6A82A1360F76EE'), 'wp-content/plugins/jetpack/modules/shortcodes/lytro.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD80A44D90A88AAA0C44E110AB79288A')),
(UNHEX('FC975997C97D7332E31208978E5C87ED'), 'wp-content/plugins/jetpack/modules/shortcodes/mailchimp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1BBCE523C12955F268D0B0815CFE21E')),
(UNHEX('C18D49588D5186E1EE209FD6FDC7C0CC'), 'wp-content/plugins/jetpack/modules/shortcodes/medium.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CC5C211C937665074D11B656228EBA6')),
(UNHEX('692C91F138415353E220B67F63E9BB5D'), 'wp-content/plugins/jetpack/modules/shortcodes/mixcloud.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('382E57F054F9C11FBAF573870CCC1540')),
(UNHEX('4D93E8825A9AB0EC33554D1AE1772107'), 'wp-content/plugins/jetpack/modules/shortcodes/pinterest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3ABE7FCA558335BC777707BE6942FF9E')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('E865B2D6FD35D622515F1A61A7EEB3EF'), 'wp-content/plugins/jetpack/modules/shortcodes/polldaddy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0C37C33AEA2B703931760D9954F701E')),
(UNHEX('C931665C58A711781B8F3F3319B6AB48'), 'wp-content/plugins/jetpack/modules/shortcodes/presentations.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('691A12149920D5C285CBFD5AED606B23')),
(UNHEX('BF88DE91A9087F4ADDE5716200E100FE'), 'wp-content/plugins/jetpack/modules/shortcodes/quiz.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6A87651A256EE64D29956DA34E7E584')),
(UNHEX('039EF7B4B3A8C6B526FFB298B3245F9A'), 'wp-content/plugins/jetpack/modules/shortcodes/recipe.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB6104D4AA06C3247EA017D598BD33A3')),
(UNHEX('4D01A5792B14E17B1CDF4026F0623551'), 'wp-content/plugins/jetpack/modules/shortcodes/scribd.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3EC22CCE177069ED8A0B99FEBEC74173')),
(UNHEX('23B965FAB6AD4723CCE99188431726CE'), 'wp-content/plugins/jetpack/modules/shortcodes/sitemap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA73C36500796186AD687542B607CF92')),
(UNHEX('9467CC09E2D7CDED00C4C0C9363E73E8'), 'wp-content/plugins/jetpack/modules/shortcodes/slideshare.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89D0EAE15CE37A33B601846FE5E64DBD')),
(UNHEX('D1403C14305F6D28437D55844B821EE7'), 'wp-content/plugins/jetpack/modules/shortcodes/slideshow.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2177D568BBF517FAEF1BE8A25DDF8F7E')),
(UNHEX('5041A670A251AEE10B08540EFA81F468'), 'wp-content/plugins/jetpack/modules/shortcodes/soundcloud.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2E99ABDDFDB04E69DFFCE7B05DAC2A2')),
(UNHEX('D8F649B13F5B39C86CAFCA0496B7F9C3'), 'wp-content/plugins/jetpack/modules/shortcodes/spotify.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F83A1FB6CD842943EE885A412DCE407')),
(UNHEX('A22D53065FF812FCCF761E400F9B1C8B'), 'wp-content/plugins/jetpack/modules/shortcodes/ted.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC152A4E532AEC3C461974424A41B4B7')),
(UNHEX('B9E0F58D535E28EE84AA6C43766CBB3A'), 'wp-content/plugins/jetpack/modules/shortcodes/tweet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE6FFED1EB6BA2667AD85C8882BD3A70')),
(UNHEX('5EDC593B4B4879B1023DFC24565E5495'), 'wp-content/plugins/jetpack/modules/shortcodes/twitchtv.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('131D8B208476E2D4A452B5944573498F')),
(UNHEX('ACF65968D338BDAB8FDAC17B55DC833C'), 'wp-content/plugins/jetpack/modules/shortcodes/twitter-timeline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('211914A228163C1E09272DC9EF29A79F')),
(UNHEX('B299C91C4F9C4022697CC2C5EF304324'), 'wp-content/plugins/jetpack/modules/shortcodes/unavailable.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('355726AD2CFF3C60835B8D9A702F88D5')),
(UNHEX('C908338C58EA503F640469A62200CD70'), 'wp-content/plugins/jetpack/modules/shortcodes/untappd-menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('656A4CB4EDE3B8B56CAE18375112B3C9')),
(UNHEX('3728CAFA49B610D195BA5E40AA3FDC07'), 'wp-content/plugins/jetpack/modules/shortcodes/upcoming-events.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8AAA0B1F59E930E5E6C9386F9043FFA6')),
(UNHEX('8B0D26D64AC8A0FF505B2EA3EFF90770'), 'wp-content/plugins/jetpack/modules/shortcodes/ustream.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8393A57581DB8D125314315959852B2D')),
(UNHEX('FA127C9046C203176C52D183D139D3C6'), 'wp-content/plugins/jetpack/modules/shortcodes/videopress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2A6E0E822687B0A3AA7BA31F418108B')),
(UNHEX('B16954037B84E5B887EAE5A0301746C2'), 'wp-content/plugins/jetpack/modules/shortcodes/vimeo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46FDD16B060CFDC6078FDE2E637AC5CB')),
(UNHEX('34A07E5F428383CAB7F9E42762AAF391'), 'wp-content/plugins/jetpack/modules/shortcodes/vine.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7843A92EC4F968C12568BFD026050EE1')),
(UNHEX('978921D949A78E35BDFE1F2970CA23CC'), 'wp-content/plugins/jetpack/modules/shortcodes/vr.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA9462C806B0BCEC9B2A9113FA0EA9E7')),
(UNHEX('F70BD8C7836C040DE714A18215AEC90E'), 'wp-content/plugins/jetpack/modules/shortcodes/wufoo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F8DB55D7C27DEF39B7C580F49E21D04')),
(UNHEX('F2E1D89070C480CF3F3A97677E16B872'), 'wp-content/plugins/jetpack/modules/shortcodes/youtube.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D648496A4F153A0110FFE762DEDAF20')),
(UNHEX('C8F6C26FBFE96D60985C09252DB36F96'), 'wp-content/plugins/jetpack/modules/shortcodes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('446A3200D5F7BA060273DD3DFF024920')),
(UNHEX('BA502EEEAA2BDEEBAF9D13A0A3E2EFB8'), 'wp-content/plugins/jetpack/modules/shortlinks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7CE72017B117AD273565B3FA419DC9B3')),
(UNHEX('4CB57CC8754E009A2F8D51A03E917819'), 'wp-content/plugins/jetpack/modules/site-icon/site-icon-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33D32FCC4823A6ED789B0EE34C30AB26')),
(UNHEX('DFA262381055D422C12A7ADA59B9F5B6'), 'wp-content/plugins/jetpack/modules/site-icon.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71EAE4B0FF5AFCF479E63C56266C9653')),
(UNHEX('B3D1275437D9F504795DD7F4CF5316A9'), 'wp-content/plugins/jetpack/modules/sitemaps/sitemap-xsl.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFA8456E90A99A4099F2B22A09F574BD')),
(UNHEX('BAE76FFFF30F9797EB757F7744895828'), 'wp-content/plugins/jetpack/modules/sitemaps/sitemaps.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69843DC908C831290B3FBBD4F9BBABFE')),
(UNHEX('A19C4DB15A7D1B51DB6DE3F915433BF6'), 'wp-content/plugins/jetpack/modules/sitemaps.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03CC32718B376A107C98AA5ADB7F14AF')),
(UNHEX('D2CCBEEA88580D45C0C389E3750E1AF5'), 'wp-content/plugins/jetpack/modules/social-links.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E4010B5BEA79FCE1CF9B57D822EF350')),
(UNHEX('0D3284E41B4B6DC5D21A40F5B7DAFC5C'), 'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-helpers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('43FD4E88D1D849C09675C3595725E420')),
(UNHEX('2956A577B2CDF57E0889260A563CE9F2'), 'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-notices.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('487751CA13CCE9DA4989C7DA9C609694')),
(UNHEX('46E2C3A0A69E6851653B8D4B08E152A8'), 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('744DA17E937C6F13BD9832C96B9EB36C')),
(UNHEX('1D8AEBD7D85F85930A16314B46662285'), 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5DE736C49FD3A2E608AFE7C467B4B51')),
(UNHEX('1BDE0F258C438C6A2F9BDEDC560BEAC1'), 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5154FC0CB64EBA2A8E39BC4AADAA2D2E')),
(UNHEX('B0B975847C731B1AC94FD259168FE3B2'), 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B60E2C2B91E55039A25060FFD2A17099')),
(UNHEX('AC7B164800BF9107DBD4C4BDBB9062D4'), 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8692819D1D4C6BEADB223358AA4D6CBE')),
(UNHEX('8A3AF90D90B1A167CFC75B9CC8EAC40E'), 'wp-content/plugins/jetpack/modules/sso.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8B838F00F93BB19A8F359D9D64742D3')),
(UNHEX('CFADD4F3EC11A61D366E632CB560B93C'), 'wp-content/plugins/jetpack/modules/stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26BC26F0DDC41B4363AFAE7A5F1147BD')),
(UNHEX('98F987EB1FDDF6E8134882D4B135A974'), 'wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EEFA6C503656FDAC445F6F36E1608672')),
(UNHEX('695DD763259C7D090B0F05D4FD68944C'), 'wp-content/plugins/jetpack/modules/subscriptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('00CC3BFFCAF70F993015BE491F4A5299')),
(UNHEX('7D888B55C7E1F0543925FFEA24AE52E2'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('787732D5FDEFBD7154F9C48B618932EA')),
(UNHEX('12FE10F009EB43E70541CF101BE9CBF4'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E86B4054EC2725E25AEDFF136B43DDA')),
(UNHEX('2F93D619E3F0AD57A3DFE29CB453009E'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2DAB3A2FD09211AF00A18DB34D150E0C')),
(UNHEX('BA8F9CF45E6F9E75133F0C010819D764'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A14CD6B1406396CA384B6C2BA534F12')),
(UNHEX('440C34593821235F3C83D0B754B26437'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BEF9BCF9EBA583BFDD09ABEA8FC8D04A')),
(UNHEX('0281483F87FA37DB4D6665292A77E75F'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E04DB4C35CA51E209EEF161AB73F3263')),
(UNHEX('D9E755AA3EB9795A1C1578B121FA9565'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('836495C4278D6E49A1B7C88D097F696A')),
(UNHEX('99A4D8CBA42D7149C794765B4582092B'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA37F8B14ACEC00FFD722E153FB4D135')),
(UNHEX('D8D09D03859A4A39A5DDEA16350D391A'), 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FFAD6C6E60D9E32A307C11610974F875')),
(UNHEX('F9403BF84EE80A07B2B023B6147CE014'), 'wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('291E7CB4102F4E61FC35E5E059CC0454')),
(UNHEX('7320F5F555EC21261DCE0841B96BAE5D'), 'wp-content/plugins/jetpack/modules/theme-tools/content-options/blog-display.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1FEA3B1B091EA6FEEFEB4C5FB120ED0A')),
(UNHEX('8BCD65EB154D58D10A46CCA9E6EB2367'), 'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC1701B276A84CE0863D61FE2DB027A0')),
(UNHEX('69F78A03F0197FA2E42A498562C90566'), 'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('79578743C3D650EF0A645E417BB15AED')),
(UNHEX('C2E32E660ABB9212E085A56047F59D6F'), 'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FCBEFA9C71A689435054D5438E8B187E')),
(UNHEX('FD1602394E3F7F3D44120240F9E5F5E7'), 'wp-content/plugins/jetpack/modules/theme-tools/content-options/post-details.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1FC5E26290C9BE3DFA9577AE79DBAF86')),
(UNHEX('CE92A0803753E1A68AD16D061B05DB97'), 'wp-content/plugins/jetpack/modules/theme-tools/content-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1390A5369D1CEC9A7D0C25965FE5494C')),
(UNHEX('215D1C408B117A1308AD6AF27CE74CB8'), 'wp-content/plugins/jetpack/modules/theme-tools/featured-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A18152C2DEA944A61CD078767D4E221')),
(UNHEX('6BB8326E4AF7055975DBB38A072C4F47'), 'wp-content/plugins/jetpack/modules/theme-tools/infinite-scroll.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25926A4CB7199DC8E126ABFE6D96C9D0')),
(UNHEX('B6D9E6D4DA2AB0B884DD7E5B09470858'), 'wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A962B1C3BECE1B22B5B7280117E1025F')),
(UNHEX('94C0AD8C591A851DB3B284A97DAEC080'), 'wp-content/plugins/jetpack/modules/theme-tools/random-redirect.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8906362FE75C0BBC2F409A42BF4BD126')),
(UNHEX('746F8394BF04D85497245C3AB949E48C'), 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E43CC01FAFE401C6166602E6B5F7AE7')),
(UNHEX('AE19F9A31BFC03C7AC8988B8D6CCAEBD'), 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('761B0E616BB0E4C2DE5CC5DFF4B9E252')),
(UNHEX('A80D7034EDC7A571B9BD3509CCBA76C2'), 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('585005690E530E8047374CF14E479281')),
(UNHEX('5AE78ED81FABBD9D7574D26DA4014018'), 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C8F7401EC0CF5F897BA3940B8BCC7F0')),
(UNHEX('8AF561CDDE6D0FDBD3E4A51C8AD978AD'), 'wp-content/plugins/jetpack/modules/theme-tools/site-breadcrumbs.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24F512B8D5AC453780400AD34BCD6455')),
(UNHEX('EACD83ED2C80D66F681E4ED1846CA0B8'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('92880287A83A94CDB1A0BA3C31919C06')),
(UNHEX('04EBFA06793033EFBA29E0B2960025AE'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('88BE866FF2E8C244843220BDAA0975F6')),
(UNHEX('897263E451533C0ADF6BBBF5F804A5AD'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E38D74FDB83226DA0B4D4C366148E04')),
(UNHEX('C4AC85776DF89066ECF6BD100C6FC7C5'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('880506C42A8E3E89FF14B5CB86B6A55C')),
(UNHEX('490FF5362F5645457CD7640E94CEED30'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('62B24CD769EF842AECE02CDC206922D5')),
(UNHEX('95783ED4CE423E8D9573F5A677AA1DA6'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03B2F90F2DA71743362D31AECF6623F9')),
(UNHEX('E762C608A87471013C1E121B3EF37662'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9157C96C5E5B744212E51EC562501C14')),
(UNHEX('11B2A7E3DB1114F2086E2922FF96CEED'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82A9F3750C6D471E1AC216AB9697D274')),
(UNHEX('E4B8F9CF9EAD2F7EBD16CD2A63290763'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07A83398FE824E4CCBF1E76D14EB3CAD')),
(UNHEX('A70BA90D2E8A5191E6EF8C090C2548C7'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3EC8EE6D445D95F62106C48B0DE3EE55')),
(UNHEX('AF7E9AA513DE0234592E16E28B48FAE0'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C058E272C05FA32B3271EBC4DA0F7C5D')),
(UNHEX('F7297FB32108BC6AB4B272A5216213B6'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB9CCB95EA4F93180B8EAD3A948CA5FC')),
(UNHEX('D2B1F8BFC574704471FA9B4DEBB2F01B'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB3CF6D6746CDEA008EA383C157AB797')),
(UNHEX('D5A6B088EAB4ED1C42240A6154ED622A'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF2528F82D558FF112AA32C2D0AA113E')),
(UNHEX('4E574C4D12A24AB5C1819AE138DC243A'), 'wp-content/plugins/jetpack/modules/theme-tools/site-logo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('427A9529C87B3F3D955F1286D6DAD01D')),
(UNHEX('3C2F28F4D132A4B205985DDE91FE9727'), 'wp-content/plugins/jetpack/modules/theme-tools/social-links.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66E95AC05E2C9FF4970BEA97702B469F')),
(UNHEX('FE5F385B91D9A8FB7D9168EC433387C5'), 'wp-content/plugins/jetpack/modules/theme-tools/social-menu/icon-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('54211FBBC18E4BDEB720778518ECCDF6')),
(UNHEX('D2F4C3A436E2A192F5C83EED52A3C012'), 'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11B8B9905FFC16F4C4BD81CC9FD5DECA')),
(UNHEX('9DA49817C283AF86B22917252AF1581A'), 'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('02FA672A28CF5D27C253822B2E1AF180')),
(UNHEX('61CD3D087A41C09645A9E8643A38AEE8'), 'wp-content/plugins/jetpack/modules/theme-tools/social-menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE8CDED9FD154A1B7119191A4ACCA660')),
(UNHEX('6E867B4492913079B667131C71143AD5'), 'wp-content/plugins/jetpack/modules/theme-tools.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA9405B7D7DB77F5EF326FD2400F8BB7')),
(UNHEX('8782EE688D073A5E850BC14BDF46E2F2'), 'wp-content/plugins/jetpack/modules/tiled-gallery/math/class-constrained-array-rounding.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B26B3C703E801972BE889C92D90A05A0')),
(UNHEX('E59D68B189B2B30D07C8F52E56E8AE7A'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl/tiled-gallery-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B58E13B84A5721A9D2520829737BBDF1')),
(UNHEX('F6FD643E36471C0E154F82838EB9D5BE'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/carousel-container.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D32FBCA1D3F0BEAF4D07FE3FED439482')),
(UNHEX('36B756A66325B83D0EE72B2B88EE1915'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/circle-layout.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16A50ECA01FC4D7FCD23A506384952AE')),
(UNHEX('6354DAD011D52A35BF3981BDB054C285'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/carousel-image-args.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDAA120DC86C2C1697C8FB4D45A29DBF')),
(UNHEX('316B0F6E6DB4448659795CE26E0757BF'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/item.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('661DC2B5B8F663D2BB13B63C246E158A')),
(UNHEX('9931F56893D8AD00A13BED089F1822D4'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('879E17ADD7B93716D884E43D36F45C1F')),
(UNHEX('DE3264976E2E6CF3FF54E7698577C761'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/square-layout.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F2BD4E9D9DA4C1CCB8869D8966126D7')),
(UNHEX('5AD4A62CE84FD495B437A46E9BD06BA9'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B993FE4119DAC2BAC62CDA0C777A676')),
(UNHEX('6ED98A476CE4A55EC5A84F11BE85407E'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E04FFC39B99C24E233AA086FD143959')),
(UNHEX('86CE73906AE0134764476BCF802B5799'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0FBB680F6C02794A459473433B8C322B')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('1B9952C167B97A8921329B01186450FC'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rectangular.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('243C7A518479BBAE26C6A768B2A30C2C')),
(UNHEX('39B67BF42B3D2D4FAC653E01569E1A34'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-shape.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51326C1BF0D50A8101FBCE8E5F79E038')),
(UNHEX('E921D3DDE8EF60EDA56EBB94AB77F895'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-square.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74528C94C32B803970ACA76FC711ACFE')),
(UNHEX('BC22C464142E85B3A36863E8F998D11C'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B1530D1AC8433796AE3723C95A1FE3E')),
(UNHEX('8512ADAE84B5EB43DA444CBEFDBBB8A4'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C164A4BA1482E6426D44476805F5579')),
(UNHEX('26D05DB1CF9F701186ABAA8BBAB82099'), 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8417879B03FE42F1504806CCA3675C72')),
(UNHEX('E7D37D8F4985AAE2FDA5073B88A00147'), 'wp-content/plugins/jetpack/modules/tiled-gallery.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1039104C423195F57667943D49D87FB6')),
(UNHEX('6A9CDFB32EE7475204C5D66547EA9ECB'), 'wp-content/plugins/jetpack/modules/tonesque.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E4010B5BEA79FCE1CF9B57D822EF350')),
(UNHEX('088C7FDE7503845780045537BA9018CF'), 'wp-content/plugins/jetpack/modules/vaultpress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BCE7B3C7196302E069B644336091F27')),
(UNHEX('36F4BC28E0A2A95A5D0398FB47BCB5D2'), 'wp-content/plugins/jetpack/modules/verification-tools/blog-verification-tools.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0B29F0013E9016B24FF260AF2D6A35C')),
(UNHEX('4256B72AAAB4F727A530474580F68A26'), 'wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A61C9666CFE358A06F04D565AB8F478')),
(UNHEX('2BD3B38492539268403C96177D444D45'), 'wp-content/plugins/jetpack/modules/verification-tools.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADAB492D8D28C8BB2A4A801668D5CA37')),
(UNHEX('C69780C5F31FB80F0667DBC8CC17DC8E'), 'wp-content/plugins/jetpack/modules/videopress/class.jetpack-videopress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('881F9DEC439CF97C58093D0E5C9674AB')),
(UNHEX('75FCD2D3D7D911451FA75CEA003ECC7F'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34C6D5D7DD1E86430F6FEFB162145A47')),
(UNHEX('16C6D5653BC05BA967EF0FB3C295AF8A'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-cli.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2C544A319F4C3C3CB90A2C0387E4249')),
(UNHEX('4CFB567AA2786F59495F2CDAF76B43C0'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-edit-attachment.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADA59C109695522483DB9AF4ACCF6306')),
(UNHEX('5F55BC8F6D2177BB0893CB28179AE1A5'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E0385F11E38B81F0DADBD9AA74ADAB6')),
(UNHEX('2B639373B43C5087011CCD03C8762D04'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-player.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D983414E091D1887357B0EABB113DC77')),
(UNHEX('4882C597D1A76B4E7E281DE7971B9F8C'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-scheduler.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('076A9EFA58F730536C1F4B9F4287BA9D')),
(UNHEX('BF47836B4B1FD63E360E63FCFB3F5127'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-video.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E85551D822FDCFFF38AF61BEFF72A574')),
(UNHEX('3C7E3984DF3E32D9048A221233422083'), 'wp-content/plugins/jetpack/modules/videopress/class.videopress-xmlrpc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FB59D79D227140BCD4499D9B678B31A')),
(UNHEX('42D4AF13EDFB0E44F8924CBC6B9C0DC3'), 'wp-content/plugins/jetpack/modules/videopress/css/editor.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B09C1D6EB174051DB20255D8F49127F8')),
(UNHEX('C4BC566E8646583DEFEA007FB435FB31'), 'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A91125A03E99BFB2F8CFE8092449BF0')),
(UNHEX('419A2F3A86F472569742C47F8B452EAE'), 'wp-content/plugins/jetpack/modules/videopress/editor-media-view.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DE0F07D081BCE2C859D5805B5CCE7BC')),
(UNHEX('9A600D9484D9A0129D81FECBAA9C346B'), 'wp-content/plugins/jetpack/modules/videopress/js/editor-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C46BB0E2A9FCA99147681DFCC28FBE3B')),
(UNHEX('A3352B6515FA2AA41C24E3C29001CE7B'), 'wp-content/plugins/jetpack/modules/videopress/js/videopress-plupload.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DCFD781EEE592576ADDFEC8DB6D91B35')),
(UNHEX('1EF80BD086DE56C868324F8EE2C74E91'), 'wp-content/plugins/jetpack/modules/videopress/js/videopress-uploader.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F321E3CABF90B0221ED4E3551AF7C97')),
(UNHEX('B4F4418AC61A52B3525276287C278DDB'), 'wp-content/plugins/jetpack/modules/videopress/shortcode.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1E9A0D2DEA3DDD69628886A5BE1FF81')),
(UNHEX('98182979F129ABAD84ED7CDC390BF6AB'), 'wp-content/plugins/jetpack/modules/videopress/utility-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('240A7DDAB020C85E9CC4339F679050BB')),
(UNHEX('D5E343D8FF9703106B1071B89A3F1EA8'), 'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60FDE1F414E1E1C424F1375B3467C907')),
(UNHEX('B11D7126CC22D6ED798FD0250BED76CF'), 'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1521C0C6C016BD878C6675E8725A844')),
(UNHEX('61DC841B98A20566D7BD1F6BCECD101E'), 'wp-content/plugins/jetpack/modules/videopress/videopress-admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1BDAB678E7A76331D8D9EF003A257E9')),
(UNHEX('3B49B5F0A7DF9D68C615DE4E81794BE5'), 'wp-content/plugins/jetpack/modules/videopress/videopress-admin.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10C098A8B4AC99DEC51FB1B84166B8D2')),
(UNHEX('D882B0B07443479580E13D268B4F6025'), 'wp-content/plugins/jetpack/modules/videopress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('873D1DB4A318CDF36BF794CB0E376640')),
(UNHEX('EBBF4ACD2A8EAF9A68E8F4F84E538987'), 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl/widget-conditions-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BC42B00C37E052FEE17CA2106AE0AE5')),
(UNHEX('2690E90C18B6C73A809558BDA1B3CDB0'), 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('395B7A2EEBA356D6047B5A742228B1BD')),
(UNHEX('A8B024FE033AEA81D166C7DCCF825127'), 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('862BDD8CCF7F5DA669F54716308090BD')),
(UNHEX('FD017C4E74B9CE1ACDF049F09E88EE6B'), 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AF8B8B375C07BFCD49E0A70EF32A808')),
(UNHEX('3CCF915D9A0B03DE2E3ED44612D0609E'), 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('460C5268638EDD1A27596A5E831A2CB8')),
(UNHEX('E1CE9776445C23C40864F420F72DCF4E'), 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F9209926AEE6DDA153F2036D67E3BFC')),
(UNHEX('8014377709F97503D295782E3F42109F'), 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('348D0F4235592AB44637A4A2D3C8F366')),
(UNHEX('15304070057A7368054D653FE7D27DCF'), 'wp-content/plugins/jetpack/modules/widget-visibility.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0956B34879BCEED07B1AFE648A554E2')),
(UNHEX('A81F99D17D2A506FA3EEB91E6782EE77'), 'wp-content/plugins/jetpack/modules/widgets/authors/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84A952F288C23EAC97BA066BB9031968')),
(UNHEX('E9560520681EC629B737C12AED919580'), 'wp-content/plugins/jetpack/modules/widgets/authors.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A4303C1DDBEB8AF1B890F0BA524EEB1')),
(UNHEX('DFA25FAAF5A2023F5E70019754F368B3'), 'wp-content/plugins/jetpack/modules/widgets/blog-stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('143343532014E5A8373C87824BFB6E2E')),
(UNHEX('D4D4478BCE77638FBBDF489DFCAABD0F'), 'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA2A393682C4D81E290539A524AB8222')),
(UNHEX('CB3A6CFA650C0A5C3320D56BBAE72A03'), 'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-map.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC7729093E984481201CEC13E5D7EAB0')),
(UNHEX('617A876A5B322BF77D126222B0348E7E'), 'wp-content/plugins/jetpack/modules/widgets/contact-info.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04E3B885E4A696D15BE34BD29069A38E')),
(UNHEX('FC678E12E0F29458936797045A7AF419'), 'wp-content/plugins/jetpack/modules/widgets/customizer-controls.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB782FD08C7A61FCEDE1A86A11BF53DA')),
(UNHEX('CD7A20E3871C3951DBE68EE5B2943563'), 'wp-content/plugins/jetpack/modules/widgets/customizer-utils.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36C245DB83B384C6F5C8F93D9AD18D3E')),
(UNHEX('448FF61B0CB8C6D8A50CE72F5676F526'), 'wp-content/plugins/jetpack/modules/widgets/facebook-likebox/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3D0405EFA850B70D21C25E3D71A464E')),
(UNHEX('1C072BD88E8F67A1428E8913DE954BC7'), 'wp-content/plugins/jetpack/modules/widgets/facebook-likebox.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A73A18E6787EF915A3310ABFC9FCCAA3')),
(UNHEX('55ADA720F5F8233548B8321852AC2A30'), 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60C8B49CA03CFAE747F58315F7C3AFDF')),
(UNHEX('D4FDCD4A31D9519EE5BF806430AEE177'), 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A67319C0564FA23B0B4A4BD53828FB8')),
(UNHEX('33818F0E3BFE7CF81378BBF6CF102736'), 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6196620362A47860B14E44898876CFBC')),
(UNHEX('406E1211DC5B652A3EF220283CBD1A50'), 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('878EC924F8EC3B0CAA8DB698D1D2A93D')),
(UNHEX('089D1071F51C16AF0A1EF8F88F55403F'), 'wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl/admin-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D10233A3B69486C3F2EDF4CD3B294306')),
(UNHEX('8AE0DA42245C6416AA1498E121C62D53'), 'wp-content/plugins/jetpack/modules/widgets/gallery/js/admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3CB66198DC4C790B58D391EAF031E703')),
(UNHEX('F0B1504F0E8CFE00437EBA55ED32F1CD'), 'wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('065D00876C1C0CE6C84017403A92CD7E')),
(UNHEX('9E96025106F50F28E23C1DFDFD006D95'), 'wp-content/plugins/jetpack/modules/widgets/gallery/templates/form.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78FC19835A4058E01EC6CD8CFF87E125')),
(UNHEX('3A71583D43CB810A44A22CA90CECFFFE'), 'wp-content/plugins/jetpack/modules/widgets/gallery.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EE0A7A8AE016B45BFE15C3382571A94')),
(UNHEX('A27590AC39869BD836D3E3069127153E'), 'wp-content/plugins/jetpack/modules/widgets/goodreads/css/goodreads.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B3C150310004EC7E30EBB95AA110C12E')),
(UNHEX('0EDC0EC36A7C82ECB1F88DDA86D84821'), 'wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl/goodreads-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1B8BAF27B72A052C821A99849901E726')),
(UNHEX('0CD0EE21CB07427FBA9E01A108114DEE'), 'wp-content/plugins/jetpack/modules/widgets/goodreads.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50596DEF6B356597CBAB36FAB21065B2')),
(UNHEX('01B68A0473D9E1F72336D792130AEAC2'), 'wp-content/plugins/jetpack/modules/widgets/google-plus/js/admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F69414DE063726FE6281A823E996A197')),
(UNHEX('625C45024A1DD469D64C1E7B74128D07'), 'wp-content/plugins/jetpack/modules/widgets/google-translate/google-translate.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('475E2C919229BCAC489853342D126260')),
(UNHEX('3BC624C84F11CB0AB3174D5863798A52'), 'wp-content/plugins/jetpack/modules/widgets/google-translate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('079EC846A014D63B3041FAC98DA88F2A')),
(UNHEX('649F8BAE8E017FD454BB983095C6D5B7'), 'wp-content/plugins/jetpack/modules/widgets/googleplus-badge.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC51817157F1ECE9D68DB6ED233905E2')),
(UNHEX('12690CC12FB017FAA730CAB622235794'), 'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F50B0BDC35197851AF321825EF5837EC')),
(UNHEX('479EF4FF1E726FD61D1B60AC7A91AAB8'), 'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D39C0EA61EB342400C996C8C7F2C38A')),
(UNHEX('76FFF45E14F2C8A1B343ECC304DCAEDF'), 'wp-content/plugins/jetpack/modules/widgets/image-widget/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7218D400C59913E23C21930DDB58FA4D')),
(UNHEX('A050772ABA3BB0165D9AABB000851334'), 'wp-content/plugins/jetpack/modules/widgets/image-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B3DD4CB6890C6ECBD02A7F838FA874C1')),
(UNHEX('79CCF44ECB8E9E3555071A06ECFE63C3'), 'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CD8C894C8CB77FCC30B9CB996D68931')),
(UNHEX('2A86F96540B5F834E4742A58C648EDBF'), 'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('841AF7E6C93C15202B445CFCD6704EB6')),
(UNHEX('315E1AA87F0F67307F222B31F78B1C19'), 'wp-content/plugins/jetpack/modules/widgets/milestone/style-admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F70F5885B292CE1E3B55CEF7376F61D9')),
(UNHEX('1BE408AB7D2B45E4F9EDC92424485EE4'), 'wp-content/plugins/jetpack/modules/widgets/milestone.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51E0350B4CAD36735CA8B900679B0B93')),
(UNHEX('D2F3150EF5818F9D299BC05DFD35EB15'), 'wp-content/plugins/jetpack/modules/widgets/my-community/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2EB7BA70F7A5B1A28C7C99881127FC29')),
(UNHEX('6D9806F45808E5D95659519BCD56D84F'), 'wp-content/plugins/jetpack/modules/widgets/my-community.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50B2F677F7153A9B376D9E55794ED41D')),
(UNHEX('6E4AB51617A0B380EBE2EED92E1D9D2B'), 'wp-content/plugins/jetpack/modules/widgets/rsslinks-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('77F55F0E78E93ADF46771EDED713AB54')),
(UNHEX('1E802678080EEA4CC60C05FC1BE35E97'), 'wp-content/plugins/jetpack/modules/widgets/social-media-icons/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AE1996D2862BD7DD3DCA1BEEEB6F4D7')),
(UNHEX('0E62203C6E718794F8E98FEDB2F91341'), 'wp-content/plugins/jetpack/modules/widgets/social-media-icons.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B368D0CF63A75DE2B79CD252634B513')),
(UNHEX('A5F0BC8750D9E61A1B819DA4C1203982'), 'wp-content/plugins/jetpack/modules/widgets/top-posts/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F64A2D81A9463EACD680AF4E8A868A3')),
(UNHEX('D0832715A39CA43D12E0B28E51B7638D'), 'wp-content/plugins/jetpack/modules/widgets/top-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5D86000DBD65780D2C2123CC596DCA1')),
(UNHEX('85EA83C08C8648DE2F2F40B83E0B41E2'), 'wp-content/plugins/jetpack/modules/widgets/twitter-timeline-admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA40E38038931372829D6A6B775190B7')),
(UNHEX('1467729AD8F5A972B342F0A761ABA35C'), 'wp-content/plugins/jetpack/modules/widgets/twitter-timeline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('702F945D54E2849DCCFC19E4C1FA0610')),
(UNHEX('531BBC8490D55CEDD6BC61C4BC910A4F'), 'wp-content/plugins/jetpack/modules/widgets/upcoming-events.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('452B8A776B2BC47CC28E2474D7B6181D')),
(UNHEX('6849CDC59B4862BF02D5D727A7FADE05'), 'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FCA33574369E7AB0897F4C470208CD5')),
(UNHEX('33FD9069DD2D7A6ED2F0EA51B986D824'), 'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CA4D706E6A357D2388688142FA9BD0A')),
(UNHEX('94AB3FBF1CBDCF1F8BE88B4F2900FF63'), 'wp-content/plugins/jetpack/modules/widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8378BBC0A35A851860D57181258D42F9')),
(UNHEX('5C842C16036A1B71EBA028483B3C0930'), 'wp-content/plugins/jetpack/modules/wordads/css/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C980CB044361631A11E3DEDC9110384E')),
(UNHEX('51788879DEF6FF5D4D5DD00DD08A1060'), 'wp-content/plugins/jetpack/modules/wordads/php/admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A4420DF7DE85FBB15D07BF054A9EB34')),
(UNHEX('B47B25C80A22593BA55EDB363DC8AFAD'), 'wp-content/plugins/jetpack/modules/wordads/php/api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0370FC67047F6A17CC1783BB1DBA0BE5')),
(UNHEX('E2DFF8777D7D0747C60586F1E6CCB3A7'), 'wp-content/plugins/jetpack/modules/wordads/php/cron.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CE2B4394DDC1F78974C724751590425')),
(UNHEX('D0BF84551774AE3DE0A3E3C08E227806'), 'wp-content/plugins/jetpack/modules/wordads/php/networks/amazon.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06E5030962AA2E5AE5903516EE063670')),
(UNHEX('0DF51C95D615C7B4C2ECF49CDFFF915E'), 'wp-content/plugins/jetpack/modules/wordads/php/params.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26DA687F7B5FEC728295C9B45A88958B')),
(UNHEX('177834F29029FAAAD660B908D464665E'), 'wp-content/plugins/jetpack/modules/wordads/php/widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9487A52A12A422BC39EA0E11FB6312EB')),
(UNHEX('CC6EE98CC45E2EEB270A75222B49F796'), 'wp-content/plugins/jetpack/modules/wordads/wordads.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('842A59E8AE56C971223E7746862A063A')),
(UNHEX('FB7B416AEEDA47FDDE8E407C2DF49E05'), 'wp-content/plugins/jetpack/modules/wordads.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('622AA9DC8F70E8594050161F09A25B82')),
(UNHEX('F2451FB2F466120C961400A7BA8ADEB8'), 'wp-content/plugins/jetpack/modules/wpcc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E4010B5BEA79FCE1CF9B57D822EF350')),
(UNHEX('A9BE0CEB379333B65E094223028F40B5'), 'wp-content/plugins/jetpack/modules/wpgroho.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B900F865A0D6F581B8E93F8C6311550F')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('DB31FA902F0189E9BE93604E3708EB7B'), 'wp-content/plugins/jetpack/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7408A44295CECC6765F7FF54FAD4435')),
(UNHEX('A9FAEFCF1EA81D89F8E1A1FD6D584B95'), 'wp-content/plugins/jetpack/require-lib.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95319FD9B2EC84CCF99F43EA23DB0B12')),
(UNHEX('CC58FA595E41204E53963F05A476DAEB'), 'wp-content/plugins/jetpack/rest-api.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6639021573AE307CCB1BAA49C1E8F6B')),
(UNHEX('C9C742928C8982AAC997A79719D307BC'), 'wp-content/plugins/jetpack/sal/class.json-api-date.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78EC6B2B2FD601CFDBE141D791088574')),
(UNHEX('83169C125350DCC468ED976362C20D01'), 'wp-content/plugins/jetpack/sal/class.json-api-links.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('30FA38270BE7CD0E33D9F0A06E500B06')),
(UNHEX('9538D2A517BCB6BA1BB67D5C26465D47'), 'wp-content/plugins/jetpack/sal/class.json-api-metadata.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DBE1262543D51FD69D354BAA27E5420')),
(UNHEX('5753E0DAB389BA921CECB4A47B6E932A'), 'wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAC6E7A034A06B2400BD548877E28414')),
(UNHEX('7C58A5408A3C68D8A76BA4B7E98B0041'), 'wp-content/plugins/jetpack/sal/class.json-api-platform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1AA69B0638673FBD0C5902DAC4DA156')),
(UNHEX('BCDEB11C3D074580A38726F197642A8A'), 'wp-content/plugins/jetpack/sal/class.json-api-post-base.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('981A80D4EBADEDCB0DAA050D260E3528')),
(UNHEX('63D0776DD2BDE6B4E4DAD6BBE6747894'), 'wp-content/plugins/jetpack/sal/class.json-api-post-jetpack.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FE27B5A9067A907477A29D04DBFD28E')),
(UNHEX('00447EC0922BA59D248236F97371CD89'), 'wp-content/plugins/jetpack/sal/class.json-api-site-base.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EED9C8B655B8779ED197AE72ACFAECDF')),
(UNHEX('DAE29EF787681CB169A77EC713AF3FF6'), 'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack-base.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E0D5096B6CC006FCADA3FAC4CDFEB09')),
(UNHEX('FA75BE1E1DC16ECFEBB258C6E8A8FA31'), 'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('448B9B287EBEA95A9DA3CF8BF1E36B7B')),
(UNHEX('89F632F25E3C14A3CC4F1B88D917FB3D'), 'wp-content/plugins/jetpack/sal/class.json-api-token.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2593D6E7E6901A1902AC32D8D91FD249')),
(UNHEX('8986EBA90522CF6F2B93BE99F4D1D77F'), 'wp-content/plugins/jetpack/scss/_utilities/_accessibility.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4CC7918096DB515D3BA1B5F526013B64')),
(UNHEX('AEAC9FD762BA4055F59ED127F8CCBC7B'), 'wp-content/plugins/jetpack/scss/_utilities/_grid.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61ECA63905A501D5548815C54EBFDB29')),
(UNHEX('7EB1289BFAF498F67009BC7BD92B650E'), 'wp-content/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FDDDFA82F7FFA0242039E0BCF11E4AF')),
(UNHEX('27363B757AC837C0723F57C66548F7E4'), 'wp-content/plugins/jetpack/scss/atoms/_animations.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B488B8ED5A76269A37699FAF94BD9E73')),
(UNHEX('0BD41BD9533B74D5F2F3441806601562'), 'wp-content/plugins/jetpack/scss/atoms/_buttons.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E2B7E54506D56619374CACED5284A287')),
(UNHEX('A7459763BBD36F2852E47FF515BF025E'), 'wp-content/plugins/jetpack/scss/atoms/colors/_colors.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC2C40A3F9967C48914152836BCFCAA2')),
(UNHEX('39BB7DC58F0332AC72E0033E3423BDE3'), 'wp-content/plugins/jetpack/scss/atoms/icons/_automatticons.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0735D97E36B1F33C53DA603B6C81062')),
(UNHEX('6BE595B7CEB5993A7A03BB5F100FA093'), 'wp-content/plugins/jetpack/scss/atoms/typography/_functions.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D626D6B8D7FDC573E91F7F4EBC2DFAD6')),
(UNHEX('1C6EE5BAA4672550EC9CB342EDB4CCB0'), 'wp-content/plugins/jetpack/scss/atoms/typography/_variables.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('67EC47FA4F2BE8257666E899D50BD405')),
(UNHEX('BC565C38E0BE00C51658A5D59932C45A'), 'wp-content/plugins/jetpack/scss/dashboard-widget.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94E38A0FD1B95DB844B3F1DF5D2BBEC6')),
(UNHEX('6198345ACF5BCC5C30FD60A5BA7EAB8F'), 'wp-content/plugins/jetpack/scss/jetpack-admin-jitm.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9BAD615F0339CB0F6C855525BEB4CD18')),
(UNHEX('E98A6710959FB12A0198D4F126F62B3F'), 'wp-content/plugins/jetpack/scss/jetpack-admin-jitm.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C58CB43AC4F896F55B070EEA19EFEFAD')),
(UNHEX('E339BCAA160DDD30DCCEFC3B8ACCAF38'), 'wp-content/plugins/jetpack/scss/jetpack-admin.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9F77B7F5CA44E32BACFB0C8407F0C0C')),
(UNHEX('DA92DDF5D0F6436D59D71C74445F5789'), 'wp-content/plugins/jetpack/scss/jetpack-banners.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2345C7E390759C676F51B48A044C9495')),
(UNHEX('D9FEE5723A82F15F10A25ABE3A89A291'), 'wp-content/plugins/jetpack/scss/jetpack-icons.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B829FC95DE951D658A589E7B4D7DFCF')),
(UNHEX('6C0F47352C6B2D80D0ED4D2E132884AC'), 'wp-content/plugins/jetpack/scss/jetpack-idc-admin-bar.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3AD896743E7E6892895842B92CA850D1')),
(UNHEX('12915812AFB2B31B2A33AD3B4E3541A1'), 'wp-content/plugins/jetpack/scss/jetpack-idc.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC46D8D7E11684CBFD7291EBE6CF08C1')),
(UNHEX('233D436A3F78A55355216C22065BDC0F'), 'wp-content/plugins/jetpack/scss/molecules/_nav-horizontal.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D74B9385232C10EC0A27D2F8861561A')),
(UNHEX('CAEC78BDFD79F4F02A4BDAC4A16FD73D'), 'wp-content/plugins/jetpack/scss/organisms/_banners.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4641A8E04E860D63EED9AA5DA193BC5')),
(UNHEX('EC373DF9CE1FD261716C114F466E591F'), 'wp-content/plugins/jetpack/scss/pages/_connection-settings.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F87479251BC7CDB9F32A054A360735E7')),
(UNHEX('007A4B21F0E787F44FF3AC546C8DBFA8'), 'wp-content/plugins/jetpack/scss/pages/_manage.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EBDC233D2D296687B72028FE158750D2')),
(UNHEX('7E6029CF515C4428836263F7339DE4F0'), 'wp-content/plugins/jetpack/scss/pages/_protect.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE9F733684F5400E098AFA2E0315674A')),
(UNHEX('2819C9E6E6AD872AABDE12BC20A360BB'), 'wp-content/plugins/jetpack/scss/templates/_connection-landing.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34C88996DD92C5338E1FBBBBB2BFC941')),
(UNHEX('B632406082544412F83B3AA30CF0DE95'), 'wp-content/plugins/jetpack/scss/templates/_main.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8C717602A8B7AD90C8C49A75F4498AF0')),
(UNHEX('206B14B7996FF1683AE7629616B92824'), 'wp-content/plugins/jetpack/scss/templates/_settings.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F41DDC0739188B77AC04696DE3FCD109')),
(UNHEX('F0C5F8EF9CA17F374F747CFCDC423198'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-actions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E585440ECCDB49C952E01E47EAE7AC26')),
(UNHEX('57AE0A1EC03BFEFA10FB1B2B9745140D'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-defaults.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2FB14286368ADABD8DF5F6435B40299')),
(UNHEX('F1F0E45FDE3BE9FCC92D85238DA72B11'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C78C858B763461097B4580E89743F49D')),
(UNHEX('0AC9E9D17038B307BFB33251FA968F52'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-json-deflate-array-codec.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAF79E7F477DA3BEC9AFC59CAC107E1C')),
(UNHEX('F478A9B8D3D675EE8F0A8182FC4AF9B9'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-listener.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1668D0993EE8AAF88A031912BA5919A3')),
(UNHEX('EB9AD1513602022676AC39E190339A60'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-attachments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A7258775DB7EA74C4735CD89BECA1A3')),
(UNHEX('3137AB2CE261116633F375AB70258250'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-callables.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC72BDF056D03778A3D25385D855ED42')),
(UNHEX('FDFDF49DBA8388FAA287753C6675B2DE'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73A6A9737640A988A5D532D3CA9E22E8')),
(UNHEX('E5E057E61153C8501B8DDC479E458A26'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-constants.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('39B8830155DC5CFBF6C2005F3ED9A191')),
(UNHEX('2311A17CE68FAEA0D5604816201CBBAB'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-full-sync.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A88CB9FB9EEF4B97BFB2234D5716EDE0')),
(UNHEX('1D0E46F0AAA889F99D2B6FC018621E81'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-meta.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E402943785174F35BC58F587AF206F3')),
(UNHEX('FFE6D649C5EC1B1A1C3DA413F26E2947'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-network-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B11C11703AD326042B3C213C06FF8755')),
(UNHEX('B0EA53DF805546639EF5DF7C9DB56A9A'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15D5A7BC19A1E1234ECDC053038B51A6')),
(UNHEX('DBB293DA6D725E16DE3E04AE94116FD6'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-plugins.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8438B47748C4DC81ACE0F3CEC8E4A7CC')),
(UNHEX('01B30A4DDC62A67AB07FC58EE190ED20'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0BFEC59ED5E1C706CE7838AA1054FD44')),
(UNHEX('E7912E0EAC16863D9555927F71081C25'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-protect.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D127E014F6212D2E3C1078F13247EDDC')),
(UNHEX('61A99FF8E72B00DBAD3BF5579B0CE8CE'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD8FE1A8844BBB194DDFF1DE0F72C914')),
(UNHEX('7CAE9E04BDC8FAB738D51E325FFB9A7A'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-terms.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D88EFD1B15B106702661CB81F13432B')),
(UNHEX('B36C3A395E9554ABE49CD61B6877E894'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-themes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AED1F4F346520A5CF247D72B16047E14')),
(UNHEX('EC66156D6A604862B4D166148C7AF2AA'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-updates.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D14535CCD0971174D56C082C0E845178')),
(UNHEX('CD6C4ED7E47E6182742147C9268365D0'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-users.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3279DA580967AA887C4F769F09C28697')),
(UNHEX('3CF49F86AA2A93127092510EF17D5478'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-woocommerce.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F606907D107CCD44DAF601036D09E104')),
(UNHEX('72B7942F96457ECAF089679C07854A8D'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('59A8AA34FAD85C7BD9F1D011C5CF4DCE')),
(UNHEX('BDE6D2AE4B062B7DA0D60422281FA7AD'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-modules.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A97011C5FBEC6DA8A1621B01D2E4677')),
(UNHEX('D9754AC86E1BEC4C8A04A4FA376456F3'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC39EEAC129EA8DC8969C5037307A611')),
(UNHEX('54D0F0FDA72361746C4C1274C71206B5'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-queue.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2226E552039BD683CA2945A9CAEB101')),
(UNHEX('A856F2AD5E037FB442DC03EB87C2D228'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-sender.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDE1C3367C2B8E0B447AC5ABEBE353B7')),
(UNHEX('FFAA98D89F19AEA231E5F079D243CDB2'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-server.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CDB7D7E9328096DFE590994CE42990B6')),
(UNHEX('B1000C6AA727492EE1312F5F2D23B16B'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DC8A1061B89BE4208360ABB5043E61E')),
(UNHEX('94F5DCDF8436C556A7392EA6860A6A7D'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-users.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D801630D307412627E453517208AB21')),
(UNHEX('F1FFC8AD701944F3B3262EF4514B6201'), 'wp-content/plugins/jetpack/sync/class.jetpack-sync-wp-replicastore.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9738D0A786F2D6DD6FB3B39F3BE1494D')),
(UNHEX('AB9A405563381554109A12010E228E55'), 'wp-content/plugins/jetpack/sync/interface.jetpack-sync-codec.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B882BF9AF9EE64CC54BA6A9CCE5DA82')),
(UNHEX('B73761347E473E0338F8B8AC90083AFF'), 'wp-content/plugins/jetpack/sync/interface.jetpack-sync-replicastore.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('720380F4ADDA985C7B28BE3299840390')),
(UNHEX('93B6D23DB2D7593D7FF922C25BD42BBF'), 'wp-content/plugins/jetpack/uninstall.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B29B1244386F2CE834343E264628B14')),
(UNHEX('AB96AB97AB35B3D0CDCDAA944C0D9811'), 'wp-content/plugins/jetpack/views/admin/must-connect-main-blog.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6705A78FCCF7FDF4B65AE3BE09F6817D')),
(UNHEX('F44A58B7B433A477865DAD333D18DE0F'), 'wp-content/plugins/jetpack/views/admin/my-jetpack-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('875405DB68B1FD743DE7CA0DFFB05D3E')),
(UNHEX('DFFB5D3E7AB3CA35807EC0A17008E255'), 'wp-content/plugins/jetpack/views/admin/network-activated-notice.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CEBB0C29C3DA9A4B7D966BA95CB377E3')),
(UNHEX('F996164F66D4F8DA263F6A3BB0021EBF'), 'wp-content/plugins/jetpack/views/admin/network-admin-alert.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AAECB1F9A3FB5F24571AE2204F24082')),
(UNHEX('7CF5A66B22E54F4E72BEA8EBD076C316'), 'wp-content/plugins/jetpack/views/admin/network-admin-footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65F858B117BD1ABC5308148CEEA23225')),
(UNHEX('64CC96478290856E3776769AC2E55A0E'), 'wp-content/plugins/jetpack/views/admin/network-admin-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('561CF2193959DE139A52A8A01A39F473')),
(UNHEX('CF1D2E3D5C8FDDD4D4D02A2B1F0ECD91'), 'wp-content/plugins/jetpack/views/admin/network-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D78F9EFD28D4788AD77CF3B5CCCF9F5A')),
(UNHEX('F2C9DBE916F485845BEE4E214C035C6E'), 'wp-content/plugins/jetpack/webpack.config.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0FE4749DE38FB3EF1EBC3F082C3715E')),
(UNHEX('DAF13EF9021B78FA93774F89EA5215EE'), 'wp-content/plugins/jetpack/wpml-config.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD13B8BF93FBAB0051916AA266FF79AB')),
(UNHEX('41A1B693FCE7CFB4AEB623FF5F6E8758'), 'wp-content/plugins/js_composer/assets/js/dist/backend-actions.min.js', 0, UNHEX('6CEE47A1EA5453E9BFB7D3CDFC479AF8'), UNHEX('6CEE47A1EA5453E9BFB7D3CDFC479AF8')),
(UNHEX('463123833AF418D1C12FAC6D812E693D'), 'wp-content/plugins/js_composer/assets/js/dist/edit-form.min.js', 0, UNHEX('320C9C66F099DBBE9F0616CFFCAF9CFA'), UNHEX('320C9C66F099DBBE9F0616CFFCAF9CFA')),
(UNHEX('8F4252EF3F0D7E7510FFAE4DBE6725D3'), 'wp-content/plugins/js_composer/assets/js/dist/frontend-editor.min.js', 0, UNHEX('72715B29B5FBAB5BE0F7F87A9E37896E'), UNHEX('72715B29B5FBAB5BE0F7F87A9E37896E')),
(UNHEX('53BB63210B25BE2E4B6BB8F8C32A74D5'), 'wp-content/plugins/js_composer/assets/js/dist/grid-builder.min.js', 0, UNHEX('EAEC6E2DAAB1C854EDA7A25509F0CFB7'), UNHEX('EAEC6E2DAAB1C854EDA7A25509F0CFB7')),
(UNHEX('184F23DC7188B1B2FA36894B9255C91F'), 'wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js', 0, UNHEX('A00F8ABF944C1D8240000C76B1E64519'), UNHEX('A00F8ABF944C1D8240000C76B1E64519')),
(UNHEX('4DB23E7316729DF95D9BDE02DAE75C99'), 'wp-content/plugins/js_composer/assets/js/dist/page_editable.min.js', 0, UNHEX('0D281FEF187B0A182C7BDA7CDDE4E5A3'), UNHEX('0D281FEF187B0A182C7BDA7CDDE4E5A3')),
(UNHEX('4D8804E3AA793B7CC71D0903A441EB97'), 'wp-content/plugins/js_composer/assets/js/dist/vc_grid.min.js', 0, UNHEX('276BA5AE53E1505741B3C61A592E706F'), UNHEX('276BA5AE53E1505741B3C61A592E706F')),
(UNHEX('8CBC430A30A975592AF45843EAA2BD61'), 'wp-content/plugins/js_composer/assets/js/editors/templates-preview.js', 0, UNHEX('F6766F09E8D2DA300058A7A89A9A548A'), UNHEX('F6766F09E8D2DA300058A7A89A9A548A')),
(UNHEX('F7019655CDDC26288166CB2B39D3BDD8'), 'wp-content/plugins/js_composer/assets/js/frontend_editor/vendors/plugins/jwplayer.js', 0, UNHEX('C070915E33399785AB0F923A0D5EC5E3'), UNHEX('C070915E33399785AB0F923A0D5EC5E3')),
(UNHEX('0A501258A76C30D2AD3582E8EE42717A'), 'wp-content/plugins/js_composer/assets/js/vendors/advanced_custom_fields.js', 0, UNHEX('3B67AAE8C9A681C257FBD3E9977F63BE'), UNHEX('3B67AAE8C9A681C257FBD3E9977F63BE')),
(UNHEX('78BA2916B9063DA1DE448286756DF11D'), 'wp-content/plugins/js_composer/assets/js/vendors/qtranslate_backend.js', 0, UNHEX('70623AD7EF9B13ED53872A8B5C1D022F'), UNHEX('70623AD7EF9B13ED53872A8B5C1D022F')),
(UNHEX('0D45381A2FD4A275C50B6356C85B6401'), 'wp-content/plugins/js_composer/assets/js/vendors/qtranslate_frontend.js', 0, UNHEX('A3C510DC481EAE993CB68DA6CDBC539D'), UNHEX('A3C510DC481EAE993CB68DA6CDBC539D')),
(UNHEX('3B5E49AEA73CD5A8BF154A9528C080C1'), 'wp-content/plugins/js_composer/assets/js/vendors/qtranslatex_backend.js', 0, UNHEX('45691009F0829E130CACA506BFB4B703'), UNHEX('45691009F0829E130CACA506BFB4B703')),
(UNHEX('DDB2060CCF1DDE4504F2622E72DA0BE9'), 'wp-content/plugins/js_composer/assets/js/vendors/qtranslatex_frontend.js', 0, UNHEX('086C9C610F22D1E4D0AC0E64F1DA50B1'), UNHEX('086C9C610F22D1E4D0AC0E64F1DA50B1')),
(UNHEX('F6CA76F26D872101EBD6F43DA633E70C'), 'wp-content/plugins/js_composer/assets/js/vendors/woocommerce-add-to-cart.js', 0, UNHEX('902B7CA09549975E55E136FB0026DF9A'), UNHEX('902B7CA09549975E55E136FB0026DF9A')),
(UNHEX('FE29729D9FC3B382BB4679126ED5B787'), 'wp-content/plugins/js_composer/assets/js/vendors/woocommerce.js', 0, UNHEX('96B611AF9424D731D41B7172BFA95D64'), UNHEX('96B611AF9424D731D41B7172BFA95D64')),
(UNHEX('D427DB311F69D35F481EC554D4578473'), 'wp-content/plugins/js_composer/assets/js/vendors/yoast.js', 0, UNHEX('5814ABB7863FFC4CF4AB28ACFB6DBD36'), UNHEX('5814ABB7863FFC4CF4AB28ACFB6DBD36')),
(UNHEX('CF9EA2D3DAC0AA3C10F29082F2E7EA3F'), 'wp-content/plugins/js_composer/assets/lib/bower/ace-builds/src-min-noconflict/mode-css.js', 0, UNHEX('E08B9C77D53A7178F89410E51BD6DA6F'), UNHEX('E08B9C77D53A7178F89410E51BD6DA6F')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('F965094FB627206B6DB579D99C93DB07'), 'wp-content/plugins/js_composer/assets/lib/bower/ace-builds/src-min-noconflict/theme-chrome.js', 0, UNHEX('E28D16CB55D12000FF675BEAE3B58D97'), UNHEX('E28D16CB55D12000FF675BEAE3B58D97')),
(UNHEX('830A52C6652EC753B605A18CE34786D7'), 'wp-content/plugins/js_composer/assets/lib/bower/ace-builds/src-min-noconflict/worker-css.js', 0, UNHEX('E07C90BB62747D4C738179A36A846D80'), UNHEX('E07C90BB62747D4C738179A36A846D80')),
(UNHEX('99755FCD16F7791C35EBCEAE8F557AAA'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/dist/js/bootstrap.min.js', 0, UNHEX('25FCC8B3E425C70FA90D31F2115E9D86'), UNHEX('25FCC8B3E425C70FA90D31F2115E9D86')),
(UNHEX('A0E7164E045172D39C343644A19F5465'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/affix.min.js', 0, UNHEX('A5FD6FF86466DA813D5B11FC2E3C392A'), UNHEX('A5FD6FF86466DA813D5B11FC2E3C392A')),
(UNHEX('CC310925678B61F8789D7D44A823097F'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/alert.min.js', 0, UNHEX('CDA50412301AAEE446DFB1D555CC463B'), UNHEX('CDA50412301AAEE446DFB1D555CC463B')),
(UNHEX('B9F5F1F3DCCD27370F3534899C2EE553'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/button.min.js', 0, UNHEX('1050012AED730B2F8D8B5C301285A0D0'), UNHEX('1050012AED730B2F8D8B5C301285A0D0')),
(UNHEX('48A53B19C8D40A19E884AFC840EB40AD'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/carousel.min.js', 0, UNHEX('A105B317D1876707CC6782C40D606266'), UNHEX('A105B317D1876707CC6782C40D606266')),
(UNHEX('B192BC1E8EDD7F1347B6BDFC28592925'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/collapse.min.js', 0, UNHEX('5EAF32D24A9730630101ECA32970B1C7'), UNHEX('5EAF32D24A9730630101ECA32970B1C7')),
(UNHEX('763AF78115C5CC0C255A4F1E62BBBEED'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/dropdown.min.js', 0, UNHEX('8E4378D30BB3B8924DEADBB08EFCE108'), UNHEX('8E4378D30BB3B8924DEADBB08EFCE108')),
(UNHEX('B42B1F024CB248A25597E335048D44E6'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/modal.min.js', 0, UNHEX('F6854A05DA30B78DD5C5CFBA2EA4444E'), UNHEX('F6854A05DA30B78DD5C5CFBA2EA4444E')),
(UNHEX('62AC22A49F07F2CFF6711975C78382DF'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/popover.min.js', 0, UNHEX('4673ED29941A9BEA3B440A3EE8BA677C'), UNHEX('4673ED29941A9BEA3B440A3EE8BA677C')),
(UNHEX('FE0F23B535E0ADB372A7DFD9EC9BF981'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/scrollspy.min.js', 0, UNHEX('9E89EA838374D042EA0F5743382E8836'), UNHEX('9E89EA838374D042EA0F5743382E8836')),
(UNHEX('3BFE828676750E254B6C699BF38D20EE'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/tab.min.js', 0, UNHEX('872FE7A6851594D4FBBAF44D1404A4B1'), UNHEX('872FE7A6851594D4FBBAF44D1404A4B1')),
(UNHEX('CDCAA50E9823B41D8D12BD3DF2FBC020'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/tooltip.min.js', 0, UNHEX('38AB8B3B4C40B08302237BB03E0FC4DB'), UNHEX('38AB8B3B4C40B08302237BB03E0FC4DB')),
(UNHEX('1BF85D08F75030448D7EB3D5FAAAB54C'), 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/transition.min.js', 0, UNHEX('2EB81482D3D40C037DEB5E204AB0B10E'), UNHEX('2EB81482D3D40C037DEB5E204AB0B10E')),
(UNHEX('730147C64C9FD56727E0A95CF7AFC5C3'), 'wp-content/plugins/js_composer/assets/lib/bower/chartjs/Chart.min.js', 0, UNHEX('7D8FD0C1DC6732675A1BD453A3F643A1'), UNHEX('7D8FD0C1DC6732675A1BD453A3F643A1')),
(UNHEX('817714B4B040BC2AD4EAE6212EAA91A7'), 'wp-content/plugins/js_composer/assets/lib/bower/flexslider/jquery.flexslider-min.js', 0, UNHEX('9EC3C315B67F434AABC4DA58EABC6C3A'), UNHEX('9EC3C315B67F434AABC4DA58EABC6C3A')),
(UNHEX('B1D381D9052A070A676CD8DC05F359C9'), 'wp-content/plugins/js_composer/assets/lib/bower/imagesloaded/imagesloaded.pkgd.min.js', 0, UNHEX('511EF2F6EE750EDC32BB5C8D5D324E7E'), UNHEX('511EF2F6EE750EDC32BB5C8D5D324E7E')),
(UNHEX('21F82A1660F69D5EA715BEDD0E4707EC'), 'wp-content/plugins/js_composer/assets/lib/bower/jquery-ui-tabs-rotate/jquery-ui-tabs-rotate.min.js', 0, UNHEX('FDF0E09D57A95C8D88DEDEBA7829D308'), UNHEX('FDF0E09D57A95C8D88DEDEBA7829D308')),
(UNHEX('2A031AE966038D379DEE8362D85C1D85'), 'wp-content/plugins/js_composer/assets/lib/bower/json-js/json2.min.js', 0, UNHEX('8E687FC0971B0227488410EA1C61D7DD'), UNHEX('8E687FC0971B0227488410EA1C61D7DD')),
(UNHEX('B4519181E0E223A20BC0FDEF16551397'), 'wp-content/plugins/js_composer/assets/lib/bower/lessjs/dist/less.min.js', 0, UNHEX('A799E13047CF98AC2C474B46CFDA9599'), UNHEX('A799E13047CF98AC2C474B46CFDA9599')),
(UNHEX('CD26C1C305267BF8C43A2F293A355211'), 'wp-content/plugins/js_composer/assets/lib/bower/masonry/dist/masonry.pkgd.min.js', 0, UNHEX('4718BBECD682B9701EC534A0A582AAB9'), UNHEX('4718BBECD682B9701EC534A0A582AAB9')),
(UNHEX('529FB59E4C060FBA7F7F57B8E5700B2E'), 'wp-content/plugins/js_composer/assets/lib/bower/nivoslider/jquery.nivo.slider.pack.js', 0, UNHEX('0CF3F8B677DCD27B6D46F4A56D65FDB2'), UNHEX('0CF3F8B677DCD27B6D46F4A56D65FDB2')),
(UNHEX('AA3C72250026DAE2E2EA98AFE1A0ABC8'), 'wp-content/plugins/js_composer/assets/lib/bower/progress-circle/ProgressCircle.min.js', 0, UNHEX('0EBD226F6F83501B563F702651E0CE4F'), UNHEX('0EBD226F6F83501B563F702651E0CE4F')),
(UNHEX('C25853AB3786DE13154C1C7DED607435'), 'wp-content/plugins/js_composer/assets/lib/bower/scrollTo/jquery.scrollTo.min.js', 0, UNHEX('3424DF5663CF253A2D48B38402C43828'), UNHEX('3424DF5663CF253A2D48B38402C43828')),
(UNHEX('D140E0676BFDC5DB3B6CB7B5FFCE3069'), 'wp-content/plugins/js_composer/assets/lib/bower/skrollr/dist/skrollr.min.js', 0, UNHEX('C8BDFC99C3AD3718BBE2E93EE25F2DB5'), UNHEX('C8BDFC99C3AD3718BBE2E93EE25F2DB5')),
(UNHEX('BA63F8CD6DFAB31077164D8CCDB36641'), 'wp-content/plugins/js_composer/assets/lib/bower/twbs-pagination/jquery.twbsPagination.min.js', 0, UNHEX('708BAA039A198873C48B73A06BD198FB'), UNHEX('708BAA039A198873C48B73A06BD198FB')),
(UNHEX('FCC7CAA884000913EABA648C0669E748'), 'wp-content/plugins/js_composer/assets/lib/bower/vcIconPicker/jquery.fonticonpicker.min.js', 0, UNHEX('36A193B5BCFB7090B6569D7AD6792C08'), UNHEX('36A193B5BCFB7090B6569D7AD6792C08')),
(UNHEX('35C36A73633EA017065EC24F722C3A66'), 'wp-content/plugins/js_composer/assets/lib/bower/zoom/jquery.zoom.min.js', 0, UNHEX('ED7298B291DF9E72400A7E38888C9A0A'), UNHEX('ED7298B291DF9E72400A7E38888C9A0A')),
(UNHEX('B2D71F81C72B0176BFA717CEC3C962E8'), 'wp-content/plugins/js_composer/assets/lib/owl-carousel2-dist/owl.carousel.min.js', 0, UNHEX('32C1E1DCF248758339D96486A5E24FFC'), UNHEX('32C1E1DCF248758339D96486A5E24FFC')),
(UNHEX('1D38ACACAD20052D31726C130E6BE5C1'), 'wp-content/plugins/js_composer/assets/lib/php.default/php.default.min.js', 0, UNHEX('EC26124BE1C0B725779E44F57B15C7F7'), UNHEX('EC26124BE1C0B725779E44F57B15C7F7')),
(UNHEX('37245E5A778AC31D4542FF5BD355EDDB'), 'wp-content/plugins/js_composer/assets/lib/prettyphoto/js/jquery.prettyPhoto.min.js', 0, UNHEX('C9CAF24F20B83D0B0BB75641C3B78502'), UNHEX('C9CAF24F20B83D0B0BB75641C3B78502')),
(UNHEX('519E9A11CF6623305AE9E53FC71DB3E2'), 'wp-content/plugins/js_composer/assets/lib/vc-tta-autoplay/vc-tta-autoplay.min.js', 0, UNHEX('BFAECA16CDDAE8893A9C2DB43E341498'), UNHEX('BFAECA16CDDAE8893A9C2DB43E341498')),
(UNHEX('D2AF8B65D41613A4CA0782B88D862B66'), 'wp-content/plugins/js_composer/assets/lib/vc_accordion/vc-accordion.min.js', 0, UNHEX('ECBDA5FFF2CF6EA61B35DE039A041DAE'), UNHEX('ECBDA5FFF2CF6EA61B35DE039A041DAE')),
(UNHEX('ECAA1E6CDB63E17B00A19D4B9E79D2FA'), 'wp-content/plugins/js_composer/assets/lib/vc_carousel/js/transition.min.js', 0, UNHEX('FE6BF6EA7F47844560D6EA5AB7D3C462'), UNHEX('FE6BF6EA7F47844560D6EA5AB7D3C462')),
(UNHEX('8309FCA53864D3974560224DCD14091A'), 'wp-content/plugins/js_composer/assets/lib/vc_chart/jquery.vc_chart.min.js', 0, UNHEX('130C892B8BA143F15AA786C255894BA2'), UNHEX('130C892B8BA143F15AA786C255894BA2')),
(UNHEX('323A31FB51D693E19F6F3DE526989A09'), 'wp-content/plugins/js_composer/assets/lib/vc_image_zoom/vc_image_zoom.min.js', 0, UNHEX('FCC40A90C565551995012D2C9F8EDADF'), UNHEX('FCC40A90C565551995012D2C9F8EDADF')),
(UNHEX('191B77CF395304ADD48B193AFD36DF1F'), 'wp-content/plugins/js_composer/assets/lib/vc_line_chart/vc_line_chart.min.js', 0, UNHEX('317E814DA3084CCBE6D32FEFF78E643E'), UNHEX('317E814DA3084CCBE6D32FEFF78E643E')),
(UNHEX('CFF8C8560459FDF5CFA7FB1BDF0C7763'), 'wp-content/plugins/js_composer/assets/lib/vc_round_chart/vc_round_chart.min.js', 0, UNHEX('E937A6675C8C5413754E258D5531D667'), UNHEX('E937A6675C8C5413754E258D5531D667')),
(UNHEX('9073C667C63B3453DCC866D9473A076F'), 'wp-content/plugins/js_composer/assets/lib/vc_tabs/vc-tabs.min.js', 0, UNHEX('525A7DB293B782E92141AB4F2CD44EE5'), UNHEX('525A7DB293B782E92141AB4F2CD44EE5')),
(UNHEX('CB8E8C3C1EF30D388723094129EB4151'), 'wp-content/plugins/js_composer/assets/lib/waypoints/waypoints.min.js', 0, UNHEX('AC5840CF0870ECC0833EC7F0B46ABDAC'), UNHEX('AC5840CF0870ECC0833EC7F0B46ABDAC')),
(UNHEX('BAE7BA501BC3532EE7B782D2F3AF708C'), 'wp-content/plugins/js_composer/config/buttons/shortcode-vc-btn.php', 0, UNHEX('88B4F5FACC38860CBDE134603FD70DE8'), UNHEX('88B4F5FACC38860CBDE134603FD70DE8')),
(UNHEX('86A6D9227CA5B656C9CE95D8967D5AC9'), 'wp-content/plugins/js_composer/config/buttons/shortcode-vc-cta.php', 0, UNHEX('F45875280D39E87F34658655822C82CB'), UNHEX('F45875280D39E87F34658655822C82CB')),
(UNHEX('2555EC836406F2498A861EE334F428E2'), 'wp-content/plugins/js_composer/config/containers/shortcode-vc-column-inner.php', 0, UNHEX('C9B7AF24EF07E9CAF982A6D63DED368B'), UNHEX('C9B7AF24EF07E9CAF982A6D63DED368B')),
(UNHEX('38C848141ABF1137B081B060B5B31D92'), 'wp-content/plugins/js_composer/config/containers/shortcode-vc-column.php', 0, UNHEX('C8725544EC50F89B65FD30E365ECA493'), UNHEX('C8725544EC50F89B65FD30E365ECA493')),
(UNHEX('3584365FD4AA087D5C732F3AFF2F7A55'), 'wp-content/plugins/js_composer/config/containers/shortcode-vc-row-inner.php', 0, UNHEX('16BAA0612BF4773757DAE331FD04024D'), UNHEX('16BAA0612BF4773757DAE331FD04024D')),
(UNHEX('AB11277AF1259B2A5B9B4BDDE06BB511'), 'wp-content/plugins/js_composer/config/containers/shortcode-vc-row.php', 0, UNHEX('EB7360DF5093BEEEAD0DC4361FDEAED3'), UNHEX('EB7360DF5093BEEEAD0DC4361FDEAED3')),
(UNHEX('7A16316FB2C9BC83BD4002C98561F4DF'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-column-text.php', 0, UNHEX('5B5A5C7CA377924957FD29627E1155BF'), UNHEX('5B5A5C7CA377924957FD29627E1155BF')),
(UNHEX('251A533100910AD756014411D8569EFB'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-custom-heading.php', 0, UNHEX('8F20E7C7605998C5B6903B027D6AC94B'), UNHEX('8F20E7C7605998C5B6903B027D6AC94B')),
(UNHEX('C77EACEE9C13C665E5CD3CA905DC6C18'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-empty-space.php', 0, UNHEX('94617F71981C31995D4F0DDD4816D4C6'), UNHEX('94617F71981C31995D4F0DDD4816D4C6')),
(UNHEX('3BB5FE03B0F46C10CD3F5BE67772F7FF'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-flickr.php', 0, UNHEX('4F5BCA57F1EE0B9B97466CB8548A9C26'), UNHEX('4F5BCA57F1EE0B9B97466CB8548A9C26')),
(UNHEX('AF830C6CB2FDC3922D3B50E8274087E1'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-gallery.php', 0, UNHEX('FF42203E4BA3DAC09DA04518ADC94AFC'), UNHEX('FF42203E4BA3DAC09DA04518ADC94AFC')),
(UNHEX('E3CF0184B7F41797E7B0F2A872D80F23'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-gmaps.php', 0, UNHEX('15148FE9728B7FC5A62311F48B285117'), UNHEX('15148FE9728B7FC5A62311F48B285117')),
(UNHEX('88986A3F62B494DE74B3B3EC423C08D0'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-icon.php', 0, UNHEX('B40E66ADCC3542FC5BDD71C428C8DE00'), UNHEX('B40E66ADCC3542FC5BDD71C428C8DE00')),
(UNHEX('AFED90DB9B733572307EB307976EA129'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-images-carousel.php', 0, UNHEX('9CCBCB9BFD0759902E931DDDAE9A3658'), UNHEX('9CCBCB9BFD0759902E931DDDAE9A3658')),
(UNHEX('4FAD7FAD6CB5D76967F7F03ECFE73628'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-line-chart.php', 0, UNHEX('B2AA67CE91BE8FEE0C4296280F4F1F54'), UNHEX('B2AA67CE91BE8FEE0C4296280F4F1F54')),
(UNHEX('4EF1080C93083647986F74BB13656113'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-message.php', 0, UNHEX('06E6237E63A43A44EE5BFBAF18AA5974'), UNHEX('06E6237E63A43A44EE5BFBAF18AA5974')),
(UNHEX('61C76B676AA723EB89F017DE51912AA0'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-pie.php', 0, UNHEX('98A7DBBBB3275E2AD4E411B3F62D2444'), UNHEX('98A7DBBBB3275E2AD4E411B3F62D2444')),
(UNHEX('81D60D8F0A27276FA6C2CF87F8F94D67'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-posts-slider.php', 0, UNHEX('BF6597F95CAD3DEDFC97A72063A1C0E4'), UNHEX('BF6597F95CAD3DEDFC97A72063A1C0E4')),
(UNHEX('F72A661D7BFA4BE372D192B57CD1B4D6'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-progress-bar.php', 0, UNHEX('5D9144593727E94AFC1ADCFB4742533C'), UNHEX('5D9144593727E94AFC1ADCFB4742533C')),
(UNHEX('8D5C849202D189753C8F221759DA9CC6'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-separator.php', 0, UNHEX('E88947447DF3997130179A1D56B42F45'), UNHEX('E88947447DF3997130179A1D56B42F45')),
(UNHEX('6F6607063EE7B5F17DD0D17548035B3F'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-single-image.php', 0, UNHEX('C4BF4F3966A59C58F7433BA1F4598DAE'), UNHEX('C4BF4F3966A59C58F7433BA1F4598DAE')),
(UNHEX('99972C82FCD618B1F5AA235E988475E8'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-text-separator.php', 0, UNHEX('E6901D22DD6B544DF4E4B984DD766104'), UNHEX('E6901D22DD6B544DF4E4B984DD766104')),
(UNHEX('4905528E93763AC15169E961AB1568D8'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-toggle.php', 0, UNHEX('71130904C3F8F71F18E5EDF0AE474448'), UNHEX('71130904C3F8F71F18E5EDF0AE474448')),
(UNHEX('A5F337E407FC378DDE96F1C0EF97B97A'), 'wp-content/plugins/js_composer/config/content/shortcode-vc-video.php', 0, UNHEX('D17C2ABB3812487657169EA728F7A2D7'), UNHEX('D17C2ABB3812487657169EA728F7A2D7')),
(UNHEX('27D78A4BE767676B0C2655422481218D'), 'wp-content/plugins/js_composer/config/content/vc-custom-heading-element.php', 0, UNHEX('5B1E03A6BC358B1D6A046F86E560F5BD'), UNHEX('5B1E03A6BC358B1D6A046F86E560F5BD')),
(UNHEX('EBCBB3B85EA06320830118DB88BD4A96'), 'wp-content/plugins/js_composer/config/content/vc-icon-element.php', 0, UNHEX('1C9270735D408F377387F880A3D97B97'), UNHEX('1C9270735D408F377387F880A3D97B97')),
(UNHEX('F6189BCF01091914B24F5ACCAF719971'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-accordion-tab.php', 0, UNHEX('CFA551D4B7136286BE0262005ED3350B'), UNHEX('CFA551D4B7136286BE0262005ED3350B')),
(UNHEX('D7282BF96A613E5833BB61B6EE21D24C'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-accordion.php', 0, UNHEX('18CDE0F0817041A9C9B942DC9D3A27B5'), UNHEX('18CDE0F0817041A9C9B942DC9D3A27B5')),
(UNHEX('5D4D1D16CC95874730A7B3D8D75F0D06'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-button.php', 0, UNHEX('7D37A5D3D2CFB2FE2D86562A7B07F95B'), UNHEX('7D37A5D3D2CFB2FE2D86562A7B07F95B')),
(UNHEX('91E84225C37E7D92780903B1B5ED1250'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-button2.php', 0, UNHEX('51FDD59FC1BA91775B588FF6B3CDFAAF'), UNHEX('51FDD59FC1BA91775B588FF6B3CDFAAF')),
(UNHEX('1AC8A6AB32FF0426A866EFFD82314BA8'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-carousel.php', 0, UNHEX('B07E78ACE7EC29A20CE4B3C4B53B9C2F'), UNHEX('B07E78ACE7EC29A20CE4B3C4B53B9C2F')),
(UNHEX('74FB9DD9848FE4F11D1AB0B21871437E'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-cta-button.php', 0, UNHEX('7C4B3DBA61F5F8BE822D0AA0EBE7F3C7'), UNHEX('7C4B3DBA61F5F8BE822D0AA0EBE7F3C7')),
(UNHEX('217AEDFEAF6879796E985E2D7D15C8BD'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-cta-button2.php', 0, UNHEX('E65F1F6EB54139219AB06774C7D68EB7'), UNHEX('E65F1F6EB54139219AB06774C7D68EB7')),
(UNHEX('CE257B7782E39CD6E541C4500648BA7D'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-posts-grid.php', 0, UNHEX('0F3420EA9862159FF2030C55601D07C0'), UNHEX('0F3420EA9862159FF2030C55601D07C0')),
(UNHEX('DF75ABD58B6C894E5D1D4E422263EED5'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-tab.php', 0, UNHEX('7D0A7475E0888288DB23D7A76E40AD81'), UNHEX('7D0A7475E0888288DB23D7A76E40AD81')),
(UNHEX('D798FC511866948B440B85213BE97BDE'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-tabs.php', 0, UNHEX('34C8FBBD530356A42868D74F9D559A76'), UNHEX('34C8FBBD530356A42868D74F9D559A76')),
(UNHEX('4A8BF86D4FE3EAC4D21B600CE18A66E3'), 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-tour.php', 0, UNHEX('A48ED5EB02FCD2EFB73CD02CDF5FD945'), UNHEX('A48ED5EB02FCD2EFB73CD02CDF5FD945')),
(UNHEX('0BF4145B344DB39C8E972034D4859FC0'), 'wp-content/plugins/js_composer/config/grids/class-vc-grids-common.php', 0, UNHEX('17A52418403042A02EF259D8647556D6'), UNHEX('17A52418403042A02EF259D8647556D6')),
(UNHEX('05E758CD402BBB38964CFF7F1B1E181C'), 'wp-content/plugins/js_composer/config/grids/shortcode-vc-basic-grid.php', 0, UNHEX('A59473897819E2D52DD16D70B5FD8F37'), UNHEX('A59473897819E2D52DD16D70B5FD8F37')),
(UNHEX('5D34880CD4B92DF3DC36F5F18B24DC22'), 'wp-content/plugins/js_composer/config/grids/shortcode-vc-masonry-grid.php', 0, UNHEX('A6D212F925C3FC51A266FE33C8C3A8AB'), UNHEX('A6D212F925C3FC51A266FE33C8C3A8AB')),
(UNHEX('34AE850AA3DB3C9A4A483436955C2D09'), 'wp-content/plugins/js_composer/config/grids/shortcode-vc-masonry-media-grid.php', 0, UNHEX('AC8162D1D8E65428B8E21D28E69DB18C'), UNHEX('AC8162D1D8E65428B8E21D28E69DB18C')),
(UNHEX('64AE46DC490AC75D320AE811F754670C'), 'wp-content/plugins/js_composer/config/grids/shortcode-vc-media-grid.php', 0, UNHEX('741B15B59849A32887232A70F539DA6E'), UNHEX('741B15B59849A32887232A70F539DA6E')),
(UNHEX('003629450E445158F46E1907D6F00E57'), 'wp-content/plugins/js_composer/config/grids/vc-grids-functions.php', 0, UNHEX('35D6AAB7A7D2E173978BC3CF4CDFAF22'), UNHEX('35D6AAB7A7D2E173978BC3CF4CDFAF22')),
(UNHEX('D9ABDA1602F19578EBCBB0944664C15D'), 'wp-content/plugins/js_composer/config/lean-map.php', 0, UNHEX('9384F3E4C2CD9534C89FFBE7D3FA838E'), UNHEX('9384F3E4C2CD9534C89FFBE7D3FA838E')),
(UNHEX('A5A6196EC27ED4A5F0A37EB1AD9DA43F'), 'wp-content/plugins/js_composer/config/social/shortcode-vc-facebook.php', 0, UNHEX('6F5BC7A14FA9FFBE079765276D7D5D6E'), UNHEX('6F5BC7A14FA9FFBE079765276D7D5D6E')),
(UNHEX('1455E69DBEAA5C57AF1F800D28A67022'), 'wp-content/plugins/js_composer/config/social/shortcode-vc-googleplus.php', 0, UNHEX('84A08AC412DA158D7D36624A5EA71261'), UNHEX('84A08AC412DA158D7D36624A5EA71261')),
(UNHEX('623F2C51A1E00319DB1465DA66F85C49'), 'wp-content/plugins/js_composer/config/social/shortcode-vc-pinterest.php', 0, UNHEX('51D3BB1F37DF80BEE1F18433D0E03160'), UNHEX('51D3BB1F37DF80BEE1F18433D0E03160')),
(UNHEX('AA6A708864AA72F81B86193E3D451AA8'), 'wp-content/plugins/js_composer/config/social/shortcode-vc-tweetmeme.php', 0, UNHEX('CA5F79206B500243FADBCE90B9E678EF'), UNHEX('CA5F79206B500243FADBCE90B9E678EF')),
(UNHEX('29EA9E4D048996A71D0991C9CFFBD49C'), 'wp-content/plugins/js_composer/config/structure/shortcode-vc-raw-html.php', 0, UNHEX('06CFE8D43D8A138F6FFD665981AF8F62'), UNHEX('06CFE8D43D8A138F6FFD665981AF8F62')),
(UNHEX('FAE9925B4B1419FDC20181BB22C4C67A'), 'wp-content/plugins/js_composer/config/structure/shortcode-vc-raw-js.php', 0, UNHEX('21A0DE899F7AA0DC5A94F82507BC17B1'), UNHEX('21A0DE899F7AA0DC5A94F82507BC17B1')),
(UNHEX('AB303F9CD158A33819149B116F1EE81B'), 'wp-content/plugins/js_composer/config/structure/shortcode-vc-widget-sidebar.php', 0, UNHEX('D9D2B31A7EEA92B8BE34CC5D4925BA4F'), UNHEX('D9D2B31A7EEA92B8BE34CC5D4925BA4F')),
(UNHEX('A9D818B1F05E7B38B83D1C2B495444CE'), 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-accordion.php', 0, UNHEX('C3911443472D0F88BBA835BB053A255F'), UNHEX('C3911443472D0F88BBA835BB053A255F')),
(UNHEX('53E132DC3F3EF40B698E2671785EDF0C'), 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-pageable.php', 0, UNHEX('5842D62C3493D66739BE9112FBA34548'), UNHEX('5842D62C3493D66739BE9112FBA34548')),
(UNHEX('38C8D7DE46FA131067E27338D31A07A9'), 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-tabs.php', 0, UNHEX('2EC7CF10489548B83FDBDEA5D93B3775'), UNHEX('2EC7CF10489548B83FDBDEA5D93B3775')),
(UNHEX('F1ABE6E91224041EB8619A6435E99C54'), 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-tour.php', 0, UNHEX('CDB432E9D968CE5F9C4E73C31EA4F71C'), UNHEX('CDB432E9D968CE5F9C4E73C31EA4F71C')),
(UNHEX('2246DB60861D3B69EA81760522097C49'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-calendar.php', 0, UNHEX('36FA7C09D482CC42112D2263B02CD3AB'), UNHEX('36FA7C09D482CC42112D2263B02CD3AB')),
(UNHEX('F93CFEEFE96E66B96FA053D39D072E2A'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-categories.php', 0, UNHEX('0FC2CD5492DF2A0D2894A81123268733'), UNHEX('0FC2CD5492DF2A0D2894A81123268733')),
(UNHEX('0EBD04B64A41C3A402C82379C2CF16F8'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-custommenu.php', 0, UNHEX('85D6A5101D09EE4F07DF49D276078C3D'), UNHEX('85D6A5101D09EE4F07DF49D276078C3D')),
(UNHEX('3B7615B403E0DDFDEB306310C613A4E3'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-links.php', 0, UNHEX('823AFE95FE650F57A9E214A3B772B8CB'), UNHEX('823AFE95FE650F57A9E214A3B772B8CB')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('F7185C71728CAA9DDF4667987D3160B0'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-meta.php', 0, UNHEX('B97672103A81DF8F0A91855A2ED15C34'), UNHEX('B97672103A81DF8F0A91855A2ED15C34')),
(UNHEX('A7F5138A956D72BF840FC61638709872'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-pages.php', 0, UNHEX('88D58588BB884FC456AC9964BA43478B'), UNHEX('88D58588BB884FC456AC9964BA43478B')),
(UNHEX('B64212BD672A5EBD01D01DBD8935D439'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-posts.php', 0, UNHEX('547319FC19C21A8D6E77409A163261FC'), UNHEX('547319FC19C21A8D6E77409A163261FC')),
(UNHEX('469E8D9002EC426515E168D2DA719E8B'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-recentcomments.php', 0, UNHEX('D3A4418AE9DBDB934F955AD9172EE8E6'), UNHEX('D3A4418AE9DBDB934F955AD9172EE8E6')),
(UNHEX('33BCAD9F955E9138670A6D9B0074AFFF'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-rss.php', 0, UNHEX('429391753FA10E76B3C7BE3B9CDAC88C'), UNHEX('429391753FA10E76B3C7BE3B9CDAC88C')),
(UNHEX('3FB9C792F4A69E630FDCAC2A39E3D71C'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-search.php', 0, UNHEX('0FA435AD5AEC74097A5A58E280345312'), UNHEX('0FA435AD5AEC74097A5A58E280345312')),
(UNHEX('C3F08EC8B852BA8962B5FEA827D6FE57'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-tagcloud.php', 0, UNHEX('DBC7042EE38A654BADFD68E6A9DC08E8'), UNHEX('DBC7042EE38A654BADFD68E6A9DC08E8')),
(UNHEX('D75859486F24BF5CE68DDA1184886840'), 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-text.php', 0, UNHEX('91B51A4F00FEBCF5B900A01F632B2C89'), UNHEX('91B51A4F00FEBCF5B900A01F632B2C89')),
(UNHEX('6E8EF0F2F31B58CC24489622E3941F31'), 'wp-content/plugins/js_composer/include/autoload/backend-editor-ie.php', 0, UNHEX('AA20AC4EE2E850E04F01FD719D71DE34'), UNHEX('AA20AC4EE2E850E04F01FD719D71DE34')),
(UNHEX('D293C3597A1E24B8E9D309C7C81A2B1C'), 'wp-content/plugins/js_composer/include/autoload/bc-access-rules-4.8.php', 0, UNHEX('0E012B6B5BFEDF581A04957121BA9985'), UNHEX('0E012B6B5BFEDF581A04957121BA9985')),
(UNHEX('EF5EA8B9C34155AD68D0254BC719A935'), 'wp-content/plugins/js_composer/include/autoload/class-vc-settings-presets.php', 0, UNHEX('4471B0DD962B1DB496C9484B45FEC8B2'), UNHEX('4471B0DD962B1DB496C9484B45FEC8B2')),
(UNHEX('14A2FA7C23A740F34183C2E994B67CA7'), 'wp-content/plugins/js_composer/include/autoload/class-vc-vendor-presets.php', 0, UNHEX('3ED7ECDD1D3A97495D9138DFB147FDC6'), UNHEX('3ED7ECDD1D3A97495D9138DFB147FDC6')),
(UNHEX('6CFD58E6BED74E70EF3F96A0620502DD'), 'wp-content/plugins/js_composer/include/autoload/frontend-editor-ie.php', 0, UNHEX('2CDAB05FF09EA0EDDC8AB0D8EFD6B053'), UNHEX('2CDAB05FF09EA0EDDC8AB0D8EFD6B053')),
(UNHEX('A243CEB3133B73BAA0CF73565D9B5EA6'), 'wp-content/plugins/js_composer/include/autoload/hook-vc-iconpicker-param.php', 0, UNHEX('2A7CDE51404893EC87203D198CE9A407'), UNHEX('2A7CDE51404893EC87203D198CE9A407')),
(UNHEX('B02B1A23544BFF405F86EBFCB29AC5D2'), 'wp-content/plugins/js_composer/include/autoload/hook-vc-message.php', 0, UNHEX('B0601629188DE5E7008F609C44288541'), UNHEX('B0601629188DE5E7008F609C44288541')),
(UNHEX('174C8D9AE5924B0BAF4A2C0BB392C4B6'), 'wp-content/plugins/js_composer/include/autoload/hook-vc-pie.php', 0, UNHEX('E6ED270A956CA6CC0781D778FED56CED'), UNHEX('E6ED270A956CA6CC0781D778FED56CED')),
(UNHEX('1A715CC7D44FA6391B1746CF37D08730'), 'wp-content/plugins/js_composer/include/autoload/hook-vc-progress-bar.php', 0, UNHEX('A405B508F75015DC4E847327D20E9D03'), UNHEX('A405B508F75015DC4E847327D20E9D03')),
(UNHEX('E2782B29241ACDABC49C13A480E3B864'), 'wp-content/plugins/js_composer/include/autoload/hook-vc-wp-text.php', 0, UNHEX('FCA36D94032ED7EC8EE260EB9B48291E'), UNHEX('FCA36D94032ED7EC8EE260EB9B48291E')),
(UNHEX('B001492D96BC6929F0506E02D2CCDDC0'), 'wp-content/plugins/js_composer/include/autoload/params/hidden.php', 0, UNHEX('BC9618F5CD512550B36F1A25452A9CF1'), UNHEX('BC9618F5CD512550B36F1A25452A9CF1')),
(UNHEX('06ADE6E0DF8425C2CF53D589B1BCD730'), 'wp-content/plugins/js_composer/include/autoload/params/vc_grid_item.php', 0, UNHEX('2751AEAC82243B7DB0F74D438CF6D708'), UNHEX('2751AEAC82243B7DB0F74D438CF6D708')),
(UNHEX('832821F95D4572CF76884BBE0955A438'), 'wp-content/plugins/js_composer/include/autoload/params-to-init.php', 0, UNHEX('07F6ECA1BF28BD07A457093E04873E64'), UNHEX('07F6ECA1BF28BD07A457093E04873E64')),
(UNHEX('75EA17365FDD1D285D76D2856CDCF3CD'), 'wp-content/plugins/js_composer/include/autoload/post-type-default-template.php', 0, UNHEX('820423C80EF6F7308DDF6371A4068C38'), UNHEX('820423C80EF6F7308DDF6371A4068C38')),
(UNHEX('E8F5B425CC2481673364BA4E33F4FBF6'), 'wp-content/plugins/js_composer/include/autoload/ui-vc-pointers.php', 0, UNHEX('488371A816DDAE3AF626D20970CC17BA'), UNHEX('488371A816DDAE3AF626D20970CC17BA')),
(UNHEX('ED446ECD766F77274511A2EEEE3BE970'), 'wp-content/plugins/js_composer/include/autoload/vc-grid-item-editor.php', 0, UNHEX('54A2781DD9C897272CCEE5BA3B2B5E11'), UNHEX('54A2781DD9C897272CCEE5BA3B2B5E11')),
(UNHEX('D1956C7C2C3A52A69538B60BC8732848'), 'wp-content/plugins/js_composer/include/autoload/vc-image-filters.php', 0, UNHEX('D92C834542F9DB2197634095570FC708'), UNHEX('D92C834542F9DB2197634095570FC708')),
(UNHEX('8CA8FEA2D628CD01EB72A1B5407FFA01'), 'wp-content/plugins/js_composer/include/autoload/vc-pages/page-custom-css.php', 0, UNHEX('93CA1774D25C14498BB58D508D4053FA'), UNHEX('93CA1774D25C14498BB58D508D4053FA')),
(UNHEX('16F6CC3D3CB8451E2D17A42C403C38A3'), 'wp-content/plugins/js_composer/include/autoload/vc-pages/page-design-options.php', 0, UNHEX('68A4DE24DE433690FECBD517E4FE445C'), UNHEX('68A4DE24DE433690FECBD517E4FE445C')),
(UNHEX('961062F303BD2F28DA7F8FA35A498CF1'), 'wp-content/plugins/js_composer/include/autoload/vc-pages/page-role-manager.php', 0, UNHEX('020B693D5028E72960E4BF72CC8E5C20'), UNHEX('020B693D5028E72960E4BF72CC8E5C20')),
(UNHEX('2DE551A767E76D80AC550D4F2BEDCFE9'), 'wp-content/plugins/js_composer/include/autoload/vc-pages/pages.php', 0, UNHEX('1FADED6BC6777283D117072E3DBE3742'), UNHEX('1FADED6BC6777283D117072E3DBE3742')),
(UNHEX('2ACA3DDCEB2672C8367E707E2C292716'), 'wp-content/plugins/js_composer/include/autoload/vc-pages/settings-tabs.php', 0, UNHEX('026B15F301D0DB335F22F5A3BED5D9FA'), UNHEX('026B15F301D0DB335F22F5A3BED5D9FA')),
(UNHEX('4F0E1EA3055A42E30F5683B6FF0F02A0'), 'wp-content/plugins/js_composer/include/autoload/vc-pointers-backend-editor.php', 0, UNHEX('7D530472D701C6ECB422733982182D40'), UNHEX('7D530472D701C6ECB422733982182D40')),
(UNHEX('A3032429885FF421655DFF058C197890'), 'wp-content/plugins/js_composer/include/autoload/vc-pointers-frontend-editor.php', 0, UNHEX('AC9C686DA5904E3B2E1B6AC124B8B227'), UNHEX('AC9C686DA5904E3B2E1B6AC124B8B227')),
(UNHEX('03487A39840238C365568ACDD1795273'), 'wp-content/plugins/js_composer/include/autoload/vc-settings-presets.php', 0, UNHEX('7970FCA8A5E9596BFCC381D58815F6A1'), UNHEX('7970FCA8A5E9596BFCC381D58815F6A1')),
(UNHEX('D9FAC7942504E20897285A0AE5247780'), 'wp-content/plugins/js_composer/include/autoload/vc-shortcode-autoloader.php', 0, UNHEX('647DF7090F94D08D1FCCA196464484C0'), UNHEX('647DF7090F94D08D1FCCA196464484C0')),
(UNHEX('2E8A59172C3D90AD089D85309484FA1B'), 'wp-content/plugins/js_composer/include/autoload/vc-single-image.php', 0, UNHEX('1CBDC73497CFDB6E2CAC1BD1805E48B4'), UNHEX('1CBDC73497CFDB6E2CAC1BD1805E48B4')),
(UNHEX('F7B1B657C7FD9A2A8A8C72A82539D655'), 'wp-content/plugins/js_composer/include/autoload/vendors/cf7.php', 0, UNHEX('782786C76526A81018CD60D689478EAA'), UNHEX('782786C76526A81018CD60D689478EAA')),
(UNHEX('5B34F9696B80470F8651084309165020'), 'wp-content/plugins/js_composer/include/autoload/vendors/jwplayer.php', 0, UNHEX('AB365A759177B70889724C211ED42E10'), UNHEX('AB365A759177B70889724C211ED42E10')),
(UNHEX('BC2C12CBD3F1C373B39D36C0B42B139D'), 'wp-content/plugins/js_composer/include/autoload/vendors/layerslider.php', 0, UNHEX('7BA289052B879DCB166139E1E08F97F3'), UNHEX('7BA289052B879DCB166139E1E08F97F3')),
(UNHEX('9169128A1726389E1ED1248A5BE03F3F'), 'wp-content/plugins/js_composer/include/autoload/vendors/mqtranslate.php', 0, UNHEX('68C5BD2B26940D49A935BCAE97FAF7D2'), UNHEX('68C5BD2B26940D49A935BCAE97FAF7D2')),
(UNHEX('93AE8458FA512FCD4C8A5C59C410FDC7'), 'wp-content/plugins/js_composer/include/autoload/vendors/ninja_forms.php', 0, UNHEX('A61E82ECA8C1D85B5F9811C691D04793'), UNHEX('A61E82ECA8C1D85B5F9811C691D04793')),
(UNHEX('AF14188E14626AAD470E8EB1914CD692'), 'wp-content/plugins/js_composer/include/autoload/vendors/qtranslate-x.php', 0, UNHEX('261A467781F416900CE13DB8F273DED2'), UNHEX('261A467781F416900CE13DB8F273DED2')),
(UNHEX('F495D3159EEB23B5DAC0D9F17CAAD916'), 'wp-content/plugins/js_composer/include/autoload/vendors/qtranslate.php', 0, UNHEX('5F8E1417B8AE77DA995AEC61D07D6592'), UNHEX('5F8E1417B8AE77DA995AEC61D07D6592')),
(UNHEX('E3EFA9612CE53B7756A353592C9D84F3'), 'wp-content/plugins/js_composer/include/autoload/vendors/revslider.php', 0, UNHEX('01F43E96EA5DCCAA853D73775A01411F'), UNHEX('01F43E96EA5DCCAA853D73775A01411F')),
(UNHEX('6875FAFC50414E00537ECC560C97EAB1'), 'wp-content/plugins/js_composer/include/autoload/vendors/woocommerce.php', 0, UNHEX('58D64DF2B128F07AF05AA77582C99745'), UNHEX('58D64DF2B128F07AF05AA77582C99745')),
(UNHEX('A616DE46E6EB4F18057433DFC7768C9C'), 'wp-content/plugins/js_composer/include/autoload/vendors/wp_customize.php', 0, UNHEX('D845DDD66CAF49F782D26146BC43D9A4'), UNHEX('D845DDD66CAF49F782D26146BC43D9A4')),
(UNHEX('C9710CBB7C3A59D7EE2ADD7C2FDFECB2'), 'wp-content/plugins/js_composer/include/autoload/vendors/wpml.php', 0, UNHEX('761E86020E79DEAD2A512B13DB230B61'), UNHEX('761E86020E79DEAD2A512B13DB230B61')),
(UNHEX('88400ECA2D891553AC54599468FAC04F'), 'wp-content/plugins/js_composer/include/autoload/vendors/yoast_seo.php', 0, UNHEX('A62BFB4EA6AD204449079A7325E42D00'), UNHEX('A62BFB4EA6AD204449079A7325E42D00')),
(UNHEX('29A2CBFA058760037C95275F04CFA279'), 'wp-content/plugins/js_composer/include/classes/core/access/abstract-class-vc-access.php', 0, UNHEX('31E584EE2DF557D6ACC6FB602D5D77EA'), UNHEX('31E584EE2DF557D6ACC6FB602D5D77EA')),
(UNHEX('9C08F4844E54A23830AF47FE1D91AC30'), 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-current-user-access-controller.php', 0, UNHEX('5568C3BBCE2500FADB19C2A0A6F2713E'), UNHEX('5568C3BBCE2500FADB19C2A0A6F2713E')),
(UNHEX('6FE091DCB1A875C405068602FED71804'), 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-current-user-access.php', 0, UNHEX('1DC04A754EEC5F8C50BE45D48563234E'), UNHEX('1DC04A754EEC5F8C50BE45D48563234E')),
(UNHEX('391DCCB081B6FB105A7A25A492753FC4'), 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-role-access-controller.php', 0, UNHEX('712D79C0D500C1E10392028A4FF5B69A'), UNHEX('712D79C0D500C1E10392028A4FF5B69A')),
(UNHEX('88683FD8683D01FEA8D9907073C0946A'), 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-role-access.php', 0, UNHEX('F5859110A1075FDE11D6A12A6951D7A2'), UNHEX('F5859110A1075FDE11D6A12A6951D7A2')),
(UNHEX('3EEFCCA804156B12A5A46F5C0636D3AB'), 'wp-content/plugins/js_composer/include/classes/core/class-vc-base.php', 0, UNHEX('9DDBCA8B13909F447C674167BAB92746'), UNHEX('9DDBCA8B13909F447C674167BAB92746')),
(UNHEX('26974D229181394BB33A36BE5753482D'), 'wp-content/plugins/js_composer/include/classes/core/class-vc-mapper.php', 0, UNHEX('9161D23070154DF801CFA219B4FC628F'), UNHEX('9161D23070154DF801CFA219B4FC628F')),
(UNHEX('F816757A4656F9CAA59FCB72FD74606C'), 'wp-content/plugins/js_composer/include/classes/core/class-vc-page.php', 0, UNHEX('8BACA0E9BF4D2070D4D0CC17BD040923'), UNHEX('8BACA0E9BF4D2070D4D0CC17BD040923')),
(UNHEX('DAE829199256E73AFD9676CE7CDF8C76'), 'wp-content/plugins/js_composer/include/classes/core/class-vc-pages-group.php', 0, UNHEX('8928ED68053300241D57505A81B1B372'), UNHEX('8928ED68053300241D57505A81B1B372')),
(UNHEX('47B133731EFC71D9B4C2DF4660A66AFD'), 'wp-content/plugins/js_composer/include/classes/core/class-vc-post-admin.php', 0, UNHEX('8D1AC852E71636162C165DD6BAF8EDC8'), UNHEX('8D1AC852E71636162C165DD6BAF8EDC8')),
(UNHEX('F31015BFFA23E58FF53152998D0EE95C'), 'wp-content/plugins/js_composer/include/classes/core/class-vc-shared-library.php', 0, UNHEX('6BDF5EC7A15257ACF9BAFD083159F699'), UNHEX('6BDF5EC7A15257ACF9BAFD083159F699')),
(UNHEX('BE7F8B9357BB1313548F3C371E1D2059'), 'wp-content/plugins/js_composer/include/classes/core/class-vc-sort.php', 0, UNHEX('AC820B4845CEE0660483C1DA482C9FED'), UNHEX('AC820B4845CEE0660483C1DA482C9FED')),
(UNHEX('8803D28D91A8746898CA66FF77817CFE'), 'wp-content/plugins/js_composer/include/classes/core/class-wpb-map.php', 0, UNHEX('9307A092F567EE5770C24051D2B45F65'), UNHEX('9307A092F567EE5770C24051D2B45F65')),
(UNHEX('DCBBFC433E5F4B2F0E256D831A0A7398'), 'wp-content/plugins/js_composer/include/classes/core/interfaces.php', 0, UNHEX('F875A373A1DCD58BD42921E775FA0603'), UNHEX('F875A373A1DCD58BD42921E775FA0603')),
(UNHEX('11710C6648961FBDB63CEC4F0CA9C63B'), 'wp-content/plugins/js_composer/include/classes/editors/class-vc-backend-editor.php', 0, UNHEX('0A71DAAACC3B933E40076F8100557421'), UNHEX('0A71DAAACC3B933E40076F8100557421')),
(UNHEX('B24B681B1827A23FCC69D9EFBDFD5932'), 'wp-content/plugins/js_composer/include/classes/editors/class-vc-edit-form-fields.php', 0, UNHEX('D8787BF8ACFF22CB5B5DC4A1FD7B3C66'), UNHEX('D8787BF8ACFF22CB5B5DC4A1FD7B3C66')),
(UNHEX('48C4BA307003EAE8E69AD0DD2753D8F4'), 'wp-content/plugins/js_composer/include/classes/editors/navbar/class-vc-navbar-frontend.php', 0, UNHEX('48ED4CB71EB3752648C838AA24E77318'), UNHEX('48ED4CB71EB3752648C838AA24E77318')),
(UNHEX('8D3E92025EE63EE51DC801A228BC16D9'), 'wp-content/plugins/js_composer/include/classes/editors/navbar/class-vc-navbar.php', 0, UNHEX('A3EA8AD3BCA269B503DAD81B604AA6DF'), UNHEX('A3EA8AD3BCA269B503DAD81B604AA6DF')),
(UNHEX('A016C0CE32B4B1D6AEF85CF105C6AF44'), 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-add-element-box.php', 0, UNHEX('DE2F9191E128B7C2F22EF7C43A7B83D0'), UNHEX('DE2F9191E128B7C2F22EF7C43A7B83D0')),
(UNHEX('57BEBB92A04347718909B638AD0A6174'), 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-edit-layout.php', 0, UNHEX('8EE9A680AC6024D539CD921785E892E4'), UNHEX('8EE9A680AC6024D539CD921785E892E4')),
(UNHEX('4B2E4A0FE5DC22106F1FFDC60B44689C'), 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-post-settings.php', 0, UNHEX('6FB9A96A858D716813E53C922F7C210A'), UNHEX('6FB9A96A858D716813E53C922F7C210A')),
(UNHEX('851784E40CC9DB7587AB011F78DD402F'), 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-shortcode-edit-form.php', 0, UNHEX('A01FDD1B40DA16CBCAF49AB7FF6B4162'), UNHEX('A01FDD1B40DA16CBCAF49AB7FF6B4162')),
(UNHEX('E8FACBFD76BA4216420D010680D35A24'), 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-templates-panel-editor.php', 0, UNHEX('5AE2FFFF5AAED06A8A9519D67A568D52'), UNHEX('5AE2FFFF5AAED06A8A9519D67A568D52')),
(UNHEX('3C6CEDAE76BB833186ABA1B73FB456E7'), 'wp-content/plugins/js_composer/include/classes/settings/class-vc-automapper.php', 0, UNHEX('AE98DF4B8ED650D09F1C7AD68D6E1DDC'), UNHEX('AE98DF4B8ED650D09F1C7AD68D6E1DDC')),
(UNHEX('352AAABEDBA88BF6D3D6B6E4D370BCC0'), 'wp-content/plugins/js_composer/include/classes/settings/class-vc-license.php', 0, UNHEX('54F29B6DCBAFBB3C964FA2CE81D5F614'), UNHEX('54F29B6DCBAFBB3C964FA2CE81D5F614')),
(UNHEX('A6432AD148EAE499865B5B170C882CDE'), 'wp-content/plugins/js_composer/include/classes/settings/class-vc-roles.php', 0, UNHEX('6195887DF7B2E02B632198F872F2879A'), UNHEX('6195887DF7B2E02B632198F872F2879A')),
(UNHEX('EF3B68D41A8491FFCD7853CE1FE69B6F'), 'wp-content/plugins/js_composer/include/classes/shortcodes/example.php', 0, UNHEX('0D3A08E6D370F0666521DAC3FEDC49CA'), UNHEX('0D3A08E6D370F0666521DAC3FEDC49CA')),
(UNHEX('CCAB09752B1DC4A5EF00A2FBCC242953'), 'wp-content/plugins/js_composer/include/classes/shortcodes/layerslider-vc.php', 0, UNHEX('B1F3404C7AA1C19B73D55412E6DA9B6A'), UNHEX('B1F3404C7AA1C19B73D55412E6DA9B6A')),
(UNHEX('D18073E88A24501CBED36C4049FE9623'), 'wp-content/plugins/js_composer/include/classes/shortcodes/paginator/class-vc-pageable.php', 0, UNHEX('58F527E5625F1A9BC2BA41415B9C78F7'), UNHEX('58F527E5625F1A9BC2BA41415B9C78F7')),
(UNHEX('47264DA54D5C42ACA51AEACF84A180E2'), 'wp-content/plugins/js_composer/include/classes/shortcodes/rev-slider-vc.php', 0, UNHEX('3EFDEF1AFFAECD83067BAA5C0F8C57EE'), UNHEX('3EFDEF1AFFAECD83067BAA5C0F8C57EE')),
(UNHEX('96F3123914B988CD93C8DA12CB92314C'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-accordion-tab.php', 0, UNHEX('C32FA29F3A87DD6908BC87660D529AF6'), UNHEX('C32FA29F3A87DD6908BC87660D529AF6')),
(UNHEX('B3C06E0DF96225BCBEE96071EA052188'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-accordion.php', 0, UNHEX('331E6442C0C532BD7283AA1C6B05C099'), UNHEX('331E6442C0C532BD7283AA1C6B05C099')),
(UNHEX('F84AB8B3A9486C1D35B9E8D6A98DD350'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-basic-grid.php', 0, UNHEX('0995A7B74AE92F95C6C6D0D314692326'), UNHEX('0995A7B74AE92F95C6C6D0D314692326')),
(UNHEX('1DC1A7CE97DCB94D8DB22B3E159D6C26'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-btn.php', 0, UNHEX('9F9DD0C0F630664A5E9546C3C1A22665'), UNHEX('9F9DD0C0F630664A5E9546C3C1A22665')),
(UNHEX('4FE82B08A4CEC76CD1DA00CCFB2E0995'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-button.php', 0, UNHEX('E524A9159F04314B4EDB365B96526BEE'), UNHEX('E524A9159F04314B4EDB365B96526BEE')),
(UNHEX('1578AEC5D2B1F09827B016C901E00468'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-button2.php', 0, UNHEX('8F49324BC77BE48EF85148594FE5FADE'), UNHEX('8F49324BC77BE48EF85148594FE5FADE')),
(UNHEX('2E5554462C797B1AF753991655C2D472'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-carousel.php', 0, UNHEX('B349D30EECAFF26C65C6E85643B59C94'), UNHEX('B349D30EECAFF26C65C6E85643B59C94')),
(UNHEX('F9C29A307846FD1532D509603A4FC379'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-column-inner.php', 0, UNHEX('2DECB8206539D72B7A2BF77CEF5F8317'), UNHEX('2DECB8206539D72B7A2BF77CEF5F8317')),
(UNHEX('28A43B8D2E0E75830DE47855D100C856'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-column-text.php', 0, UNHEX('72F038FD29ED8F640A4D86461BF685F5'), UNHEX('72F038FD29ED8F640A4D86461BF685F5')),
(UNHEX('36E306D08DDD18863690970C2FACB0D1'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-cta-button.php', 0, UNHEX('2DE9976FB0D84A40EFCE1EDD4B4E268A'), UNHEX('2DE9976FB0D84A40EFCE1EDD4B4E268A')),
(UNHEX('00D5A0DA13F9DE924128B7F63D870063'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-cta-button2.php', 0, UNHEX('0EBBB4F4F036D99FE0270554D0913BBE'), UNHEX('0EBBB4F4F036D99FE0270554D0913BBE')),
(UNHEX('EBD14C2608497E361AEE0A64C6C5E5E2'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-custom-heading.php', 0, UNHEX('5CD180AD2F20EB5F0E3BFF1087CC2C21'), UNHEX('5CD180AD2F20EB5F0E3BFF1087CC2C21')),
(UNHEX('5F92D042E50F8724BB98B17A2E34B411'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-empty-space.php', 0, UNHEX('1EA914027EFD953C6C73D89AB4FC21F1'), UNHEX('1EA914027EFD953C6C73D89AB4FC21F1')),
(UNHEX('B3B12808D389C9DA44D210626626F9BA'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-facebook.php', 0, UNHEX('C2581BF059D8B06CD268A0684C4A0D40'), UNHEX('C2581BF059D8B06CD268A0684C4A0D40')),
(UNHEX('4DFA705BF4ADD4D7586A95EE9E130FB5'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-flickr.php', 0, UNHEX('A4ECD33F1F79F246790EEB16CAF0CC19'), UNHEX('A4ECD33F1F79F246790EEB16CAF0CC19')),
(UNHEX('B53416A2F5663917332ED79B038CC03F'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gallery.php', 0, UNHEX('DA6E9FCC49FE138D91B2186D473519B3'), UNHEX('DA6E9FCC49FE138D91B2186D473519B3')),
(UNHEX('8164A737DAC6E316D4D35863F0C4A83F'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-col.php', 0, UNHEX('2391829C91E4DA40CE288274BC466689'), UNHEX('2391829C91E4DA40CE288274BC466689')),
(UNHEX('E318AD0B17CBDBB9275ADAFC54935821'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-image.php', 0, UNHEX('F7EF71E078D19E6B86533998CDCBB7DE'), UNHEX('F7EF71E078D19E6B86533998CDCBB7DE')),
(UNHEX('32D188BD2A3DE75C7CFA754A749720A0'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-author.php', 0, UNHEX('DB69F90A9A392ACF58886C7CAFEC4713'), UNHEX('DB69F90A9A392ACF58886C7CAFEC4713')),
(UNHEX('8ABF384B37D8645E98078627ECE5DC74'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-categories.php', 0, UNHEX('6D82B286963AF39B5C395E4F6C39F2E2'), UNHEX('6D82B286963AF39B5C395E4F6C39F2E2')),
(UNHEX('59C392D506CB3C8E4C26F3BA69B9F62E'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-data.php', 0, UNHEX('773D89EB3DE3421286FDA47C05AD50D3'), UNHEX('773D89EB3DE3421286FDA47C05AD50D3')),
(UNHEX('DAB982DE7C509EC014B6AD04140F8990'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-date.php', 0, UNHEX('CF950157DF0C7FDCD977B2E1D37ECE92'), UNHEX('CF950157DF0C7FDCD977B2E1D37ECE92')),
(UNHEX('0109348BF272764858614B1D70174A94'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-excerpt.php', 0, UNHEX('92EBD9F6F06512D50C9D0E2E9401423A'), UNHEX('92EBD9F6F06512D50C9D0E2E9401423A')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('D7E35BCBDED64AA462AC0836675A8D23'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-meta.php', 0, UNHEX('C31B64EE2DE3A454812747EC5BBA15F2'), UNHEX('C31B64EE2DE3A454812747EC5BBA15F2')),
(UNHEX('93C6C5D2AB50E69E4E227A983D34CD4D'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-title.php', 0, UNHEX('83ADFDE47078438ACC6FD6A7E287738A'), UNHEX('83ADFDE47078438ACC6FD6A7E287738A')),
(UNHEX('A42CE149F415AD5BAEDBE3D464221EDC'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-row.php', 0, UNHEX('5C3180C69A2F91DCDB9E24CEB8A69212'), UNHEX('5C3180C69A2F91DCDB9E24CEB8A69212')),
(UNHEX('9A0FC69485F82AC07DCB0267AA30A30A'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone-a.php', 0, UNHEX('2D6E42CAB35067921F4590B58D1707CD'), UNHEX('2D6E42CAB35067921F4590B58D1707CD')),
(UNHEX('4F47E5AB3E966BC89B7AED5B9D327BFB'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone-b.php', 0, UNHEX('A4C8D754B051D558544F3CCEF5A72318'), UNHEX('A4C8D754B051D558544F3CCEF5A72318')),
(UNHEX('476DD4BB2697EBCFD0F2101CD6F1A96B'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone-c.php', 0, UNHEX('17392486562E35AE0F6E3D78FF9E3949'), UNHEX('17392486562E35AE0F6E3D78FF9E3949')),
(UNHEX('016E735716F287DD659C7DDECCD9B3BE'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone.php', 0, UNHEX('9BCEFDB18BAD0C90C7006187094AE3F1'), UNHEX('9BCEFDB18BAD0C90C7006187094AE3F1')),
(UNHEX('A3F26121F1AEDE7807B37A2A791757E4'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gmaps.php', 0, UNHEX('2C577558E2973EBC3A3707B52B144B1C'), UNHEX('2C577558E2973EBC3A3707B52B144B1C')),
(UNHEX('4369351120F87D7513FFAA68FF813B1F'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-googleplus.php', 0, UNHEX('31E45E5B0513E2343AE26EB3399E673A'), UNHEX('31E45E5B0513E2343AE26EB3399E673A')),
(UNHEX('F9C9BF6A834B09B31EEA0F321DBF83C5'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-icon.php', 0, UNHEX('B35680A84BF24664F0EEAEF0B80D9DD1'), UNHEX('B35680A84BF24664F0EEAEF0B80D9DD1')),
(UNHEX('6EE51E85B3E207F458400AE226F43AA7'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-images-carousel.php', 0, UNHEX('C03C7814FB5DE472DA944437667A0E56'), UNHEX('C03C7814FB5DE472DA944437667A0E56')),
(UNHEX('3BE406D5723B6C4BA072C88646D30B9B'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-line-chart.php', 0, UNHEX('1C7802E3487FCC9BE2CB1E9D5AD9450A'), UNHEX('1C7802E3487FCC9BE2CB1E9D5AD9450A')),
(UNHEX('B4A046C11BCB12E8EDAE39B1341A60AE'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-masonry-grid.php', 0, UNHEX('17C58629D7B99513AABEAD665023AE71'), UNHEX('17C58629D7B99513AABEAD665023AE71')),
(UNHEX('726067D46DFEE6C09402FF9F599D5C95'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-media-grid.php', 0, UNHEX('FB2FC363AB7EFADAD1C37114444A5BD7'), UNHEX('FB2FC363AB7EFADAD1C37114444A5BD7')),
(UNHEX('9918B93AB95E5E9600BD248734C20A76'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-message.php', 0, UNHEX('28F287589BB71C26DA0F01E3771C8F0B'), UNHEX('28F287589BB71C26DA0F01E3771C8F0B')),
(UNHEX('D435BBD876AA2564F96FFA5AF5374C87'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-pie.php', 0, UNHEX('1442ECEAC1BF71CE063A7918D5CB3BA7'), UNHEX('1442ECEAC1BF71CE063A7918D5CB3BA7')),
(UNHEX('51DC99EE1850F99F35D9E9532C7AB2C9'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-pinterest.php', 0, UNHEX('6CC3454F02EB412FB3FABF7D2FBFC842'), UNHEX('6CC3454F02EB412FB3FABF7D2FBFC842')),
(UNHEX('5A8C464B201947D0D5145CE11BC961E1'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-posts-grid.php', 0, UNHEX('7C7A92CB74E10E184C147A8EAB2C2B2F'), UNHEX('7C7A92CB74E10E184C147A8EAB2C2B2F')),
(UNHEX('CA1FB76E4941D0810839F8F3166B27F4'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-posts-slider.php', 0, UNHEX('E88C4B738CAA8B0A5EDA40E236CE9446'), UNHEX('E88C4B738CAA8B0A5EDA40E236CE9446')),
(UNHEX('3C308D436F5AC7FBFFFF6574652A88BD'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-progress-bar.php', 0, UNHEX('6BE8E76A18A3EA7DAF714F8E01527198'), UNHEX('6BE8E76A18A3EA7DAF714F8E01527198')),
(UNHEX('EE3A0D1D22C3997999D8C945BB899B12'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-raw-html.php', 0, UNHEX('863051540DC2EECAD2D7FE5521228D58'), UNHEX('863051540DC2EECAD2D7FE5521228D58')),
(UNHEX('B5983DCB599A4FAE8F146F4FCD328BB9'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-raw-js.php', 0, UNHEX('96C162E6A261E2EF9E4D7ACE5CE43975'), UNHEX('96C162E6A261E2EF9E4D7ACE5CE43975')),
(UNHEX('D53CCB41C5B991F4008CBB35A8FDDBE0'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-round-chart.php', 0, UNHEX('2DBA287DA156FE7B8477C0C688746EB6'), UNHEX('2DBA287DA156FE7B8477C0C688746EB6')),
(UNHEX('9B47127E8D592DEA3BF3AB6A31B300DD'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-row-inner.php', 0, UNHEX('47F051CFC800B04C90A09FFA81316D07'), UNHEX('47F051CFC800B04C90A09FFA81316D07')),
(UNHEX('79BD0EEB57899BC38CE5AEF2686D6F39'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-row.php', 0, UNHEX('3D61BB17491DEB79DB9400EB12209A0F'), UNHEX('3D61BB17491DEB79DB9400EB12209A0F')),
(UNHEX('8F203349CF4184438770A6027E09A9BA'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-separator.php', 0, UNHEX('D766B9080AB70229D2BED2FD38BC0F73'), UNHEX('D766B9080AB70229D2BED2FD38BC0F73')),
(UNHEX('B1B82FC97B5402B8CABDD2DB8FCAE96A'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-single-image.php', 0, UNHEX('F8CF1970BC24EFF47A091B28C6F8AAFC'), UNHEX('F8CF1970BC24EFF47A091B28C6F8AAFC')),
(UNHEX('1EB9A8AC3CFEFD8D147EC328BE2B7F20'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tab.php', 0, UNHEX('CE5596FEC51A473EAEE1372730E0FCFD'), UNHEX('CE5596FEC51A473EAEE1372730E0FCFD')),
(UNHEX('22B2DBA448AAEF316D81089D753C0F7D'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tabs.php', 0, UNHEX('62DE021CB33DE05C988D4D1D1BCC8669'), UNHEX('62DE021CB33DE05C988D4D1D1BCC8669')),
(UNHEX('0F4D7D1147E17167A57A281F15F3E359'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-text-separator.php', 0, UNHEX('8F1BD024FE25EF8BF25F32E8F1DD4D70'), UNHEX('8F1BD024FE25EF8BF25F32E8F1DD4D70')),
(UNHEX('D82E0940C24B48E2B8FA59681557732C'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-toggle.php', 0, UNHEX('88DD8A6B8070E906C2AB62B02F238529'), UNHEX('88DD8A6B8070E906C2AB62B02F238529')),
(UNHEX('D36BBEFBD85D9CBA7F6C4B865649BE24'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tour.php', 0, UNHEX('BA979035BA63845D9CC9EBE1EC3361C3'), UNHEX('BA979035BA63845D9CC9EBE1EC3361C3')),
(UNHEX('1A746AF7EC2B7A1CFE7F9B5F2370FB6C'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-accordion.php', 0, UNHEX('2E382829FF95EF1A80B20B6771F08A06'), UNHEX('2E382829FF95EF1A80B20B6771F08A06')),
(UNHEX('52D829145F6A07401AEB1D83F06E5170'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-pageable.php', 0, UNHEX('22F19807DFA76F5D371EF5E6E1C73F31'), UNHEX('22F19807DFA76F5D371EF5E6E1C73F31')),
(UNHEX('29178BAC0B59FECA4DA34B1DA43A23F1'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-section.php', 0, UNHEX('D1C8502C93DFCAADB77176C827598AF4'), UNHEX('D1C8502C93DFCAADB77176C827598AF4')),
(UNHEX('6B92DEB7B993003B7B408ABD3C2464F9'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-tour.php', 0, UNHEX('649719C3C0B0F240C5835E2F7C4531E8'), UNHEX('649719C3C0B0F240C5835E2F7C4531E8')),
(UNHEX('EC52E43B437F8E5FA62F97DC6A6C784B'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tweetmeme.php', 0, UNHEX('C04245FD6945B36CADCC177A6F4A3C0E'), UNHEX('C04245FD6945B36CADCC177A6F4A3C0E')),
(UNHEX('03EA3DAD4DDADC562A62B572E3780B66'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-video.php', 0, UNHEX('2A1ACB9F81FDAD20AB6F651202CBBECD'), UNHEX('2A1ACB9F81FDAD20AB6F651202CBBECD')),
(UNHEX('D7C92D5326D5FAB1AC3FAE2643EBAEFC'), 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-widget-sidebar.php', 0, UNHEX('A1EB4BB6E827EF64905DD6E58D5FAEB6'), UNHEX('A1EB4BB6E827EF64905DD6E58D5FAEB6')),
(UNHEX('EE20DAD989653E51D9D9C21A2E7902F5'), 'wp-content/plugins/js_composer/include/classes/shortcodes/wordpress-widgets.php', 0, UNHEX('31F39A6BE22B8213066C90691390A7D7'), UNHEX('31F39A6BE22B8213066C90691390A7D7')),
(UNHEX('A77B231BA6D6DD3CBC986BC90251C873'), 'wp-content/plugins/js_composer/include/classes/updaters/class-vc-updater.php', 0, UNHEX('C12B3709773107BEB104F8B4AFE0312E'), UNHEX('C12B3709773107BEB104F8B4AFE0312E')),
(UNHEX('1BBBF7A4AA8979406299AA5463FD8E95'), 'wp-content/plugins/js_composer/include/classes/updaters/class-vc-updating-manager.php', 0, UNHEX('F47861CE81BEC50340087D2A659E195A'), UNHEX('F47861CE81BEC50340087D2A659E195A')),
(UNHEX('FA32F56A4A1465EF7F48FDE8CF7ED724'), 'wp-content/plugins/js_composer/include/classes/vendors/class-vc-vendors-manager.php', 0, UNHEX('9E8530F8E51555689275AC101B458013'), UNHEX('9E8530F8E51555689275AC101B458013')),
(UNHEX('AB94839295678A9166E7975FA1437DFE'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/class-vc-acf-shortcode.php', 0, UNHEX('FD049C7B97906184F6BE6D34DDDFE588'), UNHEX('FD049C7B97906184F6BE6D34DDDFE588')),
(UNHEX('EAA81AAABB5469F9537887DDC62D667F'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/class-vc-gitem-acf-shortcode.php', 0, UNHEX('370DEAEFB732F569368DBA90C0F72A5B'), UNHEX('370DEAEFB732F569368DBA90C0F72A5B')),
(UNHEX('39767AFDB8E1EDB19393A139CA0D76A8'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/grid-item-attributes.php', 0, UNHEX('DA52303F8970A5CE5B2F71D5EC575DA1'), UNHEX('DA52303F8970A5CE5B2F71D5EC575DA1')),
(UNHEX('8D38DF5B4D92E318C36EF9042D1E9C6D'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/grid-item-shortcodes.php', 0, UNHEX('5D85111F70A8791E0056637D1B0B4D70'), UNHEX('5D85111F70A8791E0056637D1B0B4D70')),
(UNHEX('B1DA07A18D8EC09C3CA8482DAB41BA0A'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/shortcode.php', 0, UNHEX('42F184AF514B2B892D3C48A790AA1A66'), UNHEX('42F184AF514B2B892D3C48A790AA1A66')),
(UNHEX('D3690FFE62570E789B6F34C36ABE3FC0'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-advanced-custom-fields.php', 0, UNHEX('C3234A2E3D7E822FAF0D16C8D61BFE41'), UNHEX('C3234A2E3D7E822FAF0D16C8D61BFE41')),
(UNHEX('B79FE3BA115E3DA2E9879927517278DB'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-contact-form7.php', 0, UNHEX('8051D532844C1B7567686806DA95EF62'), UNHEX('8051D532844C1B7567686806DA95EF62')),
(UNHEX('BD2BAE9C3C4FCE8ED6470D5831C9C3F1'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-jwplayer.php', 0, UNHEX('D34E799D47AB78C185A48417FC63C658'), UNHEX('D34E799D47AB78C185A48417FC63C658')),
(UNHEX('AEC825E2FAAF8EDAF4B1B974ADA48997'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-layerslider.php', 0, UNHEX('C697E89D0AE7C4482768EA44C69FCCB2'), UNHEX('C697E89D0AE7C4482768EA44C69FCCB2')),
(UNHEX('926383C5CDD436D7992BF6FE8FF0A4A4'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-mqtranslate.php', 0, UNHEX('C06BBFA804A7F127D07DA3307D0FA3AB'), UNHEX('C06BBFA804A7F127D07DA3307D0FA3AB')),
(UNHEX('AD469846015051248C187A6E13FC6386'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-ninja-forms.php', 0, UNHEX('4F68F4DD0FD00A6256670B228681260E'), UNHEX('4F68F4DD0FD00A6256670B228681260E')),
(UNHEX('F5A285FE78660F9A5EE0A71A4FCA05B1'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-qtranslate-x.php', 0, UNHEX('4650CC0D7E010015B07CA591C6021CF0'), UNHEX('4650CC0D7E010015B07CA591C6021CF0')),
(UNHEX('00D6C2C2CD87C401E5F8307AE9AFAF78'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-qtranslate.php', 0, UNHEX('6803785739EB0735604816A76FD25A59'), UNHEX('6803785739EB0735604816A76FD25A59')),
(UNHEX('12CC0727F807B74DE5B0190C66F59916'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-revslider.php', 0, UNHEX('4CFBCE590897E8BA55031A77197B0B7E'), UNHEX('4CFBCE590897E8BA55031A77197B0B7E')),
(UNHEX('51020B8C657F866878F9B099F10F012E'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-woocommerce.php', 0, UNHEX('C74539FAD7BD3C67C2DA028A9781C971'), UNHEX('C74539FAD7BD3C67C2DA028A9781C971')),
(UNHEX('EAB5672A65335462A1001BE847881B5A'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-wpml.php', 0, UNHEX('8D27FEC21E8FFD5DB7634090881E08CF'), UNHEX('8D27FEC21E8FFD5DB7634090881E08CF')),
(UNHEX('9207616E5AB4889DC3005250C4FA4818'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-yoast_seo.php', 0, UNHEX('301B054C3DA0E0A156B2B935119F8943'), UNHEX('301B054C3DA0E0A156B2B935119F8943')),
(UNHEX('003F5BF7EC165864B632FD2C96334951'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/woocommerce/class-vc-gitem-woocommerce-shortcode.php', 0, UNHEX('75FB22499739EB1C1244CFAE4C0A29D5'), UNHEX('75FB22499739EB1C1244CFAE4C0A29D5')),
(UNHEX('1F3C1E123BA1C31DEC82C44901DBD0FC'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/woocommerce/grid-item-attributes.php', 0, UNHEX('43409E868FEA32559926AFE23115FA5E'), UNHEX('43409E868FEA32559926AFE23115FA5E')),
(UNHEX('B0A25312003BD0536BB3AD67359D5DA0'), 'wp-content/plugins/js_composer/include/classes/vendors/plugins/woocommerce/grid-item-shortcodes.php', 0, UNHEX('1660E2444432FDCCA4989AC995793B5D'), UNHEX('1660E2444432FDCCA4989AC995793B5D')),
(UNHEX('28D055E7BF6B953357AB8F950CA82C54'), 'wp-content/plugins/js_composer/include/helpers/filters.php', 0, UNHEX('A29D5EE3F50D461D484166E215875820'), UNHEX('A29D5EE3F50D461D484166E215875820')),
(UNHEX('A5C58B51F53EE14E66AD337753E5E527'), 'wp-content/plugins/js_composer/include/helpers/helpers.php', 0, UNHEX('0EB112EB49965092BA507D585688F440'), UNHEX('0EB112EB49965092BA507D585688F440')),
(UNHEX('F9376C6A4C0ABE87903862B49B9E7DE9'), 'wp-content/plugins/js_composer/include/helpers/helpers_api.php', 0, UNHEX('EF2FE48469C58D469A52C07764BE85B9'), UNHEX('EF2FE48469C58D469A52C07764BE85B9')),
(UNHEX('0907EED4C4A8DF5481A8770E1DDF5943'), 'wp-content/plugins/js_composer/include/helpers/helpers_factory.php', 0, UNHEX('B18A89C0C651C40541EB19C35034132F'), UNHEX('B18A89C0C651C40541EB19C35034132F')),
(UNHEX('D5C8EADD8C34BE143116C2FC9392D193'), 'wp-content/plugins/js_composer/include/params/animation_style/animation_style.php', 0, UNHEX('6EF1D310985C515401920A2EF63F7009'), UNHEX('6EF1D310985C515401920A2EF63F7009')),
(UNHEX('791CA15E621A86820254811C6BD59151'), 'wp-content/plugins/js_composer/include/params/autocomplete/autocomplete.php', 0, UNHEX('D09ADEF1ACBC32073691D9CE2B0BC7F6'), UNHEX('D09ADEF1ACBC32073691D9CE2B0BC7F6')),
(UNHEX('63FA949A1E5734B328809EAB7A052C49'), 'wp-content/plugins/js_composer/include/params/colorpicker/colorpicker.php', 0, UNHEX('C80C753116E8DE666550E9100DAEA1A2'), UNHEX('C80C753116E8DE666550E9100DAEA1A2')),
(UNHEX('3BE43ABFCA246D3EA494FE96F37234BD'), 'wp-content/plugins/js_composer/include/params/column_offset/column_offset.php', 0, UNHEX('C0C80DEF86A77E4F7C23D11F622E9F82'), UNHEX('C0C80DEF86A77E4F7C23D11F622E9F82')),
(UNHEX('3C3E785002BCF5E2FEA5BFACEFC246F6'), 'wp-content/plugins/js_composer/include/params/css_editor/css_editor.php', 0, UNHEX('3ECFFC315D608839B091B8A20EB0A74F'), UNHEX('3ECFFC315D608839B091B8A20EB0A74F')),
(UNHEX('0115202EB5732235C7D48978B0926348'), 'wp-content/plugins/js_composer/include/params/custom_markup/custom_markup.php', 0, UNHEX('D05C768A45F552157A8A13D60A3C6CC9'), UNHEX('D05C768A45F552157A8A13D60A3C6CC9')),
(UNHEX('505F775EAE211752FDEF33F131718EDD'), 'wp-content/plugins/js_composer/include/params/default_params.php', 0, UNHEX('BE29DC51DC027B565475EF2CAA50E110'), UNHEX('BE29DC51DC027B565475EF2CAA50E110')),
(UNHEX('D40087BD4464341FA8EF1DEEC042F560'), 'wp-content/plugins/js_composer/include/params/el_id/el_id.php', 0, UNHEX('65AFCDDBB2780319F2566C2017A70414'), UNHEX('65AFCDDBB2780319F2566C2017A70414')),
(UNHEX('8545444F75EB4BED295CF2EE479D5388'), 'wp-content/plugins/js_composer/include/params/google_fonts/google_fonts.php', 0, UNHEX('F461DE6ADF03C70C1F3AD91918923971'), UNHEX('F461DE6ADF03C70C1F3AD91918923971')),
(UNHEX('3A2294C0048DA89C6928D9C3325872C5'), 'wp-content/plugins/js_composer/include/params/hidden/hidden.php', 0, UNHEX('60C1A3563AD2E46E1DC3188FC3E8635C'), UNHEX('60C1A3563AD2E46E1DC3188FC3E8635C')),
(UNHEX('2D776DAD97F860476784BE432311E5CF'), 'wp-content/plugins/js_composer/include/params/href/href.php', 0, UNHEX('E8D735A21A70BA6F435089561AD453E9'), UNHEX('E8D735A21A70BA6F435089561AD453E9')),
(UNHEX('0E117C7626D01E1DF14920BAFEDC8B66'), 'wp-content/plugins/js_composer/include/params/iconpicker/iconpicker.php', 0, UNHEX('AFCA50CAA5C48A181BE6C0BABC5AFC01'), UNHEX('AFCA50CAA5C48A181BE6C0BABC5AFC01')),
(UNHEX('05F4D5A80A06AC70686A69613182A8FF'), 'wp-content/plugins/js_composer/include/params/load.php', 0, UNHEX('3C644A87FEF9C2485645A0EFBAAEF6D4'), UNHEX('3C644A87FEF9C2485645A0EFBAAEF6D4')),
(UNHEX('080039951510F54D29C1B3A7EC885ED2'), 'wp-content/plugins/js_composer/include/params/loop/loop.php', 0, UNHEX('6C32DB8877EB2A9F738A48A0EE02A6AC'), UNHEX('6C32DB8877EB2A9F738A48A0EE02A6AC')),
(UNHEX('08F4CAC0E4D84D54EB7BAA6AD499CAC8'), 'wp-content/plugins/js_composer/include/params/options/options.php', 0, UNHEX('365E687998971DD599FD090B16CD8B1C'), UNHEX('365E687998971DD599FD090B16CD8B1C')),
(UNHEX('6272A6102C1756F03A54F7FBDFE055F0'), 'wp-content/plugins/js_composer/include/params/param_group/param_group.php', 0, UNHEX('CC2A15BFC83CE2762E47087D9931DF6C'), UNHEX('CC2A15BFC83CE2762E47087D9931DF6C')),
(UNHEX('2683416705F7328AF6A64EF60B717CC1'), 'wp-content/plugins/js_composer/include/params/params.php', 0, UNHEX('BDB2EB4171DB8BB336082D5FA01F3BA2'), UNHEX('BDB2EB4171DB8BB336082D5FA01F3BA2')),
(UNHEX('ACD9DB1C16464C60878A61E129935D5A'), 'wp-content/plugins/js_composer/include/params/params_preset/params_preset.php', 0, UNHEX('D475650A3BAE91E802EB3F456F580683'), UNHEX('D475650A3BAE91E802EB3F456F580683')),
(UNHEX('D896D2D420976554E602770163BC766F'), 'wp-content/plugins/js_composer/include/params/sorted_list/sorted_list.php', 0, UNHEX('08FEA9F9D1E3D27D600D4718FB74B845'), UNHEX('08FEA9F9D1E3D27D600D4718FB74B845')),
(UNHEX('AD4B66870D6BDC1CA906B536D2425F29'), 'wp-content/plugins/js_composer/include/params/tab_id/tab_id.php', 0, UNHEX('AD78D4A897D85295ACE7B9E87FBC5922'), UNHEX('AD78D4A897D85295ACE7B9E87FBC5922')),
(UNHEX('C5F2432DDD0F200147BD134E52EBF8D1'), 'wp-content/plugins/js_composer/include/params/textarea_html/textarea_html.php', 0, UNHEX('F8244E8BB2F2A5D3BC61ED1C33D28C25'), UNHEX('F8244E8BB2F2A5D3BC61ED1C33D28C25')),
(UNHEX('2F66E48CB45E9860E7341EE522B2CE36'), 'wp-content/plugins/js_composer/include/params/vc_grid_element/vc_grid_element.php', 0, UNHEX('855C43869700D8F698C24BC01ED55364'), UNHEX('855C43869700D8F698C24BC01ED55364')),
(UNHEX('238EBB2C048962F1817F5B22A61B2603'), 'wp-content/plugins/js_composer/include/params/vc_grid_element/vc_grid_id/vc_grid_id.php', 0, UNHEX('377180820128D065B9CFB202F9C3485C'), UNHEX('377180820128D065B9CFB202F9C3485C')),
(UNHEX('98F0D639429FFCC37B16E08527B44DF4'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/attributes.php', 0, UNHEX('A362C1D1346D7DE7471349DB50E90F1F'), UNHEX('A362C1D1346D7DE7471349DB50E90F1F')),
(UNHEX('61D22341261BA1C9F6FA1B9FCDFD56DE'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/class-vc-grid-item.php', 0, UNHEX('03838C553A624F8EE815E7505ADAC36D'), UNHEX('03838C553A624F8EE815E7505ADAC36D')),
(UNHEX('4815B3B840BFF6863407E8670AEE4BDF'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/class-wpb-map-grid-item.php', 0, UNHEX('BA31573282DA2F2295314F36C44C6A3D'), UNHEX('BA31573282DA2F2295314F36C44C6A3D')),
(UNHEX('C7D30C64A880524900A2AB9667230205'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/class-vc-grid-item-preview.php', 0, UNHEX('02D2575B6F099C898D7EAE948535623B'), UNHEX('02D2575B6F099C898D7EAE948535623B')),
(UNHEX('0E0533B4DDFDE20602639735F4E4889F'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/navbar/class-vc-navbar-grid-item.php', 0, UNHEX('64F9568F4FCADEE9CB45B1472FC531A5'), UNHEX('64F9568F4FCADEE9CB45B1472FC531A5')),
(UNHEX('81CF7BFFD9B2CD8E4B90EF8EDB331727'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/popups/class-vc-add-element-box-grid-item.php', 0, UNHEX('513EE82B5F86B3800FB1632D7C6342D1'), UNHEX('513EE82B5F86B3800FB1632D7C6342D1')),
(UNHEX('6E9334ED3255ED344E8F1A62746D4E6C'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/popups/class-vc-templates-editor-grid-item.php', 0, UNHEX('C53E2D18617AEAE54B2B67697E309780'), UNHEX('C53E2D18617AEAE54B2B67697E309780')),
(UNHEX('90FEE3FB93BC044A0F93F813148CD315'), 'wp-content/plugins/js_composer/include/params/vc_grid_item/shortcodes.php', 0, UNHEX('E4D1602637A012554C5F7DD09A77D3D8'), UNHEX('E4D1602637A012554C5F7DD09A77D3D8')),
(UNHEX('B2A0AAAC4FA3F28CD51C0D907E51C0D3'), 'wp-content/plugins/js_composer/include/params/vc_link/vc_link.php', 0, UNHEX('3200453B9B4FAE37EB9FE626DE939C7A'), UNHEX('3200453B9B4FAE37EB9FE626DE939C7A')),
(UNHEX('8AD4A590CA3835A35E1EC7E191515AFA'), 'wp-content/plugins/js_composer/include/templates/editors/backend_editor.tpl.php', 0, UNHEX('EEE95D367974882023727F4810B9AE80'), UNHEX('EEE95D367974882023727F4810B9AE80')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('55DDA064099AD15B0A35AF990EA8D2EB'), 'wp-content/plugins/js_composer/include/templates/editors/frontend_template.tpl.php', 0, UNHEX('8AE344B069A0B5C77AC229AFBAC4D865'), UNHEX('8AE344B069A0B5C77AC229AFBAC4D865')),
(UNHEX('0FE39F477984C4B0ABED69166BEAEDAA'), 'wp-content/plugins/js_composer/include/templates/editors/navbar/navbar.tpl.php', 0, UNHEX('2B0F39A48BB8956E7873CDADC508CA56'), UNHEX('2B0F39A48BB8956E7873CDADC508CA56')),
(UNHEX('73EE872A81FC0888761E8360AC630892'), 'wp-content/plugins/js_composer/include/templates/editors/partials/add_element_tabs.tpl.php', 0, UNHEX('7971EF86656C8FD150481393D90C2A40'), UNHEX('7971EF86656C8FD150481393D90C2A40')),
(UNHEX('C5CEF81D742E329BA8CA9CBAC611ECDB'), 'wp-content/plugins/js_composer/include/templates/editors/partials/backend-shortcodes-templates.tpl.php', 0, UNHEX('3F25856DD79D7329BCAADBC6A6FBCEC8'), UNHEX('3F25856DD79D7329BCAADBC6A6FBCEC8')),
(UNHEX('A442C8BE6AD369416289E7E8FDF7DDAC'), 'wp-content/plugins/js_composer/include/templates/editors/partials/backend_controls.tpl.php', 0, UNHEX('A156839F2E78D844011AEA6F07948974'), UNHEX('A156839F2E78D844011AEA6F07948974')),
(UNHEX('062C902121E9C5F4694D294E6226ABE0'), 'wp-content/plugins/js_composer/include/templates/editors/partials/backend_controls_tab.tpl.php', 0, UNHEX('482578C66483E2380EF636E4927CF5A5'), UNHEX('482578C66483E2380EF636E4927CF5A5')),
(UNHEX('2F616605773DABD83F1A3650A4C149FB'), 'wp-content/plugins/js_composer/include/templates/editors/partials/backend_editor_footer.tpl.php', 0, UNHEX('959C2AB534A39B16BB841B693BAE262F'), UNHEX('959C2AB534A39B16BB841B693BAE262F')),
(UNHEX('0AB20DF4B1211A0FF0046F3E9229E545'), 'wp-content/plugins/js_composer/include/templates/editors/partials/frontend_controls.tpl.php', 0, UNHEX('CE9B511CEB66B50289E6D48DD3B5F94C'), UNHEX('CE9B511CEB66B50289E6D48DD3B5F94C')),
(UNHEX('FED83A1FC44E9620E021D98D93C19C82'), 'wp-content/plugins/js_composer/include/templates/editors/partials/post_shortcodes.tpl.php', 0, UNHEX('FDBF94C331C816EF21D7FFE6DF9A27A0'), UNHEX('FDBF94C331C816EF21D7FFE6DF9A27A0')),
(UNHEX('D2485D571D1E367A8D2308A79A388C64'), 'wp-content/plugins/js_composer/include/templates/editors/partials/prompt.tpl.php', 0, UNHEX('7E419E5BB46F62CA2DFE86805AC05FDA'), UNHEX('7E419E5BB46F62CA2DFE86805AC05FDA')),
(UNHEX('4877A90071218161D41CE13751781738'), 'wp-content/plugins/js_composer/include/templates/editors/partials/settings_presets_popup.tpl.php', 0, UNHEX('FA3F3CF3AFB49DE2736F50171AED6024'), UNHEX('FA3F3CF3AFB49DE2736F50171AED6024')),
(UNHEX('12746C5E6983149B6D835FE2CCF6C925'), 'wp-content/plugins/js_composer/include/templates/editors/partials/templates_search.tpl.php', 0, UNHEX('CC4AE3BA6759BA8D97D64B2D347616CB'), UNHEX('CC4AE3BA6759BA8D97D64B2D347616CB')),
(UNHEX('D0022DB9421050CD95E7BE3594CFEAFB'), 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_settings-image-block.tpl.php', 0, UNHEX('C96F9E20747F1BCAA7F157C6F088BCF6'), UNHEX('C96F9E20747F1BCAA7F157C6F088BCF6')),
(UNHEX('D834C18C0A287BFC4FEA6C33157FBECF'), 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_ui-presets-dropdown.tpl.php', 0, UNHEX('1FAB2E6AA7FB78DBB87934E501B62666'), UNHEX('1FAB2E6AA7FB78DBB87934E501B62666')),
(UNHEX('DB6FA4DF2FAE6F59D499933E4B266B78'), 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_ui-templates-tabs.tpl.php', 0, UNHEX('AD2F5C22D5C98D5AFEA3D5351FA3705B'), UNHEX('AD2F5C22D5C98D5AFEA3D5351FA3705B')),
(UNHEX('43C0D1E95415ABC2A9E15D2A7EA13CEA'), 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_welcome_block.tpl.php', 0, UNHEX('573E37F8937E8AD39F32F87E4E09410B'), UNHEX('573E37F8937E8AD39F32F87E4E09410B')),
(UNHEX('C5C621C53BC7E92B25E3B879781973B5'), 'wp-content/plugins/js_composer/include/templates/editors/popups/modal_edit_element.tpl.php', 0, UNHEX('7D065694C54E7B1EDCA04FB5E0BE1144'), UNHEX('7D065694C54E7B1EDCA04FB5E0BE1144')),
(UNHEX('3FCE999871F8B5EF60C01157C93E88BD'), 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_edit_layout.tpl.php', 0, UNHEX('DBC93886AA8DEFD874BD2C10679660D5'), UNHEX('DBC93886AA8DEFD874BD2C10679660D5')),
(UNHEX('F3E1E71DD983B886830B759234FAB809'), 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_multi_shortcode_edit_form.tpl.php', 0, UNHEX('8198E5107B4E7A72F4C39D4637BF5CC3'), UNHEX('8198E5107B4E7A72F4C39D4637BF5CC3')),
(UNHEX('BC1A4F40704227F3BF85E9C7524BA41F'), 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_post_settings.tpl.php', 0, UNHEX('7A549F3E8AACDBB38B8A51C4BC9DF499'), UNHEX('7A549F3E8AACDBB38B8A51C4BC9DF499')),
(UNHEX('B69901759B4D43C539844F6377F73128'), 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_shortcode_edit_form.tpl.php', 0, UNHEX('C02E5ED082A90673EBEEAD52FEBEF7F7'), UNHEX('C02E5ED082A90673EBEEAD52FEBEF7F7')),
(UNHEX('E4D73A2B119D13766038697F9C8490B4'), 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_templates.tpl.php', 0, UNHEX('C67B69B9442046C98458F7295FC03E73'), UNHEX('C67B69B9442046C98458F7295FC03E73')),
(UNHEX('4F4017685AC898E5C2916A7C3FDBE773'), 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-footer.tpl.php', 0, UNHEX('F2A584AF570D6974C6D8F1E5FFABCC05'), UNHEX('F2A584AF570D6974C6D8F1E5FFABCC05')),
(UNHEX('CE53EB7004CD9D5CEA50EC41416D9F62'), 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-header.tpl.php', 0, UNHEX('0E9B5764EE11C22EEC34113AC3B52D1C'), UNHEX('0E9B5764EE11C22EEC34113AC3B52D1C')),
(UNHEX('009C4DC0700E5C064492FAE2CB64A900'), 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-add-element.tpl.php', 0, UNHEX('16C7167627032A68CDF9B356DB4800BA'), UNHEX('16C7167627032A68CDF9B356DB4800BA')),
(UNHEX('88F16FC3E0F33F31AA2D9DD147922A67'), 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-edit-element.tpl.php', 0, UNHEX('AC003640A2235F202EC9FB87E529BB3B'), UNHEX('AC003640A2235F202EC9FB87E529BB3B')),
(UNHEX('8D65F07D13516D4ABC545DADC118BED6'), 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-post-settings.tpl.php', 0, UNHEX('A5C6531CFCCA72788A37E0FFFF6338E7'), UNHEX('A5C6531CFCCA72788A37E0FFFF6338E7')),
(UNHEX('AB64582473840AD47FAAE677AB5DABAA'), 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-templates.tpl.php', 0, UNHEX('A32EB7AE1103AE366E5A2287E8A0C735'), UNHEX('A32EB7AE1103AE366E5A2287E8A0C735')),
(UNHEX('024DCFFF603E48BE7EE4D2F532471908'), 'wp-content/plugins/js_composer/include/templates/editors/vc_ui-template-preview.tpl.php', 0, UNHEX('F8F2E1359E6FBF048C27F5B1F956D0C9'), UNHEX('F8F2E1359E6FBF048C27F5B1F956D0C9')),
(UNHEX('1647F29870B4464BFF293669CE071538'), 'wp-content/plugins/js_composer/include/templates/pages/partials/_settings_tabs.php', 0, UNHEX('799363F690AB7FE06DD50432CE310914'), UNHEX('799363F690AB7FE06DD50432CE310914')),
(UNHEX('112957C4F0255DAA21DE143BB0FDD57A'), 'wp-content/plugins/js_composer/include/templates/pages/partials/_tabs.php', 0, UNHEX('2FDBF175F2D218E54F76A16431FF0104'), UNHEX('2FDBF175F2D218E54F76A16431FF0104')),
(UNHEX('C6722549B75AD1AA0DD9A8F9F2CF4978'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_backend_editor.tpl.php', 0, UNHEX('E0954FF16CCC8A5821532E73D39695C5'), UNHEX('E0954FF16CCC8A5821532E73D39695C5')),
(UNHEX('10B70689884B05958A136F520BB3C47D'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_frontend_editor.tpl.php', 0, UNHEX('95C9C4A511E2F0A8E3DB1E74BE3C0373'), UNHEX('95C9C4A511E2F0A8E3DB1E74BE3C0373')),
(UNHEX('81ED3E73BEA7EEFD80FCC04813E0B288'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_grid_builder.tpl.php', 0, UNHEX('CD776EA5FEC3BDB198840D50A4871031'), UNHEX('CD776EA5FEC3BDB198840D50A4871031')),
(UNHEX('AB27ED2333303852A31B558711AF54CD'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_part.tpl.php', 0, UNHEX('1BED710C9DCDF8E52ACB7446BE7C0C46'), UNHEX('1BED710C9DCDF8E52ACB7446BE7C0C46')),
(UNHEX('72C142D7F159A4D4297F4150192BA21E'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_post_types.tpl.php', 0, UNHEX('79EF950482F3C77E87F720399F925D94'), UNHEX('79EF950482F3C77E87F720399F925D94')),
(UNHEX('E183FF6C8059D64F94C34976594AF825'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_presets.tpl.php', 0, UNHEX('DF6023BA2DDD8F667D7F5FFA0173014B'), UNHEX('DF6023BA2DDD8F667D7F5FFA0173014B')),
(UNHEX('8E50FA2439F465607AB6AE40BAFC333E'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_settings.tpl.php', 0, UNHEX('5AED914D942762DF645A0263EADC1F70'), UNHEX('5AED914D942762DF645A0263EADC1F70')),
(UNHEX('619FB150098229D2BCBFBB096C86FBBC'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_shortcodes.tpl.php', 0, UNHEX('EA0A86590A26F4E6FFFD0813A1E51DD1'), UNHEX('EA0A86590A26F4E6FFFD0813A1E51DD1')),
(UNHEX('F0BF86920FC2BFF74F26B99026D4352F'), 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_templates.tpl.php', 0, UNHEX('9FB790DC78633A61B8E7E0A223C60EEB'), UNHEX('9FB790DC78633A61B8E7E0A223C60EEB')),
(UNHEX('09156A04E47AEF8131A49F653F79781D'), 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/default-template-post-type.tpl.php', 0, UNHEX('3D665316EA2391830ED5CCFA763B85B6'), UNHEX('3D665316EA2391830ED5CCFA763B85B6')),
(UNHEX('97F4ECEBCCEF3B458F747ACF62B72DA4'), 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/index.php', 0, UNHEX('A4FE8D31B291E9D9494C982D0D082B99'), UNHEX('A4FE8D31B291E9D9494C982D0D082B99')),
(UNHEX('33ECA1DDE143742FBC4EA4D229441F49'), 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/tab-vc-roles.php', 0, UNHEX('BA23A1E060E0BD31C49CBBE1980C19AA'), UNHEX('BA23A1E060E0BD31C49CBBE1980C19AA')),
(UNHEX('C2D9B52FC10A35D6394A7AB194A5EBF7'), 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/tab.php', 0, UNHEX('9D9883220B399BBE43352263C100D07C'), UNHEX('9D9883220B399BBE43352263C100D07C')),
(UNHEX('452C6B4F629FF0AC83E4BEE76E9A496A'), 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/vc-automapper.php', 0, UNHEX('F9A9AEB3762944918EC7856242D923EF'), UNHEX('F9A9AEB3762944918EC7856242D923EF')),
(UNHEX('8AC75B599ACCFC9AF1FDCB8B258B89C1'), 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/index.php', 0, UNHEX('8EDFF2BC8CFFFE460A619A47422CC2BB'), UNHEX('8EDFF2BC8CFFFE460A619A47422CC2BB')),
(UNHEX('3A3746EBF056420A62469F4A72691029'), 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/vc-faq.php', 0, UNHEX('881B39D6F7EAA50634C93CE90BFBCB16'), UNHEX('881B39D6F7EAA50634C93CE90BFBCB16')),
(UNHEX('79C7ACDB7DBBB62AFAFB4BA52AA40FE6'), 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/vc-resources.php', 0, UNHEX('E5B3155C30FBB58060979E879963D080'), UNHEX('E5B3155C30FBB58060979E879963D080')),
(UNHEX('C1B7D09E83B8D5BA503F9373A5E48FAA'), 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/vc-welcome.php', 0, UNHEX('A6FE109C1B5D5E9BFCC5E0AE93505504'), UNHEX('A6FE109C1B5D5E9BFCC5E0AE93505504')),
(UNHEX('C036FB3E12A6215E609E1331059BF362'), 'wp-content/plugins/js_composer/include/templates/params/column_offset/template.tpl.php', 0, UNHEX('5C810403706770784DDC7803F55E6C06'), UNHEX('5C810403706770784DDC7803F55E6C06')),
(UNHEX('B895D315A58DE643840DFA5802E5C901'), 'wp-content/plugins/js_composer/include/templates/params/google_fonts/template.php', 0, UNHEX('99D6E97210169AF6A5C8CBAC1B929268'), UNHEX('99D6E97210169AF6A5C8CBAC1B929268')),
(UNHEX('3B24DA2DB129D442C23B624BE63BE5EE'), 'wp-content/plugins/js_composer/include/templates/params/loop/templates.html', 0, UNHEX('4A2A7521926DBE49DB9EE600E7525720'), UNHEX('4A2A7521926DBE49DB9EE600E7525720')),
(UNHEX('1610100D8055EBCFDD7A4AD3A2DF4245'), 'wp-content/plugins/js_composer/include/templates/params/options/templates.html', 0, UNHEX('4C9043896F9EDD91CFE7235F3D91ABEB'), UNHEX('4C9043896F9EDD91CFE7235F3D91ABEB')),
(UNHEX('0C6B42DD104FCE250C6353E3E30E0313'), 'wp-content/plugins/js_composer/include/templates/params/param_group/add.tpl.php', 0, UNHEX('D4E8BC779FFA6A950089059B5340631D'), UNHEX('D4E8BC779FFA6A950089059B5340631D')),
(UNHEX('03A6337E669ADFA7D1E89783BE2063F3'), 'wp-content/plugins/js_composer/include/templates/params/param_group/content.tpl.php', 0, UNHEX('5CCF08A0C017F630BF54BF98B87C53A1'), UNHEX('5CCF08A0C017F630BF54BF98B87C53A1')),
(UNHEX('582C49E489CF8FC2AD9AF664D510C8CD'), 'wp-content/plugins/js_composer/include/templates/params/param_group/inner_content.tpl.php', 0, UNHEX('E1C8401BA346EE2AAD75F306018B193D'), UNHEX('E1C8401BA346EE2AAD75F306018B193D')),
(UNHEX('3FD482AFA8FB8F8BFC3F6F7DF596A70F'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/attributes/featured_image.php', 0, UNHEX('4025EE9641F3E0465C3BF1015D9E602A'), UNHEX('4025EE9641F3E0465C3BF1015D9E602A')),
(UNHEX('F683D09E5DA620EB776AA5AE647A4B6A'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/attributes/post_categories.php', 0, UNHEX('724DFAF6525ECE348C9E275D267E1A56'), UNHEX('724DFAF6525ECE348C9E275D267E1A56')),
(UNHEX('E1C25EB48BFF004FB7C2C0E08C295718'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/attributes/vc_btn.php', 0, UNHEX('F7F4C976F3BA27DBC51CB0FF415D04F0'), UNHEX('F7F4C976F3BA27DBC51CB0FF415D04F0')),
(UNHEX('5F7C27EC9FB9A01F2D5CE1B94BD3308B'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/editor/partials/vc_grid_item_editor_footer.tpl.php', 0, UNHEX('E9FFAD1BBBE632DCF06376B0F136FB90'), UNHEX('E9FFAD1BBBE632DCF06376B0F136FB90')),
(UNHEX('770C36BD64F1C2BA62064C10E34FEBE0'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/editor/vc_grid_item_editor.tpl.php', 0, UNHEX('6835C0B9A58A694A9EF3033BB8D46529'), UNHEX('6835C0B9A58A694A9EF3033BB8D46529')),
(UNHEX('87E5A0AFDAF19808B7585F77C4AEECB2'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/editor/vc_ui-template-preview.tpl.php', 0, UNHEX('63039ABE488248F606851BFDFBD36EFE'), UNHEX('63039ABE488248F606851BFDFBD36EFE')),
(UNHEX('A972EF5B0B2817302CA79F9738F92D0F'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/preview.tpl.php', 0, UNHEX('F9088EDAD7584F6CCDE49D7FCD4D887D'), UNHEX('F9088EDAD7584F6CCDE49D7FCD4D887D')),
(UNHEX('D823DF7047BB1F84A94153C43B883B3F'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_btn.php', 0, UNHEX('49F9BBBDF02B816A0BCD33F7FCB7425D'), UNHEX('49F9BBBDF02B816A0BCD33F7FCB7425D')),
(UNHEX('9E09450FA864F350879060D0543D8E7C'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_button2.php', 0, UNHEX('F557E6C79585550ED5EE057DBA0B4511'), UNHEX('F557E6C79585550ED5EE057DBA0B4511')),
(UNHEX('8A843554143F76C283A0524B83922BE6'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_custom_heading.php', 0, UNHEX('60949FCCB324B55ABE09C6A21296920E'), UNHEX('60949FCCB324B55ABE09C6A21296920E')),
(UNHEX('4630890E363CBF2C41CCE92D4BDEE35E'), 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_icon.php', 0, UNHEX('CEAF8D17E8CC61B16F2B3E387E0C89FF'), UNHEX('CEAF8D17E8CC61B16F2B3E387E0C89FF')),
(UNHEX('48D4D6DFFE1286A896CB302107217EC3'), 'wp-content/plugins/js_composer/include/templates/shortcodes/layerslider_vc.php', 0, UNHEX('4BED2CBE0109608116F97BDEA9FB5AAC'), UNHEX('4BED2CBE0109608116F97BDEA9FB5AAC')),
(UNHEX('7A3A32AFACB66D4D768A4BEEDB990B75'), 'wp-content/plugins/js_composer/include/templates/shortcodes/post_block/_item.php', 0, UNHEX('C389D2C2CC201776B5615DCD7D5816DF'), UNHEX('C389D2C2CC201776B5615DCD7D5816DF')),
(UNHEX('8CEDE406892A676516B78B980BC618F4'), 'wp-content/plugins/js_composer/include/templates/shortcodes/rev_slider_vc.php', 0, UNHEX('F4697CCADCDFA8949C695466EC876D60'), UNHEX('F4697CCADCDFA8949C695466EC876D60')),
(UNHEX('AB9C2C4CEA716D5CC06A58232E73FFCE'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_accordion.php', 0, UNHEX('132C57D02D81C7794B7CB28A6D31CC2D'), UNHEX('132C57D02D81C7794B7CB28A6D31CC2D')),
(UNHEX('587D1AE6CE09FDEEEA3D3B2147942DA0'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_accordion_tab.php', 0, UNHEX('912177FBF1EDF8938F188FCE5592549D'), UNHEX('912177FBF1EDF8938F188FCE5592549D')),
(UNHEX('B75617745162D0A8B8C1B0F338DA2DB0'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_basic_grid.php', 0, UNHEX('8216589E79F4F069015AE19BA25E0B05'), UNHEX('8216589E79F4F069015AE19BA25E0B05')),
(UNHEX('BDE4467E1EEDFFEAE9443BBDA0422C8A'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_basic_grid_filter.php', 0, UNHEX('AB4F4DA4C0DACB1F9609A82C89049E2F'), UNHEX('AB4F4DA4C0DACB1F9609A82C89049E2F')),
(UNHEX('491886276A88675B446D9D80DB018632'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_button.php', 0, UNHEX('A9806CA4CD19E987043E3A5A23265A56'), UNHEX('A9806CA4CD19E987043E3A5A23265A56')),
(UNHEX('D2B929134547DA54A5C0ECCDF8683EC8'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_button2.php', 0, UNHEX('0267E2D609872ED62A224F921179EAF2'), UNHEX('0267E2D609872ED62A224F921179EAF2')),
(UNHEX('F697ECE7DAA3A154ACE006F3E22D0957'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_carousel.php', 0, UNHEX('773B5DBFA0763443D97E2F6FDAEC8222'), UNHEX('773B5DBFA0763443D97E2F6FDAEC8222')),
(UNHEX('57BFE028389E08AAE4F5EF7782EEA5BC'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_column.php', 0, UNHEX('ABE0D78B4C7FB2E1F4EE581122CF7CC4'), UNHEX('ABE0D78B4C7FB2E1F4EE581122CF7CC4')),
(UNHEX('292C12EF099159604CE622B9BE2470A5'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_column_inner.php', 0, UNHEX('3B71A4D7C61CEE4B231815147A9A957E'), UNHEX('3B71A4D7C61CEE4B231815147A9A957E')),
(UNHEX('E2E1C111C3072932B63A2049F3752B81'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_column_text.php', 0, UNHEX('22CD68D580673877A7C60FDF4D7603D0'), UNHEX('22CD68D580673877A7C60FDF4D7603D0')),
(UNHEX('1383AC8AE4A4F623EB573BB7F9F4A9AC'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_cta.php', 0, UNHEX('4D15DB59FABCCBA47BA3776922745401'), UNHEX('4D15DB59FABCCBA47BA3776922745401')),
(UNHEX('6F838E7119B131BB43AD864374055EB5'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_cta_button.php', 0, UNHEX('F3BBFDD9CA35124C46CEBC0E306C8422'), UNHEX('F3BBFDD9CA35124C46CEBC0E306C8422')),
(UNHEX('208FCC7F7D1DF37B3F64BE14395CC631'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_cta_button2.php', 0, UNHEX('EFB41D1380584E22FC0C437C3398C4F3'), UNHEX('EFB41D1380584E22FC0C437C3398C4F3')),
(UNHEX('5FDA7B78CC58B2C231454CBBDEA4CD73'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_custom_field.php', 0, UNHEX('0688DB48C57E698206CEC5F8C8449541'), UNHEX('0688DB48C57E698206CEC5F8C8449541')),
(UNHEX('D7ABAB9EB99F577F75F7E836A64562ED'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_custom_heading.php', 0, UNHEX('42967CC8B57F84F7BF27270BBBD59ED5'), UNHEX('42967CC8B57F84F7BF27270BBBD59ED5')),
(UNHEX('4D88B83F944CC4233342BE7F28614D67'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_empty_space.php', 0, UNHEX('A03CFDF9FA7C5ED62FD89FA46746406C'), UNHEX('A03CFDF9FA7C5ED62FD89FA46746406C')),
(UNHEX('E5BA96385687798DCF4B1C354176F499'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_facebook.php', 0, UNHEX('E87643FAF6D1C3F09FC05D1E3E582EF4'), UNHEX('E87643FAF6D1C3F09FC05D1E3E582EF4')),
(UNHEX('B991E0E3FBED1F25A89BE2A295093B57'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_flickr.php', 0, UNHEX('04E2FF143BD5C5FF05742550A275EBBF'), UNHEX('04E2FF143BD5C5FF05742550A275EBBF')),
(UNHEX('FF6C9CB90A2E18B8FC62918EAE92F716'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gallery.php', 0, UNHEX('CFF335D4F062F3300FD7C711A312B97F'), UNHEX('CFF335D4F062F3300FD7C711A312B97F')),
(UNHEX('E189C9924C2403A2CBE62F6C61056B7C'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem.php', 0, UNHEX('3F0D76A5105DB6D3EBC32559F5A2CB5A'), UNHEX('3F0D76A5105DB6D3EBC32559F5A2CB5A')),
(UNHEX('1CFCC21899B19D2D5703EC2DD946EA38'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_animated_block.php', 0, UNHEX('6E7192840988132E4B3942F42E35B97E'), UNHEX('6E7192840988132E4B3942F42E35B97E')),
(UNHEX('9AE9657266E9AFCD23E1E787ECA54957'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_block.php', 0, UNHEX('7A790ED38B38A75872999087291ECC72'), UNHEX('7A790ED38B38A75872999087291ECC72')),
(UNHEX('6A14967741B408734A68C1005A267B2F'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_col.php', 0, UNHEX('41697EBBA2E14468437263044560963B'), UNHEX('41697EBBA2E14468437263044560963B')),
(UNHEX('61F3E9B9C886C2E6C05E1459F9CABFE6'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_image.php', 0, UNHEX('C77644FE90F13ED9DF948AC7E2440DB1'), UNHEX('C77644FE90F13ED9DF948AC7E2440DB1')),
(UNHEX('E6F1BF1B61CD34427F1A3E238B7D9BCA'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_author.php', 0, UNHEX('94EF8EA72892D2E0F4CB5AA7DFD7C6EC'), UNHEX('94EF8EA72892D2E0F4CB5AA7DFD7C6EC')),
(UNHEX('22A4D5BB3E894C693F06AAC2337F6CA5'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_categories.php', 0, UNHEX('C24C9CF1C17AFFE61223FB01BC4B945C'), UNHEX('C24C9CF1C17AFFE61223FB01BC4B945C')),
(UNHEX('F638F58E15EB4167FE99A9159D786198'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_data.php', 0, UNHEX('8F33ECD1B74DED93CECCDEB820359A8A'), UNHEX('8F33ECD1B74DED93CECCDEB820359A8A')),
(UNHEX('10C39F417F8FC66F9596E7C8264EC5B4'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_meta.php', 0, UNHEX('1C386590EEA5458589B9C69670591F9F'), UNHEX('1C386590EEA5458589B9C69670591F9F')),
(UNHEX('5693AB7373ABDB0E3AE580A40FB73701'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_row.php', 0, UNHEX('62789D9DD2D288DF4606AEED4D85DFA7'), UNHEX('62789D9DD2D288DF4606AEED4D85DFA7')),
(UNHEX('DA07A2470D953687C466FA4C762DACE9'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_zone.php', 0, UNHEX('5A91AFEE47D5993F1A47203514E91523'), UNHEX('5A91AFEE47D5993F1A47203514E91523')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('2EEFEB6FC39E1EB7CD5B6F4404E5E5BA'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_zone_c.php', 0, UNHEX('BF88986C8D77A46E7D89895FB80321AD'), UNHEX('BF88986C8D77A46E7D89895FB80321AD')),
(UNHEX('624841A65AB3CF87CF65A232CF9DF0E6'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gmaps.php', 0, UNHEX('4B986581D1BC638BC1C5650229BD6C00'), UNHEX('4B986581D1BC638BC1C5650229BD6C00')),
(UNHEX('2EE688CA514A0AB2A8D629E0DE9BE9B7'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_googleplus.php', 0, UNHEX('C2AFF99B571731B487BC73A048890026'), UNHEX('C2AFF99B571731B487BC73A048890026')),
(UNHEX('0F572944528509FDD6D6039B19D878E7'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_icon.php', 0, UNHEX('30590DA11043DDFC582C8B26B503DC7B'), UNHEX('30590DA11043DDFC582C8B26B503DC7B')),
(UNHEX('0D1DE80A32C1AC5448FFB954E2E855DA'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_images_carousel.php', 0, UNHEX('510045BE3E79E02ADBC18A7E08B4761B'), UNHEX('510045BE3E79E02ADBC18A7E08B4761B')),
(UNHEX('A50F7B27663EBB54EB27009491534AB2'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_item.php', 0, UNHEX('B7B855BD4B9B6D4B02A9F9553BBE24FA'), UNHEX('B7B855BD4B9B6D4B02A9F9553BBE24FA')),
(UNHEX('D7E27340B332CA94654FFC04878CE611'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_items.php', 0, UNHEX('6E96DA864A6E1692364459438D557109'), UNHEX('6E96DA864A6E1692364459438D557109')),
(UNHEX('6B25D753C7D9B97A66CD4B1845018E63'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_line_chart.php', 0, UNHEX('EFAFB9CE8073248B7A93C1660BBE48C0'), UNHEX('EFAFB9CE8073248B7A93C1660BBE48C0')),
(UNHEX('DE2023B52A13FDC2B8F0B833A416D2ED'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_message.php', 0, UNHEX('70B318AD65EAB18C094289A9BBBE1649'), UNHEX('70B318AD65EAB18C094289A9BBBE1649')),
(UNHEX('55D02B6513E2D306165AB44315CF5869'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_pie.php', 0, UNHEX('4159787B7807C416082F64C7275A20E2'), UNHEX('4159787B7807C416082F64C7275A20E2')),
(UNHEX('3AF07B115F3C1C1490BA64DA461738D5'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_pinterest.php', 0, UNHEX('8E2E4206F158F9579405E033223A67E6'), UNHEX('8E2E4206F158F9579405E033223A67E6')),
(UNHEX('89B697A3FDEC493311AF0AEE59C01E3F'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_posts_grid.php', 0, UNHEX('148D2E4A73707A298FD95AA555BBBED7'), UNHEX('148D2E4A73707A298FD95AA555BBBED7')),
(UNHEX('FD0FF651DEF6498ECE6038B46DC64417'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_raw_html.php', 0, UNHEX('30F583F4142806D5BCC71F70B569C285'), UNHEX('30F583F4142806D5BCC71F70B569C285')),
(UNHEX('5C523A0FFCFBEAAF067407CD3C572ADE'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_round_chart.php', 0, UNHEX('5EE716EBD889727A42A31E25AD1259E9'), UNHEX('5EE716EBD889727A42A31E25AD1259E9')),
(UNHEX('578B86DD973140E4360C8B25864F2939'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_row.php', 0, UNHEX('3212AF911CD83AA4CE6555FADBAC65E4'), UNHEX('3212AF911CD83AA4CE6555FADBAC65E4')),
(UNHEX('FB2157E38E83CF54E7E0006140A3EC6F'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_row_inner.php', 0, UNHEX('6DA7868897EBFC5956741BDC629D51B9'), UNHEX('6DA7868897EBFC5956741BDC629D51B9')),
(UNHEX('3504C21FC4CBE3286FAD26D3213220DC'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_separator.php', 0, UNHEX('04CBDDE384751948F0D81D18303A2EDE'), UNHEX('04CBDDE384751948F0D81D18303A2EDE')),
(UNHEX('048DEDEF244FE5F2A6760028AC018BC1'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tab.php', 0, UNHEX('AFCAC4A77D66717E9311FB77E36D5E05'), UNHEX('AFCAC4A77D66717E9311FB77E36D5E05')),
(UNHEX('D7E2C40DF7D8ECD535CAE678C973F2F5'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tabs.php', 0, UNHEX('A864CBE269E73444F3ADB33ED001AAA2'), UNHEX('A864CBE269E73444F3ADB33ED001AAA2')),
(UNHEX('F72216A398DF753BEF4EEC5E60D8A7A5'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_text_separator.php', 0, UNHEX('36A795614F45A3ED7C7C438AF1F6007C'), UNHEX('36A795614F45A3ED7C7C438AF1F6007C')),
(UNHEX('40CD7312F175849F4452DB3EB353438D'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_toggle.php', 0, UNHEX('24541D0330CC59662E03F46661B96E0F'), UNHEX('24541D0330CC59662E03F46661B96E0F')),
(UNHEX('6A7C334C00D922155EA07C8BE7A7A35B'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tta_global.php', 0, UNHEX('45A780249231A064663EDD76834FB89A'), UNHEX('45A780249231A064663EDD76834FB89A')),
(UNHEX('1F18282BA54C1757E6CA17B17E00C7A3'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tta_pageable_section.php', 0, UNHEX('596F452E554F758D496CDAA636A626AD'), UNHEX('596F452E554F758D496CDAA636A626AD')),
(UNHEX('B255EB6A0DFB9671B0DB9B4BE80CD014'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tweetmeme.php', 0, UNHEX('CCC30C8EE6E2D3511F82F8C7383E6B56'), UNHEX('CCC30C8EE6E2D3511F82F8C7383E6B56')),
(UNHEX('AC51FC1C36CC4235158F723FAC162239'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_video.php', 0, UNHEX('CBFF5059B5C09855B4C568FC3EF770DB'), UNHEX('CBFF5059B5C09855B4C568FC3EF770DB')),
(UNHEX('0BD8BCD2877267DC33B3240E2A819725'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_widget_sidebar.php', 0, UNHEX('37EED1F91CE4D45362966DA1C29282CA'), UNHEX('37EED1F91CE4D45362966DA1C29282CA')),
(UNHEX('2EBC8079A5E3ED1989C77DB792D3E3A6'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_archives.php', 0, UNHEX('0ECE19663BD3A2D4451B420A9CE4F405'), UNHEX('0ECE19663BD3A2D4451B420A9CE4F405')),
(UNHEX('E736F6D782121A6F249354BCA37CDEE1'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_calendar.php', 0, UNHEX('2BD8A8F411D9735136E532170F6C8049'), UNHEX('2BD8A8F411D9735136E532170F6C8049')),
(UNHEX('35FD8868635D5FF23F0646524214EF58'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_categories.php', 0, UNHEX('B5CD1DE7CDEB559E0D4F2CDCD5C5A5FB'), UNHEX('B5CD1DE7CDEB559E0D4F2CDCD5C5A5FB')),
(UNHEX('67D358C6DCCC38CF8A2D1B41F5D91B2E'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_custommenu.php', 0, UNHEX('E9284AB64D81974B7E3C7965B62ECB33'), UNHEX('E9284AB64D81974B7E3C7965B62ECB33')),
(UNHEX('B42C51A81B2202E6D574E13788036EEA'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_links.php', 0, UNHEX('6F374DA97C0A6D7392AB9ECB45DB79C3'), UNHEX('6F374DA97C0A6D7392AB9ECB45DB79C3')),
(UNHEX('5E8A81D095BBD1EB89B397076D788CCD'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_meta.php', 0, UNHEX('85B530C766185547389D9B04DA081201'), UNHEX('85B530C766185547389D9B04DA081201')),
(UNHEX('E32CE7DD852B5B52585837DB8FE4F3F9'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_pages.php', 0, UNHEX('E14E3D26FB64D0BC5A2DBBDEBC739672'), UNHEX('E14E3D26FB64D0BC5A2DBBDEBC739672')),
(UNHEX('8216D41DBB79642B300E79F3609AE828'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_posts.php', 0, UNHEX('021242E53BF7FE5A51F7AABA251FE4C8'), UNHEX('021242E53BF7FE5A51F7AABA251FE4C8')),
(UNHEX('5DE84932079F201C0608E8A6223FC021'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_rss.php', 0, UNHEX('269A5E5D2D3070049B826E9D6F9FBF54'), UNHEX('269A5E5D2D3070049B826E9D6F9FBF54')),
(UNHEX('5F9F8A2331DE9F4A480E70F0BC1143B7'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_search.php', 0, UNHEX('B1084AB0FB4748DE964A8F7706A164E0'), UNHEX('B1084AB0FB4748DE964A8F7706A164E0')),
(UNHEX('6B3A040DEBB74F25673D38DD1CC785A9'), 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_text.php', 0, UNHEX('00DCFB1F9CD04CD874B5B36119A73498'), UNHEX('00DCFB1F9CD04CD874B5B36119A73498')),
(UNHEX('9ACDCFB76113D60B9FE314DB6D6FCCAB'), 'wp-content/plugins/js_composer/include/templates/teaser.html.php', 0, UNHEX('90DA64D12296C14011FFD4CA3102EB2D'), UNHEX('90DA64D12296C14011FFD4CA3102EB2D')),
(UNHEX('05AF1EC618416C0BD4E16F46F8AA3CCD'), 'wp-content/plugins/js_composer/index.php', 0, UNHEX('AAA1DE3F6C9AAAB8ACBE8ABF30384B0B'), UNHEX('AAA1DE3F6C9AAAB8ACBE8ABF30384B0B')),
(UNHEX('FB491AD125F49EB3F886784B257B6B31'), 'wp-content/plugins/js_composer/js_composer.php', 0, UNHEX('187CC45F46C18D8253A44EDD6C293B75'), UNHEX('187CC45F46C18D8253A44EDD6C293B75')),
(UNHEX('53AD2E5C06324409164B7E614645977A'), 'wp-content/plugins/js_composer/vc_classmap.json.php', 0, UNHEX('57B1E1981FC9FE487A24624CBA8E262D'), UNHEX('57B1E1981FC9FE487A24624CBA8E262D')),
(UNHEX('9855E05BEE9BA066520E5703CB9CFBF1'), 'wp-content/plugins/js_composer/vendor/mmihey/PHP-Instagram-effects/src/Image/Filter.php', 0, UNHEX('7C5E04DA497A49BDE883613F3423EF8F'), UNHEX('7C5E04DA497A49BDE883613F3423EF8F')),
(UNHEX('615EFFBB59F11F0CE9AEFD1AF2DD8B71'), 'wp-content/plugins/pdf-embedder/core/core_pdf_embedder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E2B799C9FD7AC2AF40E00B7D616D1414')),
(UNHEX('3077CD27091E5A9041851A7B6CAAC69D'), 'wp-content/plugins/pdf-embedder/css/pdfemb-admin-other.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('344FCC4D103F9D14857EA474FD305AED')),
(UNHEX('7B0501ADF9CF51D1BB5D53C5EB9BB22F'), 'wp-content/plugins/pdf-embedder/css/pdfemb-admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF9F1320AA7FCDE43262033157E8E16A')),
(UNHEX('C264D40BBEAB992D506A07FD41AF8C1C'), 'wp-content/plugins/pdf-embedder/css/pdfemb-embed-pdf.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('993796B5BD87AEB1F79C9F59448AB66F')),
(UNHEX('D1E368821A939B0E98A7EF1A7E12C62D'), 'wp-content/plugins/pdf-embedder/img/ptleftarrow.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AEA6744413FA4B5F790E69EDDE9C7068')),
(UNHEX('D76CBAC1771F7071371CE43F513AC64D'), 'wp-content/plugins/pdf-embedder/img/ptrightarrow.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2540B77D51505FA68A27EFD8A1B8DEBC')),
(UNHEX('DA0A3EF72DEE9A023D34F2996C53AF00'), 'wp-content/plugins/pdf-embedder/img/toolbarButton-download.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F20A55DC99268DAC130586E52E2B10D6')),
(UNHEX('6A006BB0564AF9F9F8DD883ADB803799'), 'wp-content/plugins/pdf-embedder/img/toolbarButton-pageDown.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0D337145CC9CB83EA5F67359E34914C')),
(UNHEX('B881E6BF115358628E59B6909B360942'), 'wp-content/plugins/pdf-embedder/img/toolbarButton-pageUp.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('486CBF4867132A990FCAFDE012C4ABBF')),
(UNHEX('48A54CA2ED9EA5ADCF9197E096355D65'), 'wp-content/plugins/pdf-embedder/img/toolbarButton-presentationMode.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB94CA39AEC07D85A29FDB62B0B03B24')),
(UNHEX('1BDDF55BB727C50A237C918216B4D887'), 'wp-content/plugins/pdf-embedder/img/toolbarButton-zoomIn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1EC009B6C54709AFA73D99DB10C57039')),
(UNHEX('F5712BC847501D259D6A4C38C511E2E1'), 'wp-content/plugins/pdf-embedder/img/toolbarButton-zoomOut.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1256CCD98A1865848FB957009E6F7A9')),
(UNHEX('8759A526BB69071C89B3F16770429ADA'), 'wp-content/plugins/pdf-embedder/js/admin/pdfemb-admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F7B7759F7DFC6BD62D672F642BFC492')),
(UNHEX('B0F9484CB3F4AD33ABEF6CE44E7AD571'), 'wp-content/plugins/pdf-embedder/js/all-pdfemb-basic.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7E8EDD805C2116CD6EB4357CED97927')),
(UNHEX('3BA5108411C181E7B8157A86F4CF08BB'), 'wp-content/plugins/pdf-embedder/js/grabtopan-basic.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('153EE3A0E92F89BAB5535C4064CB18D7')),
(UNHEX('C352029DE69EEF16BB3F089611D29194'), 'wp-content/plugins/pdf-embedder/js/pdfemb-basic.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9AC89AE5B00D86EF63D1642660E0CB14')),
(UNHEX('D6A3EBA04F997B648E18216047661B0F'), 'wp-content/plugins/pdf-embedder/js/pdfemb-embed-pdf.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD3611F6A3C335A70E0CB1BCEE5FB3BE')),
(UNHEX('03FEADCB7E02BD50258D07DD9E125DEF'), 'wp-content/plugins/pdf-embedder/js/pdfjs/LICENSE', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF253AD767462C46BE284DA12DDA33E8')),
(UNHEX('F6A6DCDE50E095D129B53438B5F3E172'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D23B789047F6FA8F6923E7AE411D642')),
(UNHEX('BB1AB32F92DC8456F8F76ABD6781EDEA'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D7D0E488FB52B2A4F8D240B0D572E89')),
(UNHEX('C4A4EDD3615343B36868F676F463EE52'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1185E3229597BC4C1FB1AE6F0C7B2E13')),
(UNHEX('1E4B4D13A74AB366153B6EF85D244D90'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A3820F0A3029A225C3006B28153A518D')),
(UNHEX('3DC84421CB9D4249B89A9854500C6D3B'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C65C928CE1D77770CFF741C2F33BC11')),
(UNHEX('F58BE7E6DFD8198C1771B2693E233035'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D300F0F9E60396DF0A524511C245944')),
(UNHEX('747C5E175387E46F61AEBDFBAB52EBF9'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78ms-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE0B824FD3C0C4D56BB71FC83F5E3B00')),
(UNHEX('07A2811E5E429F42CCC9689330F0A1CE'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78ms-RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A0FC4D9E4B243BBC1AAA24F7DC35F90')),
(UNHEX('6D690B1B01B96BCD38A1BC5BF50AED1A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/83pv-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94B942A274043DAC7FB8C9325A944BE9')),
(UNHEX('760DF00BD99CD19E40B768D8AF5355C4'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90ms-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F004FCA8008BD7C441DD3C58A390F266')),
(UNHEX('9F5EEAC2239B0733A673E5DDBC7EF436'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90ms-RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04D52A362BD8C27FEC29DCEC9728EF77')),
(UNHEX('B729DA7AAA279ACBD8F360C2DDD89810'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90msp-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('155FC53B29911DB7197DD92832157FBE')),
(UNHEX('168134617B6D6F5E2DEF9D7C89E989CE'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90msp-RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22E09450E898241B030CE5B4D542659B')),
(UNHEX('EE12250D98AC39193C6D097F289849A0'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90pv-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('87FE105691F63E1CA8FA6269A99E20C8')),
(UNHEX('E9A2F34A1B1FF74C13699B3E8FC4BBC8'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90pv-RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A6BEA88D2434F1DAEFFE7965347AD534')),
(UNHEX('4806A4275DA7E5FC78DFFDDDE66FBA6C'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F6EFDBB61D3D966DF09CC6C298C29868')),
(UNHEX('C02C07E52019077D13E23D5535AA38C7'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EFCDF16F5FD9E20C90F9E393FBEA3E1D')),
(UNHEX('E2636928A52697660097A94E4E05ECA1'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0CAEDF6B6009D36CAA4A3F354856BBC8')),
(UNHEX('7387F2EA206E85985B309421CB9FE744'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F70574FDD480D364A32532C5AF31A397')),
(UNHEX('1848AD6239ED1FDA53DDB4553F53C8EB'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-0.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('175673C4E9AE968DCEA3EACA4B7B7D1A')),
(UNHEX('789FE0DD11A1B57D93729D300ADC9C2A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-1.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1706915B9E351F7BF784E45FF0BC5D35')),
(UNHEX('C3F2BE8D4F71ACBC02420DF6C0EFF1FA'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C32FA54E54BD3A328CE0CBED30A6D09E')),
(UNHEX('AC9673291F4A0880BCE420BE5B65740D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-3.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68996101860E16AD38924A1C5A7B54D8')),
(UNHEX('CF59D5907BDAE0333847992E2B376D5C'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-4.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52F19088DD3F2DC15715D4204FD68B7C')),
(UNHEX('1DDD5C70F6D0D825E2AE8B43C71180E9'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-5.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F7E75C26FD017C6070CE087170C79DF')),
(UNHEX('4E2B2E9434C56958EB91645CC27D9503'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-6.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50690E841492EB306A3554EC93D22727')),
(UNHEX('0E15EAD526187B29231AECA1EE5CA6B0'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-UCS2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A32D36D37017A2E157B06DCC57B9EEF')),
(UNHEX('33794C49A442A4B8B1E65227DF49AA62'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-0.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2997B05AE8AAFD00114F98B2718F712')),
(UNHEX('C933968FC34D0217B4F264EEA7583279'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-1.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8CB590D42C29A684B45CD2323D804F2E')),
(UNHEX('4708C8EA7A9EAAC9500FC399113FBE91'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B816FF568B22BCD31417AE176C2AF06')),
(UNHEX('B3A3EAF80314AB87133F989E8813A0EC'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-3.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE5C8267C6FE28D9F4AE11221A3C8C3C')),
(UNHEX('2DABA221E2C2F49EECD2F31391C6E99D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-4.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E21E5A23751A1BCF9A05868190506A56')),
(UNHEX('060C945B251A2344391D3935830A47AD'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-5.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4FE4C440C3F09425F2B114E42ECB866E')),
(UNHEX('5C07B8D6130354B57BFE6B73318DE731'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-UCS2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF9F90C0950EB1A4523BCCA7A679D19B')),
(UNHEX('53243464798A66376F79A4B3914AFFEA'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-0.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A066EDF925D652E4566741BE7AAF2E77')),
(UNHEX('042C3EC5C5FB05AAD4DD5D09FCF83756'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-1.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2296CDD2B9E96B0A95D3CB9A0F98747C')),
(UNHEX('3349455616F7FBA02755D30491D3D2DC'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A935E26EB05160BA7B3C45255B0156EE')),
(UNHEX('44AC7A5E4FB78DF756A37D2995A17033'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-3.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A97917C0E0F219E1CAC2E471F69BA409')),
(UNHEX('59E113DC4EBC08F7979D947D56DD4A3A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-4.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D1305C42D75B212DAD20C6FB80D0BF1')),
(UNHEX('F427AD3102B5915F8FE51459F69FE262'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-5.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('123581EB09766FCD3D1626B5E2FA2F0C')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('1FDFAC7B89CE5869E4578E01C71FE5A7'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-6.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C541669CDEE3EF8C2E8F29F99F4A9F8')),
(UNHEX('55BA7ECB7F2FEECBEDB886C4D1E9E191'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-UCS2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35F4E7F02523120AA37C79790A1B48BB')),
(UNHEX('783A2AC21C78D9043FE05F32C5D5015A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-0.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BD552079CCB0724D40E8FB3A0724006')),
(UNHEX('712FF897E25ADEC699462E3705E802B4'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-1.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84EB56B5CAF745CABD9229F37DB72DB9')),
(UNHEX('C81EBE668E5B22FB4A29DEC418C97BBC'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1752DD13143DAFCBD7674BDC35ACDAEB')),
(UNHEX('86F4CD2D25952686E7B3AF1B9AC1EA1D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-UCS2.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B666A3CD23BE13C9D2B77189345150A')),
(UNHEX('7380E409BF0B9D345B02410D54677ACB'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('683AA95FC49AA53B2982C076E1D57463')),
(UNHEX('868E61FA164F2EF07498F0F58DEFE814'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD87B4AD5C26FAD4EFE5655DCD150C3C')),
(UNHEX('34CB3BABF57ECCE7A8B29F399D6F863B'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5pc-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AD22300D6DBA5B2343E2C05D38725B5D')),
(UNHEX('B3B8B0957EFE4FA66772148D8D764B3A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5pc-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F082E890137D28D3FF1DB7DD53D857DF')),
(UNHEX('D2375CDD762EB79C15F70F9BBC0DB912'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25EDB8902CCDF5CCA8393826BA76537C')),
(UNHEX('4BF5E2C8A22A6849D318D36A52A2B13C'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DFC3BD3EBE7C403150CABF10D66D6231')),
(UNHEX('59A0EBCCE43440F2B8E84F8D25F6A5D1'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS1-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E2ABBDE56299F848291E059D041312E8')),
(UNHEX('7CD49B2143A91281DD755E56C5D37036'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS1-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2793EED7C84487BD846F38F26843722C')),
(UNHEX('B8C3BEB853DC649033339FE593817514'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS2-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CEB8BAE07C42F08B9BADA4CC611CAEA')),
(UNHEX('CE38D12058AB7EBFADC54F98FD0D2212'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS2-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A116F3DB2E9F2D5871246C0A72D79D2')),
(UNHEX('51D6D18FAD240A8F98B55D18CD6B87B2'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETHK-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6992841A10B5B04CD62F1EC7A2FD8BB8')),
(UNHEX('A57DD1AEE5672CE9BDCE9FA3F81B3880'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETHK-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7A10542E0FF8112686846D6C50FEFC7F')),
(UNHEX('1D4AB22E86E9789741B15AF2E6F76B21'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETen-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('64F3DB1A350AF8C595F591B39BA96E21')),
(UNHEX('545F12C5464969134167F431C3EFF675'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETen-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('20FC6BCA6D21E5CAD9FB2E650F9AE034')),
(UNHEX('21E15C7F51D03061EA2BD56AD8447D00'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETenms-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C00836E71E8C4E521632634F03990B6C')),
(UNHEX('00EABED69609F2CEBEB845296B8B0C2E'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETenms-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD9FCB08808AF325BB9D7C65B8F5332B')),
(UNHEX('479DE44CD7342FA0057A96B911091BBE'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A148CB650E78045565F5A93F9FDF4352')),
(UNHEX('7CE6A489D66194388E0741BC145EF1F3'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('085CDC069606E1879E9A53DB7C695581')),
(UNHEX('C09AC9B56EF0F1E13C232C04B10C0155'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F78457B4F98A6BE2820E6BBAD710474D')),
(UNHEX('1967D981B38B98283BCAD49453860CCA'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB6A6DFAB041B3820249BB72BF23CBA8')),
(UNHEX('0A00798D28467DC26EF494413318C55E'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B3106C186DE7CCF3B56999B6B3BF32C')),
(UNHEX('AABEDDFB3F0C632BCACF557C1E53259D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6BF9C0E52EDC7F7C9C28B4BA34BC311')),
(UNHEX('20B050A39E050A96E94DD8B2C7BBBA27'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1982D7870002A219DA5CB6A80E418445')),
(UNHEX('6A1AC8E2E07B781E95B220FB3E7DA33F'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4489F113F6405D419C7590A59520ED2F')),
(UNHEX('C01F7393FFE3A7BDF6B3C3376851C8C8'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69530BD74ED5EB6E117F5EBBBB869664')),
(UNHEX('4B7DFACBCAD7B09C77C0F989555CA6E7'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('576C153301C977F903A01E28927F721B')),
(UNHEX('0E54F6D2E5D42F0172750EA8187E85AE'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('546FF998FFCA9E8F5171705548B73947')),
(UNHEX('DB0A064E2973C35F5C9F5E88E39FFF58'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E801EC722F7EABF2A3F7E3FD00D92C36')),
(UNHEX('BB2BD1873E5713E80AB04B1F1A2F3BB5'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK2K-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ACE168DA92203829634B37AA60636B46')),
(UNHEX('393A0B0E00D330AA34C10D4519BD39A6'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK2K-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E25ABF6EF781F84DC1FBE21776CA2FE')),
(UNHEX('F0A2A1AF2AE717456CBA21444B6E8FE7'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBKp-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE828BC249C7FC18C84C2F5C58ECEB58')),
(UNHEX('C3EEB9BDC491A442D246D1CC5090D72A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBKp-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('986A674BEEBBA7FFA85C0A351F571E19')),
(UNHEX('9341CC295D2CB23EE3B9FED672F930F9'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A109D1CA6837CE5F5565C28D3B10DB14')),
(UNHEX('094AE4FA3FEA57AEDBD072B361BCA85A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5FF779F0B6E6FDEF747F22E8DDFF800')),
(UNHEX('1D43D47C2C3B5E45D06E05B43BFAD42B'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E90C37287E2B90C921E4A19C57D6608')),
(UNHEX('D07341C8626CA51853E5ECE2FA501360'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B7422F3BE63297A537EDB3F16E72B98')),
(UNHEX('03C20805268A267964A63D1A32101B04'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBTpc-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25EEECA5113BA0B3F5E6B3801C94E7D5')),
(UNHEX('64FD06000EAB3F7F032D2A2283D6E239'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBTpc-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8EBA8D9C036830493E148720377D119')),
(UNHEX('EDCE0814D9E8AD1E548B2FA6A1143C07'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBpc-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5693D775AEC9A96A26B2970A61D2E8E')),
(UNHEX('AAA548B51AB1FF5AA3A9995EBF98E61D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBpc-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5CDE365A48639163ECD3086EE0DAB23')),
(UNHEX('040C6B53D147F28F6ADD6D99465242A3'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('627AEED8BFCCB1ED45805EFC48DD4CE0')),
(UNHEX('BDA05F99E6BF18BAF54F4CB9AE7D82BB'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdla-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C31304DBFA1FE8990E5EA68676A0DF95')),
(UNHEX('60D60F971968F9E250F0F3B1A7809A73'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdla-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09E2C1B09885843AC57479D72402145A')),
(UNHEX('D61FEE10E53D11A195F53511DCDC3D8C'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdlb-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E1EC904AAE270A8BE1B6FD4C96326EB')),
(UNHEX('D62B7775F1A3BC35F23886374E79548A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdlb-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('92DC4BF1A4567215ADAB3D797654AD46')),
(UNHEX('7C635758C7833C2C2338385B20644B10'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKgccs-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9261C86D4041514D3A635B7D594D6ABC')),
(UNHEX('07AC22A380C51CEF04663811EAF7BF3E'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKgccs-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F132983D5F5420286682B172658A2EC1')),
(UNHEX('ED917A8502829F36DC842AFCA4826B22'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm314-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CEF006196F7B8F5FC8900F3B5401381')),
(UNHEX('4EF416C5FCB55E2EBEC391C8E1EB7F84'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm314-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4286ECE506E56645B39BA68DB5A07083')),
(UNHEX('9D918DE1D5380C1C187EBD4E87E87417'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm471-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AAE686EACBDB6060B539FC0C707D8CF')),
(UNHEX('E51E350A802104F969CCB438C9361EFC'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm471-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC4D2CB9929ED45E16BF61C0ABC7479F')),
(UNHEX('4E9A858BBCDCE5A697E797BF18703C95'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKscs-B5-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1BD13E99B26E216ECB42B311DF49E6AF')),
(UNHEX('7985F3AA0AFCBEF4AF3B2EA857E0CAA0'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKscs-B5-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2806AABEF1C7DC9B36EF8182CEAAB582')),
(UNHEX('9998F55B0AAEB57D8BB033EE2C13EE68'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Hankaku.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('417DCB6FD94965007413DB517D3FD067')),
(UNHEX('A4049532BD2B6C96FE0AE6EB57D6885D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Hiragana.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('649CB471527A4DA81E6D07664C035477')),
(UNHEX('B5909AF4BBF8723933B28396D55D1063'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28A11B2394FFAB355C68BF51629FA95C')),
(UNHEX('44536E1E3D42DCD2B8EECF5322443570'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61F1B5BAF1CE16FACEE14CF148554E10')),
(UNHEX('975A150A915C30AF50C80C20F905AE29'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('858801396E7064112F546954633F1A61')),
(UNHEX('3159424B079E8522D2D0284EDA1793FA'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-Johab-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45D61007E3761BB08E3479971B7CEA94')),
(UNHEX('2211581A4DD30D07EE243B384B6E7CD4'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-Johab-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C054594C09A5AC87361E486AFE689BF')),
(UNHEX('3BBF71FB61CC2BDE560890223A75B750'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4CE24D7D1F815927C5559E983B86FFD')),
(UNHEX('D6DC3AF9CCC50904E0BF10DE67F24F0A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('573D3648C7706E998B055E6AF116CF72')),
(UNHEX('C19BFDDDE5979A1FDD8D8ABADD2E7533'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-HW-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2890889E32E6582435B33AAE2FF4E2A')),
(UNHEX('8D2804AB01FE656C394DF14164F84D06'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-HW-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32424D5D84512218EA0812FE6DB587C6')),
(UNHEX('EC02DF6269E4644DB1D20F2492A62452'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A7816D2DF1DA6D26E916B7C90CDC59C')),
(UNHEX('02CB5CE719F803275F24FFF76D19F50E'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCpc-EUC-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BEAE596A780F2E4A4DE74B5ED9999E1')),
(UNHEX('5686FA78DD285F64982CD4E06E8CAAF1'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCpc-EUC-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65E5A7C51EFEB1A7D286EDD3BC9E6E26')),
(UNHEX('A797B89740233BF95B2DABE344736F0A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Katakana.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28405011DE4A74F5E78E02BCCB85EAF6')),
(UNHEX('B6E34D1CB3D35A112239748169DF6817'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/LICENSE', 1, UNHEX('00000000000000000000000000000000'), UNHEX('18B1BB59E2BEC1A9142D820C8F2B3A69')),
(UNHEX('3958A699902CE5B696FF2D908575E5B8'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/NWP-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7CCE8E1696A0F3F18F5FEA7201FFD87')),
(UNHEX('90A58ADF2C5928D2CB2EB740C41BF125'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/NWP-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('562550C483C23AEEFCDB3E8E1E5EADB8')),
(UNHEX('3B7B38CB54A20B7E5E70BC9DE9688C32'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/RKSJ-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BCF3F8777B3A7E8DC52FA3A921CEA13')),
(UNHEX('EB412E4EBD301655002E174FC0570382'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/RKSJ-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4BDA602F6D2CDD94BA08C2F9C388E582')),
(UNHEX('2756E2C7A2E70D2AC7F12DF1F440B816'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Roman.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCD95559D60A9D72D3A50039E83F6B54')),
(UNHEX('37A2427E8EE838FE906D149F7ABFB18B'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UCS2-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94E0D8EDA9E3CFCD6447BA6BE938286A')),
(UNHEX('108FC825AEA87C27E2C831BBE56DB8EF'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UCS2-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2E01733017A16EDDD9AB837F8CA275E4')),
(UNHEX('B58163F6A26F8DE62C6373E78317F0D2'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF16-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8243DA01521D95E9CBBF0A9581CB9B8A')),
(UNHEX('C636E5313B79B54A1E4132499C8D21A8'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF16-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('273D10D22BFD890D0C7A4A1C0FAC3D0C')),
(UNHEX('D3039E0208EDE97B98AB603134FEB03B'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF32-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FFD5764A6DE25E35C218633A153AEE60')),
(UNHEX('278EFBA74C64ADF257A398D7D1FE69BD'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF32-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2DB93AEE01EE80EC4F91DCE93F48501A')),
(UNHEX('217DE2FABA49DE50450E09736F024A1D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF8-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EDCAE260FCD8AE26BD68C787C3A9FB19')),
(UNHEX('8DA8A253DD9BD4E1291904248D22331C'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF8-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('380C81F19A765FA3577E9B9C030C90A0')),
(UNHEX('EFA2F4457326CA8F0EC725A6A1F96012'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UCS2-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F19FB20D2B1CB681EF320816E6064B28')),
(UNHEX('E5B872C79E96BAAA740196CD71EBE970'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UCS2-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E612B97DC2BF7592A35941A01F2C0FB2')),
(UNHEX('3A6ED5B5C4AD38177D821AD45FE009A8'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF16-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('197EAD1238CF310794BF8C440C6C951E')),
(UNHEX('38E4C302747A3C9FC7D3199265A77636'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF16-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('816EE62D950547EF64157FFC9C8EB7A1')),
(UNHEX('8BA59B3DBF8153D9549B475BB7345F04'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF32-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E80B8251C61612C682FC1722CAA8FED')),
(UNHEX('21B66FB849D69EC34B818C70CFD33F0E'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF32-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1716F8249D50CE2C0483C56E8905E85')),
(UNHEX('3C9FA99DC6AC2907FB34033EC632FB44'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF8-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EFE5B01FF58A88047F2927A06C44D8AF')),
(UNHEX('F3F4E1607149E2494AD2B4BEABFC3782'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF8-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C488F7851343B8C193FA7D60EE961272')),
(UNHEX('E2DA4326601C9855FFCBA359C2FCAADE'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3C57ACF7D97190D2F44607C35CF8985')),
(UNHEX('52F2138CDDB5B741E90D0F38FE70E094'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-HW-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('88D9668D4E0FE2CCA6A05126EDA0FF33')),
(UNHEX('300553D751724C3500DF7E4001DC6888'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-HW-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86AC1BD54FADCA24AD7B1E819E3BE5C9')),
(UNHEX('994931FF9D2D9ABE621452D1217EEB1A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('54BAC7377FCB902BEC305B2589A742B9')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('48656403B81594EA73A48707746A937C'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF16-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84F5A941B57142FE3F1941442B0E5BE6')),
(UNHEX('552AE78BF189C02A2F32198C1B7B883A'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF16-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB6A81BA21B84FA2A59FAAC42B323242')),
(UNHEX('AC15849313AD7B85F1A92F011FCAB5F2'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF32-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09E701C16B91705C4A74E54F9B5548E4')),
(UNHEX('C9B45A0C6E17839D6ABAABC2B1FB6EAD'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF32-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5D631A40F709E3747220DE2641B4E39')),
(UNHEX('C9AB22297C90B740A7DD8C7EA2A0E537'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF8-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48BFD003325873EFAB276DB8A1AE34B9')),
(UNHEX('9FCB9984A2154A2483E99FD5788D6435'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF8-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('029C1BBCF404512F1A7FE5D48833D41D')),
(UNHEX('D906CB5AA6FD5D12007EE1F635DA68F6'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF16-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F037331A2BF13ECAC7B25E749D77B61')),
(UNHEX('7D5DA532A3BD7423DE859389A5940C0D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF16-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD2354135BDCA01B516F0AB5D23198DD')),
(UNHEX('3F1C712BED9E66EC3DDCD53CF02AACCD'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF32-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8FE0443A0412540621C8717030CEA0A')),
(UNHEX('4BFAF115628E80BF6164F2725E2232C6'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF32-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAE31BAC63E6B5D498116BE513776F4B')),
(UNHEX('99F046F614074E47AB3DBE78BCF79651'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF8-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE0F823592F53616C7AE6544CEEC099B')),
(UNHEX('1642FE253D6011F7EB1E76D3F80A89A3'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF8-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8920D15338280D50B89404DC6209E3C4')),
(UNHEX('8345EB0ABA54E189498E8683C7E3CD53'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISPro-UCS2-HW-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('982413AC0838783F38BDFFC16DAE96E5')),
(UNHEX('E21E4A08B0ECBDBAD3A27EB4137A3F05'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISPro-UCS2-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B3A9A06F3284BC0B5B653998C57DD2C7')),
(UNHEX('B5EE1C3DE1854674A481DA78344A6D5B'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISPro-UTF8-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('870C2E8DBBCE67547C940CC04D9AEA76')),
(UNHEX('6FA271B19E9D34CA3378437EC0EE4D43'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX0213-UTF32-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AF0093C3E866566E599F4122FFD3738')),
(UNHEX('E9E17F4DB2E5389B51179817A9EB68B9'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX0213-UTF32-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7B74503909B3143712FA48DF5BAC8DD')),
(UNHEX('BE6185AA9664802DCBF4241B815754CC'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX02132004-UTF32-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78F91A094E3BA73570A907F26E5DFB6B')),
(UNHEX('46E8DC8C3E1687FFCBF65ED24B1D9927'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX02132004-UTF32-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34A245178A071696FA87285A14A6A572')),
(UNHEX('F9CEC4ACA68B9E039383C82A40A91B9F'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UCS2-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1BCCD691DB023FBEBC2300C5053075F2')),
(UNHEX('0CDB187B45FAF59ED9E93F60BE0E2BE9'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UCS2-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5F48B86AD0A973AB4363D76DD02C82F')),
(UNHEX('BBCE9F0E1AD695D6C2BA40F23837BE51'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF16-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3F4D4D463821193C6989F2B65C20863')),
(UNHEX('609372A5573C5971D8ECDC5E60F18E47'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF16-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D45980DF8769BD3B1B14687206D0C63')),
(UNHEX('64E0D5DC76166F57CA99A3EA7811818C'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF32-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C33937ACEAA1B85E4AAD18B3906B906')),
(UNHEX('0AA45C19A5A2CA78877C0F059212D368'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF32-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('534254835BA655F6E61B36796C73F1A8')),
(UNHEX('6EABACA77D18DD47F31B1A35F1E60512'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF8-H.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('23EFE636BDA29AE5C4FCBC710B970E0A')),
(UNHEX('FDA5D65C6D2C7F627FA603D5B494C307'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF8-V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7B676CFE90F97EA650BAF780B4886F9')),
(UNHEX('85AEC489BE207B1FBA19F082181D8FFE'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/V.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE6A499319094136B2AA5B7EDC627117')),
(UNHEX('E3B30D3033395409377F62894F102167'), 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/WP-Symbol.bcmap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B24C3DDD810F5A50A671731381C3FAF5')),
(UNHEX('24BBE04033798257D2733F57606EA167'), 'wp-content/plugins/pdf-embedder/js/pdfjs/compatibility.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F8CBAF7C3126B2D0B4AC9BF0B49196E')),
(UNHEX('D9D31ABFEE3862AE61A9FE16C8068B0F'), 'wp-content/plugins/pdf-embedder/js/pdfjs/compatibility.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D77C2B6ABAB3C9FE184B3D5057552F9')),
(UNHEX('8537C9672C786D69D7DB15B8E40D6B1D'), 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13826251EF0C8EB2EE2DFDD8BE57BBB2')),
(UNHEX('0302DC622479D0439CD537B83DBC2C51'), 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D092D54EA05D813F8EF3947B339D697')),
(UNHEX('7088D597AF855F785A42DE109BFF0B41'), 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.worker.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAEB8C162F2D26BDCE1575FA46C9BABF')),
(UNHEX('577ACFD799D9F795B426EA934FFC16CD'), 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.worker.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('592547B30C65120D279F7C2AF578610A')),
(UNHEX('C5564C8EDC97294D35FF62660A8AA12F'), 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-de_DE.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8205F95FD85DDEC368A371222174A955')),
(UNHEX('E83A02E7A647CF08BAD8A31290787788'), 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-de_DE.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C263DCF79B068CF86B8F441353DC3F64')),
(UNHEX('DB08CF0A633259F057A09C0414885C82'), 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-es_ES.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04E9EB1524794A42D20D986542BB0A87')),
(UNHEX('8626C6444A9FADEAE5A96C0DD27EBC6B'), 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-es_ES.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC890C758770671B4517A72B20870850')),
(UNHEX('43C49AE0D844C4DC6BFB8F85C05E30DE'), 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-fr_FR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1752650993F1E5B924CE6FE1E0BCEBE2')),
(UNHEX('88BB787CF652BCB992292CCE4E375E43'), 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-fr_FR.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('402CBC4FB5FAA11A55A457FFC4F01671')),
(UNHEX('A27A46038ABB9C4282659BF2173D28BE'), 'wp-content/plugins/pdf-embedder/lang/pdf-embedder.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9ECA4F7E55C5965798E10EB85A04B3E7')),
(UNHEX('4E4F4B98617E3B85A6096CBFC6232C9B'), 'wp-content/plugins/pdf-embedder/pdf_embedder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B35EC564C2EB27D86B7A881A5F9288B')),
(UNHEX('0438F59EDDB56BF8ADBC364DA7B60CF2'), 'wp-content/plugins/pdf-embedder/readme.txt', 0, UNHEX('B0115AA7B029837DCD9D2972481E34F0'), UNHEX('B0115AA7B029837DCD9D2972481E34F0')),
(UNHEX('8FE536698FA25698137AC05715E4CBFD'), 'wp-content/plugins/popup-with-fancybox/inc/jquery.fancybox.js', 0, UNHEX('C266F90334CB9432E4D21A1F43741694'), UNHEX('C266F90334CB9432E4D21A1F43741694')),
(UNHEX('E7235925D129EE3FC4BADA03EF1BCD6C'), 'wp-content/plugins/popup-with-fancybox/pages/content-management-add.php', 0, UNHEX('762C4F78E6F4A6402E7E67D7A6F2E7DE'), UNHEX('762C4F78E6F4A6402E7E67D7A6F2E7DE')),
(UNHEX('FD2D4D320F9514823A23704CB7A0A3C5'), 'wp-content/plugins/popup-with-fancybox/pages/content-management-edit.php', 0, UNHEX('EB576E30F4AF45C4CD4D0ABA8536CE80'), UNHEX('EB576E30F4AF45C4CD4D0ABA8536CE80')),
(UNHEX('4FBEC474D9C1E43BDCFEEE0C737F5685'), 'wp-content/plugins/popup-with-fancybox/pages/content-management-show.php', 0, UNHEX('9D0251FD7F97B38ECC25CFC985123D00'), UNHEX('9D0251FD7F97B38ECC25CFC985123D00')),
(UNHEX('C39F5A164663E386E15E2352C12E4C52'), 'wp-content/plugins/popup-with-fancybox/pages/content-setting.php', 0, UNHEX('4D977DA1712D1FF6852E18FEBEE9078E'), UNHEX('4D977DA1712D1FF6852E18FEBEE9078E')),
(UNHEX('B9618B7ACB0E8EAEA17FCC9FC193CA37'), 'wp-content/plugins/popup-with-fancybox/pages/setting.js', 0, UNHEX('243C00F11A9F716E84013E4900BB9C12'), UNHEX('243C00F11A9F716E84013E4900BB9C12')),
(UNHEX('9914F07C7340B14F65227D3B65739C93'), 'wp-content/plugins/popup-with-fancybox/popup-with-fancybox.php', 0, UNHEX('57DEC341986E53AA1C230E8268F1E8F2'), UNHEX('57DEC341986E53AA1C230E8268F1E8F2')),
(UNHEX('C2AF1A5EDEE3776F2EDFB37C8F17C142'), 'wp-content/plugins/revslider/admin/assets/css/font/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('7F30C7D2522981A42FE44B9010228DAD'), 'wp-content/plugins/revslider/admin/assets/css/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('6ACAD277A5D63DF4C19DD34F11BCAD35'), 'wp-content/plugins/revslider/admin/assets/images/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('66176E0F46FAF542FBCA45AB6FC978CF'), 'wp-content/plugins/revslider/admin/assets/images/mainoptions/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('41003E5F2AD5E9B1E7CC258B05173285'), 'wp-content/plugins/revslider/admin/assets/images/navigationeditor/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('A8BD7CD607621B6E1C39603EE88289E0'), 'wp-content/plugins/revslider/admin/assets/images/sliderpresets/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('2D316F1989E4B2C4ABA50E26F4F24CAD'), 'wp-content/plugins/revslider/admin/assets/images/sliderselector/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('B3CDCA23EF587D3D388D470B66C2C6A9'), 'wp-content/plugins/revslider/admin/assets/images/slidersources/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('120D7B9E1232F754B50D1290C47630B5'), 'wp-content/plugins/revslider/admin/assets/images/sources/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('528C61E6FF59A32F50FD81402E91CA1C'), 'wp-content/plugins/revslider/admin/assets/images/toolbar/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('D80EE78CED45FCFB3A56A84432CF89FE'), 'wp-content/plugins/revslider/admin/assets/images/tooltips/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('54F0254BF89FE5843BCF4421564288CE'), 'wp-content/plugins/revslider/admin/assets/imports/agency-intro/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('0F3DF9154DC0DC22CCFCFBBD5EAD3A0B'), 'wp-content/plugins/revslider/admin/assets/imports/classic-carousel/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('40C924A3F429CE28365395136329555E'), 'wp-content/plugins/revslider/admin/assets/imports/classicslider/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('293E923E138CF713FA462696F3EE03EE'), 'wp-content/plugins/revslider/admin/assets/imports/concept/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('A1D7C78D7A875CE481A1BAB81F87DB42'), 'wp-content/plugins/revslider/admin/assets/imports/contenttabs/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('AD9985EF8F566314DD7DF8A9CF59F56C'), 'wp-content/plugins/revslider/admin/assets/imports/creativefreedom/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('9A86C2AA35B6D96554D58E16F8CF2268'), 'wp-content/plugins/revslider/admin/assets/imports/facebook-feed/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('8D972DD013DC0B44114E970BB24537AF'), 'wp-content/plugins/revslider/admin/assets/imports/fashion/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('92D1BCE694BA3E6662058B15414AFF4A'), 'wp-content/plugins/revslider/admin/assets/imports/finedining/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('CE373A7BAD7EAA441A96615FBD5AE720'), 'wp-content/plugins/revslider/admin/assets/imports/flickr-gallery/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('9AA0A46244FB5CD4D633AA3746723206'), 'wp-content/plugins/revslider/admin/assets/imports/foodcarousel/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('90DFBE359E3D301E4E6109C92324DAF0'), 'wp-content/plugins/revslider/admin/assets/imports/fullscreen-button/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('1C86966402FA1412F49841594CE76F0F'), 'wp-content/plugins/revslider/admin/assets/imports/gym/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('7C77D8C44349DCF9D40A84731A68C9B6'), 'wp-content/plugins/revslider/admin/assets/imports/highlight-carousel/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('A405185A68FEB1B8CBAE55573D314FD0'), 'wp-content/plugins/revslider/admin/assets/imports/highlight-showcase/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('341FBB67D70D3830A1A3FEA00E27E455'), 'wp-content/plugins/revslider/admin/assets/imports/imagehero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('D3523B45F88C9A6A35C0EF9E3111408B'), 'wp-content/plugins/revslider/admin/assets/imports/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('22141B34B4435AD51EA4E2B77124C5B0'), 'wp-content/plugins/revslider/admin/assets/imports/insta-gallery/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('4729A29A544F98099E794FF9699A5982'), 'wp-content/plugins/revslider/admin/assets/imports/levanorestaurantbar/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('0A0FAE619F35D9A61E30F4C33D50D99E'), 'wp-content/plugins/revslider/admin/assets/imports/mainfeature/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('887B4CCCA35074D9E54A692D5E5965BF'), 'wp-content/plugins/revslider/admin/assets/imports/media-carousel-autoplay/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('E6F99222F512C1AC099C37E6FD3BB597'), 'wp-content/plugins/revslider/admin/assets/imports/media-gallery-two/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('E6C3F187BBB615DD79984B94FFCC4BF8'), 'wp-content/plugins/revslider/admin/assets/imports/news-bg-video/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('08EC9436A37E7D70011454ECF8D1CBF1'), 'wp-content/plugins/revslider/admin/assets/imports/news-gallery/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('D59DBF3546917748AB016602EDBE755D'), 'wp-content/plugins/revslider/admin/assets/imports/news-gallery-post-based/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('C9E1CEB8F026BC8387EB08262F1E30AD'), 'wp-content/plugins/revslider/admin/assets/imports/news-hero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('22F5CA1A4E77B28FDBD73F54EE071804'), 'wp-content/plugins/revslider/admin/assets/imports/news-video/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('06D552B2E678ED493A54BAEC2B6D3E2B'), 'wp-content/plugins/revslider/admin/assets/imports/newsletter-hero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('45D21F1C3CEAE5CA82D0DA0DB6D0AC94'), 'wp-content/plugins/revslider/admin/assets/imports/notgeneric/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('649F668AAF9EB3A34CB8F79CFAE9B54E'), 'wp-content/plugins/revslider/admin/assets/imports/parallaxscene/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('6FD171CEF9F57FE58FE6181623EEE8E8'), 'wp-content/plugins/revslider/admin/assets/imports/photography/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('380068D1B7736313E4294D157684062E'), 'wp-content/plugins/revslider/admin/assets/imports/photography-carousel/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('0E7A71082203054B4ED37325A5269117'), 'wp-content/plugins/revslider/admin/assets/imports/search-form-hero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('9D4D1A4D2A64FA666343F06ADF37D7C4'), 'wp-content/plugins/revslider/admin/assets/imports/showcasecarousel/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('E6ADE02FAEA1118F1DB0A2CC56A3E6AD'), 'wp-content/plugins/revslider/admin/assets/imports/slidingoverlays/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('B8ADFE83B91D51DCE163259A67AF8292'), 'wp-content/plugins/revslider/admin/assets/imports/sportshero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('0A438ACAA1AADB925D7A78AFA2271524'), 'wp-content/plugins/revslider/admin/assets/imports/travel-static-captions/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('0658B8C5F9A18D854BEF3EB60629B254'), 'wp-content/plugins/revslider/admin/assets/imports/twitter-feed/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('36F6BB932212691188BB6E47B91AE5D8'), 'wp-content/plugins/revslider/admin/assets/imports/vimeo-gallery/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('6C58D59C1B33B12601EDDCF115BEB627'), 'wp-content/plugins/revslider/admin/assets/imports/vimeohero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('623ECC637D647A425F5EA353782D0E62'), 'wp-content/plugins/revslider/admin/assets/imports/web-product-dark/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('AE67285D0D5BAB99C692752CBCEECD3E'), 'wp-content/plugins/revslider/admin/assets/imports/web-product-dark-hero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('45616FD00D67F3EADCBC5DDB0C37FF58'), 'wp-content/plugins/revslider/admin/assets/imports/web-product-light-hero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('02D77D8C5DE0D8F08AEE970685C2DCC2'), 'wp-content/plugins/revslider/admin/assets/imports/web-product-light-hero-3d/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('363CF058CD06018B06FEFB4DDE4512EA'), 'wp-content/plugins/revslider/admin/assets/imports/webproductlight/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('015F317A08D4E61BB31B83AD2A6FBB3E'), 'wp-content/plugins/revslider/admin/assets/imports/woobig/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('9C7635A8AE8005B4C7C42DA7814AA414'), 'wp-content/plugins/revslider/admin/assets/imports/woocommercesmall/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('34DB95F95984BE93EFA05BC5AB1B3C1D'), 'wp-content/plugins/revslider/admin/assets/imports/youtube-gallery/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('5FDF96D6B8B3FCE9D75C0CA56F2B5B79'), 'wp-content/plugins/revslider/admin/assets/imports/youtubehero/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('906E5DE47CE8081CBD7B20ECF5FA5157'), 'wp-content/plugins/revslider/admin/assets/index.php', 0, UNHEX('03EFE17B1C4A21753F7D07EE17E77395'), UNHEX('03EFE17B1C4A21753F7D07EE17E77395')),
(UNHEX('05FA93B0837666401E0F49AE3C96566C'), 'wp-content/plugins/revslider/admin/assets/js/admin.js', 0, UNHEX('E98BC34BE99B8097D688E619B4033B22'), UNHEX('E98BC34BE99B8097D688E619B4033B22')),
(UNHEX('E28E27CE453A7387B6A3962483386B4E'), 'wp-content/plugins/revslider/admin/assets/js/alpha-color-picker.js', 0, UNHEX('3A089023532EA4ADD97A034F5890E20F'), UNHEX('3A089023532EA4ADD97A034F5890E20F')),
(UNHEX('28582A020CA597F5FFEB2CC6DD457A05'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/css.js', 0, UNHEX('66179D3C258CDDC45929E0D22BFFDE5E'), UNHEX('66179D3C258CDDC45929E0D22BFFDE5E')),
(UNHEX('6D1384A40B076327578938CFA460175E'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('94D599B25DB3C4380E40FAE2B4D6288E'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/closetag.js', 0, UNHEX('A379E22EF4F9DA609B7A04503E4D1B75'), UNHEX('A379E22EF4F9DA609B7A04503E4D1B75')),
(UNHEX('10A6908E42FB06D93AB8CDCE27A872DC'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/dialog.js', 0, UNHEX('1883F8872DFD4F75F08C17D055F32134'), UNHEX('1883F8872DFD4F75F08C17D055F32134')),
(UNHEX('D99BF138BF5587A99A9F653DFCC80CBC'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/foldcode.js', 0, UNHEX('E673A41BA4F1540070F13B8AD86B4164'), UNHEX('E673A41BA4F1540070F13B8AD86B4164')),
(UNHEX('93219C8893D1ED8C736B0DCFCEB89D27'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/formatting.js', 0, UNHEX('6A8B25E8A084135C83D90B77258E9C64'), UNHEX('6A8B25E8A084135C83D90B77258E9C64')),
(UNHEX('42C006D639F015676CBCAE06D00D9FB3'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('7683441D0044E89C12D4E298876CE755'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/javascript-hint.js', 0, UNHEX('2533DC0B779D154E8F3144AE1901A04D'), UNHEX('2533DC0B779D154E8F3144AE1901A04D')),
(UNHEX('A373B77B0ED2AD94D3C0C9E5F2470211'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/loadmode.js', 0, UNHEX('E9082CFBAD2713724646C44E7AFCF177'), UNHEX('E9082CFBAD2713724646C44E7AFCF177')),
(UNHEX('682B9BCC2B5C07E6FF6C06C2D85BBB8F'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/match-highlighter.js', 0, UNHEX('96ECD377FC615660E47A8D427857DDC1'), UNHEX('96ECD377FC615660E47A8D427857DDC1')),
(UNHEX('34501E476787FB86B63A3ED10591B74F'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/multiplex.js', 0, UNHEX('35131D08D564597BC9F9548361AD3E2F'), UNHEX('35131D08D564597BC9F9548361AD3E2F')),
(UNHEX('5A9077811416D1D9CBA93EDCD2F70ECF'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/overlay.js', 0, UNHEX('240C5026842D9BCE7FBDF4ABC6088A6A'), UNHEX('240C5026842D9BCE7FBDF4ABC6088A6A')),
(UNHEX('2495BB4760C05A54C1248F3641EC0437'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/pig-hint.js', 0, UNHEX('061691A4EB0B93E8EF9F1DFA571995E7'), UNHEX('061691A4EB0B93E8EF9F1DFA571995E7')),
(UNHEX('5AD558AABC1D7E16B9E6D43A89516A73'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/runmode-standalone.js', 0, UNHEX('A0EFD2E9F150DA30457624A3F7067947'), UNHEX('A0EFD2E9F150DA30457624A3F7067947')),
(UNHEX('0F728DCA715EDFEFB593DC896344C042'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/runmode.js', 0, UNHEX('5C5EB7D1F7B0193315B0128077E7C5E7'), UNHEX('5C5EB7D1F7B0193315B0128077E7C5E7')),
(UNHEX('99901EB488A6235357BD4E5E60AE4F54'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/search.js', 0, UNHEX('A0953841015F8567A90985A873429CF9'), UNHEX('A0953841015F8567A90985A873429CF9')),
(UNHEX('645C1A2BF0D1EE9AFA976A2B9F690336'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/searchcursor.js', 0, UNHEX('AE64A29E4E6046B5DCBCDDD6DF2C35FA'), UNHEX('AE64A29E4E6046B5DCBCDDD6DF2C35FA')),
(UNHEX('6D73E25AA1DA472B81F21B498D01C738'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/simple-hint.js', 0, UNHEX('53D28D8109FAF1740C237A3EFF1CAFCB'), UNHEX('53D28D8109FAF1740C237A3EFF1CAFCB')),
(UNHEX('0DAEC25E9988562F1A803728CC5A0AE1'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/xml-hint.js', 0, UNHEX('A0561C068A9ED936AEAD92563A911D6D'), UNHEX('A0561C068A9ED936AEAD92563A911D6D')),
(UNHEX('3C31842B582CAE8788FBE0EAF25509E8'), 'wp-content/plugins/revslider/admin/assets/js/codemirror/xml.js', 0, UNHEX('4304A1CBDDB1F976E42893F59DE690A1'), UNHEX('4304A1CBDDB1F976E42893F59DE690A1')),
(UNHEX('BCED85F1908C7D7E653B216189879F95'), 'wp-content/plugins/revslider/admin/assets/js/css_editor.js', 0, UNHEX('C5A3D9DAD83D48B6B0BEA5D2CF739C10'), UNHEX('C5A3D9DAD83D48B6B0BEA5D2CF739C10')),
(UNHEX('E44FB2DDE74FF0D2140D84737390F4CC'), 'wp-content/plugins/revslider/admin/assets/js/edit_layers_timeline.js', 0, UNHEX('C515EA595B5EB68183E6425E41DA6D3D'), UNHEX('C515EA595B5EB68183E6425E41DA6D3D')),
(UNHEX('0ACF06E787616B0DFC5BDCF6996DA554'), 'wp-content/plugins/revslider/admin/assets/js/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('480F538D47E3D576AC65BEB049025E3A'), 'wp-content/plugins/revslider/admin/assets/js/jquery.tipsy.js', 0, UNHEX('5A4F11BEC90D01C15B537CCFF6D9F1D7'), UNHEX('5A4F11BEC90D01C15B537CCFF6D9F1D7')),
(UNHEX('9FB6BBC8D44165B82BF04DBF0C264192'), 'wp-content/plugins/revslider/admin/assets/js/newvideo.js', 0, UNHEX('552B2E9071CCE507447B6D76F999D7B0'), UNHEX('552B2E9071CCE507447B6D76F999D7B0')),
(UNHEX('AC5E9E41F6E99AD6E4F28DB2FFB4C72C'), 'wp-content/plugins/revslider/admin/assets/js/oldvideo.js', 0, UNHEX('BCD22B4C1E6A1D93B0E80D6A0920996E'), UNHEX('BCD22B4C1E6A1D93B0E80D6A0920996E')),
(UNHEX('BF7F0837D90A1B9806A39F4CECFA9220'), 'wp-content/plugins/revslider/admin/assets/js/rev_addon-admin.js', 0, UNHEX('CDA5600DFD246DBCAEF65EF8669C237B'), UNHEX('CDA5600DFD246DBCAEF65EF8669C237B')),
(UNHEX('DA7A3BC7704CB8220B63B5C51B3E38C8'), 'wp-content/plugins/revslider/admin/assets/js/rev_admin.js', 0, UNHEX('3788D5CE81FD126FD7EB2F1670FC1628'), UNHEX('3788D5CE81FD126FD7EB2F1670FC1628')),
(UNHEX('C5292B1A3F2D97D585EAAFAE8478E225'), 'wp-content/plugins/revslider/admin/assets/js/settings.js', 0, UNHEX('5601BE15CE3F50ABABE1ECB367D8DE7E'), UNHEX('5601BE15CE3F50ABABE1ECB367D8DE7E')),
(UNHEX('2AEAC568E0437D73C9500AF09E89AFE3'), 'wp-content/plugins/revslider/admin/assets/js/tinymce-shortcode-script.js', 0, UNHEX('0D819B43A383AD27483E8F220A5E69F8'), UNHEX('0D819B43A383AD27483E8F220A5E69F8')),
(UNHEX('9B29EF6FA4D7E2DAC051C28E1C919F06'), 'wp-content/plugins/revslider/admin/assets/js/vc.js', 0, UNHEX('ADE42F3ACE2DF27CEB9B349327435BEF'), UNHEX('ADE42F3ACE2DF27CEB9B349327435BEF')),
(UNHEX('15B5425F2EC1A74A12F6C114DEDAA3E3'), 'wp-content/plugins/revslider/admin/index.php', 0, UNHEX('03EFE17B1C4A21753F7D07EE17E77395'), UNHEX('03EFE17B1C4A21753F7D07EE17E77395')),
(UNHEX('29C7BF2EB402235358780C41ED4FB591'), 'wp-content/plugins/revslider/admin/revslider-admin.class.php', 0, UNHEX('463F96162149E284DC1376DDE5967ED7'), UNHEX('463F96162149E284DC1376DDE5967ED7')),
(UNHEX('A698533F10BE73C69BBAD9FCD7EDE38A'), 'wp-content/plugins/revslider/admin/views/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('ECFD5B65BC51C4907AE36DC0E0D665FD'), 'wp-content/plugins/revslider/admin/views/master-view.php', 0, UNHEX('91E3C6B9EE671D75254ED23CF62E7CF8'), UNHEX('91E3C6B9EE671D75254ED23CF62E7CF8')),
(UNHEX('BFACDB4DA53003022184C16667C3365C'), 'wp-content/plugins/revslider/admin/views/rev_addon-admin-display.php', 0, UNHEX('2F533366BA590BB1F0F7D0871224C595'), UNHEX('2F533366BA590BB1F0F7D0871224C595')),
(UNHEX('69595167A61156FD02BD202F63090D82'), 'wp-content/plugins/revslider/admin/views/slide-editor.php', 0, UNHEX('62A44FDD3E9A94B839B327BC6A766A26'), UNHEX('62A44FDD3E9A94B839B327BC6A766A26')),
(UNHEX('AB8B83E35EDA54DFE73511D3E66A2DA1'), 'wp-content/plugins/revslider/admin/views/slide-overview.php', 0, UNHEX('99FF6DBA42FD3DBBC0221F4400B50E19'), UNHEX('99FF6DBA42FD3DBBC0221F4400B50E19')),
(UNHEX('8A56577370369FAE3F939E350FFA5CC5'), 'wp-content/plugins/revslider/admin/views/slider-editor.php', 0, UNHEX('58A77C0309BD6D6CB1BD2EB39CF645E8'), UNHEX('58A77C0309BD6D6CB1BD2EB39CF645E8')),
(UNHEX('12E6CEB7367CD86676E589A4537E495E'), 'wp-content/plugins/revslider/admin/views/slider-overview.php', 0, UNHEX('9B3546477A6E03709CC2694D353472DB'), UNHEX('9B3546477A6E03709CC2694D353472DB')),
(UNHEX('8C40F871FAF5E21A9D553B58E6F75876'), 'wp-content/plugins/revslider/admin/views/system/dialog-copy-move.php', 0, UNHEX('D6E5885ED8D9778344C814BD0406DC6F'), UNHEX('D6E5885ED8D9778344C814BD0406DC6F')),
(UNHEX('BDF07EC601142B45CF5EBBB8B33B8A64'), 'wp-content/plugins/revslider/admin/views/system/dialog-global-settings.php', 0, UNHEX('6454894A5735B7463A5C7C6578C76687'), UNHEX('6454894A5735B7463A5C7C6578C76687')),
(UNHEX('4624BAD2954373D4E008804CC0C63027'), 'wp-content/plugins/revslider/admin/views/system/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('FD3CACEB3C5B0B6E5C7086EB0F308D0F'), 'wp-content/plugins/revslider/admin/views/system/validation.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('F91BA0C31CE00022B78A3D2AA54C1BDD'), 'wp-content/plugins/revslider/admin/views/templates/create-slider.php', 0, UNHEX('3CCD4083D279D4B0CBDFB42AA5CFA41D'), UNHEX('3CCD4083D279D4B0CBDFB42AA5CFA41D')),
(UNHEX('E820E7554C74473845F7D68D4E368413'), 'wp-content/plugins/revslider/admin/views/templates/edit-slider.php', 0, UNHEX('601BD44464161207CDDBD593DD1E2990'), UNHEX('601BD44464161207CDDBD593DD1E2990')),
(UNHEX('70128F83D5F3B884EC4C0C7EB5D3CBAC'), 'wp-content/plugins/revslider/admin/views/templates/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('13B1268479968F4EE6389D272591D061'), 'wp-content/plugins/revslider/admin/views/templates/slide-general-settings.php', 0, UNHEX('16E11D3A2D35FA4707E31AADDADDC4C4'), UNHEX('16E11D3A2D35FA4707E31AADDADDC4C4')),
(UNHEX('B54BF158D3E0CA18E2DD0A0EFDAD3EFA'), 'wp-content/plugins/revslider/admin/views/templates/sliders-list.php', 0, UNHEX('880307C02244E81A77292E198F4EF379'), UNHEX('880307C02244E81A77292E198F4EF379')),
(UNHEX('0D381D3D2544B5D9284321B4E06DA2B7'), 'wp-content/plugins/revslider/admin/views/templates/slides-list.php', 0, UNHEX('B542FFF26AA125E834D2A550560FAE00'), UNHEX('B542FFF26AA125E834D2A550560FAE00')),
(UNHEX('AEF33C738EF80F0DBBF3CD270297AC05'), 'wp-content/plugins/revslider/admin/views/templates/slides.php', 0, UNHEX('7C291E9E527F646AEF2CFD37D6D56A6E'), UNHEX('7C291E9E527F646AEF2CFD37D6D56A6E')),
(UNHEX('42DB805C7B5E23E956CE172D9407ECEB'), 'wp-content/plugins/revslider/admin/views/templates/template-selector.php', 0, UNHEX('9EA7D42C78BBDB3BF13DD55881808459'), UNHEX('9EA7D42C78BBDB3BF13DD55881808459')),
(UNHEX('0701D9106BFADDC6B84AFF339E504B34'), 'wp-content/plugins/revslider/admin/views/templates/template-slider-selector.php', 0, UNHEX('E0793BEF15E072700E942212A5B40B8F'), UNHEX('E0793BEF15E072700E942212A5B40B8F')),
(UNHEX('050542AAE65072986666D61D83433505'), 'wp-content/plugins/revslider/admin/views/templates/wpml-selector.php', 0, UNHEX('F88EE19D91668FF53F27B3112CDC93C3'), UNHEX('F88EE19D91668FF53F27B3112CDC93C3')),
(UNHEX('DB52D0846CD089290BACA5C3875E3FF0'), 'wp-content/plugins/revslider/backup/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('D885D19001594D2C88A6777450DF8882'), 'wp-content/plugins/revslider/includes/extension.class.php', 0, UNHEX('0BBD4C953D8279A64A916F25FA65C9FE'), UNHEX('0BBD4C953D8279A64A916F25FA65C9FE')),
(UNHEX('0187E77F212D46503B7B00E67C4EF854'), 'wp-content/plugins/revslider/includes/framework/addon-admin.class.php', 0, UNHEX('A8E0B9DD66A87BB9FEAD725FE69C94AE'), UNHEX('A8E0B9DD66A87BB9FEAD725FE69C94AE')),
(UNHEX('01318448A74DF7F46723124B3A21E2C5'), 'wp-content/plugins/revslider/includes/framework/aq-resizer.class.php', 0, UNHEX('B6AB2E8773E68EC9F4C3AA5C98DB96BF'), UNHEX('B6AB2E8773E68EC9F4C3AA5C98DB96BF')),
(UNHEX('75BD7070B7404B71C0288A6FDB940B3A'), 'wp-content/plugins/revslider/includes/framework/base-front.class.php', 0, UNHEX('052ACD746E0438DEA7C248FB09152CC5'), UNHEX('052ACD746E0438DEA7C248FB09152CC5')),
(UNHEX('9AB844C6A2C558065C8712EC62478A13'), 'wp-content/plugins/revslider/includes/framework/base.class.php', 0, UNHEX('1B60F49AD2402F9B28984BA2CB1D2C8B'), UNHEX('1B60F49AD2402F9B28984BA2CB1D2C8B')),
(UNHEX('6BB026B5887F8CE7D4F3D6BFB0362BF4'), 'wp-content/plugins/revslider/includes/framework/db.class.php', 0, UNHEX('A44C5D718DF33EFC2E463F21B76606C0'), UNHEX('A44C5D718DF33EFC2E463F21B76606C0')),
(UNHEX('159DD91DE96BCA4B200C7E05526DA818'), 'wp-content/plugins/revslider/includes/framework/elements-base.class.php', 0, UNHEX('0F7EBE4E027DE4638C09DFCC88370AE3'), UNHEX('0F7EBE4E027DE4638C09DFCC88370AE3')),
(UNHEX('80C1F932A0A6BB6C5DAC7784446E4D48'), 'wp-content/plugins/revslider/includes/framework/functions-wordpress.class.php', 0, UNHEX('79D379DA7B6305946CBF58608AE9C7E7'), UNHEX('79D379DA7B6305946CBF58608AE9C7E7')),
(UNHEX('82121D9A11C6327BA139542C57252147'), 'wp-content/plugins/revslider/includes/framework/functions.class.php', 0, UNHEX('CC2CC6B2FDA9F02439B1EDA0EF1A27D4'), UNHEX('CC2CC6B2FDA9F02439B1EDA0EF1A27D4')),
(UNHEX('C9308F07E9BBFB0732A4743AB8BED9AC'), 'wp-content/plugins/revslider/includes/framework/include-framework.php', 0, UNHEX('13740E1E9BE0CB2C30E7A67B2B745B75'), UNHEX('13740E1E9BE0CB2C30E7A67B2B745B75')),
(UNHEX('E2422B30F59AF9C844468112D44FE09A'), 'wp-content/plugins/revslider/includes/framework/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('75D733CECCF3FC050520E7CBA098CD01'), 'wp-content/plugins/revslider/includes/framework/newsletter.class.php', 0, UNHEX('FB755AC4886F6DB0E54281B16B2A6158'), UNHEX('FB755AC4886F6DB0E54281B16B2A6158')),
(UNHEX('1EB6CAA8CF7CEA5E36CAB9B9956A597D'), 'wp-content/plugins/revslider/includes/framework/woocommerce.class.php', 0, UNHEX('D6BB449A686B041BF549604BECD32031'), UNHEX('D6BB449A686B041BF549604BECD32031')),
(UNHEX('4AE2AA4B40F83AF4B3914A70446FFEDB'), 'wp-content/plugins/revslider/includes/framework/wpml.class.php', 0, UNHEX('7A0A56BF1583464CEA49C28DD76BFF43'), UNHEX('7A0A56BF1583464CEA49C28DD76BFF43')),
(UNHEX('22A254D12A5751380979DD486BE306E5'), 'wp-content/plugins/revslider/includes/globals.class.php', 0, UNHEX('48DA890FEE15561B3FABAA3974896E8F'), UNHEX('48DA890FEE15561B3FABAA3974896E8F')),
(UNHEX('E5BBE8C9DC826C8CCFCA082A78264552'), 'wp-content/plugins/revslider/includes/googlefonts.php', 0, UNHEX('972702F7B4B9931D1CE0D55B313E9840'), UNHEX('972702F7B4B9931D1CE0D55B313E9840')),
(UNHEX('8480AB69BCF20AB43D91D12BCE69B7CA'), 'wp-content/plugins/revslider/includes/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('CF6378803EB5DB6AB2DA6895C9495605'), 'wp-content/plugins/revslider/includes/template.class.php', 0, UNHEX('AF28BE990CBA117EB49F4272E558C1B9'), UNHEX('AF28BE990CBA117EB49F4272E558C1B9')),
(UNHEX('19C2139FF59978D6B09C23D9B234FEDD'), 'wp-content/plugins/revslider/includes/widget.class.php', 0, UNHEX('404B6D001D5D65E0AFAFAF03C7E97320'), UNHEX('404B6D001D5D65E0AFAFAF03C7E97320')),
(UNHEX('476CA188AFF5108F3E4712EFE2B0CE9A'), 'wp-content/plugins/revslider/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('36DA3B23091E02D8FA0F256C2BF9BEB4'), 'wp-content/plugins/revslider/languages/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('86ACB42AD712655AA66BFE56B7DEC97B'), 'wp-content/plugins/revslider/public/assets/assets/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('454C062FA3D293131A97C45B83A9A5C7'), 'wp-content/plugins/revslider/public/assets/assets/sources/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('07A706C4F20DC01B11918C69178D2A5C'), 'wp-content/plugins/revslider/public/assets/assets/svg/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('4A636ED961CD6AC8E434D09F10206FDC'), 'wp-content/plugins/revslider/public/assets/css/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('05302705AAFC60FB0CE163C0325FCF13'), 'wp-content/plugins/revslider/public/assets/fonts/font-awesome/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('96EDD6B5C8AB58BC85377163E21A863E'), 'wp-content/plugins/revslider/public/assets/fonts/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('1230EB86D2E0719F40D447366B9FC6D5'), 'wp-content/plugins/revslider/public/assets/fonts/pe-icon-7-stroke/css/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('CF4B169B088D1FB35873533ED9FACE64'), 'wp-content/plugins/revslider/public/assets/fonts/pe-icon-7-stroke/fonts/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('551A44D1C8ABEABCCE83D03C5BAA9D80'), 'wp-content/plugins/revslider/public/assets/fonts/pe-icon-7-stroke/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('E7C0F7C393BABF5DC99ACA648251EB76'), 'wp-content/plugins/revslider/public/assets/fonts/revicons/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('3CB1D72AA13125C947C9ABEBD9563929'), 'wp-content/plugins/revslider/public/assets/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('6522A45953F74FEB2DA91D2ED1A909CD'), 'wp-content/plugins/revslider/public/assets/js/extensions/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('29221357EC257831DE6534D0774FB650'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.actions.min.js', 0, UNHEX('9E17D92DCC7DCBDAE632747F047F66C1'), UNHEX('9E17D92DCC7DCBDAE632747F047F66C1')),
(UNHEX('6CCA4AB955260C020DEA53CF8F88CF49'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.carousel.min.js', 0, UNHEX('7799C076398BBC16D26A067BF6692E54'), UNHEX('7799C076398BBC16D26A067BF6692E54')),
(UNHEX('15E7207D4B1093AEA0324E85F81ADCC4'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.kenburn.min.js', 0, UNHEX('2AF3650E079EA088F7467879470E0D8D'), UNHEX('2AF3650E079EA088F7467879470E0D8D')),
(UNHEX('C24A7090845D9C762313928BD727D021'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.layeranimation.min.js', 0, UNHEX('0FC058E0E54E36BEA9EC78B6E08CD1E9'), UNHEX('0FC058E0E54E36BEA9EC78B6E08CD1E9')),
(UNHEX('1046EA3F2C03E790DAC565B23439B237'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.migration.min.js', 0, UNHEX('EF29DB0183F4C6CDC06F662B4CDC9EF5'), UNHEX('EF29DB0183F4C6CDC06F662B4CDC9EF5')),
(UNHEX('F2556ACCFACD49024DCCC2F17B7B2191'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.navigation.min.js', 0, UNHEX('BE12D4212C86501FBE6960E5C2935C2C'), UNHEX('BE12D4212C86501FBE6960E5C2935C2C')),
(UNHEX('1E0A44B226F5C142609AA9F108E27D85'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.parallax.min.js', 0, UNHEX('A327E4B2290B1B75C8E77A510F00E108'), UNHEX('A327E4B2290B1B75C8E77A510F00E108')),
(UNHEX('EA4835281449782679BABDF5C096A41B'), 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.slideanims.min.js', 0, UNHEX('D98DBFAF16FDB036D2D818EA17BED39B'), UNHEX('D98DBFAF16FDB036D2D818EA17BED39B')),
(UNHEX('35E114D063BF4E6EA2A1DBC2ADD75783'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('F5A4CE4571E64F6CCDB15B717B2C786B'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.actions.js', 0, UNHEX('48623088AC50B59EF1A87FC93C366A46'), UNHEX('48623088AC50B59EF1A87FC93C366A46')),
(UNHEX('957A2C743C85930F041BE148BB2576F2'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.carousel.js', 0, UNHEX('91C1A987684B490FB21467792F39BE28'), UNHEX('91C1A987684B490FB21467792F39BE28')),
(UNHEX('AEEB077FA2AA6940C9F5A57E89333EBD'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.kenburn.js', 0, UNHEX('7F479ECFA01035D8046A769D48AF064A'), UNHEX('7F479ECFA01035D8046A769D48AF064A')),
(UNHEX('CDAAAC1913742DCBCBE31BCD1157E8A0'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.migration.js', 0, UNHEX('90C41FECAF50B9FB4FA4C9197F1B848B'), UNHEX('90C41FECAF50B9FB4FA4C9197F1B848B')),
(UNHEX('F665E645C27D8192791B299389779257'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.navigation.js', 0, UNHEX('C9462AEC706E21D1F3AA15C870E3BE25'), UNHEX('C9462AEC706E21D1F3AA15C870E3BE25')),
(UNHEX('48568B5C8F70C71727178D98754C930A'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.parallax.js', 0, UNHEX('7B4BB11E83B2FF770E58E0BB1C728806'), UNHEX('7B4BB11E83B2FF770E58E0BB1C728806')),
(UNHEX('F329436F890D9C2BF98DE2BEC9716861'), 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.video.js', 0, UNHEX('7032DC66FDB94D0C3B0782F3F9183147'), UNHEX('7032DC66FDB94D0C3B0782F3F9183147')),
(UNHEX('D90A68C50307E2B9D56AE8666D383A63'), 'wp-content/plugins/revslider/public/assets/js/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('11823E1073BE8D30B0609D5BB34BD42C'), 'wp-content/plugins/revslider/public/assets/js/jquery.themepunch.enablelog.js', 0, UNHEX('F846C7BFEF1815DC6F91C9C392336B9E'), UNHEX('F846C7BFEF1815DC6F91C9C392336B9E')),
(UNHEX('5AE2DBA0318F5E07F9AE31510EAA5B9E'), 'wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min.js', 0, UNHEX('47A4F6140267514BEC482B6937D5C0FE'), UNHEX('47A4F6140267514BEC482B6937D5C0FE')),
(UNHEX('BAD56848AE783117A5B8959698886EBD'), 'wp-content/plugins/revslider/public/assets/js/source/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('F6DE8735EA3F3E375DC096AA53EFF1ED'), 'wp-content/plugins/revslider/public/assets/js/source/jquery.themepunch.enablelog.js', 0, UNHEX('F846C7BFEF1815DC6F91C9C392336B9E'), UNHEX('F846C7BFEF1815DC6F91C9C392336B9E')),
(UNHEX('6C8096D0341201AED4EE5A5CE3A81558'), 'wp-content/plugins/revslider/public/index.php', 0, UNHEX('D41D8CD98F00B204E9800998ECF8427E'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('9266B4D9327C62073592D7D6A4F4CF1C'), 'wp-content/plugins/revslider/revslider.php', 0, UNHEX('E89E00C416D8AF43D218F72AC2BA552D'), UNHEX('E89E00C416D8AF43D218F72AC2BA552D')),
(UNHEX('BBCA36CB1AF82369573F54FDF2E53DC2'), 'wp-content/plugins/revslider/uninstall.php', 0, UNHEX('5E3B5A4797B7AED05953B24E704B8927'), UNHEX('5E3B5A4797B7AED05953B24E704B8927')),
(UNHEX('DE3C11C60BDFE538364B6F0C02858C58'), 'wp-content/plugins/wordfence/css/activity-report-widget.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53979AF60A19781616F37741FAA90E8D')),
(UNHEX('FD214041823B311029534A97C862B7CC'), 'wp-content/plugins/wordfence/css/colorbox.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A5220E8C1538DFEFC37BD8BBE954D87')),
(UNHEX('FCD5C5B7154E0900F9DB661A54B21B8A'), 'wp-content/plugins/wordfence/css/diff.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E422A88993F4D5791C3185F79D345AC6')),
(UNHEX('61E57C0A82FC7C40580AB69C664D0DA7'), 'wp-content/plugins/wordfence/css/dt_table.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A25B14A166FEE61A99AA047DC1492B6F')),
(UNHEX('BB9C355AB491FFFCCC6F06978ED2AE3C'), 'wp-content/plugins/wordfence/css/fullLog.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BB719DDF2F257896A0577CB847D9AE4')),
(UNHEX('E021FDD730C70FB07454B5289720A78B'), 'wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('660E905C4BF94B91471D92D0BB5341C0')),
(UNHEX('4C575DEA0BE43D8CE0F4C501003BF03A'), 'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6AE81A4BC89A902D22C9D6617B2A307F')),
(UNHEX('950803123FE03E00256C445B54899319'), 'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF5ED7469522D6497EF30E008B47CDB2')),
(UNHEX('93B651B363241B32DB0C362EBE6985AD'), 'wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('293B372F45CAFB7719E2AF4104E7DF67')),
(UNHEX('EA6E6D7100B3BDCD4070461B8212642A'), 'wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C09E30ECC8E02835D626336C68EA2957')),
(UNHEX('50A3E2A9A32D01C685088BC5C0FA6983'), 'wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('85FD6D384F4093FC640738A73C51C5BE')),
(UNHEX('C596E42F504983A3AF05AB63AD443D59'), 'wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A3C5468F484F07AC4A320D9E22ACB8C')),
(UNHEX('45F53066DBBF6FC069E30DE722879226'), 'wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDC58C14E91FBB086F953818C525A7EE')),
(UNHEX('8C4D2421A982F05CCD1B7AB4F41BDA01'), 'wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('98D0C275DD1F33C03CBD95C91185D26A')),
(UNHEX('FCEC4D07AF4AA2F064422E8099EEA32A'), 'wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41612B0F4A034424F8321C9F824A94DA')),
(UNHEX('07156AABE66FA42B88B173DB37DB381C'), 'wp-content/plugins/wordfence/css/iptraf.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B0913CE12E6EB1D3CBC647185375EB3')),
(UNHEX('3FB024204F99078CCD3BD13ED5A5E59D'), 'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2965EDF466D523A160509E7E37C4146E')),
(UNHEX('574EE4096225D539705926D81891EDED'), 'wp-content/plugins/wordfence/css/jquery-ui.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E3328147FC22DA04D89B2E5A10DE0D9')),
(UNHEX('B2687B6EBC562201F3B9E11F309789CF'), 'wp-content/plugins/wordfence/css/jquery-ui.structure.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DEED5C40AF1C31440BABE93FCFD21E99')),
(UNHEX('72749F1569982E20BF3A768DDE5626D3'), 'wp-content/plugins/wordfence/css/jquery-ui.theme.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('92C5F27B5FAE1ED8CEE5AF2313C6D453')),
(UNHEX('6FD0E561C8E6773568DE402B770D1EBC'), 'wp-content/plugins/wordfence/css/main.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA60BA0D0654B7C5729778E0BEC79E07')),
(UNHEX('BAFCE6867305E15958CD0C9AACE39E97'), 'wp-content/plugins/wordfence/css/phpinfo.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A33C60CC2C37917FDC4A06037500139F')),
(UNHEX('4AF70934CED62FABDCCA7CA8FD09D201'), 'wp-content/plugins/wordfence/css/select2.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('138258AAAB4E7C37905ABE04F22843EF')),
(UNHEX('CE890FC5BE1180B06809EBB87FEB1D97'), 'wp-content/plugins/wordfence/css/wf-adminbar.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90019CD368B1D7C3B6CAE53FD81B576D')),
(UNHEX('F112399F6011E7BFAD832162BA86FE21'), 'wp-content/plugins/wordfence/css/wordfenceBox.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E9714E02B91438492AD2E6682EAA6C1')),
(UNHEX('E6A798BAEE37DD5EF4BB1362B30822B3'), 'wp-content/plugins/wordfence/images/back_disabled.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68D901C2D467D8FAEF69EEE30406863E')),
(UNHEX('EBC8C4D7AE46EEEA70DE73A5D834A311'), 'wp-content/plugins/wordfence/images/back_enabled.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A1A1F1F85D07C8F77FA394D248038EC3')),
(UNHEX('5E79473DDA9C4667073B330591C3A1A9'), 'wp-content/plugins/wordfence/images/button-grad-grey.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95C45243EC1D1CBFCA547908D5FD3FDE')),
(UNHEX('4E379741E4B400C26E6E56BED69117ED'), 'wp-content/plugins/wordfence/images/checkbox.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22B30EC8470DFB18367CF48898801527')),
(UNHEX('E22438AB8D2E5670E49D6ABD42C140F4'), 'wp-content/plugins/wordfence/images/flags/.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('342E828F4D3ADF3CFB4B1B30DC9FCEAE')),
(UNHEX('0D0596AB3AA9A79401F9D755CBA3170C'), 'wp-content/plugins/wordfence/images/flags/a1.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('342E828F4D3ADF3CFB4B1B30DC9FCEAE')),
(UNHEX('010AC6A5756F12E0DA656661159CF36E'), 'wp-content/plugins/wordfence/images/flags/a2.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('342E828F4D3ADF3CFB4B1B30DC9FCEAE')),
(UNHEX('9E270B7D4899209A5719EEE2D49C0A7B'), 'wp-content/plugins/wordfence/images/flags/ad.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BAC1A2074568CF95B45D89C4B8E930B')),
(UNHEX('54DA2E18F180E1CA64A3C11638E379B0'), 'wp-content/plugins/wordfence/images/flags/ae.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AEDC37C63425F8A9BFB345EA274D7D6C')),
(UNHEX('97F8BB1B983B8C635382D423166E7695'), 'wp-content/plugins/wordfence/images/flags/af.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04FF35BA7B076451ED14A0C39CB3C5E7')),
(UNHEX('62DDF060BFD7D2A4B9AE2D3107371540'), 'wp-content/plugins/wordfence/images/flags/ag.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('08A9B75C10240C9D2C99201B07A3B0F9')),
(UNHEX('DECC10E8FEB315B793A410C0CC2FC7CF'), 'wp-content/plugins/wordfence/images/flags/ai.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3795A7D696A22AA4ACB4EC86BCBC0B16')),
(UNHEX('E55004A276C41E64BA8149AEC134F575'), 'wp-content/plugins/wordfence/images/flags/al.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0E83A0D65DDB44F047F6FF06ABA444F')),
(UNHEX('CF7E848E70459DD92AAB54B04534E8FB'), 'wp-content/plugins/wordfence/images/flags/am.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('242FFE8D95EC63430E5C26A3AAA75025')),
(UNHEX('3BE42D236E0BE239DD067C8A3F3DE7C8'), 'wp-content/plugins/wordfence/images/flags/an.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BDA871FCC069E3073779D31A65AB1CC')),
(UNHEX('C1FEFF799E6E364B7ADA399CE11D47E8'), 'wp-content/plugins/wordfence/images/flags/ao.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41A8AA1E11F7086D2413D8D9A777680B')),
(UNHEX('C1EAFEB84E438212C8579B9386BB87AF'), 'wp-content/plugins/wordfence/images/flags/ap.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E98BC060464A10D9DD98DAA985F5097')),
(UNHEX('75EBF59FAC0DC3E8612210B6820DE257'), 'wp-content/plugins/wordfence/images/flags/aq.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('758F81CAD577209986AAC611E9879A64')),
(UNHEX('F5BBE1AFB07FD3A6306E631F6D8F1E91'), 'wp-content/plugins/wordfence/images/flags/ar.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D06CCBBCDF15B4EE55630570681A4BB6')),
(UNHEX('833AE8DD5062A7E51734FCB3EC09E775'), 'wp-content/plugins/wordfence/images/flags/as.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E71C5F9757C0FA5E35465E1DB8F5D5C8')),
(UNHEX('8E51429820788BA08D4D427FABE661F6'), 'wp-content/plugins/wordfence/images/flags/at.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('658EFECEF622FF8B1C8B1BF6974F3B16')),
(UNHEX('5132272D4FDD39C5C4E70819F9B61934'), 'wp-content/plugins/wordfence/images/flags/au.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0DBC85C294B1B62FA5437381EA5996ED')),
(UNHEX('1E4D539C92D9016BECA598D90A02F68C'), 'wp-content/plugins/wordfence/images/flags/aw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB3375B318F2799C98D66A1575E0F833')),
(UNHEX('47FABA9FD6FC935421AE808641E0ADD6'), 'wp-content/plugins/wordfence/images/flags/ax.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4675E8778E62CC8580C728770D10B0BE')),
(UNHEX('142E8010B8084239B8DF392696B569E2'), 'wp-content/plugins/wordfence/images/flags/az.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFFE3FDC22375EA1EE0C607D5D96DD40')),
(UNHEX('91530B1FDB6DF2F0245C781B4834DB18'), 'wp-content/plugins/wordfence/images/flags/ba.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E654CC441F582CE04AA879AB8524D4C8')),
(UNHEX('EB70C9C40E9DA2E719A00384415E7325'), 'wp-content/plugins/wordfence/images/flags/bb.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('962C34FD75870A8DF112DFAF3FC41567')),
(UNHEX('BC8348878D45BF310326598FB79C1902'), 'wp-content/plugins/wordfence/images/flags/bd.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B828DA5521B605C1B3CFC2B8E2992173')),
(UNHEX('0019A48BF94914DC084A97B82D248C80'), 'wp-content/plugins/wordfence/images/flags/be.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6105F2CDD9A31A2598B6BDE2C19E7A07')),
(UNHEX('7BBCD10F055F39CEADBBE9B3020865FE'), 'wp-content/plugins/wordfence/images/flags/bf.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6359F138E36911D2F19533B8E2AC10D4')),
(UNHEX('F529FAA9B9F31AB863712623C02C054F'), 'wp-content/plugins/wordfence/images/flags/bg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D2C7AF70E88C864F0BB0140A840D65E')),
(UNHEX('81458C35389EA0429343294AF973AAFA'), 'wp-content/plugins/wordfence/images/flags/bh.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C4054FDE02684F58AFF19B3561BC610')),
(UNHEX('F1FB83903E0B58EF4050B09B647E5217'), 'wp-content/plugins/wordfence/images/flags/bi.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DAB442700EB7A92BF1FE8F96F00CC49E')),
(UNHEX('623332F04E3F528AD256FA4D43975227'), 'wp-content/plugins/wordfence/images/flags/bj.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E2C580A6CF91E599725179BFC5FF4D8')),
(UNHEX('C13379A0E8FA758945ACA631771DC48E'), 'wp-content/plugins/wordfence/images/flags/bm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2E37CA8DBEB10A5BC0915D239AB6558')),
(UNHEX('9C20879D05A8A3AAA5902DE241F72657'), 'wp-content/plugins/wordfence/images/flags/bn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('93089E897A819EF044CCC228AD7F2B4A')),
(UNHEX('674DD4424DD47DD30113DEAD21DFEBDA'), 'wp-content/plugins/wordfence/images/flags/bo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26D7375F0EF01F207C3E05A729FBDEEF')),
(UNHEX('55AD1219F77D3526604A067F5BA0753A'), 'wp-content/plugins/wordfence/images/flags/br.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DB748259457FCBC519382145BE2EBEB')),
(UNHEX('B2C6844899C0E8BE3348E2B2D78F2191'), 'wp-content/plugins/wordfence/images/flags/bs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5808CE73591249A210E5D8DA7D01D354')),
(UNHEX('07C0EAF8C9DE9EFFBAA28CAB512CCE6E'), 'wp-content/plugins/wordfence/images/flags/bt.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A54B694BE7753C16F25FD5BA92760B25')),
(UNHEX('668DC903A6DD2BBF8ACC0C574B5A22B9'), 'wp-content/plugins/wordfence/images/flags/bv.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4D292549F1EC7AF57F34694AB35F67E')),
(UNHEX('67F18393CBBA01E6863316C6431D1F2C'), 'wp-content/plugins/wordfence/images/flags/bw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1FF051C45CA2EBAC667D23BE6E3987A')),
(UNHEX('6BB7E0B151919FED98ED1D63038DA064'), 'wp-content/plugins/wordfence/images/flags/by.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FA3360DC5FFDE418FFB82AF768AFCCA')),
(UNHEX('650647A33DA50B550FF95CFAC29D6CBE'), 'wp-content/plugins/wordfence/images/flags/bz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3893DFA010655E7A85F1A7658FAB11CD')),
(UNHEX('2CE6DC8E97AB8407923C39B9548E6A60'), 'wp-content/plugins/wordfence/images/flags/ca.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22E7854A2B052F143CFAE2F5E28F3628')),
(UNHEX('59F797AB2AA2114DDD24C4C803BD131B'), 'wp-content/plugins/wordfence/images/flags/cc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFEAF254C39212B2169B3BF12B52DC40')),
(UNHEX('952FE0C8AFC8A9736322B9B98216D2A7'), 'wp-content/plugins/wordfence/images/flags/cd.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57C9D46AB06D107FFBAD17076B94EC93')),
(UNHEX('74AD70A715BBFEDEC46F22DD7C3A5525'), 'wp-content/plugins/wordfence/images/flags/cf.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A74FCBD29A503E9924D12D88B461E29')),
(UNHEX('60580C5B070C72BBB0EB06ED9A8E9F45'), 'wp-content/plugins/wordfence/images/flags/cg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE5558422723B81F541CD87705ACBC7B')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('A908E65EB0B72CFBFB5EE6888938C9C6'), 'wp-content/plugins/wordfence/images/flags/ch.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D375F1A65EDE71C084D9D8FBCD10DD9')),
(UNHEX('653E14F6135939C41FA29CA653911F26'), 'wp-content/plugins/wordfence/images/flags/ci.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01D868E5B97A50CDDB462B64D47926E0')),
(UNHEX('DC895D946AFA1B65BD2A3A85A5F28A70'), 'wp-content/plugins/wordfence/images/flags/ck.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E9B873F3141FCEACB3EFF469D49BFE80')),
(UNHEX('2F748F3B2F62F1CA01A48F3421CC2226'), 'wp-content/plugins/wordfence/images/flags/cl.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68FE1007B4311BD5DCAEEDAD3890BB96')),
(UNHEX('511D3BDDF5F0EABCA11FCABFE6CB06AA'), 'wp-content/plugins/wordfence/images/flags/cm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5418689FFADF57FF469743DD4A158ABC')),
(UNHEX('145A08E011256E95613FE11A96082FB7'), 'wp-content/plugins/wordfence/images/flags/cn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E38E465B880898AB4D5AEDEC4EC10C38')),
(UNHEX('53B364C13AB6FF6A722D4994DBC6D346'), 'wp-content/plugins/wordfence/images/flags/co.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D137150E2287F77DB91DBACB80AEB4D0')),
(UNHEX('510931DE95FA6220505357B9B60C9772'), 'wp-content/plugins/wordfence/images/flags/cr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A3227192070BD9EAECBB94FC916DE82E')),
(UNHEX('A09742EA14B8FEFD94C2BEE69C434A42'), 'wp-content/plugins/wordfence/images/flags/cs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FB4E3031A9C6DDC13400A6ECD23B797')),
(UNHEX('9CC50A4B6E45485B845FED8874D91AA5'), 'wp-content/plugins/wordfence/images/flags/cu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8CD1BA37B2F8E9CEBD2D540AA8C4A406')),
(UNHEX('5B688569262EE6E9AA450D02355394EB'), 'wp-content/plugins/wordfence/images/flags/cv.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01350C60800E09F7784AB4EB428057D3')),
(UNHEX('87BA71E0C33E25A3EF3C48DD42250247'), 'wp-content/plugins/wordfence/images/flags/cw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50B9253AE91F1FEA97275F7AB4DC6668')),
(UNHEX('D7C96FF728B8FF519ED33CDA9028F4F4'), 'wp-content/plugins/wordfence/images/flags/cx.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('833A0E8CF108EE0942BE800E32C6D3D3')),
(UNHEX('36C00BB1F4E16A348B315D0F6FBDF4D8'), 'wp-content/plugins/wordfence/images/flags/cy.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C89532C163737279D0383CCA251A2C52')),
(UNHEX('7602F1D1E4E2C3B09A4DA376C33A6996'), 'wp-content/plugins/wordfence/images/flags/cz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD00A81879F37F18A053283138B4C523')),
(UNHEX('C47A6B886EF1516D84F07CC7B8746BCA'), 'wp-content/plugins/wordfence/images/flags/de.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E918AAFF1BCE19D4E629CF09F944BED')),
(UNHEX('14E7F2019FAF867B748C91764F7AD7B3'), 'wp-content/plugins/wordfence/images/flags/dj.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0767E12D0E36B97ED4F0B724DD919EEF')),
(UNHEX('B473462205744FDF938BAE3B5F872A2E'), 'wp-content/plugins/wordfence/images/flags/dk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5AF68EDF446E117E57064DD5BF194DDA')),
(UNHEX('26C467BDC24869869B1F9304289E0EA4'), 'wp-content/plugins/wordfence/images/flags/dm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F0D268C2E5325A11E99565B1A355952')),
(UNHEX('7408F8AA1119C19505E277182A873EAA'), 'wp-content/plugins/wordfence/images/flags/do.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE56D73A45D84705610F58F09714F67A')),
(UNHEX('6ADFE86B1151C1C0C4E09EE5EDAB3027'), 'wp-content/plugins/wordfence/images/flags/dz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE9E9368EE8DAA39AAD758C8C8FDD41C')),
(UNHEX('36A4D44BEF5619D4CED975EB4E00A835'), 'wp-content/plugins/wordfence/images/flags/ec.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE4124CD8A7ABB809088F783F7AA8D09')),
(UNHEX('C871F0F9CF59BFDAC1D7489C22A815D5'), 'wp-content/plugins/wordfence/images/flags/ee.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A9A56465933A31A584C8AC8DC28FAFD')),
(UNHEX('9D416D4B3A0560ECCCE71708190647A6'), 'wp-content/plugins/wordfence/images/flags/eg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9474B17BF02D2F39C94D452DA8B7C322')),
(UNHEX('490E9FE5834206C2D7B937E531542CE5'), 'wp-content/plugins/wordfence/images/flags/eh.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3BD5EC065B1365BE86CC10EFA441754B')),
(UNHEX('0FC0135E5B17E7A2BA921158038423F9'), 'wp-content/plugins/wordfence/images/flags/england.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E535C9E31C5BD1D4572C8FC7276FC5CD')),
(UNHEX('DEBD739EE6A3E39DA240317F693A1AE3'), 'wp-content/plugins/wordfence/images/flags/er.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('96E0415191A2DA0975F156AEA66FBD08')),
(UNHEX('8E363181F44AFC194B90670F4F203820'), 'wp-content/plugins/wordfence/images/flags/es.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66032984A32E3E27D4B5DD529E890977')),
(UNHEX('C7B8B1D2184B2A07DCC575D283CC4176'), 'wp-content/plugins/wordfence/images/flags/et.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07540D50079E8D9EF9CB0088251106E1')),
(UNHEX('023EDF410DB44400E98A7801D60137E0'), 'wp-content/plugins/wordfence/images/flags/eu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E403AD3223CFABF3686BA0AFAA927394')),
(UNHEX('4DFC3A4F47880C17E66479BDD120F63B'), 'wp-content/plugins/wordfence/images/flags/fam.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50C1096115371AE73C8FEA682313F2FA')),
(UNHEX('C0A6C4EC8AA43E0C9002AD08F96A315E'), 'wp-content/plugins/wordfence/images/flags/fi.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11B428FDF34BED14A071AFAE692B9AF6')),
(UNHEX('E6CDBE25A958A65BE67217FEDE5C66F2'), 'wp-content/plugins/wordfence/images/flags/fj.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24946EB420803D7D3C5E285D00E28D02')),
(UNHEX('5C9F8B493ADEC3DAB24558A88697574F'), 'wp-content/plugins/wordfence/images/flags/fk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('54A2B049E0965D1E92ED5110FD0A3116')),
(UNHEX('6F705566FC9BC51C9A318086546552E4'), 'wp-content/plugins/wordfence/images/flags/fm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('746D9827A4984AF2B0CF7495DD1E053F')),
(UNHEX('D66883605F4ADF23DD539B885F2C1F52'), 'wp-content/plugins/wordfence/images/flags/fo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FEFDE5D7F365B39CBC5E4BEF49569193')),
(UNHEX('59D685341E9CF23A2B58AA5B5A1A8FA0'), 'wp-content/plugins/wordfence/images/flags/fr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A1259BFFB27DC832EF4BB8E0B015F3F3')),
(UNHEX('3A22BB8ECC8F255E02EC40EBBF6AF03C'), 'wp-content/plugins/wordfence/images/flags/ga.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E09813C3DC459FF2F8641ACC0F8B95F5')),
(UNHEX('7BC2B501E6B40CC28A360AD721B3C4B5'), 'wp-content/plugins/wordfence/images/flags/gb.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FBD3EAF4143FEED90EE749672A0F1A9B')),
(UNHEX('743B81F8198251F5853C97651DE3DB72'), 'wp-content/plugins/wordfence/images/flags/gd.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AD3F42B6A07ECC9AA85756DA722E39EC')),
(UNHEX('62752F1F7EF31CBDB549D68439EE8DBB'), 'wp-content/plugins/wordfence/images/flags/ge.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B68C0941E211134A0890F3A15BEFF52')),
(UNHEX('766F4658639CC225FEC46D18F92FBFE8'), 'wp-content/plugins/wordfence/images/flags/gf.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2492FC2DE01E5B5389EAAC445DB414B6')),
(UNHEX('25B253CB7C1CEC4F1BC1EE4073810675'), 'wp-content/plugins/wordfence/images/flags/gg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2ABD2A0599D24F7483330CCC876898FA')),
(UNHEX('2CC5E4ECDDDC4D395B4976C22D028951'), 'wp-content/plugins/wordfence/images/flags/gh.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E237C40F4BD47A786E99D5EAD4E5466E')),
(UNHEX('0B8CE99CC30F0EC335ACBA992E3B6CBC'), 'wp-content/plugins/wordfence/images/flags/gi.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B0D5665141810BEBBD1E24F4B2A615C')),
(UNHEX('26A9694EF3244AF1856F46FA722D0F84'), 'wp-content/plugins/wordfence/images/flags/gl.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11F7286B7435CC2A0D0E9269E96CE8FC')),
(UNHEX('5C26C4A8E6666F8596DD8867C6579808'), 'wp-content/plugins/wordfence/images/flags/gm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FED7311308B67BFF8803CD59305DC2DE')),
(UNHEX('9B1CEEFE3128025CD14999F0919C6F68'), 'wp-content/plugins/wordfence/images/flags/gn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BFC92C8FDF13ED97A49D409838588F9')),
(UNHEX('61A323C1E76EDB32666C5C0ECE070995'), 'wp-content/plugins/wordfence/images/flags/gp.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('191EA5EAC2A9D5A819BD6DBB20951B67')),
(UNHEX('E40F768A8B4F0BD49FCF86ED3A447067'), 'wp-content/plugins/wordfence/images/flags/gq.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDD89FA0C02EB3E9ABD4BE986A297122')),
(UNHEX('2DEFBBEA501CAFC8C901550D105B45EB'), 'wp-content/plugins/wordfence/images/flags/gr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CBF9B8F0DA043A7FCF4BDE975A42D7B')),
(UNHEX('FA5EA9BFBDF8456AB246CF819DDE8530'), 'wp-content/plugins/wordfence/images/flags/gs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6220B2A1C90C70B24882BFE97343FF7D')),
(UNHEX('050ECCEF50C68876FBFDBBB88C24E802'), 'wp-content/plugins/wordfence/images/flags/gt.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2705C2D876E971C108E8AC23D6004097')),
(UNHEX('4659B99FBFBBA7245C389392049D5E58'), 'wp-content/plugins/wordfence/images/flags/gu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3CE8FB58C3A379F780C3CC86B240D010')),
(UNHEX('DB39C3E61F5E2BAB7488EBD46BF3F6CB'), 'wp-content/plugins/wordfence/images/flags/gw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0B391BDA4D6A2B84E7FD2B4F4EDF7A70')),
(UNHEX('FE04F96E19B1F138B7C30C9BED9A83AD'), 'wp-content/plugins/wordfence/images/flags/gy.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF849C1D2AB02A0FF72247F47C1B8275')),
(UNHEX('EAE6E86844C355580DF4F5F07C95A5FD'), 'wp-content/plugins/wordfence/images/flags/hk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF72598B46CF668CD2CC8681550137C2')),
(UNHEX('738D17F99ABFC6DFA1036BD7D0B1B2CA'), 'wp-content/plugins/wordfence/images/flags/hn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('311CE1A94595CACF50BB899DEB052B76')),
(UNHEX('896BFDEFBF48CAEBD9ECF07CA0028A02'), 'wp-content/plugins/wordfence/images/flags/hr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97EDDDF01D33F2C9E69CFB95C283379A')),
(UNHEX('25E84A9584C3279A4CA91EE01297D9B8'), 'wp-content/plugins/wordfence/images/flags/ht.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('219621E3BF77DBC4D5B248FDD6543FC5')),
(UNHEX('134C20F10DF22B71BC7C07BC6898957C'), 'wp-content/plugins/wordfence/images/flags/hu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('268C223B643E5D8F7047AFAF40B72164')),
(UNHEX('330AC1563E9BD44F39C7AA9F0999204E'), 'wp-content/plugins/wordfence/images/flags/id.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E11DC7F0474941D33DDC6D4FABA6DFF')),
(UNHEX('B1DD8CDD29C6ABEFCC1225D35AE4FBE9'), 'wp-content/plugins/wordfence/images/flags/ie.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95E7154F26CC2D718C39966646C778B0')),
(UNHEX('3D358D04D0C1404E8AA325BF6DBA9964'), 'wp-content/plugins/wordfence/images/flags/il.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01E1AA5550EEDB4F0A461E7A86CAC2C9')),
(UNHEX('3AF536C04D249EDBCEA25D93706DB6DC'), 'wp-content/plugins/wordfence/images/flags/im.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA3A8F4B2C7DB092BFB4E330520FF673')),
(UNHEX('DD986062317458C2F7131A5AB4204B2F'), 'wp-content/plugins/wordfence/images/flags/in.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A20F8EE0907304FC08BBBE90B259AE84')),
(UNHEX('C011B3B55101D57ED36A4AD11DC28044'), 'wp-content/plugins/wordfence/images/flags/io.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF72FBD2C8D2B257AB9057819C72C91D')),
(UNHEX('52C07035E5C9179DF4A28C12F1536904'), 'wp-content/plugins/wordfence/images/flags/iq.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F58F90B8210AB596D8C1731DBB37BE8D')),
(UNHEX('2F6B0AA8E59597DDCB8138B39AAA932B'), 'wp-content/plugins/wordfence/images/flags/ir.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C06B826E906F5427EEC8DA1CC97B4B5B')),
(UNHEX('CC71DBA9F51686D5098B81CEC18BA765'), 'wp-content/plugins/wordfence/images/flags/is.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60F2AC2999BED21DC7B768A7061B9F45')),
(UNHEX('1958DB322CD249EC45D60B64A37B063C'), 'wp-content/plugins/wordfence/images/flags/it.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EBFEC321B407DA255804B8621B9DCCA3')),
(UNHEX('41F6073CE1B07F8E3FEFD78E63DE51CB'), 'wp-content/plugins/wordfence/images/flags/je.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72CD3BB693AFAD4F305D9534ADB4DF6A')),
(UNHEX('92F1373D81DB24B5BECAE9FF3D68EB8E'), 'wp-content/plugins/wordfence/images/flags/jm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B76ECB72126DCF9336FEC866CC6BA622')),
(UNHEX('5C0E177676DAA177785EB9B434439031'), 'wp-content/plugins/wordfence/images/flags/jo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D38D0182D931FFB2F1A6B1D9DCF357F8')),
(UNHEX('8E5229D4A1A8605067D9B4B7DEAE5E84'), 'wp-content/plugins/wordfence/images/flags/jp.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE5E343E42B1B493D14489F259C282E9')),
(UNHEX('701EF15A561E1B5F09C25D80A16C7BBF'), 'wp-content/plugins/wordfence/images/flags/ke.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F4535A44A5549B4C657F23EDD735AD3')),
(UNHEX('19888F6FD63CAEFBBB497D9C0A7B6073'), 'wp-content/plugins/wordfence/images/flags/kg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16F2B8A5AC0DA5CDA7350714C7E8F3D3')),
(UNHEX('1C3DACB2EEECD14712D9979300F6439D'), 'wp-content/plugins/wordfence/images/flags/kh.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('43267D724073AC9A484CA5C14FF67FE2')),
(UNHEX('5D8018E2B408673E20BAD3A1F71005AD'), 'wp-content/plugins/wordfence/images/flags/ki.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6B3E1C35B832311302BB5B441D267BF')),
(UNHEX('2DDD15CE2E8B7AB065898AB49738E10F'), 'wp-content/plugins/wordfence/images/flags/km.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E276E632FBE16A1ABB4940094E5C06C6')),
(UNHEX('53A5542B29CE9C3CF243E50465B6320D'), 'wp-content/plugins/wordfence/images/flags/kn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4870E4A4288CA922DC49EDE05B1B0FC4')),
(UNHEX('FB8A69F7593A0024B0AF04167ABEF75D'), 'wp-content/plugins/wordfence/images/flags/kp.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0DB38905BF79AB321887AE5984C4574')),
(UNHEX('11A0268C4B872C0B1568C85FCC5280F0'), 'wp-content/plugins/wordfence/images/flags/kr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('721C65E260A891CC1031B96A3F3B8366')),
(UNHEX('8C9E9257337CBCEEE578F5D39572D69C'), 'wp-content/plugins/wordfence/images/flags/kw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B30FF2EF02D74CDDBA61DB66749135D5')),
(UNHEX('B7FCD5F0E862A111B368D6B87B2D7728'), 'wp-content/plugins/wordfence/images/flags/ky.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB8AA48E3EC440E37C67B9489833F2ED')),
(UNHEX('0A196FC70F73E57B0496386F0E59EB3F'), 'wp-content/plugins/wordfence/images/flags/kz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAF1F6B1FE8F7ADF80F4390DA1A9C21E')),
(UNHEX('A598AA744940FA90B4E88B2CE6EB285B'), 'wp-content/plugins/wordfence/images/flags/la.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A8515720FCE9010D1E342002F3E7E69')),
(UNHEX('BE1CD3A8EC3ADF3AF8C79EE8EA4641A9'), 'wp-content/plugins/wordfence/images/flags/lb.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFA407CE488328571E38CE11A4D74A57')),
(UNHEX('61FDF63FF1B45840BE190C808CBE970C'), 'wp-content/plugins/wordfence/images/flags/lc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A31DD56646B7EA6EEE6DA40855EB255C')),
(UNHEX('1BA0A560AA72929DB2169ECEF396B941'), 'wp-content/plugins/wordfence/images/flags/li.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB1E7E06C15B6B22D334DBEA7B91D23B')),
(UNHEX('4E752E86984E33FFB458548BC0F2F90C'), 'wp-content/plugins/wordfence/images/flags/lk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7FA4671179D4F9BC290BE9B2EB76141')),
(UNHEX('EFCE596620F96E8493BED8B111791EE9'), 'wp-content/plugins/wordfence/images/flags/lr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A3A9489789F5E62F63BEF2318827563')),
(UNHEX('24175A3C300661654EBF979C54ADA8C4'), 'wp-content/plugins/wordfence/images/flags/ls.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7478A195F10F45B726CAAE6D920D6ED2')),
(UNHEX('BF6DAA7DA786C315BE91170FFF2B735D'), 'wp-content/plugins/wordfence/images/flags/lt.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35067F932E2556FEE5827A6CEF0C08C3')),
(UNHEX('1639F905F79E41EA06AF8B726D900D58'), 'wp-content/plugins/wordfence/images/flags/lu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB351D9CDAA11C796EB59EC337F578E1')),
(UNHEX('895E4C399ED15A591C86C4FF8433C071'), 'wp-content/plugins/wordfence/images/flags/lv.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('969E43176DF414D3E0B37C932E10845F')),
(UNHEX('68184DAEF4AA78F98F95E568AA18A427'), 'wp-content/plugins/wordfence/images/flags/ly.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE08A743CCB2DBA862237E3C51F1A61C')),
(UNHEX('3FD27ABE1F4F7B398A26EC7E3D76EEB9'), 'wp-content/plugins/wordfence/images/flags/ma.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F2B947EC9A2CD8315025078559B8E12')),
(UNHEX('6E499F4109DE5236D9F109887D1A8B0A'), 'wp-content/plugins/wordfence/images/flags/mc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('280FCD0946AD1D56EC9679C7B12EC86D')),
(UNHEX('9C1D2FD03F9E8D995B784C9222F1BD4E'), 'wp-content/plugins/wordfence/images/flags/md.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28A2D26F6B3D6815BDF0ECDCCF61ADF6')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('3CB47F5EE75EDA693608D4B59D35AB84'), 'wp-content/plugins/wordfence/images/flags/me.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A73BB0BB04C3587B8C7E45592D8CAA2')),
(UNHEX('C9D1E84DC1198CF95B225CDB3A0B50D8'), 'wp-content/plugins/wordfence/images/flags/mg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9EB5A390B1C49A7CDCD464F416E03EBD')),
(UNHEX('787850791FDCAA9F1E108B3197C1AFDE'), 'wp-content/plugins/wordfence/images/flags/mh.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C9F874B115117E5913A43C007594D16')),
(UNHEX('20AD3E0B0C6582919C481F85D9066200'), 'wp-content/plugins/wordfence/images/flags/mk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1E78314BFA19AF4300AC22DA46FB5A5')),
(UNHEX('254A0321D3A65BC92CC37D11569AC795'), 'wp-content/plugins/wordfence/images/flags/ml.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('568DB0310BB2807E65B6E1C478BBC9E5')),
(UNHEX('E6D25D99D85A73A40704401F7E814F51'), 'wp-content/plugins/wordfence/images/flags/mm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75CA6B300249AB025A41669EDE81E36F')),
(UNHEX('DFA5E493BF7E3BABFD5101053244E5E3'), 'wp-content/plugins/wordfence/images/flags/mn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9438E275D6AACCF14ECB1FD08856E60')),
(UNHEX('88A699D066A13C877540CDDCADEEECC1'), 'wp-content/plugins/wordfence/images/flags/mo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66879EA04FFF7F7D3BC3AB0E31B6C01F')),
(UNHEX('8F620295CBED0BB3C28DAE7281F9C13E'), 'wp-content/plugins/wordfence/images/flags/mp.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E58692063BFD41266EC1B99C9DEF843D')),
(UNHEX('2A5FF4F3E74C0B66561E7D9DF978664E'), 'wp-content/plugins/wordfence/images/flags/mq.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FEC8DCB480AA42004840D703B4945A6')),
(UNHEX('402422F38C0D119A66122837A8935526'), 'wp-content/plugins/wordfence/images/flags/mr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAFB25937B19811EA189E76DB35CBE78')),
(UNHEX('6B01ADB84607ACA833D3D0116CC00B74'), 'wp-content/plugins/wordfence/images/flags/ms.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D93E5EFEEDE9B79A2C3C7A87857F58F')),
(UNHEX('BDCD26E0CD4C1421B3E0DC7D566D2060'), 'wp-content/plugins/wordfence/images/flags/mt.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D52645A507CBE6984511FDADE897BD0')),
(UNHEX('D6AE85CA7862FC3DE0348A40EB207425'), 'wp-content/plugins/wordfence/images/flags/mu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50D96827CA16FA8BC9F04110286C19EA')),
(UNHEX('9106090298F05B1030309F37397F7876'), 'wp-content/plugins/wordfence/images/flags/mv.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('917B0E8DF1C129AF6A7FFC4A7B6CC87A')),
(UNHEX('28775AEA429F4EBFE0DAB85D4E535335'), 'wp-content/plugins/wordfence/images/flags/mw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FE53BA552A201DAC1F631DFB4514A76')),
(UNHEX('5A1076387EFD8060ADD6AC12E7FCF65F'), 'wp-content/plugins/wordfence/images/flags/mx.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('145C3FD3FEA161AE88D2ABD54B2FD28B')),
(UNHEX('9A6153F3E9951A4D5B68B27DB72348E6'), 'wp-content/plugins/wordfence/images/flags/my.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6EC5F5ABAE78D17661F1BFFFE9820B7')),
(UNHEX('7FB24A0C67561123EB07938F134F59B3'), 'wp-content/plugins/wordfence/images/flags/mz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22EB34C8ADDE1B84AD9D8E9E0CA3D437')),
(UNHEX('0E71A17F91002EDEB71A6098ABEBD12D'), 'wp-content/plugins/wordfence/images/flags/na.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C018F731F03D0FF85808CF75999734E3')),
(UNHEX('A8CC535154E9A4EA236B13924EEDB077'), 'wp-content/plugins/wordfence/images/flags/nc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('966ECAFEDD4F10948EA978BEC56DC47C')),
(UNHEX('96F302BA2C234E326DA75C18DC626A10'), 'wp-content/plugins/wordfence/images/flags/ne.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCAD8542496E9FDE431895207302DB7E')),
(UNHEX('7A445AFBBFE8D88983B14A70F1D5FB92'), 'wp-content/plugins/wordfence/images/flags/nf.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A593E4EAF30EF33545918A919BFF3568')),
(UNHEX('11487551A8D57B79B5CE0957249020D2'), 'wp-content/plugins/wordfence/images/flags/ng.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E141335B8DC618A0454EBD22D180598C')),
(UNHEX('6434CDD0E52EFB6D9F34D7A216B45629'), 'wp-content/plugins/wordfence/images/flags/ni.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8932FDF7D48F990B2CEF0495E76654E1')),
(UNHEX('66D0AD16EDA44AF236E72D1975BF5D9C'), 'wp-content/plugins/wordfence/images/flags/nl.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9AAEF8BA8904E14BC99EF1E76C0D1EA6')),
(UNHEX('7602829DA225512AD3DFC45B170E4777'), 'wp-content/plugins/wordfence/images/flags/no.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4D292549F1EC7AF57F34694AB35F67E')),
(UNHEX('D74D43B653DA92252C3CB5274CBE91C5'), 'wp-content/plugins/wordfence/images/flags/np.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C2E7FC45DD7E74893F232EEF70F7BC0')),
(UNHEX('69388D4C4FE5B09E9EEA734C3CBAE095'), 'wp-content/plugins/wordfence/images/flags/nr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('37C9EE1A03BFEF121106F804D4B67CB5')),
(UNHEX('27CF2971A184AE5ABC7ADE73313C4C82'), 'wp-content/plugins/wordfence/images/flags/nu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('189BD228DA6D08E0C39F2CF647EF99BC')),
(UNHEX('AD96277980781AFCC17514E6C940DA5C'), 'wp-content/plugins/wordfence/images/flags/nz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('93482F20A65E228AE2F2715C740E8026')),
(UNHEX('A0ADB414F23CCA8D3850005C3D007F2B'), 'wp-content/plugins/wordfence/images/flags/om.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B05AA92C0B3B59AC17D0F48D4F055D26')),
(UNHEX('4C5B4CF3AAD141D50BAE2438C2293B16'), 'wp-content/plugins/wordfence/images/flags/pa.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A13AE0AFD721367EC40B89F3C996ECE')),
(UNHEX('D9DE284DE352C23B6FCDEFDE545045A9'), 'wp-content/plugins/wordfence/images/flags/pe.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B6943C9D3CEE242CFE04452B3CD10428')),
(UNHEX('E303331A7E1073E3B886A831BC38292F'), 'wp-content/plugins/wordfence/images/flags/pf.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9390C7DC53D547BB1EE66988CA85CE9')),
(UNHEX('8781F4CAB127414B22643B82F7F38333'), 'wp-content/plugins/wordfence/images/flags/pg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9C982E0EC25583B7B8145D2B35D01A2')),
(UNHEX('FC5F800F26F6B34F7E39EEFE52AA47F7'), 'wp-content/plugins/wordfence/images/flags/ph.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D98440DCA5CE297B76BBC2189AE1E79D')),
(UNHEX('60DAAE2F5A45F200BA5DE9DC8B339C50'), 'wp-content/plugins/wordfence/images/flags/pk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7002162C96BAD8F0A6E10EDC6BAFDB18')),
(UNHEX('83E2A5221E976DFBE99F9FF8146FA4C2'), 'wp-content/plugins/wordfence/images/flags/pl.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('961581861973A3A1A892ED92912D0EE0')),
(UNHEX('113E85C425ADE87003A81E6D1D0BC4DE'), 'wp-content/plugins/wordfence/images/flags/pm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7A72C0A4BA613FF18AE829EBA46F84E')),
(UNHEX('3A5ABF5785D65FDD2A916966B38B96E2'), 'wp-content/plugins/wordfence/images/flags/pn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('739A3BCE3BB40C4EBBE914B36EE4A998')),
(UNHEX('BDE969E01B8A1D43587FA7D249A10A33'), 'wp-content/plugins/wordfence/images/flags/pr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E949D1644D9B0CFB804EAAEE684AEA23')),
(UNHEX('041CF533AAD608E79997EE4085893CBF'), 'wp-content/plugins/wordfence/images/flags/ps.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1624856D61CA88B7AE09A6B31CE0B6A')),
(UNHEX('76DD65895F61B404CCB48D1E8A89C131'), 'wp-content/plugins/wordfence/images/flags/pt.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01D9D411A2F5B19206543AA7ECFC8878')),
(UNHEX('D9ECC2B953153296DD25FE3D65723E16'), 'wp-content/plugins/wordfence/images/flags/pw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5685E2F93002EE8FB11800184C9EAD8B')),
(UNHEX('219367A2DB87D243CE3B461A9D54EF02'), 'wp-content/plugins/wordfence/images/flags/py.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45BC19DA0AE6DA45E4291AF802E4F84D')),
(UNHEX('92E55469E083AF7199549D6CA2A07DA1'), 'wp-content/plugins/wordfence/images/flags/qa.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7970FBE45B7328701C619CD817CF16E')),
(UNHEX('4FDE3AF032334660A0A0E0952C283207'), 'wp-content/plugins/wordfence/images/flags/re.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('857068022C81EA922C8A69802D0D10BD')),
(UNHEX('F6D5D4A024A481D6BD2A3ADCA5F2D0EF'), 'wp-content/plugins/wordfence/images/flags/ro.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6DA159A350BCB565ACDB45FBB0BDD8B')),
(UNHEX('3FCAE76D66DED80B5CCF2DDB689E3854'), 'wp-content/plugins/wordfence/images/flags/rs.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B6E66E50DC65F41AABE9533CA65FAE10')),
(UNHEX('468488A7AAAC7354AD26FD27EFB7D27C'), 'wp-content/plugins/wordfence/images/flags/ru.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('713F70E9A632CB5EE79925E76B1A23B2')),
(UNHEX('AFBA141B78CA88700E3E936BB54FA07A'), 'wp-content/plugins/wordfence/images/flags/rw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0C5812F54B4BDAE5F6EED51452A506B')),
(UNHEX('A06405E70EAF1423617FF2C938E5C62D'), 'wp-content/plugins/wordfence/images/flags/sa.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57F78BF65C4C6255EC436835E2FB568F')),
(UNHEX('7A6C8F1847E7D9E99C023E3FEE7EB16D'), 'wp-content/plugins/wordfence/images/flags/sb.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E46C3CCA29F39A9A4A9CA6D5C9EBF02B')),
(UNHEX('CBB24A0230A45CF7F38B1456FF3491F4'), 'wp-content/plugins/wordfence/images/flags/sc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF406C2BAD5ED62BDA39025587CBF1C7')),
(UNHEX('3F8517628855DB2C49FC988B84B5C2D6'), 'wp-content/plugins/wordfence/images/flags/scotland.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('14DC08B55935FAFB126247B08C912612')),
(UNHEX('BDD02F6A9DC3D75341F9BA434A468ABE'), 'wp-content/plugins/wordfence/images/flags/sd.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3801DAB6C62DA3A591A201072CD770A9')),
(UNHEX('B8A976121A16EA2995A829606FA37FD2'), 'wp-content/plugins/wordfence/images/flags/se.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC5DF66546DA42E8B32F8F244972FC69')),
(UNHEX('0B8CD1E116E209965E0864F3375B7843'), 'wp-content/plugins/wordfence/images/flags/sg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90401FD3B3876A58F99066C69A2069D1')),
(UNHEX('74EBE29DC3104FA024D2A5AB68A30D1A'), 'wp-content/plugins/wordfence/images/flags/sh.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E0247C313097B6EF9161FD5A4A7C45B')),
(UNHEX('262036FBBAB3ACBABAD3BED2FF31FD53'), 'wp-content/plugins/wordfence/images/flags/si.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0DCF959E357F607DD2E48B85D4258F7B')),
(UNHEX('1057A1AF75FBAE52506249481E17ED01'), 'wp-content/plugins/wordfence/images/flags/sk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F97833DD69EF32660E96F9562E565D47')),
(UNHEX('37A9DA2BEC38F664F6121263AF844024'), 'wp-content/plugins/wordfence/images/flags/sl.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('122E97EA1E426075D42C2624E8F4B331')),
(UNHEX('E6BD826D8846CB3D941BE548B07B4F2C'), 'wp-content/plugins/wordfence/images/flags/sm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('40371166DFA73834CED6F8F6ABA82C65')),
(UNHEX('0E6E5A84269CFAC959774C84BD8B563C'), 'wp-content/plugins/wordfence/images/flags/sn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECBBAFE6F4758A9949BF0EDA8DA90C74')),
(UNHEX('13B302EBAAC4653AA2CCB3DB2084E2AE'), 'wp-content/plugins/wordfence/images/flags/so.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('576340F691793BE3B05726B1D84B9248')),
(UNHEX('2602AF594D52A10BE97A30AD76416F32'), 'wp-content/plugins/wordfence/images/flags/sprite-des-128.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC4CA0B56D84F4EE46EDE651D7CB72CC')),
(UNHEX('054EFB0E9A2D23D85A336B388BB5548D'), 'wp-content/plugins/wordfence/images/flags/sprite-des-16.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('334AB89745BB4534DFCF4D8F606B66C8')),
(UNHEX('48A8CF11DD26023DB5BE07B7AA801C62'), 'wp-content/plugins/wordfence/images/flags/sprite-des-256.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5535029A21423C52DD0B32BD1ED77C42')),
(UNHEX('0CF55A62D5EE57C08965601C9BA19E9D'), 'wp-content/plugins/wordfence/images/flags/sprite-des-32.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('233550619081EA9F66BD271BDEEDCAD8')),
(UNHEX('E19FB5E1870C407E471D35A9FAC632B6'), 'wp-content/plugins/wordfence/images/flags/sprite-des-64.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B0A3446E2923603BD2E5C6A09248752')),
(UNHEX('9166D5E889025586DAAC513702D86CE1'), 'wp-content/plugins/wordfence/images/flags/sprite-des.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('013956C1CE995433A9C8E375AB71228B')),
(UNHEX('D550DBCD1113298BFE33743B95ADDEAF'), 'wp-content/plugins/wordfence/images/flags/sprite-des2.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F61EC74D9764A15457D41363702C8DF4')),
(UNHEX('AA8E77FBDCECD77DD925A2156575568F'), 'wp-content/plugins/wordfence/images/flags/sprite2.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D1E20AC6FA780C4985F9BB7328FE0EB')),
(UNHEX('CCB9394246E8E16886A474F12C3C46BB'), 'wp-content/plugins/wordfence/images/flags/sprite2.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBCCD101E9A3EA02A4B51C03EB6D333B')),
(UNHEX('E76FE0D1E4322D6285740DEF1CE164BA'), 'wp-content/plugins/wordfence/images/flags/sr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41D061BB70B6C44C3C7A75BC12A4C5DB')),
(UNHEX('5C153F2B56915161F21440858FEED46C'), 'wp-content/plugins/wordfence/images/flags/st.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0524B8C9EA0DC1BAB7B87DDCF0C3C20')),
(UNHEX('C86E1BBF08C93934636FBB18F69AC46B'), 'wp-content/plugins/wordfence/images/flags/sv.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12E776386DE66B9A441BC76100EB5336')),
(UNHEX('CD2C3F6867128C63F768D9F9CBA15840'), 'wp-content/plugins/wordfence/images/flags/sy.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C36DC465F7F2EE03645CF3D54D64ECF')),
(UNHEX('35F6DDB59B43F2E51C1CFDFC74123441'), 'wp-content/plugins/wordfence/images/flags/sz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3AA001F039A7592F8D581C39F5F5E40C')),
(UNHEX('56BCB68D9B36A839D17343AA218A3F89'), 'wp-content/plugins/wordfence/images/flags/tc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('472F0FDDE5EA09ADA6B9C8D1D6514A0B')),
(UNHEX('5DA78797750E46118DBE61DBD5D2FC3E'), 'wp-content/plugins/wordfence/images/flags/td.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99390CEF6C3023E6383BB7F63692A0B7')),
(UNHEX('5D413670BCE77DDCC63083D67611334C'), 'wp-content/plugins/wordfence/images/flags/tf.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF2996763D5E9EA1EB349373CA893CB3')),
(UNHEX('401D90F260A575A8AB9966F7BFBC27A7'), 'wp-content/plugins/wordfence/images/flags/tg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E48276DA74A36FB80BF3D55ED4C768B1')),
(UNHEX('A80CEE44AB9BBD4E43C67C5C4B64A537'), 'wp-content/plugins/wordfence/images/flags/th.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('882DF128E46FBD1C0F9129CCC4C66F97')),
(UNHEX('EC3FF4A17E22F111538C992591C99EB0'), 'wp-content/plugins/wordfence/images/flags/tj.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57F76EB0F1B558E3642C440E046A6EC8')),
(UNHEX('C3CC00C2CD6D55AECFD523A8AAF87FFF'), 'wp-content/plugins/wordfence/images/flags/tk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('58B07EB40B9FDC6BAC6469C45C160C13')),
(UNHEX('1571F4F1BA55364A88CEA39C558B493E'), 'wp-content/plugins/wordfence/images/flags/tl.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42EC5CD1585B3B4F007739B4AF209634')),
(UNHEX('68865707A32867DE5FE62C72EA80476B'), 'wp-content/plugins/wordfence/images/flags/tm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF7D6BDDD4B6CFAFF031BB741B07CA36')),
(UNHEX('4967F9626DDE2C61739F597029411E39'), 'wp-content/plugins/wordfence/images/flags/tn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F30E8A336515657AB310D2C18A9EA8FE')),
(UNHEX('A21972DD1BD67929AE767C080FC7D672'), 'wp-content/plugins/wordfence/images/flags/to.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F126A274BE09CBF5EA465F6DD6AAB4A')),
(UNHEX('B31A359456ABFA79931FC68EA4BADCFD'), 'wp-content/plugins/wordfence/images/flags/tr.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4A8FC5F1508EB4A73DE1C5E9D9352AD')),
(UNHEX('CDEE532D35C52D868BCBDC709161A175'), 'wp-content/plugins/wordfence/images/flags/tt.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('14B4C50D33EE97ED7F9E746B3956996B')),
(UNHEX('21C0B6E1C6F341AE3B48FFD61F57F0F1'), 'wp-content/plugins/wordfence/images/flags/tv.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDAA18C206E0F565104B67D09C6C1BED')),
(UNHEX('220AF16B8E22636AEE69F95680A42896'), 'wp-content/plugins/wordfence/images/flags/tw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C8980377D9A614559C833B3BA51E254')),
(UNHEX('3C2A81CDD919297FCD315967ACD0CDF2'), 'wp-content/plugins/wordfence/images/flags/tz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('965D8B90032344E7E81BA56674BD3E3E')),
(UNHEX('5D03FEED988F0F64540FA08CD1274AC8'), 'wp-content/plugins/wordfence/images/flags/ua.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC409A731FDF17919E0C4A8D849B94C4')),
(UNHEX('2E387B27934FD8320EE069F8784351A5'), 'wp-content/plugins/wordfence/images/flags/ug.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D2B596B534998A2E42D40175E376EE8')),
(UNHEX('3A4363C28F2AABE0E52DAB7C6134989E'), 'wp-content/plugins/wordfence/images/flags/uk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2831C56C86F20386C705CFC86642C18E')),
(UNHEX('A5BEEC7F7963B2250C3ADECBFAC86FE1'), 'wp-content/plugins/wordfence/images/flags/um.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D47D800092DEF6BA71E5B06C4D6D487')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('987DC9F233B328C337669C0DC0C84B64'), 'wp-content/plugins/wordfence/images/flags/us.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5C5814262E7F1B7030B8DF02FAA2778')),
(UNHEX('5C2FE6E057222DFD89AACEA4310571DE'), 'wp-content/plugins/wordfence/images/flags/uy.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7243BC9EA5E0D3B3D641174CF415A729')),
(UNHEX('662722590EE8E3EECBB1CE0256F6EA98'), 'wp-content/plugins/wordfence/images/flags/uz.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E7A6C7659F4ED69368129367C63343B')),
(UNHEX('04FCDD089721FEB97A88AC8683A78A34'), 'wp-content/plugins/wordfence/images/flags/va.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D07229D370F4A0D882110BE11A743300')),
(UNHEX('67EC783815B2AA504D8BE3FAE2C76FA8'), 'wp-content/plugins/wordfence/images/flags/vc.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('186A4622F27BE5CBC51CDE7C30D11E9C')),
(UNHEX('11F991C813879DCAB13177AF81425F2F'), 'wp-content/plugins/wordfence/images/flags/ve.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B59F5574F87639481F751A2A615C509D')),
(UNHEX('E9A3E25370B1EC2AC781ECCD618CB3D1'), 'wp-content/plugins/wordfence/images/flags/vg.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E557D00AF2414BAD5A8939200BA757E')),
(UNHEX('609A126DE4F65BE9B4A1C6BF1C6AF9AC'), 'wp-content/plugins/wordfence/images/flags/vi.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C28D5DB7E294ED253CFA21BD4A19CEB')),
(UNHEX('DDDCDBBE967FFAB453010E2985398B07'), 'wp-content/plugins/wordfence/images/flags/vn.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D350A2A8E1B3977677DCB6FFA650546F')),
(UNHEX('20A353DE20D21BD3E897686E5564D178'), 'wp-content/plugins/wordfence/images/flags/vu.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('87200EE875256B047B936D1FCDA22875')),
(UNHEX('CEB5F6C1FD60ABB3748D760E18A3539C'), 'wp-content/plugins/wordfence/images/flags/wales.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A89EBC1992CE3A543D56F7BD77FF076')),
(UNHEX('8B04F74487818B23498D61342A784D2C'), 'wp-content/plugins/wordfence/images/flags/wf.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F1463E9B615AC159A20206B3D894F95')),
(UNHEX('604F28BA471337ACAB1B8060099F4D40'), 'wp-content/plugins/wordfence/images/flags/ws.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4C004E8BE0DE163D48828E4F1DF97354')),
(UNHEX('0E7EBEACCAE44F55CBEABDCDCACED0C2'), 'wp-content/plugins/wordfence/images/flags/xk.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5DEC47D76CC4DD7D24F335BB498ED3C4')),
(UNHEX('2CA637B50C6D3D693060A4D1402A0B5C'), 'wp-content/plugins/wordfence/images/flags/ye.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34009A37F843034B9E7B441210185929')),
(UNHEX('DD8F393706583CD4B98F2F896A5C80DE'), 'wp-content/plugins/wordfence/images/flags/yt.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F6CA8985F77254148791E6006889E5B2')),
(UNHEX('5B8D6B14EB587F74DAC7394E740187BF'), 'wp-content/plugins/wordfence/images/flags/za.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA704368990E0F2201DA9F2EE2DB33B3')),
(UNHEX('79F3358A315CB46D133E08E7F3A847FF'), 'wp-content/plugins/wordfence/images/flags/zm.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EFD66E7CC7CFB77B3E63E6CD2D1E52BD')),
(UNHEX('21F178A873BA89430970F0685E3A26FC'), 'wp-content/plugins/wordfence/images/flags/zw.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A14090C074D9A51BD91D43E71510DE8')),
(UNHEX('2EA645C71D5B4AF5CF6C039E781DDFE3'), 'wp-content/plugins/wordfence/images/forward_disabled.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D5FDAD65A3FDA4E29BAD28AEA3ADC35')),
(UNHEX('98006814EE94114B669511018D00F0F8'), 'wp-content/plugins/wordfence/images/forward_enabled.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55002F336534651399CFD70B8308DEF6')),
(UNHEX('15FBF7DEE7AA92B775A3A10D5A4A572B'), 'wp-content/plugins/wordfence/images/help.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('244EC7FC3B27FD874DCFCFF9F2205901')),
(UNHEX('D998DD2250B4DC9EF7C62C83171CA9D8'), 'wp-content/plugins/wordfence/images/icons/ajax24.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B3AFB84B2B71EF56DF09997A350BD04')),
(UNHEX('278B16FCBB9E20986FC8138DCD539D8A'), 'wp-content/plugins/wordfence/images/icons/ajax3.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D1877DFDFB474EA8D93270AA4F1ED73')),
(UNHEX('A1EA79EE1326619241A037C25D0E446D'), 'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4CFE025BABBA9420A670FA03285893B')),
(UNHEX('BB06D202C934FE991CF589F93D8EB811'), 'wp-content/plugins/wordfence/images/icons/ajaxScan.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91CA96B4D1B4ADF77E66FA0EFA9E69C1')),
(UNHEX('6A26BA563199ACAE36139334AAAFEBE2'), 'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE1CEDE97289C13920048F238FD37B85')),
(UNHEX('28782A4AA0FB852C854CC39B6EE73C4B'), 'wp-content/plugins/wordfence/images/icons/arrow_refresh.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B95778460F660AA7C08F47D244780A7')),
(UNHEX('365B66C039B83F869307171812205FC7'), 'wp-content/plugins/wordfence/images/icons/bullet_yellow.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A26FBDED3C98C8AFD0FECEED494513C')),
(UNHEX('5DA5A4CA2A85A48F0C85FF038F4A0B96'), 'wp-content/plugins/wordfence/images/icons/email_go.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAAA6ACCD945FCB4480B29AB2E15BDED')),
(UNHEX('A0B88B08876025FA927BCDFCD22B9BF3'), 'wp-content/plugins/wordfence/images/icons/error128.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C93ADE152513130E37F721C1B4042ED1')),
(UNHEX('7AA235B72A1A41445A436BACE16AAE92'), 'wp-content/plugins/wordfence/images/icons/magnifier.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A81FA78D754FAE7B3A71026356E3EE27')),
(UNHEX('AFCEA17ED7DF93FE3AFDE8E0C2F8656F'), 'wp-content/plugins/wordfence/images/icons/tick128.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5C49F8BF86319B7680B3422E8DD10AB')),
(UNHEX('FF3B0860BA2472E79FCBD124B39EA63D'), 'wp-content/plugins/wordfence/images/icons/warning128.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70CF47C01949D7742AF693C6CA4E703D')),
(UNHEX('AA58E0E1401BC1D425BD310C4384C169'), 'wp-content/plugins/wordfence/images/lightbox-controls.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D6D135DBC6192AC0E955C24C9048F1F')),
(UNHEX('83A83F08E70EACDA7A36A497DB61447A'), 'wp-content/plugins/wordfence/images/loading.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B3AFB84B2B71EF56DF09997A350BD04')),
(UNHEX('FD4B056AF21818E2AA160B68BA91E8F9'), 'wp-content/plugins/wordfence/images/loading_background.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ACF427E932FB9413700A4B8B58B41EEC')),
(UNHEX('EFBE9802518CB9A97FF7B429420AEB2C'), 'wp-content/plugins/wordfence/images/loading_large.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8259BCAE7B114F628955577EBC59CB99')),
(UNHEX('1873E299BC7B4452CC5BA56BD931FB49'), 'wp-content/plugins/wordfence/images/logo.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82FC939A27143925287764F4B268C9FE')),
(UNHEX('EA181556072C94EF553318A6DAEA13BA'), 'wp-content/plugins/wordfence/images/rr_premium.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DAC5229B3320152CBF32D2180519A402')),
(UNHEX('102302390D5075044C6B30A6AE6B55D8'), 'wp-content/plugins/wordfence/images/rr_sitecleaning.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('290D009994D0FFC6D2298D15AF35DFD9')),
(UNHEX('E8F287F251CB6FB5482A04B982C028EF'), 'wp-content/plugins/wordfence/images/sort_asc.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2CB8BB49A7C52BC6BEA0EAFA7F3D80FC')),
(UNHEX('C96C589477C1F3014207F52A58A757F1'), 'wp-content/plugins/wordfence/images/sort_asc_disabled.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F7FC9A7C5FECD2AD25812FFB2DB3965')),
(UNHEX('3F59768E71015FEA7F97FFB3DBAE584F'), 'wp-content/plugins/wordfence/images/sort_both.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C5E1250CD942AC511678C153562E1044')),
(UNHEX('37C063F72E0C245021D7228CF2B99A86'), 'wp-content/plugins/wordfence/images/sort_desc.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A93C84AED56AFF8C5FB3CB8A04529D32')),
(UNHEX('787997210EE0F8F471C129F62ECB8922'), 'wp-content/plugins/wordfence/images/sort_desc_disabled.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE6D8E848695CD9FCA08E472D1D62039')),
(UNHEX('3A6D77764B0DFF9E9491825A898C7E7F'), 'wp-content/plugins/wordfence/images/wordfence-logo-16x16.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('59E97E462CA24E387AD0D418A8FA4F32')),
(UNHEX('460BE00FE84FDBA3A0FFD4FFE7EB6790'), 'wp-content/plugins/wordfence/images/wordfence-logo-32x32.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF17CC1540DBAF49EBD80BEDDF7555D0')),
(UNHEX('6ADABFB474D8C13175A9AC867DA3A7BE'), 'wp-content/plugins/wordfence/images/wordfence-logo-64x64.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11765EBC49EA4E2FA9C86740F6905C75')),
(UNHEX('4584BB28FD7A5241313B654EC7714433'), 'wp-content/plugins/wordfence/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32C101E865D8C2C2AAADEB5CC6C16F67')),
(UNHEX('9186DEF0562FD6BE9BDD05A45F9C3DE6'), 'wp-content/plugins/wordfence/js/Chart.bundle.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAF1F3355D948A64EEC0A0FB648066DD')),
(UNHEX('373C4CBE55338439AD5455B533C68F73'), 'wp-content/plugins/wordfence/js/admin.ajaxWatcher.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9934423B30B2DC66CB3D5369C31D1536')),
(UNHEX('E9221206F0A2D35B125109D8C3C205F0'), 'wp-content/plugins/wordfence/js/admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6ECD2352C7D4A2F3E99981667A117C6E')),
(UNHEX('A2DDC1F3F20CB5A02C7B48F6ECC4AC71'), 'wp-content/plugins/wordfence/js/admin.liveTraffic.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46CEE50EFB7541830D5888B397E3B9AD')),
(UNHEX('5B51224142622E51D0C806CCE7843A81'), 'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F85CED23FE6B7A9B9CAA97BC08EC495D')),
(UNHEX('177710CB41C92F09A2FFFEBBC4895C71'), 'wp-content/plugins/wordfence/js/jquery.colorbox-min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('343F4AC783B347FD60920AD64ECA786C')),
(UNHEX('99E1454E191830CF7FA116951CDC0C36'), 'wp-content/plugins/wordfence/js/jquery.dataTables.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6147CCEE7AEF9DC0C6EB10D8D7B311F9')),
(UNHEX('68907ED0E8947880AD6068FB0B9A7E3F'), 'wp-content/plugins/wordfence/js/jquery.qrcode.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05F0B1D7D4B9B0B4975870606D650E3C')),
(UNHEX('611AC8639F9DB3FC7295321BE404F4AC'), 'wp-content/plugins/wordfence/js/jquery.tmpl.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('805C7DC322A386178B37DAB79295445A')),
(UNHEX('B1FAB395CB84987606EFD82BB96E47D3'), 'wp-content/plugins/wordfence/js/jquery.tools.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D13A0E2DB7E10645D5A078A124E0B842')),
(UNHEX('4865307C9D11F2F1D4F3463024D895FD'), 'wp-content/plugins/wordfence/js/knockout-3.3.0.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2D65FF1C1198342386C635EE984D207')),
(UNHEX('F9A9805869125531608EB25D8293EB93'), 'wp-content/plugins/wordfence/js/perf.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7551F722CA7746F7DCE11752141F4070')),
(UNHEX('7DF330B7A235B09FFE4D02A65A9FEE8A'), 'wp-content/plugins/wordfence/js/select2.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('206247DE2E69FECA540152F21355B017')),
(UNHEX('87DA157992F82FEBF6647A83516794B5'), 'wp-content/plugins/wordfence/js/tourTip.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF87F4E1DC673EEC9D90319ADAE13A7D')),
(UNHEX('ABF67C824FE674787CCFEA8CA4A5CBD8'), 'wp-content/plugins/wordfence/js/wfdashboard.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9A3D4BDAC509FACB0CD60DF1D7B69B9')),
(UNHEX('47235940EB5B728E137A8369DAE531E5'), 'wp-content/plugins/wordfence/js/wfpopover.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3BE30C266DAD0B41C4686C4D06505A58')),
(UNHEX('528EB51CFA313F99FB8859D3564474BB'), 'wp-content/plugins/wordfence/lib/.htaccess', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B749A07A7ED269B62C1B4C9EFFE81E04')),
(UNHEX('1C9FB827FA8F4645109F419676514D76'), 'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E0DB019C3355D78564919D6278C69B5')),
(UNHEX('790C8AAD813189E22DE8862F6649D7A0'), 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86C2B188E2DD748B5432A6792570BC07')),
(UNHEX('EB2D6EEA242EFF230B0B6725C47DDDF7'), 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70B4FE80751551F884AC3A20CC04042A')),
(UNHEX('60BB6330AF089ED95CF9E2EB9533E68D'), 'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('894FD22225C3A914BE4FB2445ADE046A')),
(UNHEX('DB964A8F427785431198A17C7F4DF476'), 'wp-content/plugins/wordfence/lib/Diff.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('527CD024B9C8ECE7A9563B50E093E2D9')),
(UNHEX('D3261129032DC3A2AB1A088DCE999570'), 'wp-content/plugins/wordfence/lib/GeoIP.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CDE9EF1ED0BAEA1DC68E20F60AEDD36')),
(UNHEX('9567EF5254364B58C6D217EF93D11AC3'), 'wp-content/plugins/wordfence/lib/GeoIPv6.dat', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B975EF15640EF37C78AC40CD021E225D')),
(UNHEX('D6CF4A1DD8FBEF21AC5B5736DDA7E9FD'), 'wp-content/plugins/wordfence/lib/IPTraf.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4EB7DD84ADD3EB0A8710E97411D28DB8')),
(UNHEX('4B15BE8D06E4F7DFBAE186621CA41C13'), 'wp-content/plugins/wordfence/lib/compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3FA3F48C459F80185012F3299A63F54')),
(UNHEX('80A917F25350D33B5EC6AD1C7A90DF49'), 'wp-content/plugins/wordfence/lib/conntest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('916A9806CF2282E8A67FACBCEA1E720D')),
(UNHEX('83F766A04ECA649AA9B48F814CFAFE01'), 'wp-content/plugins/wordfence/lib/cronview.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF576ADB9ABB0807E6A2FED6C1D9854F')),
(UNHEX('1AB53B35F51C1328819E4FF24FD652AB'), 'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('171BD0354C2C0C7BD78488933A1029BA')),
(UNHEX('B2F97A766F3AF8B7DC1442259ABAF0F5'), 'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B254F94C5E829FE3B1CEC2D95C730B9')),
(UNHEX('0DD297E872D7BE8820C103B9CE0A9C1A'), 'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA2A187697C59C8665C2C514E84676F8')),
(UNHEX('BADF24E1846F93AC31D60F54B3325D6C'), 'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('240CF987CDCC59DA40C78164A0B9C5BC')),
(UNHEX('5773E5E7067B4ECE685097729AE3BCB1'), 'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFB60EBB3AFA70F8FEB25EDE99962613')),
(UNHEX('0865D89FF776A48B14E3E7ACAA8B456A'), 'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2538D66CD5CED5BEF407FDF0817785DD')),
(UNHEX('089F13FA834CE2D42E8F0ADE01773B5B'), 'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE21C124CA371B3DBF8720BFF6BA6B8A')),
(UNHEX('F2753BC88C30E5719477AA9C3DE0DF0C'), 'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC8755F8A8DCF350824AB42578B4EB18')),
(UNHEX('6B3684FEA02AE2DCDF489C098C75D9A1'), 'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DF066BE3F4BD903E743B5DED6A9B28D')),
(UNHEX('05F5EFB4E2B75C5EBC732CE87A281918'), 'wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F90159B5868649223D82CAD17BC92863')),
(UNHEX('BFBCADC7B7AE95ACB58FFAB50A8248B9'), 'wp-content/plugins/wordfence/lib/dashboard.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C81783EE6CCEA7A104B4B7FEB62A75B')),
(UNHEX('FBCCC3F63652692A358EF0C1C414C3A6'), 'wp-content/plugins/wordfence/lib/dbview.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A6C0AE281E449865838E64AB3AA15D18')),
(UNHEX('CD29C4C503E4F2009F65875FD4353DAB'), 'wp-content/plugins/wordfence/lib/diffResult.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4959C10C855938865C40B73664277223')),
(UNHEX('230A1CC1F42F86DB505A177E6884CEF8'), 'wp-content/plugins/wordfence/lib/email_genericAlert.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46B242AC2140B4B166E1902D41EEDCD9')),
(UNHEX('139BBBA0C60FED4665B1093504375BE9'), 'wp-content/plugins/wordfence/lib/email_newIssues.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E9DA0E3C6A99A6E3CFF4A7CA99BAB527')),
(UNHEX('CCE4A5742B8CBB894E2DA8CC92B0881F'), 'wp-content/plugins/wordfence/lib/email_passwdChanged.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F549774BFDB76D4B617BC4AFE20E3BA8')),
(UNHEX('27BBE23FB768CF097DFA13590049470B'), 'wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13E82A7F9C4773A3577F63C8901EE233')),
(UNHEX('D7E45ECB75A9ADE2CB7D9D47BBD41514'), 'wp-content/plugins/wordfence/lib/email_unlockRequest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B620DA45DB0632382E11363352BAEDB8')),
(UNHEX('24E407CE2D237160D06C81245784DB89'), 'wp-content/plugins/wordfence/lib/live_activity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3AFA6B162A243C439A910F7EDDA95596')),
(UNHEX('8E524C5392662CFD4095884C3D10EC2E'), 'wp-content/plugins/wordfence/lib/menu_activity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29BD30ABFE70EB8ED28EF6BFF19D4EF7')),
(UNHEX('4661DFE3D1233C0513F7B02624D2D83B'), 'wp-content/plugins/wordfence/lib/menu_blocking.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('527E8B720BCAE4B6B0C25D5E43BD95E8')),
(UNHEX('3C49E923F16881CF3239B0E49BC0F7E4'), 'wp-content/plugins/wordfence/lib/menu_blocking_advancedBlocking.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52E46601EA55A6B3F0AA7733F44AA7CC')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('AA446C130395D6B9987253B29C18183F'), 'wp-content/plugins/wordfence/lib/menu_blocking_blockedIPs.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E90394269E29C8432E325D21BB59E42B')),
(UNHEX('3B7D79689D94D56834E1E3DBAB16081A'), 'wp-content/plugins/wordfence/lib/menu_blocking_countryBlocking.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6EDE7CECB763C8179679ED5DB6F94175')),
(UNHEX('F264ED54016FC8668BF6D2B7DC621853'), 'wp-content/plugins/wordfence/lib/menu_dashboard.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F66406DCFA539E45C1EE80B3A520DBA')),
(UNHEX('AE1257AB87B57F50E697835E71F07980'), 'wp-content/plugins/wordfence/lib/menu_firewall.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD151078E855687CB4FA7948AA24DB72')),
(UNHEX('23F3C0BE5344AC635987DDE7EB5051A5'), 'wp-content/plugins/wordfence/lib/menu_firewall_bruteForce.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4FF03CCF043946B3C05224B47195906')),
(UNHEX('D5D2037DA1071FA24621A4BC2B0DB79D'), 'wp-content/plugins/wordfence/lib/menu_firewall_rateLimiting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60CFF427D22B2281950748853E4DF118')),
(UNHEX('3663C06286A36B6BB7D66933B940FA48'), 'wp-content/plugins/wordfence/lib/menu_firewall_waf.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1276D710D080164266739917A0A08E3B')),
(UNHEX('BA574DED8ACB7B68A916F8DAC0289D9E'), 'wp-content/plugins/wordfence/lib/menu_options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFECBC04CB602FB06E059C3ED0B86B29')),
(UNHEX('B336630F491DFB0940DB9E6F8EEEF3E4'), 'wp-content/plugins/wordfence/lib/menu_scan.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C7A5F8CDAEFFC2E48F7A344FC610ECC')),
(UNHEX('7CCCCEF95E52CC9FC7008929C36A403A'), 'wp-content/plugins/wordfence/lib/menu_scan_options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('781B548C2CFC5A7FA3A46E40ED0F9391')),
(UNHEX('6E2335A79F3BD2EA1395CDEB2D7DF42D'), 'wp-content/plugins/wordfence/lib/menu_scan_scan.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EB66903FB6555901E456686D58A35CA')),
(UNHEX('A2873519AE9DAEF5DFA10F465ABA18B3'), 'wp-content/plugins/wordfence/lib/menu_scan_schedule.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F4189A9C084A0A3DAD1A717248F9D52')),
(UNHEX('9D7F6FF76AF98B13C905BB79E61DA956'), 'wp-content/plugins/wordfence/lib/menu_tools.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('999AA325252224E725A22F7CDC558018')),
(UNHEX('21A7232373773A0D1D482AB224717FF4'), 'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F33C8D61CD7055B56D1BEE793B814385')),
(UNHEX('B843ED51B4CBDE2BFC282C60FE6C670D'), 'wp-content/plugins/wordfence/lib/menu_tools_passwd.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('233C927458DABDB11F3C10C03144D627')),
(UNHEX('40D84CBDD6DFAF37BBD9AD6BD9824519'), 'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E64DA1E7B7075C57E99B6AC6C15DBCE')),
(UNHEX('43FAD8735CA70AF296E0DA738ED5276D'), 'wp-content/plugins/wordfence/lib/menu_tools_whois.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D9E4450955D15CBE489A757B06B2BF7')),
(UNHEX('9D23F5F43EE4AB08ED9112D286C34B6C'), 'wp-content/plugins/wordfence/lib/pageTitle.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD5D931388DE13CBB881336E6053C05B')),
(UNHEX('7ED3A4C377EC4ACCBC0384BF07A12EF9'), 'wp-content/plugins/wordfence/lib/schedWeekEntry.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('44D431BF0444319F9FC5E6B9E4202E56')),
(UNHEX('A3DC0346A6B2998D987B0F90ECB4FD41'), 'wp-content/plugins/wordfence/lib/sysinfo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A69EF54B41054326B55FA7DE58AD9A4')),
(UNHEX('FF87B7D64D7E0404EB5E78F9BC3B87F0'), 'wp-content/plugins/wordfence/lib/unknownFiles.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41D17BD1C9EE1055C0EAD07AA45B8AD8')),
(UNHEX('4C52023751BCE416546F08477CC41E7B'), 'wp-content/plugins/wordfence/lib/viewFullActivityLog.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F887B67A9072F43BB1129FB90828EF3')),
(UNHEX('C1D9B50A68B6CD4A78B56476CFD4835D'), 'wp-content/plugins/wordfence/lib/wf503.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A818FC2837B59E07E8E0D4E648A1BDEA')),
(UNHEX('BEE132185D6871753ADE543645D155B6'), 'wp-content/plugins/wordfence/lib/wfAPI.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6DA194159DAA35B308AC1F45DDC9EFBB')),
(UNHEX('0E1523E796ADDBADAA76220BFE974DBC'), 'wp-content/plugins/wordfence/lib/wfAction.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('40E292D35F05CFEDAD85F2B5C93E6A73')),
(UNHEX('C98638A8C2D6C070C5BBD1B5020756FD'), 'wp-content/plugins/wordfence/lib/wfActivityReport.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0419F7D56D5625F97539CE68948D795')),
(UNHEX('DEDE8B19B3AD94310446F3F8EBDB6193'), 'wp-content/plugins/wordfence/lib/wfArray.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13FADA65A66D79B88656F44DBC1AACBA')),
(UNHEX('1CEA2D3D5115B04377E0746E4CE0A123'), 'wp-content/plugins/wordfence/lib/wfBrowscap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('80E4510F3F53586C86B534B65AF5113E')),
(UNHEX('AB17D0E8125890920FB0D8024AA0FC70'), 'wp-content/plugins/wordfence/lib/wfBrowscapCache.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21D09F9174B73460E0A34B4B8D5470B3')),
(UNHEX('E4EA1FBF31FE5DC34D7CAE4B1DD4465A'), 'wp-content/plugins/wordfence/lib/wfBulkCountries.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F7DDAC3EC084DEC8AB1A2B3F25F2339')),
(UNHEX('1090B89CD2912DE8CCF48A0D8A7B2CEF'), 'wp-content/plugins/wordfence/lib/wfCache.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('283162A8CC22333AF921E1AC606B74F4')),
(UNHEX('5A34063C6E3F7F6598F11308B2198D8F'), 'wp-content/plugins/wordfence/lib/wfConfig.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A8F2F656D3408D61D7B0516E11E1803')),
(UNHEX('B2FD8D4203B904365B738F964DF77F18'), 'wp-content/plugins/wordfence/lib/wfCountryMap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D68461F9333C7D00BAC6BDD3B03B475')),
(UNHEX('38C39B5A459151247D185550F654A3E0'), 'wp-content/plugins/wordfence/lib/wfCrawl.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D4C85E37F05E4552F10E5B86D60411A')),
(UNHEX('D878BCF8CEB2D0A6ACE0A841098A3CEA'), 'wp-content/plugins/wordfence/lib/wfCrypt.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9CA9C157B4ED6B7CB8D329FEC192342B')),
(UNHEX('D94AE01CEF9A5E1A37FC957547966B2B'), 'wp-content/plugins/wordfence/lib/wfDB.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('079A63278977380B8B591399FD58783B')),
(UNHEX('690C818AEDC76B6D4378FECAB7CBF2F9'), 'wp-content/plugins/wordfence/lib/wfDashboard.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('331E4B33BC343970D24638E497C53CC4')),
(UNHEX('6C39E97FB93DAFFC68C72C3ED9C3E726'), 'wp-content/plugins/wordfence/lib/wfDiagnostic.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E31820F6AB1BC6828B7486B0E887322')),
(UNHEX('F546A4EB1AC193E71EAE43FCEC31AE50'), 'wp-content/plugins/wordfence/lib/wfDict.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('052A90EE1736411C7474EBE623C31314')),
(UNHEX('BAEDCC4130668EFD6660C2204BC7817D'), 'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECBC987E645BB5214C95B841BE2FBD39')),
(UNHEX('3D1E391E299C911EAD29C25C1FD51596'), 'wp-content/plugins/wordfence/lib/wfGeoIP.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1A7232F35A4E45825408C415BBA51A7')),
(UNHEX('71BE863540A32A3DF52610B4E65C58E1'), 'wp-content/plugins/wordfence/lib/wfHelperBin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3BEFD72117B7C88DCBC93451D5DE5823')),
(UNHEX('50C64DEE1AD649CCB88D10DDAD596072'), 'wp-content/plugins/wordfence/lib/wfHelperString.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A14F5688466144118E56DE349834DCAA')),
(UNHEX('69E16BECF1AD12BD43F110ED541C2CEC'), 'wp-content/plugins/wordfence/lib/wfIPWhitelist.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6989A5F4617CB3C2300CF40AE235E061')),
(UNHEX('D36A7313A49E7732F9EC1270AEFD7153'), 'wp-content/plugins/wordfence/lib/wfIssues.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC91AB91095C24A213C01C82E638A6D8')),
(UNHEX('F38AD8A05DD4669588F050F4A2860483'), 'wp-content/plugins/wordfence/lib/wfLockedOut.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8A97F22F98B79788D657222C281E494')),
(UNHEX('F2DA77CE2B07222BFA24E319AC5E1CB8'), 'wp-content/plugins/wordfence/lib/wfLog.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60798B0F43262F221E8ED60EA28F5771')),
(UNHEX('A85CC7FD0168FB20529F58D53CBA43AE'), 'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47FE2C0F96B2CEB0D3C0E01417DA8FF7')),
(UNHEX('8C0874C7B12510149812FBA391B5DA46'), 'wp-content/plugins/wordfence/lib/wfNotification.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('250C34F65B4653E725AFE066A4515295')),
(UNHEX('0612186D11C971506F4430E22ACDD84C'), 'wp-content/plugins/wordfence/lib/wfRESTAPI.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4645821EB957B3222A9F37DC16474A1F')),
(UNHEX('7F5E6BBFD6AA44760E07053605975290'), 'wp-content/plugins/wordfence/lib/wfRate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('817C5C13588345B19FE0900AB457EE00')),
(UNHEX('EFDE8C742BE95CF52BC65861865A551B'), 'wp-content/plugins/wordfence/lib/wfScan.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB73907E4B9BB85E216877ACF1B90A5F')),
(UNHEX('EFEF365887D4AA34F1E35B5F879D3D74'), 'wp-content/plugins/wordfence/lib/wfScanEngine.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E57185C0861314BF5F076D618F87EF1')),
(UNHEX('62CA03A5F1487A665798A085AD67779B'), 'wp-content/plugins/wordfence/lib/wfSchema.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2568C470EBCB382696BA0CE8B1D4EE5')),
(UNHEX('D5F54B323BE63C4419A6AE87836B7562'), 'wp-content/plugins/wordfence/lib/wfStyle.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5A233533CBE29BA2DD2F3FC4CC8CD2B')),
(UNHEX('9AEA8A688B4C8DBCB24A48FF58230E30'), 'wp-content/plugins/wordfence/lib/wfUnlockMsg.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E680D3EC15BBBE63F5267FBA9ED5465')),
(UNHEX('89AA65C45CABD431E174C68BDC3C0984'), 'wp-content/plugins/wordfence/lib/wfUpdateCheck.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A40BA0F234F4C66C630ED2F2AB569D43')),
(UNHEX('A8511808340439E3F31E4C7AD3144AB5'), 'wp-content/plugins/wordfence/lib/wfUtils.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('665FAEA2E42DB7C175FEB591B2FE094B')),
(UNHEX('E565C590C2FAF4FCFD6E03B7859F41DB'), 'wp-content/plugins/wordfence/lib/wfView.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E287B22AB821FC50D3277CFA16251AD8')),
(UNHEX('AACBD9767B43ABC0BACED2A7808E3449'), 'wp-content/plugins/wordfence/lib/wfViewResult.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09714E0BC1ECBA4B383019C14FABB71D')),
(UNHEX('0FC7DDA13DBDBD4E7817BC874BD4602A'), 'wp-content/plugins/wordfence/lib/wordfenceClass.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61E0455937A1F7B1EFBC1A325C991B9B')),
(UNHEX('C16B486DE531D30EF36030D1B9AF965F'), 'wp-content/plugins/wordfence/lib/wordfenceConstants.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A2240B74C6FE0AEDB23C6E13D1F2DA6')),
(UNHEX('81D558F9E2CFE02D9F34A44AFC5F8333'), 'wp-content/plugins/wordfence/lib/wordfenceHash.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A1037DCA9E43427699739559CCC48BE')),
(UNHEX('1C7A987C2A369E19535C0235B7E3AF33'), 'wp-content/plugins/wordfence/lib/wordfenceScanner.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5FC28182C5850155DB9FE9512DA1943')),
(UNHEX('68BB3CB25D9394EC4F704E4305C6B4E6'), 'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42C1EB4BFAA04886674921F65EE0A489')),
(UNHEX('BF76E997464997CB3268B4CFF8A46EC1'), 'wp-content/plugins/wordfence/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F162EBC6CCAA3C77689B034DE58143B')),
(UNHEX('EF3B0C4CE17489D7AC43B0839094C9A3'), 'wp-content/plugins/wordfence/tmp/.htaccess', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B749A07A7ED269B62C1B4C9EFFE81E04')),
(UNHEX('3D539636C86114B09F03586FB02C9432'), 'wp-content/plugins/wordfence/vendor/autoload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66EA5C6FC51CE209CAE86A6B5F131C7F')),
(UNHEX('5F03A36B34E9F7B7212A7D8882DD8420'), 'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E420CBF8BC3C56158E3DCD277613B03')),
(UNHEX('A230E1C126A559A9EED51CA0D513C1A1'), 'wp-content/plugins/wordfence/vendor/composer/LICENSE', 1, UNHEX('00000000000000000000000000000000'), UNHEX('084A034ACBAD39464E3DF608C6DC064F')),
(UNHEX('2230C2720F4E314D95E1E4239EA0E1C0'), 'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8645D3A4E3AD87E7CF4D88A46717AAB4')),
(UNHEX('1F74898E7FAE91C4F421E61A1787250A'), 'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35E12C7D76C4A81633BCF547C0E229A9')),
(UNHEX('73EC0E0BC3CBB18C592A75BFA9E14F84'), 'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD3A00F0D13EB29781EDD8C77D4C5100')),
(UNHEX('7EC5D3B86263F6DD1A24904024A9F22A'), 'wp-content/plugins/wordfence/vendor/composer/autoload_real.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F963BB1640E971F4E3FB78793D6084F9')),
(UNHEX('D00811AC5D6DD9B2A71F0907E296ADEC'), 'wp-content/plugins/wordfence/vendor/composer/installed.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4FBB15F36649FC97021138A578BE451A')),
(UNHEX('7B507ACBD2B9F9FE61A765D2D3A7D239'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B211D9ABFE0B39A06520C826CFA7160')),
(UNHEX('7E69B0491E13D23BDDAD5D9C41BBC853'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem', 1, UNHEX('00000000000000000000000000000000'), UNHEX('782DCDE8F5D53B1B9E888FDF113C42B9')),
(UNHEX('84D66E76FB9F5AF9591E56DFFB1FC9FE'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91B3887E271E7208E5F527548EE25F9E')),
(UNHEX('424A92844FA29EE41FAFFC867A8F44B1'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F65A8D54D6B7DB3F2A3D1FE1898E7625')),
(UNHEX('81EC11B650641FBAB593FD92ED638133'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B59187F731A80951BEB86ECB9B17592')),
(UNHEX('F9115E51366C84CF4A21A00409E2CDA6'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D30F4AE96144354806FA72FAAAF105BD')),
(UNHEX('DFB956CC3DBFA3BB22E0236EA70902B9'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('491617F5F0093DC47E15CCF40569CDF8')),
(UNHEX('E096CA7210AAD64DD3DCB42D0A538384'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E9F00D636D6DC4E66A02F8ED9D696B9B')),
(UNHEX('188AC8E0FDD7582F0FF7DB00FE830F09'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3248730BA33D4601FBE1AD9D0A1B6E48')),
(UNHEX('6EF3CAF3308D16390F6AAE760138F522'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8B68D287ED6FC307BC9F237C38837D7')),
(UNHEX('D2ADF3905F566C4BF867B02101708631'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A7CA2AEE0F50CB29D7FA9BC8B5E6EF12')),
(UNHEX('21F14F8A34D6624352529B66144F04B2'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('31A681C90142168D9DE48457694E2A97')),
(UNHEX('63FE06865B625DCBC005FEDDBD874A46'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('513A36BEB15C01B98BC885F35B7AE1E9')),
(UNHEX('7FD80BD0A1714406D69A3FD31E699E58'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AEA0962F384B0EC8D8F0573C74F89DBC')),
(UNHEX('E5270FD26046CC94CC7ED908C496939C'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D9B914A0C9667DB0621667994E14CFA')),
(UNHEX('9E85B6BBBDEEA212E8863CEF78CD428C'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1DFA1C44BB3C369844A19ACE25799BCA')),
(UNHEX('F997384BB0E7200B3F4F0B5D12CAB959'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10BAA71A6C595E5B460DC83278CABB02')),
(UNHEX('41D8BB141523A81DB2B922F3E0C56AAD'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A6F6FF13EEFE6A0C55577D9F12899E4')),
(UNHEX('51A7DBF7364B1F34F6CA15A880D2F048'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BEE1EBB19D9F155208847CAC24F9DA64')),
(UNHEX('7249007967D7452180A3FB17320C0043'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('510056F7E710304EC07E1E880F63B6CF')),
(UNHEX('6A8FAFD229136E835138DEAEE1AC448C'), 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('954EC149D6E066C00B81FEA5DDE9E4C9')),
(UNHEX('A80D238A44ED0E6A6599F7985D77B794'), 'wp-content/plugins/wordfence/views/marketing/rightrail.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DAEDE1B21A0EB6EC841B5D8693DD5B2C')),
(UNHEX('543F843F3A71D7AE50C3F3616827ABAB'), 'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8BF264E752E6FEC6B328A1A311CBE00')),
(UNHEX('05488393CA0C63E5C1A449B24A25B548'), 'wp-content/plugins/wordfence/views/reports/activity-report-email.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90F9DE9698700E9B19C89585CE2379B7')),
(UNHEX('1F4EA1642352AD872BABC1720073045B'), 'wp-content/plugins/wordfence/views/reports/activity-report.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47A5546AA51824054D23B9D4A225BEC8')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('D68B02CB38935BBDC0A6899830BDCA8A'), 'wp-content/plugins/wordfence/views/waf/debug.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82FFCA91E26263178926FCDC59D07AC1')),
(UNHEX('A1D848E9618C2BF5A7ADADCCB00B49B1'), 'wp-content/plugins/wordfence/waf/bootstrap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9A2AB5235290A2E4AB16528FD9A0AE5')),
(UNHEX('DD36033E0413186C941D838A0DD1B259'), 'wp-content/plugins/wordfence/waf/wfWAFGeoIP.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49870B13D55AE247D73470CDC3271860')),
(UNHEX('00D01344F860F83852A6C7C9B2258186'), 'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('782B04AE892119E0F1BEBFFF29D4EBAC')),
(UNHEX('2510FBA2C3079B033703D2E1E5A8B3CC'), 'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF6639964533CA1AA8B172EACF317F3C')),
(UNHEX('4523CDD5E72D7633371903D936EBC5A4'), 'wp-content/plugins/wordfence/wordfence.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('687D47E390716B029BBAA59AD53DD36C')),
(UNHEX('D5C60D1BE2FD4B9CD38BD3EDB6146A59'), 'wp-content/plugins/wordpress-importer/languages/wordpress-importer.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D33DE498BBA831233B23D5B62080ED3')),
(UNHEX('CE6FB9EEA1CA263D7BC74BE8FB1AD49C'), 'wp-content/plugins/wordpress-importer/parsers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('44D640692A09B79B41CB662FCCB5FC56')),
(UNHEX('DB4957CC41663D21DA54B810A9B056FF'), 'wp-content/plugins/wordpress-importer/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('63B1254B8605F703EE1255AC97B52820')),
(UNHEX('A4DA6F625061B8920E917139E1200DAE'), 'wp-content/plugins/wordpress-importer/wordpress-importer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1116B2732B8C06DEED23395589BF5DEF')),
(UNHEX('4BB647DC459A30DAB4E8653870083D83'), 'wp-content/plugins/wordpress-popup/assets/css/admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57A623890F2AB87D95758527A31DA55A')),
(UNHEX('890CF53ABB68029EC33E4BA40842D9BA'), 'wp-content/plugins/wordpress-popup/assets/css/front/ie.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1568F2CB49025EB78677FD794E9A7C39')),
(UNHEX('4B3CF542044870984027DCBCFF0A27E8'), 'wp-content/plugins/wordpress-popup/assets/css/front.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BD14AF24C6A95AED869CD34F00F03AD')),
(UNHEX('BE5DEF85920FC7FE0512AB90C015FC12'), 'wp-content/plugins/wordpress-popup/assets/css/maps/admin.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3E31A55D44F3A76D8C172F4FF78C2623')),
(UNHEX('E9F13E237EE003D3AC89EC3109ECED94'), 'wp-content/plugins/wordpress-popup/assets/css/maps/front/ie.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1454F35EA2D337202ECA8FBACB8AD219')),
(UNHEX('4649682705B4411D1C23036E4B2B0B1F'), 'wp-content/plugins/wordpress-popup/assets/css/maps/front.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01C9C422E0DE1DFEAE5DDA897CB75433')),
(UNHEX('9320A04F2EB919E817185D84B1477E53'), 'wp-content/plugins/wordpress-popup/assets/css/maps/modals.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51AD77AAFF0BF65B2568D57814FFF440')),
(UNHEX('0EDF7D3C3A5BB2940C3D2F96B482BB9A'), 'wp-content/plugins/wordpress-popup/assets/css/maps/optins.css.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF210293B8C5CD4AC0C66E6E60B66280')),
(UNHEX('651FE78555807DE7F9BA0D5F74B0C0FE'), 'wp-content/plugins/wordpress-popup/assets/css/modals.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('646DCDEFB4F7BF7BEA17F96AB77C6FEF')),
(UNHEX('D07CAA6F30F14287C6487AADBECA722E'), 'wp-content/plugins/wordpress-popup/assets/css/optins.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('902592F83AFE5616B6B9BD1FC3E0548D')),
(UNHEX('94BEF085A7111C1BE83310A3D8178027'), 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DACA473AA36C62C127F59B7E328F5B97')),
(UNHEX('EDEC5110962F0B4B108277502D071C84'), 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9AF714E4EB01F485CE7FA0BE4FD7927')),
(UNHEX('2426F9D0914FC599F5F2F76B53C65D45'), 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A37B46CA6A22BB0DD19CE8BA5C884AC1')),
(UNHEX('7E5241A938910F73862681EB8B7CF46E'), 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ACEED32901F7BBB76CB753F8C97D66A7')),
(UNHEX('C36D5A722F514C635E31BD3033F47CB8'), 'wp-content/plugins/wordpress-popup/assets/icons/add.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2009E740F6D21496FDFF6CEA06AF18E')),
(UNHEX('31BB6F801E8836BC5DCEC153082EDC22'), 'wp-content/plugins/wordpress-popup/assets/icons/arrow-down.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D39A04DF0E74C80EAAB4854C6E8410B')),
(UNHEX('679C493B4D1A34DB12A3F0C27842776F'), 'wp-content/plugins/wordpress-popup/assets/icons/arrow-up.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6832C174A3ABCC6DAA981429AFAFD447')),
(UNHEX('7003067E4096F5AD666F401B52CB5F4D'), 'wp-content/plugins/wordpress-popup/assets/icons/arrow.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('678E79FDA21BE599F17CF3B04A54E54F')),
(UNHEX('DDFC49EF45230786A4DBD7076B97B98C'), 'wp-content/plugins/wordpress-popup/assets/icons/burger.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8814E0838D826074F8A7C07ED534E2D8')),
(UNHEX('CC1B48A008013D0BE22B715CDE4CB73F'), 'wp-content/plugins/wordpress-popup/assets/icons/check.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50786BADC3C3C50A23B812A1FD54726B')),
(UNHEX('226218B3A6C61994196ACFD0DB6B880E'), 'wp-content/plugins/wordpress-popup/assets/icons/close.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34C53F3C958F13EB25EC6F77E52B91D2')),
(UNHEX('62FA42B1485DEF79B530EEC70F7671C2'), 'wp-content/plugins/wordpress-popup/assets/icons/edit.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04F94502B3625B46227B04A47F80A4E0')),
(UNHEX('5BF1D66DD06EE2B0F80B6E597CE795AF'), 'wp-content/plugins/wordpress-popup/assets/icons/eye.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47A5FC1DE31A4E8F3A8439DC48801FF7')),
(UNHEX('20F239AC90B1BFAD170F88A5F4CD6888'), 'wp-content/plugins/wordpress-popup/assets/icons/hustle-icon.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2344211B98694F9E49F6812BDA719AB')),
(UNHEX('EF11AD604483F20420BFD86D8463AE20'), 'wp-content/plugins/wordpress-popup/assets/icons/hustle.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51CFBA8017F00772EEEC24ED89599443')),
(UNHEX('C5681B78CE21DB0C2A4BF93CFF010EB4'), 'wp-content/plugins/wordpress-popup/assets/icons/hustle.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2E7EDB68D07A28F410E3C21306014328')),
(UNHEX('BC61DA2784DD9C7F467D9B7BEABE0885'), 'wp-content/plugins/wordpress-popup/assets/icons/hustle.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('166CA31D27407DE0A230AF0DF8362515')),
(UNHEX('41C30491D210E5BFCD2848083FA05178'), 'wp-content/plugins/wordpress-popup/assets/icons/hustle.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75244E748F93E5EE671852BFC0ECA8DD')),
(UNHEX('A8DEE3131FAAEE50F022CFF79454DA3B'), 'wp-content/plugins/wordpress-popup/assets/icons/hustle.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('00F7819E173FADB23EEDD609C6BACBE4')),
(UNHEX('6046192D34C7C338ACC62EE7DC38A780'), 'wp-content/plugins/wordpress-popup/assets/icons/image.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2AC777C63FDD2E16976FA8730EA0C748')),
(UNHEX('50812AD0F812BF361957941CBC37AE16'), 'wp-content/plugins/wordpress-popup/assets/icons/magic.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BA381DE2CDA94D2AF96A4844BB922C3')),
(UNHEX('CCC34F37359B45368B2634A711DC9C98'), 'wp-content/plugins/wordpress-popup/assets/icons/mail.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51172769E2E4DA2A38EA78A58BC47BA8')),
(UNHEX('EDF61595C687CC60270C49E3A4AA4E28'), 'wp-content/plugins/wordpress-popup/assets/icons/optin.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDC54DF9423E02DC7F03245823BD9A33')),
(UNHEX('00BA583FA327E91917032B6E5856A457'), 'wp-content/plugins/wordpress-popup/assets/icons/plus.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('356E633F43FD9DB1E590DA77D4F9FE71')),
(UNHEX('BC9EF41D8ABC43B4D33CFA1946D03168'), 'wp-content/plugins/wordpress-popup/assets/icons/remove.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8FA0CE1EFE53E21A58C22D08E287E40')),
(UNHEX('87CE3BE8C7EDF7E3C032FF116F96062A'), 'wp-content/plugins/wordpress-popup/assets/icons/rewards.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DFD500FC6EF8A433AFCF22BCA60246EE')),
(UNHEX('E346B105E55E5A3431F4F85F5D57BFA1'), 'wp-content/plugins/wordpress-popup/assets/icons/sharing.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7005F0660972CF7AFA8DD80581F4CEB1')),
(UNHEX('C32D49C3F5CEF3C57D4B902B82D296D6'), 'wp-content/plugins/wordpress-popup/assets/icons/text.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17455454E81F0FCD3BF8B8701628D5CA')),
(UNHEX('668F81EF8B948EC003CCB55A3DEC6DB0'), 'wp-content/plugins/wordpress-popup/assets/icons/trash.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5686FE573C9D6370FCCC4481E4719FE')),
(UNHEX('F247F0149445AA79EE6EE1291B8102BE'), 'wp-content/plugins/wordpress-popup/assets/icons/updating-font-icon.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6439F1943CC5430ADDA81233A99B981F')),
(UNHEX('318E125F2AEEE7F091BC7714EDD1CD21'), 'wp-content/plugins/wordpress-popup/assets/icons/warning.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB88FA455E61FA1CC113F74A1AC7FDFA')),
(UNHEX('4B1BB6671D6EBEC6952A9EC08ECE6675'), 'wp-content/plugins/wordpress-popup/assets/img/icon.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B0DAF48CE5343E0C8A2F0E6B26B58DD')),
(UNHEX('8AC8868E426E02921E98FF86C4EE5037'), 'wp-content/plugins/wordpress-popup/assets/img/sprite.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C9205A3F4602BA73D98486A5FBEE0C2')),
(UNHEX('E0106C6F74A83FF14730E4B6AE340CEB'), 'wp-content/plugins/wordpress-popup/assets/img/sprite.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6EAFD1F99C79A93F7178E92512018C95')),
(UNHEX('CD314BAC59A4D526B4216D62011F4737'), 'wp-content/plugins/wordpress-popup/assets/js/_common/hustle.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('058FDAF9F6DACC363833AC66E0CD7361')),
(UNHEX('B80E5F722FD92B2528EA61D52FFDA1D2'), 'wp-content/plugins/wordpress-popup/assets/js/_common/utils.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C5340022BECD8870EF576F9C8954AE2')),
(UNHEX('2B077FCDAEA659C716E9411FBDD6AD85'), 'wp-content/plugins/wordpress-popup/assets/js/admin/admin_utils.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1236EE6FF97BDEAB3B1139612E3A1073')),
(UNHEX('774D5BE10BBBED6FE8805B70DA244C93'), 'wp-content/plugins/wordpress-popup/assets/js/admin/common/commons.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9BA066418A2E2B6F5406B2404C2401E3')),
(UNHEX('AE6E6AB0087EC8EC047569FC4C9D6D5D'), 'wp-content/plugins/wordpress-popup/assets/js/admin/common/delete-confirmation.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9758D12325CC3CAEB7511C13F821DC8B')),
(UNHEX('40A34DA064B2001F9F3CC0EA4AD56163'), 'wp-content/plugins/wordpress-popup/assets/js/admin/common/media-holder.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51A05C5BD123D4292D8CAAB8A15FF940')),
(UNHEX('A18017DBA5DE6291C28D7AED5064CAD4'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/content-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70DCB02814137CA0D73F40B610A2A683')),
(UNHEX('055BEF5BB73E49F95CAD7F3DF13A707C'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/design-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4C1D7F2139CEF19C8D2B51385CD249E5')),
(UNHEX('6870BB2439F314256840A2B7A18297C2'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/listing.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F6EBDC055A8A7B0C525542EAC9E55E2')),
(UNHEX('8200383E1828323AEFD8C5E740801447'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/models.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4B7FDBD882B13C4C1E1A8087009E497')),
(UNHEX('AFABBC805CDD896E13CE220BD3AFAD97'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/popup-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FA75CF9C2811ED1B31B040C63DA00EE')),
(UNHEX('A2FF1E2932361856FDAD931BC1CFEC28'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/preview.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE5D5F2C71D3524F53F09A186143115C')),
(UNHEX('636FCF9CD5D200229BA009DFD6C416E0'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/slide_in-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FEF766901901A578932658F95078E2FE')),
(UNHEX('9030EFC1C6A5C312E1CD0209BCF3AA36'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8775FA42FC657BD8B3C60EC3D640AF0')),
(UNHEX('BB22C0F6AE16AF9770A80DE9BB901C26'), 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('754FB53BA85AE929330DA9D09DC7EF54')),
(UNHEX('C2B055B61FDBBF463593F4E4BA09C359'), 'wp-content/plugins/wordpress-popup/assets/js/admin/dashboard.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57083B3F87CFEC8CCD078B6138DE5DFD')),
(UNHEX('018015C724D564A0B23A04DB3A401882'), 'wp-content/plugins/wordpress-popup/assets/js/admin/legacy-popups/listing.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA01D3D57B91BB824D1B8B00CC8C7EC6')),
(UNHEX('03151C900A6169B80C4C32BA7B81B6E0'), 'wp-content/plugins/wordpress-popup/assets/js/admin/mixins/model-updater.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D66A3E01A7A675EBCE02F691702477E2')),
(UNHEX('A12153529D077D2CEFAED2D6BE803DD8'), 'wp-content/plugins/wordpress-popup/assets/js/admin/models.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34557D5BB59A3D56873DC2E0687B3C05')),
(UNHEX('CD166595EDC422948062228E27149FB9'), 'wp-content/plugins/wordpress-popup/assets/js/admin/optin/listing.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9164FE47F04D660D86487B9EE33AB288')),
(UNHEX('C5DFBB2AF21469942EBA67849821DFC9'), 'wp-content/plugins/wordpress-popup/assets/js/admin/optin/preview.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1431CC6CE63A40051E0B4FBF566C1A52')),
(UNHEX('F226DAAEF615357305FB957CE429A5F7'), 'wp-content/plugins/wordpress-popup/assets/js/admin/optin/subscription-list-modal.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDD4842B99C2F2917597953B5798BA43')),
(UNHEX('2D29C00C5452481B473B92C0C72552AC'), 'wp-content/plugins/wordpress-popup/assets/js/admin/optin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D0EFDFEF7C38CD044930B8BD6A2C9F8')),
(UNHEX('7FD1451EC33B6DEE973622F922A78523'), 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/activecampaign.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A7C161D3C5DFF9F679E35D3CD42CC35')),
(UNHEX('ACB7FC0A89383FD5BF15B56D8A49E780'), 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/infusion_soft.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A93E4926DE2F3C85C358A1A202B1FF5')),
(UNHEX('DD0FA93E8DDF35BECB97B40ED0D1A3C3'), 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/mad_mimi.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89BC897BF10EDC01DCC0AF119F606AFC')),
(UNHEX('E04F92E7894019E98ADDCB949ACB5B72'), 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/mailchimp.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F2BD415075F98E742708598099D6FA0')),
(UNHEX('08FF42753B5F7A0CF58FEDB85BD5FDFB'), 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/sendy.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D76FAD3AA924CEC049120D3072AD98D')),
(UNHEX('48796ED1632A6C37526978B68712E328'), 'wp-content/plugins/wordpress-popup/assets/js/admin/pure-jquery.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C313CA665F3980A28DFACB79244EA30E')),
(UNHEX('C1FD9AADB6683494C9986203CF6E3B98'), 'wp-content/plugins/wordpress-popup/assets/js/admin/router.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('20F4C781D1453AC3FB09E5BDF389D5CD')),
(UNHEX('B438EF911D6F00FB9ADE788EBADA8102'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings/conditions-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2850A022C7C30DEB29D0EF4F53A341F')),
(UNHEX('5232F8C1920A986B069FDF9884660022'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings/conditions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('330783E5697468755FC14759834C56B8')),
(UNHEX('5E19BB5BDE0D83DDA942B6EB63680606'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings/display-triggers.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D199AA08097D37049849F3D51634AB42')),
(UNHEX('9BA3858D39BC4DA3DB14305E45620F28'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/e-newsletter.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A93A1949FD060FEB94DE29B4E4D68639')),
(UNHEX('6E9E52184A0AE3330BCB8DAE43E8B929'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/modules-activity.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('262199D7EEB39A55FACFDB3EEF92BFC9')),
(UNHEX('91512DCFAFD1C3D0E4E556926097D8CD'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/services-edit-modal.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1B080EECFF425C0198804E67DA1FB29B')),
(UNHEX('D44D2D4E6453CCEC345A63A42E6F7A54'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/services.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5AA4A867CA42E5C0955B8DF87232E129')),
(UNHEX('4A9DC86B7BE020B0241A1847471BB536'), 'wp-content/plugins/wordpress-popup/assets/js/admin/settings.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('052E598AC1581F261341C94AB72D5911')),
(UNHEX('849ED0E1EBE8E4D553F22DEBF88D71BD'), 'wp-content/plugins/wordpress-popup/assets/js/admin/views.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5105DE6B3CBC7E1F72D3D7B85E7E5E48')),
(UNHEX('7048138E6E48B5082959980C2E8381A9'), 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/design-tab.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3AD15F921895A09CA47509E3752F967E')),
(UNHEX('1BF26AB1BAE1E760583CCAAD6FA321B6'), 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/display-tab.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('64CDC319ACAD9DAFD266F49F88857F4E')),
(UNHEX('3E99633E1A02198378569CAAD4BFDF4B'), 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/display-triggers.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1906EB670300706C4A52DE96DD6AC812')),
(UNHEX('894DA4ACD7BBDF4E66063181D97B82A8'), 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/services-tab.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C15990C98E936F8B71318084880CE6D5')),
(UNHEX('F7F2C52F18D60C41030F8F9B0E5FA19F'), 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/settings/_conditions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5C1D11B807CE3577A1BC54E7C27FB76')),
(UNHEX('C2350311D5C8633BE4365AEF6E4E8F8B'), 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/settings/conditions-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04C75463BCD8AF5F7154C2AD8128E997')),
(UNHEX('E83B87D9DF8CB4B749FE8AF182FA8B96'), 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/wizard.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55C146C06148A75421B98604259F55D4')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('E8B9D75678E9D09EAF267C0B97326E3E'), 'wp-content/plugins/wordpress-popup/assets/js/admin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4FBA6A54A9B76E0F6072DEDB53B00A89')),
(UNHEX('AE696DE938D0B7F08A429C4C40A5ECE5'), 'wp-content/plugins/wordpress-popup/assets/js/ads.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D37995C546075C54F3EB8A39A4198532')),
(UNHEX('0FBCD38BCCC65987D1B59BCDAEA6B6AF'), 'wp-content/plugins/wordpress-popup/assets/js/common/modal.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F3B0A60EC5A7EE0655565A7DA299854')),
(UNHEX('647B31F31E60F9737C3405D708873269'), 'wp-content/plugins/wordpress-popup/assets/js/front/_common/backbone-view-model-min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8F9380CD8749F6DA97C259E8B62C1BB')),
(UNHEX('2E17E6A15C019587DFA742221EC05744'), 'wp-content/plugins/wordpress-popup/assets/js/front/after_content.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C63012F1FF6DEF8A5BAABD366E2A46E1')),
(UNHEX('178A8BB2AA86660A7F039C20D71BF2F3'), 'wp-content/plugins/wordpress-popup/assets/js/front/common/cc_display_triggers.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADFAD8CBC89FBFF20350811B16AF6CB6')),
(UNHEX('307C2DB6ACF56FCFE45B5FE2DBC44EB1'), 'wp-content/plugins/wordpress-popup/assets/js/front/common/display_triggers.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E76C9A700E75704C4C9105E2E7AF1545')),
(UNHEX('6B73594C1FB537A31141E1D28EF4FE39'), 'wp-content/plugins/wordpress-popup/assets/js/front/common/log.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CD52FA4BD87D7A1E7B922DA13B474DD')),
(UNHEX('CA4B7B304A8742FE2AE548E3CE9F6209'), 'wp-content/plugins/wordpress-popup/assets/js/front/common/scroll.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5F85CE9299B7752E47CDB02DDCDE1B0')),
(UNHEX('E518717034C21C591747C5C42FE75DDD'), 'wp-content/plugins/wordpress-popup/assets/js/front/common/submit.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9F7EDD23F0BF4CF25D44DB3CC3E873B')),
(UNHEX('49EF7FCD68A86FF59D37A788C7F8292F'), 'wp-content/plugins/wordpress-popup/assets/js/front/custome_content.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F54AD9BD7AC5E9EB2060701DFFB41F1')),
(UNHEX('0FB4CC542583F5FFF679A5094B8201BA'), 'wp-content/plugins/wordpress-popup/assets/js/front/front_utils.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26AE5D37945CBB50B59AC06315B4F120')),
(UNHEX('C463F49F308477C16544B30C8859FDA2'), 'wp-content/plugins/wordpress-popup/assets/js/front/popup.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0A6A9244D29FF6AC7BB2E731AE95DC2')),
(UNHEX('8C6AC920C29D32E73BE8AB635C738C3D'), 'wp-content/plugins/wordpress-popup/assets/js/front/slide-in.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FBA30374117C01574C7E00FEE2AD3ACA')),
(UNHEX('4B55CAD005387801666372B33C909F95'), 'wp-content/plugins/wordpress-popup/assets/js/front/widgets.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9AD6316BAA89E88A05F4FDB75472CD7')),
(UNHEX('27CA6ED9961B14175B5B36BB6157AC35'), 'wp-content/plugins/wordpress-popup/assets/js/front.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C65DD8ADF52B4BD19EA626030291700')),
(UNHEX('FD847B187B05C61CC2AE147B9B2AF2D6'), 'wp-content/plugins/wordpress-popup/assets/js/maps/admin.min.js.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B0894A839D1A683705E7CEE6847CF85')),
(UNHEX('DF0AA0A2A2EAA02659FB9F74E7874D3D'), 'wp-content/plugins/wordpress-popup/assets/js/maps/front.min.js.map', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EAC738A3E12EA309C485670842BA6283')),
(UNHEX('F3422133F22363D9297ECD56F3D4FB6C'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/ace.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3200B59AB14AC9DF2D90BBBF71DC9C2A')),
(UNHEX('2D3A1CB709F45EC23FF074B4EA42A656'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/mode-css.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E07C90BB62747D4C738179A36A846D80')),
(UNHEX('A013B8B0944496A600E7F86950BA52FA'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/theme-monokai.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95F022AE5B166683CFCD65CE1397CA4A')),
(UNHEX('E1963B26CC5251BDA5B09DC194337493'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/theme-solarized_light.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFEBE242C150700D7A3DCF802954BD1D')),
(UNHEX('9E84A96AE35A376FBAF5D26AEBA82FE4'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/chartjs/Chart.bundle.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B109C492E2DFA3AB619DC7C2DBF19E59')),
(UNHEX('D5230F024D01ABA1E417DC217A2075A4'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/fitie/fitie.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B760640C9CF953409AB4AE7ECA78497')),
(UNHEX('AA31232640DC3F3E749BBA09AD41E0EF'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/css/select2.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1FA1E4E55606FBB52E9A02945EB51417')),
(UNHEX('71F78B28C3FFEB6D84BC962E5C78CC91'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/az.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F74EF6D7187E941D9C00E110F17E6F1')),
(UNHEX('79951A0219764A912168DA849013D192'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/bg.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7EC20827DE96B81C74FC0F475873E254')),
(UNHEX('1DECE1158C96230042F0D3BC073A1D1E'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ca.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F2D91F7F1328FAC6C1C7ACEE3ED2BD6')),
(UNHEX('0617BE684C7CEE538D5D02711C76AAE5'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/cs.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7445A390E97E2D097B9D6E75E9479F0')),
(UNHEX('00BC1D7B86DD98C00C257D8CF4908C4F'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/da.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B415BC37937FC86DF6B6C381FDDB7D8C')),
(UNHEX('1A0F5FDC97439E8847A0C8E88AEB8E43'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/de.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10D8FB522905B206C812D1458F015109')),
(UNHEX('E08111FB6E5EE18D602062031B773B0B'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/en.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE2A28303ADB5B754426540CCD121D17')),
(UNHEX('0E038882DB7E2BFE01F01EDBF85FDC9B'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/es.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82272B87F138B17828EC883B819AE3EC')),
(UNHEX('761068F8F378DC0E2801C58154F3E963'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/et.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E11798BC5F4230653E385C38576AA6B')),
(UNHEX('06781CCD80231E88DA257667E094A5BF'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/eu.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76D1AC464F27A7CC3096ABAB1513301D')),
(UNHEX('62CD3A5169C447842C20BB1D7599E0FC'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/fa.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09A7C3C6D7B87BE69EBF23F943E621D9')),
(UNHEX('5FA3E902E71C6EC19FFAB9509F248916'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/fi.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7418C14A75DD9D2EB68B94C7BE59F69')),
(UNHEX('8C6702AA53B13D773E056932C0BE0DBD'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/fr.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4D73F25E97033A086F3963422CC190E')),
(UNHEX('C535222ADD3A1BA308296CCA07350CE1'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/gl.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('984B309936B3747EA2FC3114B783EFA8')),
(UNHEX('C9EEEE2AB76B1C1A460392E2EB1F84CA'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/he.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28A48523D2B7F55865C8B8A35A7DCCF5')),
(UNHEX('7A2E7C592053AFD610B6458063F58DFB'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/hi.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CAF0EEFBAC3E8CD8A17FD05DC43E92E')),
(UNHEX('2D7930CB0DCDC8CBD83D20A863B034F3'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/hr.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BA30E2C397250D003B95955BA466452')),
(UNHEX('02B1DC07C7BFD0906692EA9EA5A011CA'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/hu.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F444ACF1DAE4B2B4851A3A514536996')),
(UNHEX('4F6466F2333B31A33AE4FB8C356C5D6A'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/id.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DBD76F6091AA3FEECD87E3A3E9235380')),
(UNHEX('9DFD305E7DAF71F34A9982013FE53FFF'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/is.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75AF155CF4E408F303446DAD33953D8C')),
(UNHEX('32A550231D4C367EBE23BB89B93D5289'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/it.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB49CDC5F0D85D50FB1D1A4A9942A38E')),
(UNHEX('F8A4C67C9AEB475E1345DB08C2C8D203'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ja.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6188659B3BB1854440B5EFD248FAC6EB')),
(UNHEX('2E635730E9412674701FD0770F8E24E2'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ko.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B5AF4EDD90D070C48453CFB04EE2F90')),
(UNHEX('70621D838A09010A6CF90EC5A766E2BF'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/lt.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E836A3D39007C8607F34822B1D04E09D')),
(UNHEX('2D3B28FFABED266648567B7836DBE617'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/lv.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA6A524F8E24E64CF6BBCED14192BD6C')),
(UNHEX('DE1E5F171B94790DBF35613DC80FD885'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/mk.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24663334BC0410951AACF718C0A0ECE2')),
(UNHEX('6CAF19971ABE8100C172AFB9AA640294'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/nb.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9CB6855C4A7B8985664D7B60CD3DBCC5')),
(UNHEX('3FACA81B47A6305E6C3A43200792D5A6'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/nl.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3DE652EAE581075C08C472138B4D7228')),
(UNHEX('1323184FD3A302E8B160D868D244E845'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/pl.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8D2BF3B5647750A620A6D9F0122C3F5')),
(UNHEX('FC0DF8D053BFDE48AF94A33D24E2895F'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/pt-BR.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4EB6AADDE51825D0D97B9706D95B026B')),
(UNHEX('3C39B0592DB32FD0492CF70DECB1F876'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/pt.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C83BE07BDD4893EEAF4A8342A5FFD5D9')),
(UNHEX('ABBE944CB4E41EA78D21431D3DA14645'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ro.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4272423A7B06B7B7A8D9C9EDBC7286B2')),
(UNHEX('8AAA7AAE03E9BD6FA24C08E776C415C4'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ru.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B83AB1444C2D83AD722210B97603152')),
(UNHEX('03D42CD986D8F02E139198A9BFA12DDE'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/sk.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D81E0CE6D5B2AD2B18AD9D2931562724')),
(UNHEX('8AA66FCD6D9DF89E9F0F6472C1A7DB4C'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/sr.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B726786E3B4E1F7962AF788DE46BC3FA')),
(UNHEX('93DF02D43B1D2CB23C00D55442B2862C'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/sv.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42DC8E8584FD62A4112287239DCDDEB0')),
(UNHEX('104358FF4B5E6AF7817E9CC06C1546A5'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/th.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9CBE2BF25CC84ED72178CB41EC6F457A')),
(UNHEX('1C63014902FAB0E4D81A103043018382'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/tr.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('581BD35FE445F971625478AA755F283F')),
(UNHEX('4EED65B4008DAD09992B30BCEFC14681'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/uk.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8337FD5FF18A8CD1E5801FCD1A08E65')),
(UNHEX('372E7E42DD0E7F9F99671511A2049B44'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/vi.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('783DDCCBAF524D478FBC0A58A7A965E8')),
(UNHEX('5CECDE47E36A29D2FB2E925112907ED1'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/zh-CN.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F903C14D05FA442A1C482293058335E2')),
(UNHEX('32C1AD97E44CD72235DBC68C14FDEA3A'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/zh-TW.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5959D9629920AB291361C0478BE6C81D')),
(UNHEX('6CB7C3B9FB7AA1D96F0A229CABF2BC68'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/select2.full.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7AEB48666DD19E766831047FD109E3F')),
(UNHEX('61762F88C0758F39E6A3BA5F893F91BA'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/select2.full.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E74EE4889DE0B174BE431257C23A9BC')),
(UNHEX('35102186BEFAA97ED3A8D357B60483E4'), 'wp-content/plugins/wordpress-popup/assets/js/vendor/wp-color-picker-alpha.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BAED803F59C47F7BFECEA08FF21D8696')),
(UNHEX('B22886D9869C338C4103907E45365F53'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('59915055EEED8F6E416F48294F1470EE')),
(UNHEX('620085E2233B06576F1BC06FB68BCA11'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/contributors.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('23AAD314008FE6D12219780EC75577C4')),
(UNHEX('0ABB4EE6990BDD78B452E074A26F3273'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU DEV Dashboard.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('046932EAD93E924ED7397FC0BDB4EFB8')),
(UNHEX('3AFAA10797D11DB3EDC8B02C82C52CD9'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04032167C777F7A30EE0C1F050D520FF')),
(UNHEX('E38E1F39C70121DD2BDFA414DD0DA44A'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CDFE5264A3CBBAF0123277DA26DFEFEE')),
(UNHEX('6F09E066FAB2D5138E4C4BEBF2B0AA12'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33BD5C836CB3184215880CFD521169CD')),
(UNHEX('AB211434F4E1D506E874AE7FCE02580C'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15709C460FBFC7990E5838C01421389E')),
(UNHEX('20B4EAFAD1AB2EDD280CD78BB7BE603D'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F4A40C122903174C4227E6871B88CFF')),
(UNHEX('E0CF76837C9C17723AFA4C1956C3E81E'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99097CA0B6675CD2F3C0D1482322DA37')),
(UNHEX('080F665E312FA8698577A8F5A97314C5'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.svgz', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1FE4FFDFA48998422CBDAE57CD3BACA6')),
(UNHEX('C1F090BF7D26620B50574EBD57F857B2'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6EA09593203493BFD053A1E838C62404')),
(UNHEX('4DF05A1E8161DC5524F594AB8EF737F1'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04B9BFC362DCB9BC999C7D1BCB44A942')),
(UNHEX('CB7AEC277BC42CEC514A17DA2BAAE76A'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/img/spin-grey.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('439CB13D570CDC35BB577A867FA8CF4A')),
(UNHEX('F1A08C3F6E400C3CE73A13E4EE1CEA2C'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/img/spin.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9F0248C89F578D22C679024DCA564EC')),
(UNHEX('0C6ABCFA62244E70092A4F4B5077FA1A'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/notice.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74C993AAD4C5218F535C7CFC97956401')),
(UNHEX('739CF2B259CD5EB00580504E8BD75C2F'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/notice.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AD12B1BF35D69B502A196E8B846AB68')),
(UNHEX('414EB778B829D4039191681C048C7B07'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/plugin-ui.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4CB50F0C5394C1BFC92D5727073EEA14')),
(UNHEX('A4D805246DF6BA67705D010945965A4D'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/wdev-ui.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF9CD79172E5D25C3112A4DB61909A96')),
(UNHEX('DA70CB2A3D9BBB72668F2EBF6697001F'), 'wp-content/plugins/wordpress-popup/assets/shared-ui/wdev-ui.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('608CC4B7068BD43B78036C2B5CE8E3C0')),
(UNHEX('2ED1338AA3E8DCA1F984A700B349A940'), 'wp-content/plugins/wordpress-popup/changelog.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A46FA70269D633C194DAF3FFF5D08ED')),
(UNHEX('7245D7FE9596097347A9929A92E9BE93'), 'wp-content/plugins/wordpress-popup/humans.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFF7E85BD617E259E921ABBBBD0DE62D')),
(UNHEX('AECB564567CCE075AE4D1037B25074D6'), 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-design.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4EFCD54217C1839362C5D10358690D8')),
(UNHEX('0BDA37EEDF061A85710A49B14F389BB5'), 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta-magic-bar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71E05727550E4DA1A2959A8DD37E6084')),
(UNHEX('A0261AD0540778CF0C4BBD353C16EB90'), 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta-popup.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15789245BBD9E26B339EFA4AC396C91C')),
(UNHEX('3095BC03533E8E76EA2A6976E7C756FE'), 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta-slide-in.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7878369DB8898EF9B33F0961A08EA43F')),
(UNHEX('51C35F96DFA698D423466D45E84C3035'), 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EC7EC2228818D2E885500FE57E2AFC13')),
(UNHEX('B05C505AB1224B75577A65C83BC22E12'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-abstract.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6882137BEB340112F7D30FF5714D0EE1')),
(UNHEX('DB08FA484E577351ABD8DCB093B22A99'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-categories.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F0858AD0FECE53144D9C8E1D5E89BFDB')),
(UNHEX('DA25D3A034A6BB0E5D508FE458FCAF32'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-from-search-engine.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F404C19EB728B1D12E6349CF44CAC5C')),
(UNHEX('426A22BF38EE26084F10E2A5FB589595'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-from-specific-ref.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9FDCC3C33013EAD9426B4D086C1F694D')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('4EFA644328912C13E130E9666D2CAA10'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-in-a-country.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAF3169A68A8978DFF2D4263BB3E1410')),
(UNHEX('ACB7CE0BFCFB025D79DD4E078FAAD559'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-interface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C12A07B0554A3AB2AC2EAFF7983123A')),
(UNHEX('AC937A17532A46B48585FA18D4A99D12'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-from-internal-link.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2EFA0868F3CC558D58E503F4280B858')),
(UNHEX('5C10A13AAE4DBDDD65FF43919F80ADDC'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-from-specific-ref.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72DDB6EB8DA5A4F81F349B889AB55F23')),
(UNHEX('A7A5FC839712510BBF4FEC37557D54D0'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-in-a-country.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1934E5C79F9EC0EB50600D17DAFD2009')),
(UNHEX('6950F842BA77CD0A6E090798720881B8'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-on-mobile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F6EC669274DE9B5C9199AA15F13C280')),
(UNHEX('E77528D38E72250ECA67611305A890BF'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-on-specific-url.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66EFB709F1A4EBFDEDDE99CCDFFF2868')),
(UNHEX('AB22D061A4CA14412F76AA3B4EECE7B9'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-on-specific-url.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D0A30A814812C18F31126A9FBAE7447')),
(UNHEX('991DB5D439462BA6FF21D67B9D981C5B'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-only-on-mobile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D1FF7F87E8B157ED70FE5ED895C3F6A')),
(UNHEX('51507B95EF621A4AF075DED147C51474'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-pages.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06EE8174B8BF67264DAAE6FA619EAC70')),
(UNHEX('54F0AA8F85FBCA0AF12BE44E32DEC7B2'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA91123E7C6F20C584377230F293AF02')),
(UNHEX('661D745DF171B3798C1E5703C46496DA'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-shown-less-than.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BDF6910E1F66D88DF6E8F7C35AC60DE')),
(UNHEX('19F862B1F863DFB2559F5D75AE8690CA'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-tags.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97143579971519F98BDF25241DE05194')),
(UNHEX('24412314A4508C632B5DD825B51E5F6F'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-has-commented.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61665B04E877B00EF4477ECEF32E6F45')),
(UNHEX('6DD37AA5ADDE6802D4B02CF75FACF23C'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-has-never-commented.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12E2CFB2EA11E400A3BB10314ADF8114')),
(UNHEX('08690A72D4DACFDB4E6AA55966643B1D'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-logged-in.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA653C1D57D209E25849ED85698AD09D')),
(UNHEX('7B595BBBDF33F57EC40EE9FE02878874'), 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-not-logged-in.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B06565B14B270CB0A523F3CFBAD3B220')),
(UNHEX('0DC9DE5F0FD67EF137EF4C5DD2796253'), 'wp-content/plugins/wordpress-popup/inc/hustle-collection.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C80DB08310699490FC177622DEB7056')),
(UNHEX('127910405DFE6CA47DF44896398CB891'), 'wp-content/plugins/wordpress-popup/inc/hustle-condition-factory.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C74DBFFE79E241C7D1FCA07E0FEED6C7')),
(UNHEX('371385739AB6AB20463C215C6EA8E40B'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-admin-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D7463A28F98D679F88BC41706B22D84')),
(UNHEX('5C4644E6643ABD05336E40BF153E5C0A'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7793D2C0F2C369F60A970369145F801')),
(UNHEX('FC99A4A251565CAF9EC579D0968646AD'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-collection.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2562F021DD13D8DC9BE5E6F988DB5D94')),
(UNHEX('65A2FADE02D51D567701BC98095DFD2A'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-decorator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25EF54F46854AFEA36BEDDB2912083C6')),
(UNHEX('3686137F0FD98D91D2FFE6F540A31BB7'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-front-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('87F1BB092102EB84E1CF271675939061')),
(UNHEX('A0C5F4336244849E06CBF4B69844A3E2'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-front.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0416AB5B6F9E61B0A6ED15E7B7542769')),
(UNHEX('BC9144EC26B9C75A786B54D4AF104FFC'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-model-stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0AD2B4E6A325A94A4A8A75D1E22C1A4')),
(UNHEX('B9EA04F768B6252C53E5A6318148680B'), 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-model.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('210CD489B52B5EB48F7468404E16912F')),
(UNHEX('6EEF1C12E720DD40B90D3226657DD7CF'), 'wp-content/plugins/wordpress-popup/inc/hustle-dashboard-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE01D461FF75007191191854F70E8FE0')),
(UNHEX('E4646F215CEA26D47BC046A0EEA89FF7'), 'wp-content/plugins/wordpress-popup/inc/hustle-dashboard-data.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9D008331C33C017FA05E0EB8ADE89A7')),
(UNHEX('C84F6FFC960A00926E5E12CA67D70603'), 'wp-content/plugins/wordpress-popup/inc/hustle-data.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3A554DCB2A4D46A2AA9134BA82546B2')),
(UNHEX('DD453A28E6DAACE365AC9CAE159FA07F'), 'wp-content/plugins/wordpress-popup/inc/hustle-email-services.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EF9C6E7FA453D8274C12C8FB3756EB69')),
(UNHEX('85FAC390F93587693B29CA8C7A5C7689'), 'wp-content/plugins/wordpress-popup/inc/hustle-legacy-popups-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('141F61E818CB33D3B42E097EC23975CC')),
(UNHEX('208331EA54100B78717EFECEDA90E9C2'), 'wp-content/plugins/wordpress-popup/inc/hustle-legacy-popups-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0A6174966ACBF946D35098A0D7E8C87')),
(UNHEX('C2BB92BC03A136D8A4552BA23FCCB4E7'), 'wp-content/plugins/wordpress-popup/inc/hustle-legacy-popups.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5C350EB67C1BE45E68014EDCF94A15B')),
(UNHEX('621D7F8D406624F73A63E34DA03F96C5'), 'wp-content/plugins/wordpress-popup/inc/hustle-meta.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7409DCC2575A4A6B69C8A758FB200796')),
(UNHEX('4A8BCB69C11938138212F4503CC42384'), 'wp-content/plugins/wordpress-popup/inc/hustle-model.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD48C348392AFC76747D9B03E9318CB5')),
(UNHEX('DF7C104533E4D2D6C80FDF8C4707275F'), 'wp-content/plugins/wordpress-popup/inc/hustle-settings-admin-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C720BD870355D5C2AC1691531D1AB51')),
(UNHEX('2FD5A3D9A4C27C5BC87FD95B036AFEC4'), 'wp-content/plugins/wordpress-popup/inc/hustle-settings-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1ECDEE26A64CD1EDEBFC1B95DB7C3AE0')),
(UNHEX('D5D73B02D0DF3AC7A042BCE865D8CD23'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-design-borders.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C5E67DF3B111E9E29389D411989FED19')),
(UNHEX('F871539855E43060402FB0A8EBFD64C2'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-design-colors.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('620416D14DA38AE69697AA457CC99D02')),
(UNHEX('407E525A53D1B0581E087B5DD2D7B1CF'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-design.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4EC6F62FF06544B8A7EBF27FD98200F')),
(UNHEX('A8A8584A307F4AE9F7095EA4D4FE9C4C'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-after-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46102DDF666D64A0063B0BF823E6D128')),
(UNHEX('C648158819896C48C8EB6015EAEF7D93'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-popup.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('816148EF80AC45517A757912FA0BB03C')),
(UNHEX('EAA4FEB7E39CE4E3164E5B8B6A599E53'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-shortcode.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86C9C462966CCE68F8FF3FD58F3F55E5')),
(UNHEX('CE1D2EC2DEA4C6ADA005148926E70F22'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-slide-in.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E784B0A06BD6D0F519811FC6E35C8960')),
(UNHEX('6C8B6C7351CAF6DF9F2BC04E9ADAF605'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('193F3D51A9F0ABC6654A4D119F8570C2')),
(UNHEX('6C07D28AC90D8C17E7FBED2D2F61F8C4'), 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2AE3BE8EFE6278E6186F503BE4BF92E9')),
(UNHEX('68A58B6FBBC67A4C9C3E5D3772608C7A'), 'wp-content/plugins/wordpress-popup/inc/opt-in-admin-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55BB9DB4FA886035CA98D8DA6E416F7C')),
(UNHEX('500016D3FB42BF918B2130E7851DA35B'), 'wp-content/plugins/wordpress-popup/inc/opt-in-admin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A75805CEE87CEDBDABBE0CEDA725FA41')),
(UNHEX('5C08908DD2D3E5BB696B625C68AFA669'), 'wp-content/plugins/wordpress-popup/inc/opt-in-collection.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9CDD3CDC5E5E33F34EA7B47276820E6C')),
(UNHEX('BC41D6566648BD7E80BFBE977ACC350E'), 'wp-content/plugins/wordpress-popup/inc/opt-in-db.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('93F21F77E4B7B6308710F249230BBA02')),
(UNHEX('604B4D4973D924111C09E51C6D46B0FA'), 'wp-content/plugins/wordpress-popup/inc/opt-in-decorator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('604451F6D8C79D8C1D86EFA34CB952C6')),
(UNHEX('AB204D926081CE3262937E77538A3EF1'), 'wp-content/plugins/wordpress-popup/inc/opt-in-front-ajax.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EA1E2315271DC3725F162AA97B322F44')),
(UNHEX('C0BA7D89308B7AC5BEBEAE56E44D20DE'), 'wp-content/plugins/wordpress-popup/inc/opt-in-front.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5742A21D5E2EB1BEE0044A84527ABE6E')),
(UNHEX('0101AB2F11D32B5ACCB83EA594A10FD0'), 'wp-content/plugins/wordpress-popup/inc/opt-in-geo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D5B39E844E67BEBB2E2EEFC96DCE2AE')),
(UNHEX('C9E2CF464B92D4A99DBC428A2A0D4448'), 'wp-content/plugins/wordpress-popup/inc/opt-in-model-stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('147EC601D4ADD7E39C1C53F05156BEBB')),
(UNHEX('D10C27D006D5BB60D60270839CA8C8B0'), 'wp-content/plugins/wordpress-popup/inc/opt-in-model.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26813DD8F39B6EFC4A3A65C188A161EC')),
(UNHEX('7A9324BEBAA25007E8BD0C6C78AF450D'), 'wp-content/plugins/wordpress-popup/inc/opt-in-provider-abstract.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36147F6E838F02CA98D8134F5D0EA0CD')),
(UNHEX('82E755E9922EE04D53657D7251547CB3'), 'wp-content/plugins/wordpress-popup/inc/opt-in-provider-interface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('153763F44617AB7C9D103546CB7A74F4')),
(UNHEX('5F8E1464A50C8F3B9159C0AA58CBFA01'), 'wp-content/plugins/wordpress-popup/inc/opt-in-utils.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9762AFD4945C83B9F4C732AF4105327B')),
(UNHEX('2A1B295B5DCD6A2234E5090434DD7699'), 'wp-content/plugins/wordpress-popup/inc/opt-in-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8A0606BEB76B6F20060F9FBA0BE0155')),
(UNHEX('93E7731D2BB73BB0F5B2570D8B69A87F'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-activecampaign-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42B451161030BD10B69BF4D91B0585F0')),
(UNHEX('95F6A674FF32A04E8410D4F01296A6FA'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-activecampaign.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2E32B213D79CDF58E67F1B561ED8B592')),
(UNHEX('A728FDED1BC806F095B2D00BD016B624'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-aweber.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB54F9A7053CD54214C93FCBB40EA6D2')),
(UNHEX('E879A5E7324132D3637F5ED3C2024EFB'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-campaignmonitor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2B7679F76F00FDB423AC696AD67BD20')),
(UNHEX('DA0685A3DD72B4973A2DB675738014B9'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-constantcontact-loader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8EC4DEA25B38A6E054952F11EA6BE9C7')),
(UNHEX('A1B2367B7245BA91D2E1BBECD86C1DD5'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-constantcontact.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BCAEDBBED9C780C909356498530D9FA')),
(UNHEX('E0E57035A1043BB1D0FAFF14686E8BFD'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-e-newsletter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9AC9D4EC6D377BFD87F164A3F56BB37')),
(UNHEX('AEB505BB131C6169111C039462D54DB3'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-get-response-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDCE95BE3C49332A6B2CEAE55C9D364F')),
(UNHEX('85AEF0C779E5921DBDECC57735EFC528'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-get-response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D335FEDCBE2875DF26546B921F70B9C')),
(UNHEX('1A360FAB78671FE67DE4E79DF4AA44A7'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-infusion-soft.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05222CA600D69A9E115A86B21AFD2F19')),
(UNHEX('09B2DB2DA361015B077C224B77FB56B2'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-infusionsoft-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('866E723B27EB2736DF85C6FE53137DB3')),
(UNHEX('3BF6965F266E312BB84EBA7CF3780706'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-mad-mimi-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01F65EEF2277659C55A295A181AC476B')),
(UNHEX('CA9DC1F164192DDCE7459C625C8E7263'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-mad-mimi.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F5BFE9259DD257D3B3415737ED4110D5')),
(UNHEX('045BA9851AC950546D60BCD72E50ED30'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-mailchimp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C92D83AE443E5265981A126D789AEC9C')),
(UNHEX('D1425163D4BCA31A73707EAE03A632D9'), 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-sendy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('956A3C75EEBC72A2A0C62EF75AB95AE3')),
(UNHEX('B22025C9A79642DC6D65446011CF8085'), 'wp-content/plugins/wordpress-popup/languages/hustle-en_US.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('869850994436F7F56E006BC880F36E62')),
(UNHEX('70472912E2299B9E958BBD104F2DE09D'), 'wp-content/plugins/wordpress-popup/languages/hustle-en_US.po', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1778C840F445519B0F0F3244364388D')),
(UNHEX('EFD9A1578F341465F4E055C73E1FBF61'), 'wp-content/plugins/wordpress-popup/lib/free-dashboard/admin.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A062C31AF86A03CB5E28A6D592A16AA5')),
(UNHEX('19EFE3BF8C673894890E4CAB04FDD0BF'), 'wp-content/plugins/wordpress-popup/lib/free-dashboard/admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F9363BB01DF8D184E301F780DD78D48')),
(UNHEX('DB43A653F1D3BAE2D4DFE8A90D06C142'), 'wp-content/plugins/wordpress-popup/lib/free-dashboard/module.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A90D869B014DDD591DE75F68CAC8A35F')),
(UNHEX('55E8271CA98BE6C15124418338F5BFBA'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/Gruntfile.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D34784C89FBF9B30A0BA3E3BC81AF704')),
(UNHEX('A78E733B0B7EF565B051FAA7E29371D5'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/changelog.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB8EACAF1254A19F1889998F8DDCFF38')),
(UNHEX('036574D9DFCB900BED03D17AB332405D'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D428C580E57CE82B2E4F3C235A5F93E0')),
(UNHEX('3CEBDBA46B7BC2869F68ABAD5D50C289'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/animate.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD2DC1923DE1D4EB56D72269A9F566A0')),
(UNHEX('3F026ABA11380FF4E3C634AFE0ADFDDC'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/animate.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9DA5752B5915860A72A564C287FED2E')),
(UNHEX('8EBD096C73882225CFF69C0C7FE05E28'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/fontawesome.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F83E421CF3F9DB31497BD40A5DA7C3F')),
(UNHEX('322F646C24FFB0B2E8DC1ECDED0D37F0'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/fontawesome.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D3C894B039921783A71E97B8095B003')),
(UNHEX('8D38AEA521330778D84E1E03A6D2AD24'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/jquery-ui.wpmui.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0E0F31DDEF9EEB4488611F54486E600')),
(UNHEX('40A6E69E1A764DA18461E17EF84DE1DB'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/jquery-ui.wpmui.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('800D248A05D3203DF6F7A517F09BD42A')),
(UNHEX('A4FFC8277DC6A4BC44208451118D4C48'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/animate-css/animate.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4BCCC4AEF88D2174CE2C84F7250F23C8')),
(UNHEX('578AAEC122FB6F117D4796879E364515'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_animated.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('79DB4428659752F59630C4388BBAA174')),
(UNHEX('DD3AC464B57E7702341F512CDF6B88D7'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_bordered-pulled.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E194951EE06DD4CDE6F94ED2EC86E47')),
(UNHEX('38C2045A0F4925AC7D56D1E8F61F9B78'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_core.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2FF972007014DF48DF4E9C45B5607062')),
(UNHEX('E16BE03951F3DC153717CC81B2E7FA43'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_fixed-width.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E6FAC8BE09E2D3DC38FE9248B2EB0472')),
(UNHEX('7F302B43255C1CA3E726C0D79C9E10AF'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_icons.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D8F2FF1E33F38A488693761621716E5')),
(UNHEX('8A1821D22F7004951D737D1978FE3AA5'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_larger.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8B00A4D732107FC1844EA18314C3CFF9')),
(UNHEX('92AB45B1882615ABA38380748F5F82D6'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_list.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C33B069275C5877A4B3F144684664BF5')),
(UNHEX('53CA3B61EDDDF887039FFA011A4B2923'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_mixins.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0C47B946678084F19A4F2F126871967')),
(UNHEX('83D64E86DBD541BF35E363FB6FFD0F6C'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_path.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC0E61F6D2268467E5FACC71B11FE197')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('C6230F98FD4360B0D640B0BB779BB4EF'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_rotated-flipped.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A3F214EDDA562BF122802DA5C686A12')),
(UNHEX('5F3FAC6ADE34C9DF595D60ECF6804814'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_spinning.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC1BC4945B70D7DFD5E54AC44BAD30B9')),
(UNHEX('F57B08782D156DC975662FBCC3AA94F8'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_stacked.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('638E8AE84E80A3428E9446578A7ED6A0')),
(UNHEX('0DF48F1FFEF79D0228EA4E03EB8AAC51'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_variables.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBCF0A9000BD4E4C60318AB3C227D246')),
(UNHEX('F642D594A867677958EBC1F93207EAE4'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/font-awesome.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6037C4EC2758679BA766D1F23F674607')),
(UNHEX('9D1D2A7C6DAE02BB80EC2B778857DC11'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/jquery-ui/jquery-ui-1.11.4.custom.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A020B32F31D4E95E5C4140238D8552AF')),
(UNHEX('E6536986006039675435CE75344CD047'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/select2/select2.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26B0C46E54553888485DCDB2575983EC')),
(UNHEX('BA0C962BBDAE32710A8493D87A2B81AC'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-card-list.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F281BF156F5CCAF710175210CC301F3')),
(UNHEX('854B331E483B0B1172904A9AAFF48D87'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-html.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32CD5C199E480B117F3D727637CE4310')),
(UNHEX('137DC400C1A91088FC781B51DBC8EB80'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-ui.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('44632737DE8F03DAAA96D59ACD2DBD82')),
(UNHEX('EE95D3F8AFA6CFC5437B7892D2EF9B59'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-vnav.scss', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F417D2EC565F030C109D53D5695D53EF')),
(UNHEX('153F9D486316DC6EB6179FF28D8EC631'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/select2.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E45C4ED1478439B5C16E8D7A0B4B7A6')),
(UNHEX('367EAD0670401086F0AA253D7E3699D4'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/select2.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('285D7911638CB0E9AADDEBDA6AC64A17')),
(UNHEX('0155A85D6610DC81E3F1E5B1679F2A36'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-card-list.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE35A0A985819D83D9D23D7AE7FFDF12')),
(UNHEX('5CDD12BBD7E18A6468F9BB641F81CD76'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-card-list.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F8B91C42B0626A7EE309BA6EAAC8A49')),
(UNHEX('6771BC151E480A0525BB4589CC8CC92D'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-html.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6FFEEBFA210697416C1071F3309E1041')),
(UNHEX('E2E6D862717C503D8461578A1E899AEF'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-html.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD30BA2EEA8DE63090DB9E504568A524')),
(UNHEX('405359E9BFC3E4DB4A32AB1DC938C703'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-ui.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('67ECC02FDDC1358CD0D438B3AEB6B835')),
(UNHEX('A50E838A9D21969F5124340A643E3E77'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-ui.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B90A16218C21087F6BEC119348125DA')),
(UNHEX('D58692A197DED2EB12C3DECA292A6B9B'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-vnav.3.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('197D581FBB25CF94060259AD8D3D7C2C')),
(UNHEX('53C09662E92460BCDE9194CDBC7A22B6'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-vnav.3.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1254E7E6CCDE0153C10E8044A9C14E87')),
(UNHEX('84E6BCEBEC85E8CD2018C397EAB40991'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/FontAwesome440.otf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('668743FE7258676F8EF8F9B47D2A623E')),
(UNHEX('91193BF98A11C60B590E6F6F8D59E19D'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45C73723862C6FC5EB3D6961DB2D71FB')),
(UNHEX('3BB7E37B7BAC0D42A6367B6482F312F9'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F8C0645FC719130835622E71478843EA')),
(UNHEX('FAD08883D6688BFEA34959F78A87453D'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C87870AB40D63CFB8870C1F183F9939')),
(UNHEX('CBA24D51EF17566EA4694074FB84BEAE'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DFB02F8F6D0CEDC009EE5887CC68F1F3')),
(UNHEX('3B082A1AFDBC409A64284E4F3C32944C'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.woff2', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B5A84AAF1C9485E060C503A0FF8CADB')),
(UNHEX('9AD755979AB5F02C78085C4EDCACE9AF'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7381DFF05C293ECDCD0E967306614A05')),
(UNHEX('B6442A81DC54F0E6612B37058D1E0FF1'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_0_f4fff4_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6EDEAB1CD439B7CB621908DB5BABE672')),
(UNHEX('96B64F0C6344C468762474E909E40AF9'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_0_fff4f4_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC10178715B361408C0E4BF4C67184CF')),
(UNHEX('6B297687BCFD8101BCA5E54C160BA779'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_75_cccccc_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38405CB227F5FF658DE4D52721312CC2')),
(UNHEX('65C99063BBF05628EF97CE7D57563258'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_75_ffffff_40x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E11FF87C5F6A763DDD06DF05AB532B4F')),
(UNHEX('3FE8688C901F42E4D77740BA553192C5'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_highlight-hard_65_ffffff_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21DCF1A142FE2E6180FC72224CCA052F')),
(UNHEX('02338B28F3BA89F293314DE6B232D899'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_highlight-hard_75_dadada_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A53F5CF0E340B2240AA0E3A3085C6CF8')),
(UNHEX('8DB618924D92C70A2380714BFD7E4A46'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_highlight-hard_75_e6e6e6_1x100.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BECC77EA448FC91947AE086E442F27F9')),
(UNHEX('9691B63FB850780137414B314208C361'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_222222_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A3C5468F484F07AC4A320D9E22ACB8C')),
(UNHEX('31B86735794009459CD3F7B352F1B357'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_454545_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B001AE33BD74FFF64BC609CE6A55628')),
(UNHEX('3CABFDE12870AC46130A3CA9EAB6B080'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_484_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A7DAE39E5A11AB40E7930E73CE527F1')),
(UNHEX('9C5BD116F8E2C1A12A8DCBACC4EC7827'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_888888_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CC57703E2F287DE68F76244A618F15C')),
(UNHEX('4041D50CE686269A3286D8083F29B185'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_A44_256x240.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DEE7604D6608700F113D2E78E84C4077')),
(UNHEX('42081C2802E0EAB6A7791EF9658FA6E4'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/select2.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2CA61B76E22053571DD8611E5AAC4900')),
(UNHEX('1D797D645AFD1A6974916793A2EB3F1F'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/select2x2.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49E3F006018662F60F1DB2AEC0B2CCA9')),
(UNHEX('D4B8179E30D8D8E86DD941559311B330'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/spinner.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('239A4F2D29907CA59C723E81C102E86C')),
(UNHEX('F9CED0F1D825D7206BA41AE8FD274351'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-array.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06DDA7ACE647D761C0C964D35437FA33')),
(UNHEX('A5717EE7F9BEF4DEF9117533CDC8F55E'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9873AD14C52421062AC815F685FB18CD')),
(UNHEX('E12AD2BF24E6DB7DFEBC37B8E2D689C2'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-debug.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAB70A5344E4B7DC70F3B4708088D3CF')),
(UNHEX('8495E76C91013E7397D8CCA7354406DD'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-html.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3BBA857648BD83BD4463369252A88D0')),
(UNHEX('FDC2544CCB94745C6A66ACE92BBB01B6'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-net.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66E251C0CB9441237A15105205097091')),
(UNHEX('63704C1B173DFBC7D5138C57A3563475'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-session.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1E05EE8F7779EF59948E2A91B920C32')),
(UNHEX('09173D38020CC5E5FD303DAAE868F9BF'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-ui.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0CBF6C16F116BAB56F78DC115DEE998E')),
(UNHEX('1FE7540F7D8FF3CA8C9A482F9508DF61'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-updates.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF7D1276E4D68ADE7A03580E360F38DD')),
(UNHEX('EB46049C573EE2BFA8C097EAFE005A55'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C41C546BDFA57AD3119902412AE31903')),
(UNHEX('04A50249870EF90170DFDD6FA319EF3F'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/select2.3.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD3E2855C77A919ADE1A12286BA3E79F')),
(UNHEX('1619D1F655B51E94EBE3F7863FD736F6'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/select2.3.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF7FA77B92ECA7D112DA58A3BC441533')),
(UNHEX('7736D2A33DAD2D0AF043A57B50984641'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ajaxdata.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('286A5B402781646DBA6C95053C799D7A')),
(UNHEX('1CE35AB5A4B8502D94FBA7543C8B99F5'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-binary.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECD3E51065C30C00989FD0E4193766DA')),
(UNHEX('CCA36E342A1363B4258E44409C896969'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-card-list.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9A7A09CD7940554D5585BED5702EFC4')),
(UNHEX('6109A755E0CEBF95D37595ECF02AFCD8'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui-hooks.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36E7EF6C348141DC53EF3D35E4F4A598')),
(UNHEX('316F31B6A16E7185EB55089ACA3176D9'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui-progress.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05D2CC2319B4C80118977785DE7996DB')),
(UNHEX('2DF73F0CC07C57BDA64CB2B74D1C5E3C'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui-window.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B77AA5FB4BA161DE47C39DD1C52F0A99')),
(UNHEX('5269D8D9477D05F764EE14E10B5F31FC'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('453334B24076F521CF5A5270CBCB3964')),
(UNHEX('1DA1C01FE1CAB583EF4480E847687E6B'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-vnav.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DC985B11DAAC7FD8180FD89ECA1C9F1')),
(UNHEX('7311EDF3B6874075F09E7AF9DD6471C5'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/vendor/select2/select2.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('68CF97DA0720D596462048D73B4B7851')),
(UNHEX('FB6901DBC20CE405281429240F4209CB'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-card-list.3.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D5099F6881CAC109985715B52B802A2')),
(UNHEX('B428EF05E1C6292C71B49C747630CB93'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-card-list.3.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B38610D65439782574CC7675639C4DE')),
(UNHEX('E40B66D6AF67A8078D1DE3C86D7618AC'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-ui.3.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C3A16A1AB9A0CFA55F5E613D0E63343')),
(UNHEX('DC70B52980D2B88C6EE68DC8A68C81EF'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-ui.3.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF1A262A8335F0A70233B525817BE6C6')),
(UNHEX('D8418E18B3A1A410EB807B6C78EA1F14'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-vnav.3.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D3565813ACCAECF71B22A52373D3CD3A')),
(UNHEX('73E9EB5F102D27569E74E9A9308F2F1B'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-vnav.3.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E5706C4469F97C2FA45A5878A39D773')),
(UNHEX('7C0C8E67BE00B1A0BDE1CEF9E0FDDA01'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B424F49A13AF80F0D50354F54916F00')),
(UNHEX('7A3B44A893B6CB5BBF19DA3422F44B18'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/package.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD632310DB2F459314A5298F551717E9')),
(UNHEX('80FE8E963161575065C9EA3899EC0C17'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/tests/php/bootstrap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('67D788CF5C989B72DE6AC99C069D8A99')),
(UNHEX('F3FB64662F2DEAF53375111D0F5AD36C'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/tests/php/phpunit.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDB50387D743F0202E5A75FD738B7DBD')),
(UNHEX('3CC0C64B5F0F093717A8C025A78CE9E6'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/tests/ui/popup.html', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4104C0550788883D36EBF9AA42B7928A')),
(UNHEX('AF2D7B420B353E7692103F475BFABE5F'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/view/list.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3295ED8D2B2ECC0D0029B381C959EC7C')),
(UNHEX('794B91698A7973042A3A23D09225DC25'), 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/view/pointer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('81B850C8131CB3295FCB2D6296A07B7A')),
(UNHEX('ABCD5466E9E6B874EA5B9D6362AADC08'), 'wp-content/plugins/wordpress-popup/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B765472B4EB37C43FE9A1FE9C3643145')),
(UNHEX('331FA98C1F328A49D8C9C473BD1926AD'), 'wp-content/plugins/wordpress-popup/opt-in-static.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0BCDED1BDA7E944D791B3384A34D556D')),
(UNHEX('B88CE62D622A11BE3E9E029DA6203F2C'), 'wp-content/plugins/wordpress-popup/popover.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A6F634529CA2D6E7411ECEA7DDA7B6BB')),
(UNHEX('F8AFD06B4A6326BE52650803BFE06E96'), 'wp-content/plugins/wordpress-popup/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57B50619452B3E73590CD902AEA67502')),
(UNHEX('C9E51FF31A5ED82454E3A46925E813EA'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Auth/CtctDataStore.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1C1C3EBDC09829562365AE5B3A70A43')),
(UNHEX('F1FCDE1A07AC1AA0012F1F91D744C347'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Auth/CtctOAuth2.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('206E5C7A10F14AC187949EBB8BBA35B3')),
(UNHEX('ED847971ED1919A95BDE0A24DFFCD0FC'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Auth/SessionDataStore.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('409D91582243E9DD29929F3C1942AF2B')),
(UNHEX('108DFCE67B29C483A08C57A90034E5C2'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Account/AccountInfo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBBD6BC608DDCAF5160AEF62E56D841B')),
(UNHEX('2A9368258EAC12CC939D0897DB477AF3'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Account/VerifiedEmailAddress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFB48D7741F99CC8550576146973E858')),
(UNHEX('2E913741CC37923EDE60D92152C8670F'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/Activity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('602E87DAAD6F1CC9481C16919945F547')),
(UNHEX('09ACE8450B43E4B133053FC80D0C3B7A'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/ActivityError.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F927B962E5D998494B54B23FBFC176C')),
(UNHEX('A1EE73EDA07895B60E054FDDF7CF7A59'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/AddContacts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42F22F64F50D485ACD46E191F27D1AEC')),
(UNHEX('53BA23F6FD2DA56E5B3F317A0C1ACB6D'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/AddContactsImportData.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6279B11F09E1FC65DA0CF42E9F32BFE7')),
(UNHEX('26C9CF1DD4CFD4CE2386EEB03014011E'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/ExportContacts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0220A76F36F24995D0BD783A9CFCB1EE')),
(UNHEX('2B3AF6A71C3D4D16E1955D2827691FE2'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Component.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B5098DA7D905C8D3A4E06DBF279C8D7')),
(UNHEX('66D8041861BB97225BA9E39D24E26F74'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/Address.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFE09F56CDD39B42E36ACC001F00A965')),
(UNHEX('7D8E993B719BBBEECCFC360E1D1337D5'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/Contact.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19C4F0C8D19FD10ED901BC97DBD6DE64')),
(UNHEX('723FC7CC3E3272E9B2AE04EBB23CA094'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/ContactList.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F8E8E37E0479C29B681D02ADED744B0')),
(UNHEX('01529521A72A176A9C2B9D9DFFA3C5CF'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/CustomField.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E1CB05B463722DC9DE7FB4949EC11BB6')),
(UNHEX('BFB556156A770673676F9302FB7A1A43'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/EmailAddress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('226C4E1A23C7537C20CC63A078823A8A')),
(UNHEX('1F9015F88718CF2FB77ED0DDC3AA8FBD'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/Note.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D72C5503DB5DD44EBC844B0A53A06645')),
(UNHEX('B0805715AFB4852C715FEA08113A3431'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/Campaign.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E372BD0842C3392A678E33731CB654DA')),
(UNHEX('77889340BEFF06C0BBCADBA578896EC7'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/ClickThroughDetails.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5153F3442FBFE9267139590801B4189E')),
(UNHEX('E59C828F9DC74F69770C259C08241A9F'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/MessageFooter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E154967DAC5188193D93F0ED1E5209D')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('94D9360A60161AA2057627B47C94672C'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/Schedule.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36629C6A13CE6786A0B903814678C083')),
(UNHEX('4E3C4C10942289DB320392F277257F01'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/TestSend.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1D9EA72DA526C6C47BE5DC2BC3BE64F')),
(UNHEX('11C2AF224FD5142C50F5B63733D5AA37'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Library/File.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8863EE2B8C326FFBFDDB28344BB0AA94')),
(UNHEX('5EC390959E538C6E32E6E30828E203DA'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Library/Folder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A7914644CC5F45B3AACB16CC91354EFE')),
(UNHEX('6410FC97E2AC483BF240EC4A5789DEDD'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Library/Thumbnail.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48E5A43554822602881FB95784384065')),
(UNHEX('9A8B6FF8120083A8FBE6CE02F242AC4E'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/ResultSet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8C2FAEA49972FB07C9C50D059ABA4C26')),
(UNHEX('1D647945B0277F717055E10195C436B0'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/BounceActivity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4B556B43AE388B58EF31E7B51F9E702')),
(UNHEX('191C2569D55FA3FB92BC8FC9E7DB6BC3'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/ClickActivity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D93102DCC64C1EFE0B9B9E2F191E9BC')),
(UNHEX('0CA698CA339992AD26485D2FC4997670'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/ForwardActivity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A79C6D139C81A1B1CA66A5C609CD761E')),
(UNHEX('0E729166BB99AAF8E1E2E83238A629BE'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/OpenActivity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1B72511053593BDC7828B4CFC082F4A5')),
(UNHEX('4DA2A1978AE1B69E08ACB4F4D9CF0298'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/SendActivity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E11B3877105BEC8FFFF6743CB9D9D351')),
(UNHEX('19C7D86445BB03B89733249E85635369'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/TrackingActivity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2132E068589589B35C28D8095060F6FB')),
(UNHEX('00837E4D8FC91A3DC8FC9CCFEBC2E42C'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/TrackingSummary.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0394AA3A56AFC2F4568C476386BAD24')),
(UNHEX('4F659ED3B8C29AFB99D9EBF55F5509A3'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/UnsubscribeActivity.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB956B7C1FDC5C4D3E8A9B08F13426BB')),
(UNHEX('2EE60C3AD4809EC6B29D5D139A180119'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/ConstantContact.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('59756EE657FA4F5ACFF6599EF1F95D76')),
(UNHEX('5832E611CD8C7D86B997BE4CD7E8CE05'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Exceptions/CtctException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DCC54A1118E05C0692277DEA2866C2CF')),
(UNHEX('16721AF07B8E4E26FF767B82E3C30425'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Exceptions/IllegalArgumentException.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B49345C3383F14F91CFE8B4250BC61E')),
(UNHEX('24BC5D1FB6B464C510C6741FD7F0ECA8'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Exceptions/OAuth2Exception.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A73E176785E3084E59437297927B60E9')),
(UNHEX('E114FCC0687E79CC289E9238E6A46F91'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/AccountService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1F4F5DD27C973AED6E513D0E0217DF53')),
(UNHEX('7F7C5DC7FDBB16B663F98562F7EDAA14'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ActivityService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DBC33473B7D0C0258BDEF817CB4F2F3')),
(UNHEX('8943B39EBFA29B57D0B42D16A9ABC793'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/BaseService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05B7515283DC4B42F7D4E2CBF35EDA0A')),
(UNHEX('000B47404829FADB047F5A99BFE1229B'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/CampaignScheduleService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF51FD5DE9C052613106AD87565E1677')),
(UNHEX('39EA6F7D0605B0973332E3AC867EB6FA'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/CampaignTrackingService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A616259CC0215FCF15D42332CB7A2EA6')),
(UNHEX('FDFDDCAC04EEB8B9B9F952B24E171160'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ContactService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('833884C497013E7592E72C513F09A4E8')),
(UNHEX('34B5248FA407433143A8D0AC146E6B67'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ContactTrackingService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('79F1788B79FF1471C307E18594648EE1')),
(UNHEX('D47175F6AEA82BCE8AC080B17404AA52'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/EmailMarketingService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A577D69139EF3D98EB0B90CAEDDD7926')),
(UNHEX('3C13EA63EB83D1AB088FAF04A345725D'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/LibraryService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('664AAD8ADDC5AEC6DAC7F8695BA0EF49')),
(UNHEX('DF0A7CFC3751CF4C15CAB183CF55E461'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ListService.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05725258BE321E44DD0504A599F46514')),
(UNHEX('7D49107B5E72739F300D219AE57B4966'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/SplClassLoader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F802CCDE0AE43863C0A076C36D2F2AA')),
(UNHEX('EBC2D4693D9549D5CF4CDBC7BEB1D408'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/Config.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4EDE6F9DC3B0C17B8C9CE5550D5F2E2')),
(UNHEX('5E7D7A1606A79B23BDD6CA7C4A456715'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/CurlResponse.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('659530D00547640C4E18D095B82FC931')),
(UNHEX('235D7B78370CF795274D0BEDFD938BB9'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/RestClient.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E62673B6BCAD9779F50FE30898EFB83E')),
(UNHEX('8A52D404648963714F2D522A25EDD11F'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/RestClientInterface.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AF40ECD75B9A952D50E84B4484975B1')),
(UNHEX('383AB4B8D2A1908E121F42DC791B19E4'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/WebHooks/CTCTWebhookUtil.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F57D15C25A6DED8D31CFA57A69CAB0C9')),
(UNHEX('4790E0EACC42C0A8ED90D0AD0F3BA0C5'), 'wp-content/plugins/wordpress-popup/vendor/Ctct/autoload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E4ABF1C4BF629B588707F6C543E274AF')),
(UNHEX('A181B26407954E6123FC3FA395825560'), 'wp-content/plugins/wordpress-popup/vendor/autoload.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F3CBF6AD80DD34182FD8F1D4D4FE144')),
(UNHEX('98545212E18A47D8980A1ECD15AE1A5A'), 'wp-content/plugins/wordpress-popup/vendor/autoload_52.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E87A22F13D3751035165BFEC8ADBC782')),
(UNHEX('087B3BD088DDEB1296D17E3C35C3A35D'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/LICENSE', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A016B9BB3868CD76C4CCA8B506FC873F')),
(UNHEX('8F18C3C3F480950EDF293E8C67221566'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F55125B7D3B0CCD061A047053BFE9430')),
(UNHEX('72A20F9E4E53E333057CBB2B2CF2BB1B'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8C83B907C37A71DD2140B7936CFF8D69')),
(UNHEX('29774892EEA4FF50AF075A99EEC5471E'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2B8A2FA4E0E1040276C64E4561EE310')),
(UNHEX('2D97C369B7828798B5AAC3B9159D753D'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_collection.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5420C64128192D3DFAC8E4B69C1ADAD2')),
(UNHEX('2231E2FF20C6871C457B673D75CD6359'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_entry.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42E12329EE48C167E15C2AF0DF40E63A')),
(UNHEX('5605020551BA6B202976184121A3EB83'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_entry_data_array.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF91B74016E2588C5D44D5C1B17F03EA')),
(UNHEX('E231589593F7A71723AC0C43DB304402'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E19A2C96F8348D0AF24A275D535BF6A')),
(UNHEX('9632F2C4EB08875700143D36852333ED'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/curl_object.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FD09B3BF6F372D58B9147FD2212EF53')),
(UNHEX('C286CD9E34371C3ABAFA4E0618D38400'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/curl_response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('37715DB38CFE1E8636EA50AC1F5229F9')),
(UNHEX('C514198315CBEB0B47887FCD661BEA2C'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/exceptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7AC8AC52D44F3E6C9C7D3B2D2530615')),
(UNHEX('9A3802E05A7597AC1357831E8BFB36E1'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/oauth_adapter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25A914131C49006B149BC2167A6CAA52')),
(UNHEX('A57CE18F9183E6E8F1D7C0DF9D2AFA7A'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/oauth_application.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C43461C6ED5C75C9DFBB2AD490AAB04E')),
(UNHEX('F50993E1F5EE8197036EA8E02D86D67A'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build/phpcs.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D321FD89A828027A5FFD2D19093D46F7')),
(UNHEX('B45B86B0B2D89D4D6A9F58A9115850B8'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build/phpmd.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17F604A812CBDD38C748E39C3ECCE97D')),
(UNHEX('68F4A73CBF8DA2206FF419E0E10A80C8'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build/phpunit.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D9B9A4C764FEF8BC1E27EDC939E237DF')),
(UNHEX('75165E778FE98AF62BA55E707B19D2BA'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('88F0D95DB9FBECCA36D49F18BE8CBBDC')),
(UNHEX('92B51B9F53BA8913588B7F47191BDE2E'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/composer.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7BAAC5E8EFEFCB1A31AB58FBB937172')),
(UNHEX('7EDD39BBC0B8A02561B8CDA0D33FD301'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/demo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB6A494C81E5AA298C9C974674727BA0')),
(UNHEX('B2D611B8CC20DA9F235388D6AC019760'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberAPITest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C6ACDC5C5F6B06314702D6CBD23B6D9')),
(UNHEX('D6AE4B029A7F480CE78903E3BD4C2E51'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCollectionFindTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4956B15BF115CC1ABA76632F0D334020')),
(UNHEX('958F9BCF6D24CDC5C5977ABA6C2D4722'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCollectionParentEntryTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8DF4AED03995C6374ED9EA14D5B2FCF5')),
(UNHEX('36FF51396898F8944591147347CBEADA'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCollectionTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9EC244A6D68BD42C06DAF5B72126D224')),
(UNHEX('5FEF2EA898BF8A5F96638FA6459F4F2A'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCreateEntryTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B56EEFC9B3BE0D1CB558EF9E21D253BC')),
(UNHEX('97FF796667A9DBA9141D579DFF34274F'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberEntryTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75FE11DA3EC81CD314257375CC465A04')),
(UNHEX('C2E9270261D85049C448A0D9B2E1C82A'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/MultiVersionTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FED3A4BD9C56089C3BC81383991ADE2C')),
(UNHEX('65465BC3DC8FE8D6947D1EBFD0F32364'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/OAuthApplicationTest.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D037A97E74A5AFFB5E75743160AB0B1A')),
(UNHEX('91236627D3D70FCAA896939E411FBF60'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/1.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('784B26E45887294B31AA2B28AFE890C2')),
(UNHEX('69DB56BB3CA2F624858895D475BBB6ED'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/findSubscribers.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B08BA9EF5E2CCCB24E5AA5690268F521')),
(UNHEX('0177D3C2DCD3D72ECD08B7623BB653A5'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/findSubscribers_ts.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5EA0AD9260B1550A14CC58D2C39B03D')),
(UNHEX('D86C818387AC85AF4EDB6D41AA9B7639'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/page1.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A45D4F5402C63CFCD1BBC9B35BC2B360')),
(UNHEX('026A623116C7BD16D206182F7BA7FE9C'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/webFormSplitTests.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AEE7AF8A86EC12BA23E7BCF9DBC57D41')),
(UNHEX('11AAD67088FE3ACA9FD85CB37FA210B7'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/webForms.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('769E86794ADCEFBE8DA250ED0A4441B1')),
(UNHEX('BDFCC75DD9D6237FC91EE9B0DD1976CF'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/campaigns/303449.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9AE83B5CAF2AF409CD8937C770634D34')),
(UNHEX('6E792A42940243C35907B23783D8B142'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/custom_fields/1.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A153444DCC5BEA6C7779CE6E8EE80A8D')),
(UNHEX('26D3B00237C4914267949840105DF4D1'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/custom_fields/2.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F820E8C8B0935CEA4669B30E6ADC7BD8')),
(UNHEX('BFA610861FAA123238C775CC42A8FD8E'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/custom_fields/303449.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6F11BB141084A9DFCE5C3CC91B33A85')),
(UNHEX('B0AD83F8DF5ED1B096B9876B870817D9'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/empty.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFCD208495D565EF66E7DFF9F98764DA')),
(UNHEX('25781C9B1AC7EEAE3865D5A245DEA935'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/error.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5801D7AA6CFD704AB4868C0C39889151')),
(UNHEX('671DBBDFAE6A183812410B1086BBBA4E'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/303449.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9700BA9DC7A5E0B767ECDF6106552123')),
(UNHEX('1A28AD6AED6127672FB78EE4A0326C75'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/505454.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DC47013BB75BDBF5D37192DE0601876')),
(UNHEX('441172F24202B3F7D0B56CFEF0F9A8F8'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/page1.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('766ACFB82ED8A6F51BE9891C6E778F1D')),
(UNHEX('75CA1AC90AD4C3A151803916DF1EDF0A'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/page2.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('403680F61222DD14AFBBBA1DEFD1B5A9')),
(UNHEX('2059ADD6707E3A1C332CA71129196B11'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/1.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EA43F1DF98B0ACF5DB31F000F8ED2AFC')),
(UNHEX('F02E339AE048701252FEA85F8D01B153'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/2.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B5C6CC65D67DE95C6E603B17DF9FA87')),
(UNHEX('8C0A12CFD638D732CBCDB4C7265B2AD3'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/3.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F979F39B7265017E43DA1F361A65C10')),
(UNHEX('379B614B50F78BABF753E15D4CC0DC7A'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/activity.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AA922D593440B5706E50A13A5AED745')),
(UNHEX('B18F75DB3E1D971CEAB4A061F6716D1B'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/activity_ts.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5EA0AD9260B1550A14CC58D2C39B03D')),
(UNHEX('700ADDAC9F7BD285284504AC9C569BD5'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2769F0C7D56B0AF2B0DCFE013CDA1830')),
(UNHEX('FCACE9FDF60ED80292AAA70E73F1E7C8'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_1of2.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F650BCCAF6D2693C63011E71AEFAB58')),
(UNHEX('B4E7E2E5D8119C3F15A0175BB553BF4D'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_1of2_tsl.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10400C6FAF166902B52FB97042F1E0EB')),
(UNHEX('B4DA348E1C476B7369D4041580AD7B00'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_2of2.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('597FB0DA4031BE8BF97B177FFDA83263')),
(UNHEX('4086CF03842DF4AB02B8AB73D25FFA22'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_tsl.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5EA0AD9260B1550A14CC58D2C39B03D')),
(UNHEX('21BD3802EAE1F1966CA07C6F8B039406'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/nonexist.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('88058EB011021A1AAB803954D8C699CF')),
(UNHEX('8EA8236F874CB0CE0324FBCB4E11B7E7'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/nonexist_tsl.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21438EF4B9AD4FC266B6129A2F60DE29')),
(UNHEX('7D0FE4079724624F7B162E38A9194630'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/page1.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B3D438E509FA6C1EEF7793C19560141F')),
(UNHEX('BE4637AD21434245F4131C2F08AE8FB3'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/mock_adapter.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94D3416CA2902AFE61CF00EAD83179E5')),
(UNHEX('32A633B8732DB6D3707C684917CDC2A7'), 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/mock_data.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB5594FDF2D9F38B5F7717365CECE148')),
(UNHEX('E38E90E13FF613E3336BAE0DDD0D3C98'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/CONTRIBUTING.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FC870F0129FBAEEABC1A67CA875FB1F8')),
(UNHEX('3B49128FA29254FD670FE1FB08D13CCF'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/HISTORY.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C6D5F8BCAC748F38D597CC25F37039C')),
(UNHEX('197B2C4DCCAFCB98B2C01E9DBB6D940C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/LICENSE', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83695DB987C37F35FE4533DF3C5DCAD4')),
(UNHEX('6DD58F00A4593891B34A31FF74351827'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F012E3622708AFEA6D55AF6D04F855AE')),
(UNHEX('A5F16D801782A315A64D404E5FD38AF3'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/RELEASE.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F0C1EDC3EEBAD9031A3B02221F10C24')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('35DA5F13373CA524F8473A4B101856D0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/base_classes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90E88FF6CB8F1028AA6A534B8E8BF4B7')),
(UNHEX('BE7C7E8EF3EB75BC46A82725D75A75A3'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/cacert.pem', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94E68D34DCFCC327893FF4000AFBB12F')),
(UNHEX('C6B9D10C6EA9D9C365F80244F0AEE703'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/exceptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73492CBE74E0919D973B30ADE1AF7238')),
(UNHEX('138BC527AF36F42A705E60A97A3D2639'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/log.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A47FC8007D83898D7AE942058E8A527D')),
(UNHEX('F8B4C75A641070F530B3EB1D86AD60FC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/serialisation.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A53C6A0B5CC1792CB6AB7E67C5788F14')),
(UNHEX('DE399079DCB951533B6522A09CB77357'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/services_json.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8ACC19A8A27DAAB43722311654ED0CF3')),
(UNHEX('C39F0C3443F82E64EA093C0EE9F7BFA0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/transport.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC0B53F1C4C4959F4DEC0E75287671BD')),
(UNHEX('3C1975846DC21AC66F3E726A2D3337F0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/composer.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84A979E5666E5EFA996E12B65C00F278')),
(UNHEX('76AE7E7D9F258A732A2DDBDE234A5C04'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/composer.lock', 1, UNHEX('00000000000000000000000000000000'), UNHEX('62BE68B68DEA19F955B8D66590999F67')),
(UNHEX('EBDBA9E5B01EADB3DB30143FBAE9E49C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_administrators.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B671E16A038B9A0B8961EEA6772C265')),
(UNHEX('D631A2F469C47C91E9F65BD9BEA6280F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_campaigns.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0B63FFD30275ED6590F73551492E312')),
(UNHEX('C086CA05F70DA7F1ABCDD4282BE1AD51'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_clients.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E2FEE440BAE90BCD721E7D5C4B6E2A41')),
(UNHEX('53B781EB2EA8ED339936308313FA7511'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_general.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F3999B2FBC3DE125A5C43998E9824B3')),
(UNHEX('73AE6F251D819E04C2D9EF394DF71E9C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_lists.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F3E880F1FC33ECC8219D56A805744B1')),
(UNHEX('3CBD3F639A617C64A2504ECEB8F8B952'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_people.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49385C757E5B2788BE59BD44FDCEA450')),
(UNHEX('43E3C2785FAEDDA768CE5603180C6D6E'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_segments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE9B8985A02C656253F993C37139794B')),
(UNHEX('CFADDB12ADA99700215894EAAA27E349'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_subscribers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C98F26336D44C77F09FE84102EEAE200')),
(UNHEX('BD3AED63D9BE59C2E9B32BD90660BC5B'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_templates.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F4E35DFDAFC99E1E2C7726E1382EC4C')),
(UNHEX('52B445B84C108DC145903210BACA8429'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_transactional_classicemail.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD55B2A557EBFAFE7ABBC06574DB23EE')),
(UNHEX('04DF87A45319ECBCC1FE16108D848438'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_transactional_smartemail.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('154C2CFB39C9EBBF0B16B0BB4F481C8B')),
(UNHEX('EB411CE7FB08F306E56291E554F32341'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_transactional_timeline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9CE86341646CCEFB14932670F78F2DF7')),
(UNHEX('37611C7EB18572411BC7FDDB7A4F4763'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/auth_with_api_key.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D69D764999A741F3379285B570BE0A04')),
(UNHEX('AA793A7FCFD69BADB817B5B4356DBEEE'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/auth_with_oauth.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D4596B8850F5B60604B6B220C04EC45')),
(UNHEX('F2C84E9CCF930B7D4A7F2413AA5B0185'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/exchange_token.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3AEAD3EE1A8924553FEDE2EFCF3FCA9')),
(UNHEX('C44B36C9A5B7EC3F44F0640AFF0B759A'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/get_authorize_url.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('500DE28F23C64386903E32BB81C9C9CD')),
(UNHEX('A85FD55AC974B45E1627C86C57E73F93'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/refresh_token.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A559ACE48B077A15F7112650D35B73E7')),
(UNHEX('24B15A511EE3FC7A8588E1833806DE1C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/create.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4BAD8EB95BA902EC002F3508FF0ADBA')),
(UNHEX('0B7B5FEC81B06074FCC8B820C15BACBF'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/create_from_template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E2313CABBE16CAC980F48FEC2E65D4D')),
(UNHEX('AD41868D27C1626478AB9F2F1DF96188'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/delete.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('80CBACF725DE9A9D1CFB4737493460EC')),
(UNHEX('0C3DA7F70CAF108973985D35B7BD36BB'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_bounces.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E212C3A49ECC0AD22C37C298E58D9B09')),
(UNHEX('5CFF94EE0C0F0B256C86D6D54AE1F9FA'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_clicks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('069811044ABB8479E49DD07C7F2272E4')),
(UNHEX('69532A31291E86C6A952F7C81E1D0600'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_email_client_usage.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6C3EF2B2630A9D7F7008706E8D1343A')),
(UNHEX('EF0F9F036C5E4B3D6217DBA6960E7BB0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_lists_and_segments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('30B39EAE3BE25EE3FA314C35D810F723')),
(UNHEX('A4BEF1FE5C47C83EC782ADDA00C6332F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_opens.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C2714971B9977C9571056782A9DCD46')),
(UNHEX('0DC823ADC23614E6E5483AAAA57F78EB'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_recipients.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FD78EA344412E82A648790F2260A12E')),
(UNHEX('48B5989748F628FC0CD899EE7CDE4484'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_spam.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82B8DDFB1459C3F10426FB99D15EA48E')),
(UNHEX('B3B4A093816E225A73AC9C9A9A254E14'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_summary.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76E228C727A2D0F8D720250BD4EEB338')),
(UNHEX('A3B83A50602255ADBC381207117F7ACC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_unsubscribes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D457986B0E0652566CDA50F170DE7B1')),
(UNHEX('3AD8F8A41538D1382982D4D4D4BC91CD'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/send.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('18BFA7D30F006C008C751A0B09D7E84C')),
(UNHEX('DF694D7FB3D03E6A3591798A7DB1FC4D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/send_preview.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71F02A1924AB9A6C51E70B1823A177F9')),
(UNHEX('91AC2555324CC91155086DB03634BF09'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/unschedule.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C94B274530A7FCAAA557B5F2054E8B79')),
(UNHEX('031F8164D0B87EAFF5B2A3C56B6D50A2'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/create.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51D1832615DDD0A8662A5277EAE41B87')),
(UNHEX('7AE9EF50B6716B3C9A16CE809088C412'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/delete.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51E698530732EB5C3A95DCDE9A7493E8')),
(UNHEX('087EB9E737B6F832F124247BE911AB72'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('016145210E1327C853C306CB597397BE')),
(UNHEX('934863700CB4462C69AA52CB126B2BC4'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_campaigns.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D2030235CA6D131EC1AC18CD05EEC226')),
(UNHEX('C51CF676A0E51EE9E0054441A8B638C0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_drafts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6D5D3BAD836CEC6B9E6BA736FC50A2B2')),
(UNHEX('B98003A65E88BFC9837FABA18448D277'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_lists.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A8B70604D0A823DC8C414ECD2501C06')),
(UNHEX('A4EC11A14CF2AB1DED91D13F5027B2F5'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_lists_for_email.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38EB44C3C292FA06EABB2DB10AB4C36B')),
(UNHEX('90339684634BC26AC335D49411641E2F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_scheduled.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABF7D21042454DC2F40C285B31B780C2')),
(UNHEX('B9273F9AB27C1AE5A7C98BD34CF34DFC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_segments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8D26A71355F49E947D9E3E049B2CB0E')),
(UNHEX('ADD0C429F0CA0725A1AF4796B31EA7CF'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_suppressionlist.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7EAC834FE8C52338B6664C37C1E1E16E')),
(UNHEX('FF6726CBA75CD9B30FB2F24751A1CDFC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_templates.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('736F8180E6321B2C4841A4AE4BBEC6A0')),
(UNHEX('2F09C275F126714366D65578379EF86E'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/set_basics.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0892A30AE574E47A394D24E56F8FAB9')),
(UNHEX('5150823F9A12F9C8E19E3C38F743AEB5'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/set_monthly_billing.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A236782BA6EBDC3D1D12788F38B766E')),
(UNHEX('A6B6230322764D6B7B84E30CBFFD6265'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/set_payg_billing.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D47B2AC13A142FA3FC200362DD069E9C')),
(UNHEX('C4AB288A67BDF695DE96B6944013C0FE'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/suppress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75AC228B936F3C8F7CF064A7375569DB')),
(UNHEX('82FA6D9357809AADF786EA8C2F3F31A3'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/transfer_credits.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('371FAB4F027940A5C8318D5F3A1A2AEA')),
(UNHEX('6C8C3959C5827939873DD9FCCCB35619'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/unsuppress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F62D5F4072115934B8DB79061089DA84')),
(UNHEX('986559C41C17450EC52A4EAAE0DB5DDF'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/external_session_url.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5AE7BAF9489A69F7C210E9C5F845D304')),
(UNHEX('385070F5171D4AC521760F37146E4272'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_apikey.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84F25F348C0D8F89476035D0D432CE30')),
(UNHEX('D6F0FF2E2425F929B14021FB5B299F8D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_billing_details.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21394B826393D01ECC907D2E29A8079E')),
(UNHEX('1395EB0A8DDDBCA20E2C5F372FD8C4BC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_clients.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8936C3DC02BE23F4DE22BC9919F18989')),
(UNHEX('C1C4D254F622D5FF0E3F2CB64AE2294D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_countries.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('198814CB86DFDF7214FB31365BC58DD5')),
(UNHEX('0E13D5CE96B898FC15B43D217AC4DF05'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_systemdate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1808324D60BB170990DE955C11C5FDE')),
(UNHEX('8740C82834F29B99C40551D84BCB74AD'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_timezones.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED8726CAEC6FCCDE961ABA0BDCB1205F')),
(UNHEX('5251CBB6805647A75635EFDAA6E5ADC1'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/activate_webhook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B10CD8DCF2777792E6724C8F447BD5C3')),
(UNHEX('C7A403CC272FFF597BD68769D5772FB3'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/create.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2E815FF44C9E547CF682D6B8B806636')),
(UNHEX('03656B0BD6745E98E850EEE12D121FC4'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/create_custom_field.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('332DA2A202C4E39BEE4832617512C3AD')),
(UNHEX('570601F34C9A3472B1D3929A6BFE20D2'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/create_webhook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('413F242AF362F157FF00E2419FDB8694')),
(UNHEX('3665091648930A2C236099F2C249F6B7'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/deactivate_webhook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2AD37CF4EAFF0D66BEC591364CB39FD3')),
(UNHEX('F676F0D4508838EFAE7531ADE5AE2BAC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/delete.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47061631C2ED5711AA7637E96D90BEC8')),
(UNHEX('88BA8F03938816E28B8A82DC0501262B'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/delete_custom_field.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA22F0C5386FBC3A4ECB4B6173AB3487')),
(UNHEX('8076B83ED8A4DBDC11B3F2B0A77F4834'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/delete_webhook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57EC8605BF689A6CBF798791593DE7B9')),
(UNHEX('51AB51D417B14003C6595FE00B86A9B8'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05906CD0C0744A51D865CFBD763B18D9')),
(UNHEX('CC29EAD705EBBC5DB7F221AEEE2A7528'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_active_subscribers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5ED8A318338DB8ED35FAB25E0F581D7C')),
(UNHEX('D6AEEFC363C69B7E58CA66210CB4F721'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_bounced_subscribers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F2F50FEC42B870D0347CCA870E28FED')),
(UNHEX('3BCA85A689C8EF104A24E3621C103085'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_custom_fields.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2164F4810638144C6494581E72823438')),
(UNHEX('B3FECCE376CE5E9C125044342B37BD9A'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_deleted_subscribers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8797A2C10F6E25FB9AEB0CC14512DED')),
(UNHEX('732C2E8415284B7D957865B691D4D918'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_segments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FBEA96E05593463D7BDB888812B0E913')),
(UNHEX('85E79E8917CAF4D54004F5B2700AA7DE'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DFC5FD348D3726CAA4DD297C4547FE4F')),
(UNHEX('9E12DE2357E026BCC853E4A4326D29E1'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_unconfirmed_subscribers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3023D8878F5C9E52FE66F1F49A4A0816')),
(UNHEX('EA2AC25D37F6A6196BDCDFB2AA3F8F1F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_unsubscribed_subscribers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82853EB16CA253C65B54F38C983E679D')),
(UNHEX('B1B03419A0252CE2D78362A824833D94'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_webhooks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF0C9AC0939311FBD9747F8B5E7C6E08')),
(UNHEX('55CC47E84F1FD7FCBC69219AE990EF6D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/list_webhook_receiver.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A98A5FC567A84011652E68C3EC20932')),
(UNHEX('345D8BE9F07D392014B4AC55BD6F3F1A'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/test_webhook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8162F7DF985DD7012FEA79454EFAB1C')),
(UNHEX('20256ED0E78FBEF1AC9893B6C7FF65DC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA16E7A97F07C5B31E51D044B1261E7C')),
(UNHEX('28CE2E59938B4905F60E48088CC5B882'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/update_custom_field.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('453ED45BC3A299DFF9F2706A5E7A11A4')),
(UNHEX('80AF47B76E3BB0F32EEAD1082D0CE016'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/update_field_options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F29A1E639E18ECA157FB462A6BFA411')),
(UNHEX('02E8A8BC2D06CBC3C3E09F8BD83C660A'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/add_rule.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7126A7F0281B4D396471FFD327996462')),
(UNHEX('474ECE4F2F24908F3DFDA5D154A912CF'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/clear_rules.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB481AA2AC452D892B903395847335C8')),
(UNHEX('32CB825DE6B95DCE697A3EB100E011EF'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/create.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBCD9BBB3AE0A2F014E916F05A6A04F2')),
(UNHEX('37040503A97CCAC6A00B5826AB59D3F2'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/delete.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DEE637BD014C1ADAA92EB1E3CD6AAD9')),
(UNHEX('666B43E5160181AA99D332B5F27E6575'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/get.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A0D8D201F35846111A6D0F3CE09DA18')),
(UNHEX('71A5E5263EBE82B92B7294A56831F0B0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/get_subscribers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D5CEABADF0B3B08A161AB634E10CA49')),
(UNHEX('FC00A1ACA1764281269ECDF4E519E8A9'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6344CA6D2310C346FC6C812A14DC867')),
(UNHEX('F002F6E1E12FD24BD8A62441B0E5BE7C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/add.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E9BB26C6184BD54D117491608190827A')),
(UNHEX('885E6605BE07E8A61CE035A98BDE9673'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/delete.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('862BE711F490CF05D0BC73DFDE4A8C6C')),
(UNHEX('8D1712F5E07581E06B18FA9E5938358A'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/get.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('689FD2DB4F5BA4171BB29BF1C3D9D279')),
(UNHEX('CF8CC609DC22DEF78130CAD8C377F809'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/get_history.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CDE4067D0E386FCF5D2FED40147506D4')),
(UNHEX('6714E2328A638763AF9B2EE49C1448E8'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/import.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('14570535C10E7F2BD3515E6C43FF69A0')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('0AAE7AD4B79A84DD0B89ED3CFEFB623C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/unsubscribe.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4A692F538C9CFC0858137BE9E3BA849')),
(UNHEX('598068AB55801DB45487413A42DA561C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3164BE66871EFC6A4580AFC30E6ABA19')),
(UNHEX('1FB634ED2C938CC9C6A096BE53473A6F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/create.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A4AAB0557A6D2ABC4B282CC7B22D7DA')),
(UNHEX('7CFFAC553287C9ABFA203FE845160D1E'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/delete.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA573D49369CECC0DFF77FF0CA70072E')),
(UNHEX('D5ADDED11F8583EB1DCF848934B83538'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/get.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED14151B633D0BDB6C4F7928E4135CAC')),
(UNHEX('E26B3B902C88A2A8B70E513F10B877EB'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D66FE48FB8D801F49C2354672F2624A')),
(UNHEX('7353511D5F72E5B4EFBDC5A2147DE545'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/classic_groups.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('44C311BA8F18A4C8007543C174B829DE')),
(UNHEX('3ABF12165B6E8D47087B6611B8B6348F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/classic_send.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('96C8B9BDF72E948199CFC69371B00AE5')),
(UNHEX('5C456E843A0CCB5126D347A4A79DEEF0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/smart_details.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AEF358B9B0B8820B66B26B39A57E522')),
(UNHEX('F7390FC0D0BBC1D0A15DC9B07A23DBB4'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/smart_list.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4089F366F914179AE2D32E41F5E5E648')),
(UNHEX('BB8F5C5A9A2DD68DFC1BC4B2F5868B4C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/smart_send.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0914B572447C7F6C7823338C762F908')),
(UNHEX('33681E6F24CEF5E28C17BCA502D918AD'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/timeline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD5440138047912EA9EF19216F678044')),
(UNHEX('CBA893B29B71F70173D6B504A6B55FE7'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/all_tests.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C3BDF977BE092C0C2F79FC4C1151714')),
(UNHEX('AC5EAE93137CB0FAA55C1AE65A68F1BC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/class_tests/response_tests.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A7F3062AA8E06CB0067E335553C640BA')),
(UNHEX('A9AA9EF4ABD93C155AF15D37D9D8192E'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/class_tests/transport_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4B14B6FDFF0D0AB7376CE1BA1A73858')),
(UNHEX('3B8FC8D7A5F81EA63EFF81CE90A3F15C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_administrators_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('23FC153256ACB093196E575436D23F33')),
(UNHEX('D0792F15567556F08377751769EB4549'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_campaigns_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A35B5E64F000B14589E21960DDB68E9')),
(UNHEX('B77CA80AE59C4B6A5CECB501F611B348'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_clients_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C9451BA2D4576EF36CD157E09C04069')),
(UNHEX('BA84201FF373905AF0AB98B90D47A1F4'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_lists_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4BC99130446A56901F6A1F6F72ED9D9')),
(UNHEX('F1D78B5D4060BC1AC6A83D56A5F26182'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_people_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC0EE3B55D8AAEF54B7169A963CA4BE6')),
(UNHEX('2FEDF0150E389A07128991F42B4B99EA'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_segments_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0CBA622CF01E36ACD2E89116C5BB5BFA')),
(UNHEX('09DDB121BAE1F5B27FCF9494895E7B92'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_subscribers_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A80DAA1AC872C4577AFF16C1A4A54B78')),
(UNHEX('2D1D6101C759C33078A2702603C5F64C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_template_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F45490B995A400C21290CE46BA5E560')),
(UNHEX('8D27E00D669BF4CFF0A54F68AEA93B54'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_test.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('646D5379A091FC480EDC26173255F800')),
(UNHEX('6EFCD34362A08B2909826E3D2EDC9015'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/active_subscribers.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABEBD96C1A13B714DEF0D48AABD7B031')),
(UNHEX('EB7BD9FFBC996F21FDE0D5BBCCA1680F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/add_subscriber.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('236507977B97832343C87955243068AD')),
(UNHEX('6B04F8E6775FAA07337B2619271B1FD3'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/apikey.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6FFFA9270C3DE9D3B4A510347B52DBBB')),
(UNHEX('7AAAFB925A32E64B2082821A72E3E91F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/bounced_subscribers.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E6AF366C35A499D84E4441101F0F46B')),
(UNHEX('BE080BA4BEF539A32B90F376C8DCAB6D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_bounces.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84ED3175635EF5CE2A9CD672644912AE')),
(UNHEX('6190B08F279E73FFB386D44D21F97FE4'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_clicks.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F9E097D1525EB012871AAF14D5528D80')),
(UNHEX('A76F4145ADF86A288DC470C7F03ED4F1'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_listsandsegments.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3BBDC54998AF2B241BE9190E23F42B9')),
(UNHEX('F1D3EC4A179830E88E93F52412C8335A'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_opens.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7902F08ADAFCD583239F46E32A16A680')),
(UNHEX('6890CCAC94DBFE2E36845DB7FE39CFC6'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_recipients.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7B6878DEAD7B837F620E11598DC89A3F')),
(UNHEX('B28423BF3398920F62E36E88FA5EF32B'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_spam.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EEC4C49FC38002303E1EB1FC9C043E84')),
(UNHEX('FA073F9BECCCC57A26605582FC2671E5'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_summary.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A850B863E9CB2E725838CC0766943E2')),
(UNHEX('1557A56B0BAC0F8EB8D4D19053B4949D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_unsubscribes.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32DFC89D64E9D44A5CCFE2B28F9972BA')),
(UNHEX('ED6561CE6DCED01EFCFE9BF18EEAE70E'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaigns.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC3350456407ADA33F8EFC093E840AC7')),
(UNHEX('55C3ACA2B4C96ED3AA58429B9D655C5F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/client_details.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F7187676A77F5371E780692BFEE2C59')),
(UNHEX('F43DA0D9855D80FAFAA8F5C15523F525'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/clients.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F665F6ED9C9C03B39B276F0EAA8151D7')),
(UNHEX('44C9B9CD92A51B77931F3E01D6E5045D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/countries.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('43B90F69924DFE0269CB6EA7C4D5521E')),
(UNHEX('13C775E8525FDA5ADFEEFCDFA2144625'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_campaign.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61079127BD26D95434347F30803A85B2')),
(UNHEX('48EECD69CD9FC16D7D8EF5984915E007'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_client.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0B5EA68AEECF1F61C8A00FB5D2B89104')),
(UNHEX('56BA6F45616724C5CC87286A3E7FD021'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_custom_field.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49B9878FD944FA8EA2F283A3D0B6576B')),
(UNHEX('5A97757C565467BEB954D13434F9C36C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_list.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33B7D284C287FA44EDB649234BC2AC6B')),
(UNHEX('19636D9DA062C04C0C907B3E555CE931'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_list_webhook.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A1C9EA0268A3A58D8F8FDAA4F159519')),
(UNHEX('652C27D8D3E0226A15E7C86D2F644C1B'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_segment.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6183146C3898AE281EA640E40FB5B3B0')),
(UNHEX('772F0A829DC1483AF08DA5B0FD36AD76'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_template.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B1FCC1AE0925BD552CB23E364D48CCA')),
(UNHEX('45CCF075F78C46109B07C0575D493428'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/custom_api_error.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('138F318F0388A67C07616DBCDF012B45')),
(UNHEX('81505080DBDECCBF02188447DE56A8AD'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/custom_fields.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('273852F33FFDC47AF8A7AF6B5F74C731')),
(UNHEX('0E2D0BE4CA7FC9F4DEA982498E2897F1'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/deleted_subscribers.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AAF439C49AD4C8C052B844BF4E3E828')),
(UNHEX('CD4DFB803882D25F74E9D17BEF855D7B'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/drafts.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE58CFE328A204FF6FCEB476F72E9A3C')),
(UNHEX('8CF8EBC59E8F01955BF6CA1116EC5700'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/import_subscribers.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4FE6D3E932784AD1008EBB2A891286F')),
(UNHEX('BBC19A2F53A128D6841C9529D9781674'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/import_subscribers_partial_success.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F70CA92F74123D0FFEDF71D2C500640')),
(UNHEX('5DB9E640E671AB7437E44A7D4C19BE30'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/list_details.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EA78F01CB4560E983372BFCE1D30A882')),
(UNHEX('70BB56EFE174659D1309FB7A0983D141'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/list_stats.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('333CA8C03946372AE56FCC908C1AFF7A')),
(UNHEX('21012BE2093B687CD4B38046847326F7'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/list_webhooks.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F12C5227D0A6A6330818C15BAB06E2B')),
(UNHEX('E41D6AD42AE4673E099E11A918F78B5E'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/lists.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BAF9742B0A159942944963A0A1AF049')),
(UNHEX('220551E35017FFD82EE16FDE1ACE8FE0'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/listsforemail.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19F5E2130BE6657005B6DC196A76A8DF')),
(UNHEX('C5AAE637CA5C19D7B3A2EF491856B9C8'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/oauth_exchange_token.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C69F03914227E3325DAE833C9606131E')),
(UNHEX('DD4C1EA45552485987B90A92906E31D6'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/scheduled.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D7E9C9D15D6FAC4BBBFC916D868E9ECF')),
(UNHEX('5F2BC47CC8C1F92F9C8889ED4A192F7D'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/segment_details.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4AC3D63FA03669D54D16E7E665732BE')),
(UNHEX('6A788C108554AC5663F258D22D2BB321'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/segment_subscribers.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('270A0B75D055F6F54F8408CB5D0ADB93')),
(UNHEX('A9E1D1F81D10582A871E0E984E15CFA2'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/segments.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAF93D35E68200ED8A9AE30ABEE5E023')),
(UNHEX('0B3D5424FD140620FA7699479C0FAB9F'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/subscriber_details.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B298479873EBDB5742F41081A758EB81')),
(UNHEX('42024BDBB6F8430D70BDA715C9A17E6C'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/subscriber_history.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7D36DE4C72993B18A9C767C49944673')),
(UNHEX('B6985BE2356F2DD3E391E76DC171C66B'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/suppressionlist.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9A165F1B8A4DAF67EB34150C3B31858')),
(UNHEX('D18F8C53647DE05156088FE3E613BCEC'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/systemdate.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7459878449151EEF59D41F9DC4ABA57E')),
(UNHEX('20D41CA51E0CB9F9E45D8D3283281C13'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/template_details.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A1BE7962C980959AFA844E8D6445DEC')),
(UNHEX('1057B5237E74B7E31187E8BCA430EAC4'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/templates.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4238338FE5DB415010DE19CC5F304EE')),
(UNHEX('FC33EAD180E39D50AEBD6F9444EB7BC6'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/timezones.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E918E18C36F9421932122519E42B7C1E')),
(UNHEX('94D9D84008912B96D7CFE3B9ABC0E837'), 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/unsubscribed_subscribers.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A2AEE163EF56379B78B215FE13B431F')),
(UNHEX('B2CF8AE226BF195B11AE462A27E1E431'), 'wp-content/plugins/wordpress-popup/vendor/composer/ClassLoader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8AA43F04F5E84538638B977E4D7F18C8')),
(UNHEX('279DC35A13D69B40CE8ECC7A40BDA70A'), 'wp-content/plugins/wordpress-popup/vendor/composer/ClassLoader52.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB2A25FB2D16E98D0ED47442366BC46D')),
(UNHEX('8657D115658CD29D4A56F86B68E533D7'), 'wp-content/plugins/wordpress-popup/vendor/composer/LICENSE', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1733FE92A28593AD594261BD2A54F335')),
(UNHEX('836EDF80BD75A7277A8B360BFE7B2FC7'), 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_classmap.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AC4B0E25335A57624D31317E9852481')),
(UNHEX('BE5B7177A88D297B2A01E1FD36EC45EC'), 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_namespaces.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1319CEDDD46B0398AF3B432C0618CE7A')),
(UNHEX('56865E8D628360A7F523877F5175FF60'), 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_psr4.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADB33BA1B886DA4BFEE58BEE98A31B9E')),
(UNHEX('30F842963406E585935435AAAE9AA689'), 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_real.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3712AD0992C4ECC194F61E04BBF4D495')),
(UNHEX('5A0577C533075F57F3F5B3C5FA11AE41'), 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_real_52.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9454CB0F34A6A1C575CA129B300B13F4')),
(UNHEX('1330F8227D87AEF6BA8ACC6F94EC6C57'), 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_static.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7C321E0246F70BA4B4E719D2CBD7125')),
(UNHEX('588BB691FEE53F4E2E0B29B5F84B2E02'), 'wp-content/plugins/wordpress-popup/vendor/composer/installed.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F437C76423810BF49EDB305EF6263B83')),
(UNHEX('3C5296137FD6E51BDB2B2D162155BA44'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E7185ABB5C6B26735D452D3C44E8D97A')),
(UNHEX('DEBBD2C10B5D117258499822EEB5B9EB'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/apigen.neon', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E00C717535C89ECEB84FC9CEA5216835')),
(UNHEX('A29F467F3C59F977000CFAD249088D33'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/composer.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('817C23FFFB78F54FA9CAAC23E32286EC')),
(UNHEX('E111C8B54944A6C2E27B20841E629D01'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/composer.lock', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4FF9E7907BDBF40383CB4688FE5BA95E')),
(UNHEX('D50E6D29EF83DFF5E50EB0A90E80A7D5'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Campaigns.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05048214C6443381D48811FD4267D571')),
(UNHEX('F708D0EAB41AAFC5F2812B9F03329478'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Conversations.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2DB36EB58A37B9CBFEE265E11565DC8')),
(UNHEX('802E3548B1E8742419A7618B442751AB'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Ecomm.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A47A160D494B99BE49DE97A0DC00CB06')),
(UNHEX('BF405E819C974EA4EAF28965C5ADD693'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Exceptions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D93C5E032F08F760C47806CFE79BDA5')),
(UNHEX('9AE2264A834CB0EDE35C147EE2F00F78'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Folders.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9FAF303F9572E56952BB49A33AF4FE1')),
(UNHEX('29AD9A1D445E76E2CA4FFBD020727F89'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Gallery.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25E5FC64B501A8E6B83CCB85C16FFCD1')),
(UNHEX('58819FC6B84ED0959B99F40858A6F2FC'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Goal.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B6506BFD953ECB6257021443D40F369')),
(UNHEX('E81555FDFC7152D24F700F16C8BFE6CD'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Helper.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06EB78709854E41557DB62650D7C4D30')),
(UNHEX('23254EC42B84E825EB0512638128697E'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Lists.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D7F28FB671A9E8C60A26577B41FEB32F')),
(UNHEX('4A70EBD02EEF2CE1C4AF277DAC26432F'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Mobile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7804DD0D7D8148FC9FCF964EB311525')),
(UNHEX('D63FF65475A92783C1D968F72857E3D1'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Neapolitan.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0E82D919143A1B2A9B0058D024C8EA7')),
(UNHEX('DE0C6B0C013FB87D2188DB0D4491022F'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Reports.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B22696F67E1460EA52488CE8AA94DB5F')),
(UNHEX('E9866176CBAE3354CE9E150937A1279D'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Templates.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('86693B22BB5118A7EC2DA1D167808C28')),
(UNHEX('0F0C85339047D33AA06E9D071B4E73B0'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Users.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9B55A2881C2651934CE7DD67181F52E')),
(UNHEX('6B899690A0269BFF43A91793F5CCB8C2'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Vip.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A25613EE9172C92D645B04C674301AFB')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('613CF0BE9670680028B2C995DF516B49'), 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5D55DDA0B8F9D5E7803966E12CFA7B9E')),
(UNHEX('C9528938E2F7228E5557A05C7245C0C6'), 'wp-content/plugins/wordpress-popup/views/admin/OLD-wpoi-wizard-design.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AEF44FD9B0F009F6C9545C29C88A8DC')),
(UNHEX('E4CDA2F0550E2C2A470ABFEF58A1F2D0'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-design.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46ACC74DAB8D7BFD146A6201B1A1B822')),
(UNHEX('8E242AA0B90D8386EFD889832DE3DEBD'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-listings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F4F54AC238566D3483FB276ABFFD7E84')),
(UNHEX('31EDE0F4871702F614C230F919F57B88'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-magicbar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B47E67A2CF740428FDE19748943F6C66')),
(UNHEX('39B89486F9B0A0D8072100851577D03F'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-migration.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('363C3F014B8429F513AEED8F1B6F9563')),
(UNHEX('319F969F674C65B4130E401522EEBE3D'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-popup.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1259CC50122731589D02A1532B16D3C9')),
(UNHEX('F788CB2C9E97AF50A8A395D5163E1738'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-preview-container.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B205D6592ACFCE36FAC1FA8213C5F86')),
(UNHEX('E6D74D7BC1A8D6308C47716FF464855F'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5BCF1D5054BFB8D917D474BE7BAF964C')),
(UNHEX('C472442026F43C39D021B26E725FEC35'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-slidein.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE05A3D7DF4BD886504E6A9D14E793F9')),
(UNHEX('3013F8124652730869B1625C5A967136'), 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BCC773ED034667D61BB6DFCCFE2DA93')),
(UNHEX('298BCA2FC29A1EB1905C27D7077547BF'), 'wp-content/plugins/wordpress-popup/views/admin/common/delete-confirmation.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F45F0DCABF1174B2CC613E0BA3F1D60')),
(UNHEX('B95CD20706C9332808E2F19B0D615C01'), 'wp-content/plugins/wordpress-popup/views/admin/common/media-holder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC799F8C86F9CA58AAF144648B4D1A36')),
(UNHEX('DA6CF8D64093E08AF4FFB306377051DA'), 'wp-content/plugins/wordpress-popup/views/admin/custom-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2690B468D2615AA90BDEAE679DCCFC28')),
(UNHEX('95809718B73789ED97506817E3B680FA'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-conversion-report.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('92EEE7FB1DF5F708D6D2AE43FE214274')),
(UNHEX('1BFD236C532E4F887F8E699D67E56AAA'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-conversion-tracking.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D00A64C24F418D95E927E4BA1AB2763C')),
(UNHEX('A6B93E88D55A935D12D7A21B79B9D370'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-module-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8ACB1817F682E37A47A52ED7AD568CAA')),
(UNHEX('5415FAF347D025E25F527C665489EE8B'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-module-setup.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B71F95691D2B397E638E263D993D895D')),
(UNHEX('B708592E2F9F33B5FFECEEEC073F54D0'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-module-stats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5A5AF7F2A6B17EB5ABAFA5B66F47E5B')),
(UNHEX('760E92E020B7445509A5A7D88DE27303'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-welcome-off.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EC565A58C0F08F5A3B491697DC3AC33')),
(UNHEX('C1B4DDAC4A0A7F1A1C51A1F91E9F22A0'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-welcome-on.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E35E68DCD6E22D859B82E4935BBDEAF4')),
(UNHEX('21E8AA41AE81D45E297AC923CE7F0663'), 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-welcome.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3BA3B7371742340F5DF22C452D7E550')),
(UNHEX('DB69B49EF8B0611897BB066C5C187A57'), 'wp-content/plugins/wordpress-popup/views/admin/emails_list.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69A754CDBDDB15CF0F9B9268470A6C52')),
(UNHEX('31EA092102E6712C0645987E08776294'), 'wp-content/plugins/wordpress-popup/views/admin/listing.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57EA7FF333E70E85D1B64E68D99FF375')),
(UNHEX('46253178A24F1C29AE53DD644701744E'), 'wp-content/plugins/wordpress-popup/views/admin/new-custom-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70F826CB2D2404FC287E80DD04D98D41')),
(UNHEX('F1E8C6CE736A31E416D9C10F1095A9D4'), 'wp-content/plugins/wordpress-popup/views/admin/new-free-info.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9AF6AF9C456C88BB2F1FDD09B7170C32')),
(UNHEX('228849576767AABA83BD4E4F66348BAA'), 'wp-content/plugins/wordpress-popup/views/admin/new-optin_success.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7EA14EA3DECEAAC704676222B86E0AF4')),
(UNHEX('1C6A5C56911239EA9049FF3794F40B01'), 'wp-content/plugins/wordpress-popup/views/admin/new-social-group.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB5C6577A66358D6875F44CE6C5F0FE0')),
(UNHEX('C557D8C4692B50E6CBAA1FCECE878D2F'), 'wp-content/plugins/wordpress-popup/views/admin/new-social-restriction.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2D6B1AC4795E38C674F829DAAAE9FC1')),
(UNHEX('2D53EC9D60042B642091727C4C3D0A22'), 'wp-content/plugins/wordpress-popup/views/admin/new-welcome.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('982B5CD730F8F2964341682AA96AE3A5')),
(UNHEX('619B82240448CEF5D2FC3DAF24A4A780'), 'wp-content/plugins/wordpress-popup/views/admin/optins/optins-design.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D41D8CD98F00B204E9800998ECF8427E')),
(UNHEX('FA9DC4BCAC379E9AF003395FAA06AFFB'), 'wp-content/plugins/wordpress-popup/views/admin/optins/optins-preview-container.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2FCB4005055B283B390902932FD4457')),
(UNHEX('1527F9A7C6F65E89DDFA73A72418393F'), 'wp-content/plugins/wordpress-popup/views/admin/provider/activecampaign/args.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4D5E10446AEFF22FF1C9DA22FFA3612B')),
(UNHEX('556A50A60F2757AA9FA055B22259590D'), 'wp-content/plugins/wordpress-popup/views/admin/provider/infusionsoft/args.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41451DD370ACBA7256600308DA37AB29')),
(UNHEX('74CD06895E53C1BB794F06EC9B9E3EC4'), 'wp-content/plugins/wordpress-popup/views/admin/provider/mad_mimi/args.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41451DD370ACBA7256600308DA37AB29')),
(UNHEX('5332D0D5A1BB263F3BA44798F09D656F'), 'wp-content/plugins/wordpress-popup/views/admin/provider/mailchimp/args.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6EA2F4669BD63BAF4F8CCC3D64BAC6F')),
(UNHEX('08AC8392C08A7E341D0E529A6E68D52A'), 'wp-content/plugins/wordpress-popup/views/admin/provider/sendy/args.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41451DD370ACBA7256600308DA37AB29')),
(UNHEX('DF30F96FA1624EBE3DC3B031EA73BF2B'), 'wp-content/plugins/wordpress-popup/views/admin/settings/conditions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D4EE1EA753BB8558811BC170D7A2DCB')),
(UNHEX('2961FBA229CF8F66E05C8F38302AD9C8'), 'wp-content/plugins/wordpress-popup/views/admin/settings/display-triggers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EBA59AAA94488255C27DEB21A05B72AF')),
(UNHEX('DBB9F4B27CC8F990D1DF9B7C14C25453'), 'wp-content/plugins/wordpress-popup/views/admin/settings/e-news-sync-back.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('066B208AE3295EDE64D1DA7B1244BFBD')),
(UNHEX('B40546ABD7CF6D9665933ACC1F47FFE4'), 'wp-content/plugins/wordpress-popup/views/admin/settings/e-news-sync-front.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C572F4FF4AA99E0EFFA36E26110FB42')),
(UNHEX('C99ECAB0CFD91524939B16FD4F62BFE0'), 'wp-content/plugins/wordpress-popup/views/admin/settings/modules.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D5ED36EE94A02614B9B4B6BEBD16017')),
(UNHEX('164AFAD3F669E770E7415D55A0465DDB'), 'wp-content/plugins/wordpress-popup/views/admin/settings/providers-edit-modal-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D38776649C7CE3426C0009B46553AA9')),
(UNHEX('F29770C441AD216215D38D7CE70211BB'), 'wp-content/plugins/wordpress-popup/views/admin/settings/providers-edit-modal.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F520439CC5A53150B4A1D3110EDC6586')),
(UNHEX('3D18E73D529DF49329CAC6B768583F03'), 'wp-content/plugins/wordpress-popup/views/admin/settings/providers-edit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EBC775A837DA172D40BA62A41BF35C24')),
(UNHEX('932A73D9928E800B456581B8F20D8FEE'), 'wp-content/plugins/wordpress-popup/views/admin/settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27DAD2A795213EFB98C3BD1A824E1B81')),
(UNHEX('E3FAE153862B06A63BBE65DE5B38804E'), 'wp-content/plugins/wordpress-popup/views/admin/social-groups.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BB432E93B13078D0721F974B0EB989A5')),
(UNHEX('36FC1A9ED446BBF658D1B8F73C61499C'), 'wp-content/plugins/wordpress-popup/views/admin/social-restrictions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('094636E35E55E034A53786CA40AA20EB')),
(UNHEX('0241DF7CD482BCA0CDFE51A5238DF288'), 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design-after-submit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('191D7F786125803706B8C93B5FEFBDDD')),
(UNHEX('B4F8CC265B29681780D27D3D423FC39F'), 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design-shapes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E93826F3C34E2857119B0272EB275D2')),
(UNHEX('E88C0059DEF1D7DE2BC7B118529A7F28'), 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design-structure.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4738522763DCFCA76B820499A8CBE96D')),
(UNHEX('786250237FBF5DC5978DD373644068FA'), 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6029E7C285FD35661B36801FB529EDAD')),
(UNHEX('D62C68C2DD380A55B92987E6B5185993'), 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-services.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9FA96208BB2934A4A8B97D8C992F23D')),
(UNHEX('CB95D6F2C2691904A81FC1A7F1174159'), 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9C1BE9F76784A341149A0CEAA23D8162')),
(UNHEX('76BAE62F019A4E5FE49CB5E0F19DFF33'), 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13389FF33241250004D6180A0D452BCB')),
(UNHEX('D30391D1CEBBDA649F0CA893BCBB264C'), 'wp-content/plugins/wordpress-popup/views/general/alert.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A7EFB1CA276436A7D6787AF8BAFFA648')),
(UNHEX('4578670A1A92B55AA9DB4807B3876F95'), 'wp-content/plugins/wordpress-popup/views/general/layouts/0.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB7653B1CA7047BF184CD5BD711C02AA')),
(UNHEX('ED0B4C559D8DD18DEE26090F8AEFDE97'), 'wp-content/plugins/wordpress-popup/views/general/layouts/1.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F05F69279205B7045FEF375FAD845351')),
(UNHEX('15D9178D1F0BB6CF50926E1D0D3E74D1'), 'wp-content/plugins/wordpress-popup/views/general/layouts/2.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B13063A0863E53F839901D06DCBB987')),
(UNHEX('33E1D90415F82E5D052BC935C71B1057'), 'wp-content/plugins/wordpress-popup/views/general/layouts/3.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('09D1A8394DDBAF729D9955EB55C0106D')),
(UNHEX('A8344E5012B02CF819183AECFC85E623'), 'wp-content/plugins/wordpress-popup/views/general/layouts/cc_shortcode.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('205128A80DCE7955DBF659865EBB238C')),
(UNHEX('F46BDF3553B9BB84E00E5FC515065239'), 'wp-content/plugins/wordpress-popup/views/general/layouts/success.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33804A5E36CBA85E4DCE91D888D8D73C')),
(UNHEX('ABBD7B75DCC8DF683EFB2A745C0B2DEC'), 'wp-content/plugins/wordpress-popup/views/general/layouts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7257B53AD30BFE1CED587B1846034C7A')),
(UNHEX('BAC0E11F33F46F3B1B599649C4DD4509'), 'wp-content/plugins/wordpress-popup/views/general/modal.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06A1DDD0CDD0B617843C264D3782A9D1')),
(UNHEX('1A846212279D40F7C64B360390D8D653'), 'wp-content/plugins/wordpress-popup/views/general/option.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7A9EE0BBB7B21D2B410034D06CD7CE69')),
(UNHEX('EBB37FD835FA14C70CF7ECC4877B22C4'), 'wp-content/plugins/wordpress-popup/views/general/providers/activecampaign.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07F465F327B492857CE2F9EEDDFD479C')),
(UNHEX('25C8FB79D7085B3A72F6B3D2053AB597'), 'wp-content/plugins/wordpress-popup/views/general/providers/infusionsoft.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('39E54F4AAD6B67FACFEE1B4F827B7544')),
(UNHEX('C1ACE75B5C971ADD71E5E699E0A9F6C3'), 'wp-content/plugins/wordpress-popup/views/general/providers/mad_mimi.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB4CB6196B12AB9F3BC5889C4523A52D')),
(UNHEX('ED2454F8518062190FA750B56380E6EA'), 'wp-content/plugins/wordpress-popup/views/general/providers/mailchimp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C0B7FAD09BB5ACDF4FBA4C59AA35363')),
(UNHEX('3804416E7D4CADC60E4C7B3946683EF8'), 'wp-content/plugins/wordpress-popup/views/general/providers/sendy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4376494A080ECABE538A90EBBFA506ED')),
(UNHEX('7D23A98829A6252619C1DE532758F53E'), 'wp-content/plugins/wp-migrate-db/asset/dist/css/styles.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48093DFFB3EC1140C7A2DCFD5335F639')),
(UNHEX('45E55F2C0FDC5D53D7D603B373B105E2'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/icon-cli.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2022B94C915CA6429762CCEC0810A5B9')),
(UNHEX('CAF83D5700FA0F4A866CD0B70E5F6394'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/icon-media-files.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0B1E3682AFEDC92557E01C376A765497')),
(UNHEX('C26A655D5B7F3255E8635C33B01A0EC4'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/icon-multisite-tools.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('14A865159E80ED97B0AD2BF21D15A5AF')),
(UNHEX('B55BBF58FD903D48176D3021AD2B0232'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/mor10.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F7EC45E117A37CFB356C44CCE12C3B8')),
(UNHEX('4599DA6020B634EF378243D7E618AAF8'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/mor10@2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E710379AAEA75658CA3563B5FC92A6C')),
(UNHEX('C617CB35467BCC0DD3186CD6E0B5C81E'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/welcome.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FC1B4F6F5F9677199B24AC067B9205F1')),
(UNHEX('254856857DDD73F953A47AC1E3EFC365'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/wp-migrate-db-pro.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('26EEE1FEE2F45755A8F036E934250225')),
(UNHEX('1A814B3EA4EA3E32ADB2E97D8A98B668'), 'wp-content/plugins/wp-migrate-db/asset/dist/img/wp-migrate-db-pro@2x.jpg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32417B267AE73A1F105BE515B48935B9')),
(UNHEX('317165A46BA99726B4C80463E79213C7'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/common-092.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F9745B6082978F6CF71B03A5EC157C91')),
(UNHEX('DDEE9CC85A02ED2EDFD12813F31999A5'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/common-092.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0818F588AE98BAB9276852B7E0E49235')),
(UNHEX('FDB0CF71B7CA0226EBCBF0EFD09D9265'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/hook-092.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F272BA4E1B7B0627ACD16A20DBB09E47')),
(UNHEX('A0F1CE678CF6434113F2CADBBE5D0DD7'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/hook-092.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDAA173E0D2B976FFE421B239595E24F')),
(UNHEX('56FEC30C0A47BB1ECDBCE03964C331F4'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/multisite-092.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65961870D430EDA6470FD9BE41E7865A')),
(UNHEX('16C429F5BAC932055A9C21DFD0F51E46'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/multisite-092.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3EC6C8016ACFFFC2DF81D38E62CA98A0')),
(UNHEX('372D6719CB41E08011779EB62424F1C0'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/plugin-update-092.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D814CB2E760B6B2E3094EA04833819FF')),
(UNHEX('507CB6F4569DBA43AE39FB07C7600159'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/plugin-update-092.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F2E23E904F60905C27B0D3F62990CF1')),
(UNHEX('D8FE01E0AC081C735942991D3052277A'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/script-092.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CDE721F41FBC14ACA81A051528335B1D')),
(UNHEX('19B6BDB683C1898133CFFE75818E3E10'), 'wp-content/plugins/wp-migrate-db/asset/dist/js/script-092.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2FF13EDB169D1DDA1D552BB294A55AF5')),
(UNHEX('059E4F180E0CB309D8BC305E53A6D67D'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-base.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAE6B0C68B4168AC6F7882742551955C')),
(UNHEX('1213EBE96FDD8536C415BC743FD41613'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-cli.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('892A6C2838216030925EDBCE2CD921F6')),
(UNHEX('6229D5C6F593BA99EE78C9FE3CF63EC7'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-command.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D54E17ED4CC35F46D58CBDC19AFAF044')),
(UNHEX('9102DE13BFEE798C4E9BD94E09CE03C1'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-filesystem.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('439BE06CD4CFA9F4EAA5A984BD31568F')),
(UNHEX('0E75673F6BA62E4AFB0AAC673C4456A7'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-migration-state.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('809302A45DED5F27FCFF35E5BBBDAA67')),
(UNHEX('EAF0D6337D5AA9580444CF2B4AB4A9F2'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-replace.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6956575A8F1FFA7FF3DEEED8B5B6358')),
(UNHEX('FB88F67055B839C2CDEC539C9ECB0D56'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-sanitize.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F3F1F5F50FE6245570FFDB835ECF4FD')),
(UNHEX('F6A0CB54B2F936E81495D84B8760182A'), 'wp-content/plugins/wp-migrate-db/class/wpmdb-utils.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03AB663227AC467A39EFA0AF57770BB4')),
(UNHEX('0F716438A28CFF17D6F9D14354C4ACEE'), 'wp-content/plugins/wp-migrate-db/class/wpmdb.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7584107AEE382D10ACCAB5DC8AAE6918')),
(UNHEX('9CD3F8EEF1AAD5F7F8521119A4642024'), 'wp-content/plugins/wp-migrate-db/compatibility/wp-migrate-db-pro-compatibility.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65728772ACE10E8B066107A4A420A144')),
(UNHEX('74A7238BAB091AB015456F33B6154DF0'), 'wp-content/plugins/wp-migrate-db/languages/wp-migrate-db-en.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE2E03254E594C39E07D89865091D884')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('AEC65A4A777790C1713125A3D5711F08'), 'wp-content/plugins/wp-migrate-db/languages/wp-migrate-db-pt_BR.mo', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0373FF930772C2AA310A13A1896A693B')),
(UNHEX('DDB4B32432027E4EB7FD19A5F2F1A378'), 'wp-content/plugins/wp-migrate-db/readme.txt', 0, UNHEX('A0DC25FB17E8C56F57CF096EE776FCA0'), UNHEX('A0DC25FB17E8C56F57CF096EE776FCA0')),
(UNHEX('7BA39939ABE94E2AA320E2F1CC35EC3F'), 'wp-content/plugins/wp-migrate-db/template/addons.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E896577F33F2B4DD62D0583F33D4F655')),
(UNHEX('A2459EE28A54D219D000650DC59D6F8D'), 'wp-content/plugins/wp-migrate-db/template/common/breadcrumbs.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1587D26B98B9106E0F8FAD89908AE3DF')),
(UNHEX('068E42C439F2CB316815ACC061BEA05E'), 'wp-content/plugins/wp-migrate-db/template/common/checkbox.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97EF024D0EDB2579D7AD0E3455486652')),
(UNHEX('6E3B5D09B712B3F082F75CAFFAB25AFC'), 'wp-content/plugins/wp-migrate-db/template/common/compatibility.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF76AF83126ECF90AD9239AC6324A0DA')),
(UNHEX('C55D0C56B5853C42D36109A100485991'), 'wp-content/plugins/wp-migrate-db/template/common/debug-info.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C8EB390F06335CC907E6E4E0BA0FB79')),
(UNHEX('7C0C977D93E879F509C253F9148E7320'), 'wp-content/plugins/wp-migrate-db/template/common/max-request-size.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19CBB062C7380DC98AF01558CC59D23A')),
(UNHEX('19A3D4D12727BAC9A58E7161C3E76402'), 'wp-content/plugins/wp-migrate-db/template/help.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('20014B379DBD6D69292416F39A6CE86D')),
(UNHEX('B4A0A2FBA033D50915E84D59E98B0FAE'), 'wp-content/plugins/wp-migrate-db/template/migrate-progress.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A0D88C8042C398BA87698EAF2564CEE')),
(UNHEX('618D0F0397F8E721DFF6C4BC80EE9B7F'), 'wp-content/plugins/wp-migrate-db/template/migrate.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FAFDA965FBD3DE4299C6025ADCBFB2EF')),
(UNHEX('5DEE4A1A460E42C7DBE336E5BB45CB1C'), 'wp-content/plugins/wp-migrate-db/template/options-tools-subsite.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38D14BB727EAF91BB36FF6B4D2EF911E')),
(UNHEX('EAA074A8AEF4A7ACB739B3614B49EF25'), 'wp-content/plugins/wp-migrate-db/template/options.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EA1A6CA25D17657B60F72EEC64D94B44')),
(UNHEX('CA99C8CC76E28E887391E8458679A5C4'), 'wp-content/plugins/wp-migrate-db/template/profile.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C35A81DF902EC305E9184263D7A3A17C')),
(UNHEX('54B2A23697A71B5E28A030FC65A1B44F'), 'wp-content/plugins/wp-migrate-db/template/settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E12C075868909AF006FD56F1C5C429DE')),
(UNHEX('ED41870E82273788800839E1564F4306'), 'wp-content/plugins/wp-migrate-db/template/wpmdb/exclude-post-revisions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8D2C47341B644A80BE4452D0E4B94B6')),
(UNHEX('F36D993A1ED811481077797FE68AA162'), 'wp-content/plugins/wp-migrate-db/template/wpmdb/progress-upgrade.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D1274A3335E6B25E6A294CEF8DA52C5')),
(UNHEX('FC0189CCCFE3DC71482F850ED31FECC6'), 'wp-content/plugins/wp-migrate-db/template/wpmdb/sidebar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('934DAE0B89FA6DC75F81E2E3518E7FAA')),
(UNHEX('CBF29177FBCA74652F490C1A4360A7AC'), 'wp-content/plugins/wp-migrate-db/template/wpmdb/wordpress-org-support.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3FBD42A9EAEB9BE6675603813D380FE')),
(UNHEX('63DC9957DACE34D6B7719A941A8BD2AA'), 'wp-content/plugins/wp-migrate-db/wp-migrate-db.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FF271A4E53FE1985EE54B609C55C99D')),
(UNHEX('C74A36385108C9B5C5C96B5B390FD829'), 'wp-content/themes/betheme/404.php', 0, UNHEX('A74A259080E42993BDFA51CB0FD6DC94'), UNHEX('A74A259080E42993BDFA51CB0FD6DC94')),
(UNHEX('C6D48AB6FE24233CEB5FB504B0DF6348'), 'wp-content/themes/betheme/assets/animations/animations.js', 0, UNHEX('50079303DFB152060AECBBDC4E03D120'), UNHEX('50079303DFB152060AECBBDC4E03D120')),
(UNHEX('88F7B568D525FD9E3F352EECB9C78DF0'), 'wp-content/themes/betheme/assets/animations/animations.min.js', 0, UNHEX('ECD2988783BB4E49F6A242620D54AC21'), UNHEX('ECD2988783BB4E49F6A242620D54AC21')),
(UNHEX('C1D53897B7B852CACE28958451281F6B'), 'wp-content/themes/betheme/assets/jplayer/jplayer.min.js', 0, UNHEX('BCFF4F0F0EAAF75435E924EEC527616D'), UNHEX('BCFF4F0F0EAAF75435E924EEC527616D')),
(UNHEX('6EC91FFAB83F72FED4E6F82C772BFF4C'), 'wp-content/themes/betheme/assets/ui/js/jquery.ui.accordion.js', 0, UNHEX('572139755E01B7F47D350A7AD1056D4B'), UNHEX('572139755E01B7F47D350A7AD1056D4B')),
(UNHEX('21BBAF82A3BB43CD9353B820EABB580C'), 'wp-content/themes/betheme/assets/ui/js/jquery.ui.core.js', 0, UNHEX('CB2D4FB0B28D811DDAFC8504F25B3D58'), UNHEX('CB2D4FB0B28D811DDAFC8504F25B3D58')),
(UNHEX('677C97E8BB8F9B618B351074BA1DC499'), 'wp-content/themes/betheme/assets/ui/js/jquery.ui.tabs.js', 0, UNHEX('801D9E1E8C3EACECF7CCE2B3BEDB255B'), UNHEX('801D9E1E8C3EACECF7CCE2B3BEDB255B')),
(UNHEX('9A09A13D05C9C1FA96B0C1E74E29EBB8'), 'wp-content/themes/betheme/assets/ui/js/jquery.ui.widget.js', 0, UNHEX('DF3E35BB3210CED978D9AAC0665596E2'), UNHEX('DF3E35BB3210CED978D9AAC0665596E2')),
(UNHEX('703B3EA9B334E2D971C2475EAC784BBD'), 'wp-content/themes/betheme/bbpress/content-archive-forum.php', 0, UNHEX('9DCE073A6BD8F11BA2599DE8F6572681'), UNHEX('9DCE073A6BD8F11BA2599DE8F6572681')),
(UNHEX('F5BC687072DA463BE70E9630519453E1'), 'wp-content/themes/betheme/bbpress/content-search.php', 0, UNHEX('2F4D5BCA1C99AA98456034DEEF452889'), UNHEX('2F4D5BCA1C99AA98456034DEEF452889')),
(UNHEX('C5B29DD91DF02C9FB3D0D6A2765FAAC2'), 'wp-content/themes/betheme/bbpress/content-single-forum.php', 0, UNHEX('D0D58D46600598A6FC13BC104BF406DA'), UNHEX('D0D58D46600598A6FC13BC104BF406DA')),
(UNHEX('AD16576B209732F15CCBD973E0DE0C02'), 'wp-content/themes/betheme/bbpress/content-single-topic-lead.php', 0, UNHEX('7BE45041029BB0802D1D7CD40E2037C8'), UNHEX('7BE45041029BB0802D1D7CD40E2037C8')),
(UNHEX('38086971CE9215A0BB9D7EA54E7A786F'), 'wp-content/themes/betheme/bbpress/content-single-topic.php', 0, UNHEX('21CCAA81A87809E026EE24EC32E2AEEB'), UNHEX('21CCAA81A87809E026EE24EC32E2AEEB')),
(UNHEX('62DD4A2E797FFAA8276E1B2A9A3508E3'), 'wp-content/themes/betheme/bbpress/form-reply-move.php', 0, UNHEX('68A7F926260E0C3F1C55989130637965'), UNHEX('68A7F926260E0C3F1C55989130637965')),
(UNHEX('1ACAC27B1127CD5488B4C1A2B4B71172'), 'wp-content/themes/betheme/bbpress/form-reply.php', 0, UNHEX('841D0DEFD56654E26DD88949A97BB9A0'), UNHEX('841D0DEFD56654E26DD88949A97BB9A0')),
(UNHEX('6D8EF8BBD759D0E371DA2A4A6FE7324F'), 'wp-content/themes/betheme/bbpress/form-search.php', 0, UNHEX('B2E57BFA5FEA2F6D265ACE90AD4E9FC9'), UNHEX('B2E57BFA5FEA2F6D265ACE90AD4E9FC9')),
(UNHEX('62C7784AEFA2C19690DC363BBE70E599'), 'wp-content/themes/betheme/bbpress/form-topic-merge.php', 0, UNHEX('4DBF57DA9A51490CFF234463C1BA5C34'), UNHEX('4DBF57DA9A51490CFF234463C1BA5C34')),
(UNHEX('B8685BCA959C58283D95EE6DD1F360CF'), 'wp-content/themes/betheme/bbpress/form-topic-tag.php', 0, UNHEX('D9E42E6BA22A95B392E3AEA1DF68C153'), UNHEX('D9E42E6BA22A95B392E3AEA1DF68C153')),
(UNHEX('044F4F75C67CE5A9027443C12497DF70'), 'wp-content/themes/betheme/bbpress/loop-forums.php', 0, UNHEX('530F516F937618E2F405D1E55F613D1F'), UNHEX('530F516F937618E2F405D1E55F613D1F')),
(UNHEX('4649EF1CC2A8CD2E784E54D1184617D7'), 'wp-content/themes/betheme/bbpress/loop-replies.php', 0, UNHEX('A271DF6F0E6790BC42B3A2A3CD3449C7'), UNHEX('A271DF6F0E6790BC42B3A2A3CD3449C7')),
(UNHEX('5594557BBCD54F75DCAFB7D29C389A20'), 'wp-content/themes/betheme/bbpress/loop-search-forum.php', 0, UNHEX('BFBF7C4491F89F7985E1002130296086'), UNHEX('BFBF7C4491F89F7985E1002130296086')),
(UNHEX('986EA11EBCCFA255E8D9BF67DAB4791E'), 'wp-content/themes/betheme/bbpress/loop-search-reply.php', 0, UNHEX('9D05E92912355047FA02C915581216E6'), UNHEX('9D05E92912355047FA02C915581216E6')),
(UNHEX('7CF0592AD4810936B72E1BFD8EC0E62D'), 'wp-content/themes/betheme/bbpress/loop-search-topic.php', 0, UNHEX('14F3FF2DC9074C946CE4A2D65DE17F0C'), UNHEX('14F3FF2DC9074C946CE4A2D65DE17F0C')),
(UNHEX('99CB1814F95377CA884692E7ED44D761'), 'wp-content/themes/betheme/bbpress/loop-search.php', 0, UNHEX('FEA77FCD5906F7EC82E9781ADDCD7515'), UNHEX('FEA77FCD5906F7EC82E9781ADDCD7515')),
(UNHEX('FD663C071F897637E96720E8FE2CE9D7'), 'wp-content/themes/betheme/bbpress/loop-single-forum.php', 0, UNHEX('A2064B483BA081FF87896A88C0E5948C'), UNHEX('A2064B483BA081FF87896A88C0E5948C')),
(UNHEX('B44BB6A0B38FDD2BF805FF790520EA16'), 'wp-content/themes/betheme/bbpress/loop-single-reply.php', 0, UNHEX('E87098FE771D16321AF76D05131ADC2A'), UNHEX('E87098FE771D16321AF76D05131ADC2A')),
(UNHEX('78FA0BE8E8FA6B36053BD5F424AEBCD5'), 'wp-content/themes/betheme/bbpress/loop-single-topic.php', 0, UNHEX('0684F6298253116A30C05EB7C6EF2AF7'), UNHEX('0684F6298253116A30C05EB7C6EF2AF7')),
(UNHEX('F2E3532A618D290A2CC949B1B25659C6'), 'wp-content/themes/betheme/bbpress/loop-topics.php', 0, UNHEX('0534B0FD6E81BD65BEC782CE20CE9BC4'), UNHEX('0534B0FD6E81BD65BEC782CE20CE9BC4')),
(UNHEX('F95BF5EF97A3A8280A1F83DCA09627D6'), 'wp-content/themes/betheme/bbpress/pagination-replies.php', 0, UNHEX('F27484176679EF24FE5970E577E08331'), UNHEX('F27484176679EF24FE5970E577E08331')),
(UNHEX('48AA7F201F98A68422E0154C561CAE2D'), 'wp-content/themes/betheme/bbpress/pagination-search.php', 0, UNHEX('3FAA758FAB8AA09B11F56FC8EA3162C2'), UNHEX('3FAA758FAB8AA09B11F56FC8EA3162C2')),
(UNHEX('2953CE26456660E8E362D1891D6D674E'), 'wp-content/themes/betheme/bbpress/pagination-topics.php', 0, UNHEX('18DE4367564A94E7F4112F7376007B5F'), UNHEX('18DE4367564A94E7F4112F7376007B5F')),
(UNHEX('F6500D6C7C9831DCE79811EEBAC8A305'), 'wp-content/themes/betheme/bbpress/user-details.php', 0, UNHEX('ACFD5389AF5CC39D5B6827A83440178B'), UNHEX('ACFD5389AF5CC39D5B6827A83440178B')),
(UNHEX('00AF8404C5F477EC93B1F5AD7F7E99BD'), 'wp-content/themes/betheme/bbpress/user-profile.php', 0, UNHEX('7DB38B2033653089BB52CA50D6093130'), UNHEX('7DB38B2033653089BB52CA50D6093130')),
(UNHEX('3FB721057BFFC41C9DE7763ED946C6CB'), 'wp-content/themes/betheme/bbpress.php', 0, UNHEX('9B302E26A2504D33AED8097B4FE90D3C'), UNHEX('9B302E26A2504D33AED8097B4FE90D3C')),
(UNHEX('250AB17ADA3FAF377067AC115D8A9476'), 'wp-content/themes/betheme/comments.php', 0, UNHEX('D556D1EE674517EA8E13EFDA13A46462'), UNHEX('D556D1EE674517EA8E13EFDA13A46462')),
(UNHEX('714A737DD756AD615663B2804DB4D228'), 'wp-content/themes/betheme/footer.php', 0, UNHEX('ECEBCB82EC953D609C322C5C84083A8A'), UNHEX('ECEBCB82EC953D609C322C5C84083A8A')),
(UNHEX('300F482AE602B1ACB0A58E8C20641827'), 'wp-content/themes/betheme/functions/builder/front.php', 0, UNHEX('F54C512F287C51D96E2A6D08B5F914B7'), UNHEX('F54C512F287C51D96E2A6D08B5F914B7')),
(UNHEX('D739B6D389BF7BAD1D994D6A77932DB4'), 'wp-content/themes/betheme/functions/builder/js/scripts.js', 0, UNHEX('7BF288ABC37F872E69C4CFD356C1FFAE'), UNHEX('7BF288ABC37F872E69C4CFD356C1FFAE')),
(UNHEX('C2A4F3BA55FC78ED28869AF165572CF2'), 'wp-content/themes/betheme/functions/class-love.php', 0, UNHEX('A04435E11A3A1010E200B21AB21D0D87'), UNHEX('A04435E11A3A1010E200B21AB21D0D87')),
(UNHEX('1B0B7B783310ED15A84314B2805101F0'), 'wp-content/themes/betheme/functions/class-tgm-plugin-activation.php', 0, UNHEX('46E41261EEC6171736B532826BF5EAEF'), UNHEX('46E41261EEC6171736B532826BF5EAEF')),
(UNHEX('DFE10BF70AFB5606508FE92BAE4CD855'), 'wp-content/themes/betheme/functions/importer/import.js', 0, UNHEX('FF30C9D86344995018FC26B7BB6AA5C9'), UNHEX('FF30C9D86344995018FC26B7BB6AA5C9')),
(UNHEX('FB0A6288BD7309E61BEE7149A187157C'), 'wp-content/themes/betheme/functions/importer/import.php', 0, UNHEX('F1081C39F8AC6F634B997A1674328F5D'), UNHEX('F1081C39F8AC6F634B997A1674328F5D')),
(UNHEX('C3EDAE7E1BD22EAD3DCC15A09C6C61AE'), 'wp-content/themes/betheme/functions/importer/parsers.php', 0, UNHEX('8DE3C60B4A46F5CB9AC3A8028C6AAC53'), UNHEX('8DE3C60B4A46F5CB9AC3A8028C6AAC53')),
(UNHEX('D4335DBD8FEDFBFE0AB50D955BD59378'), 'wp-content/themes/betheme/functions/importer/wordpress-importer.php', 0, UNHEX('3DE93F6BC15D40C0CDA64C36E7EAD5D0'), UNHEX('3DE93F6BC15D40C0CDA64C36E7EAD5D0')),
(UNHEX('320EA208D3F15611AE3354713991EF62'), 'wp-content/themes/betheme/functions/meta-client.php', 0, UNHEX('53C31F2AFAD66DFB6E023BC826AD5C76'), UNHEX('53C31F2AFAD66DFB6E023BC826AD5C76')),
(UNHEX('999F7537AAB684C1B39A46E7A06FD482'), 'wp-content/themes/betheme/functions/meta-layout.php', 0, UNHEX('8C4CF023CC13FB1C9D97EE4BC056A20F'), UNHEX('8C4CF023CC13FB1C9D97EE4BC056A20F')),
(UNHEX('769207700E4757DCCAA991D76A3E5E9F'), 'wp-content/themes/betheme/functions/meta-offer.php', 0, UNHEX('3FC55129667033542A9778D3C2F61CE3'), UNHEX('3FC55129667033542A9778D3C2F61CE3')),
(UNHEX('FA37D16365ED7CC90245250C4BA51A0D'), 'wp-content/themes/betheme/functions/meta-page.php', 0, UNHEX('0B5664A9382ADE7ECD01C8981CFA4C28'), UNHEX('0B5664A9382ADE7ECD01C8981CFA4C28')),
(UNHEX('B1A92182A8A8A5A0F034E823C468A3DE'), 'wp-content/themes/betheme/functions/meta-portfolio.php', 0, UNHEX('7E4410E218A4047737CC9506C3D4E3CF'), UNHEX('7E4410E218A4047737CC9506C3D4E3CF')),
(UNHEX('CE6B5AC1675039A36CC6CB5ACB6DAF87'), 'wp-content/themes/betheme/functions/meta-post.php', 0, UNHEX('B7ABC42DD697BB1DA0D5D8BDCA249E8E'), UNHEX('B7ABC42DD697BB1DA0D5D8BDCA249E8E')),
(UNHEX('8EB5A4C7F8AF19D3E01D3199DBBCD713'), 'wp-content/themes/betheme/functions/meta-slide.php', 0, UNHEX('AA847E31D8E26A6B2C368F061F89AAC6'), UNHEX('AA847E31D8E26A6B2C368F061F89AAC6')),
(UNHEX('022477CBE80697C03AE3900E8250E7C2'), 'wp-content/themes/betheme/functions/meta-template.php', 0, UNHEX('5271FE6892EA5CBC80BC4A46A3D4A2F6'), UNHEX('5271FE6892EA5CBC80BC4A46A3D4A2F6')),
(UNHEX('4BFE5DB6F8478590F2F3A44CB23E81CE'), 'wp-content/themes/betheme/functions/meta-testimonial.php', 0, UNHEX('3705ADABA8CCC35D48DAA1045DEA1DE6'), UNHEX('3705ADABA8CCC35D48DAA1045DEA1DE6')),
(UNHEX('2186BDDBE66A068D6BD94E3600B7FB8A'), 'wp-content/themes/betheme/functions/plugins/visual-composer.php', 0, UNHEX('D6CF28BB1F58ABB4BB58DCE4339435A4'), UNHEX('D6CF28BB1F58ABB4BB58DCE4339435A4')),
(UNHEX('54D8E18C9E360B221C5F82A98CD5C868'), 'wp-content/themes/betheme/functions/system-status.php', 0, UNHEX('FE1A6B80B316CA0F8A7CCD2B15B780EE'), UNHEX('FE1A6B80B316CA0F8A7CCD2B15B780EE')),
(UNHEX('DDD45F1F4296E21983579FF16BC66D2F'), 'wp-content/themes/betheme/functions/theme-head.php', 0, UNHEX('F40E490E3A8EB3EDB73A0A56DD4553C6'), UNHEX('F40E490E3A8EB3EDB73A0A56DD4553C6')),
(UNHEX('0A7962D14F6D2847C17E9717D3205EDA'), 'wp-content/themes/betheme/functions/theme-hooks.php', 0, UNHEX('ACE127EF3AD4D49AAC29D942E7EDA673'), UNHEX('ACE127EF3AD4D49AAC29D942E7EDA673')),
(UNHEX('9EB2B8E0046204C1AB04BC78521E428C'), 'wp-content/themes/betheme/functions/theme-mega-menu.php', 0, UNHEX('D9163E556FA15B55A37640DBF9A33038'), UNHEX('D9163E556FA15B55A37640DBF9A33038')),
(UNHEX('77624EA0BB14D32DA29DC4FA83BDE7DA'), 'wp-content/themes/betheme/functions/theme-menu.php', 0, UNHEX('F57971CBD655E6DA671B2E8017E66551'), UNHEX('F57971CBD655E6DA671B2E8017E66551')),
(UNHEX('5A9EB2AAA7E994D406A2D92DAF5E5DF2'), 'wp-content/themes/betheme/functions/theme-shortcodes.php', 0, UNHEX('AACB58305A35C733FD7B095F03DC6D6F'), UNHEX('AACB58305A35C733FD7B095F03DC6D6F')),
(UNHEX('8DD93786881DAE64E7A6C4D66FEB87F2'), 'wp-content/themes/betheme/functions/theme-woocommerce.php', 0, UNHEX('F074AA96A8EA7EDFF9D1F1C0811489B0'), UNHEX('F074AA96A8EA7EDFF9D1F1C0811489B0')),
(UNHEX('526C13A256509015F67958F42C6B164C'), 'wp-content/themes/betheme/functions/tinymce/plugin.js', 0, UNHEX('6874E2C5F67252FC222023E1D7A848D5'), UNHEX('6874E2C5F67252FC222023E1D7A848D5')),
(UNHEX('F079A53710821B1EDAC270DD03633891'), 'wp-content/themes/betheme/functions/tinymce/tinymce.php', 0, UNHEX('A9F0BA860A190EC67F2703B9FD0313E2'), UNHEX('A9F0BA860A190EC67F2703B9FD0313E2')),
(UNHEX('CF3DD8833EC01DE33551F88A52F74FD9'), 'wp-content/themes/betheme/functions/widget-flickr.php', 0, UNHEX('53BA7F91E85DEE427876F20B24FA08D6'), UNHEX('53BA7F91E85DEE427876F20B24FA08D6')),
(UNHEX('0C9F53469A6293B6B1F72C69B5BE40C3'), 'wp-content/themes/betheme/functions/widget-functions.php', 0, UNHEX('6C8DEBC1A2A3BF56439D9BE132DB8219'), UNHEX('6C8DEBC1A2A3BF56439D9BE132DB8219')),
(UNHEX('DC5109C7336B0172F2E14AAC98A2FB61'), 'wp-content/themes/betheme/functions/widget-login.php', 0, UNHEX('D780632B130147FC59FDBE9A783DB262'), UNHEX('D780632B130147FC59FDBE9A783DB262')),
(UNHEX('B0A901CA06E1264F8AE0E283D3F40749'), 'wp-content/themes/betheme/functions/widget-menu.php', 0, UNHEX('452E32186ADF610679830188170A76D3'), UNHEX('452E32186ADF610679830188170A76D3')),
(UNHEX('F11750548244C919763E5E05DB6E3638'), 'wp-content/themes/betheme/functions/widget-recent-comments.php', 0, UNHEX('77B1DBF5017484B9987440BE910BDC1C'), UNHEX('77B1DBF5017484B9987440BE910BDC1C')),
(UNHEX('D2AB9113C2EBFE275AD338BE427D373A'), 'wp-content/themes/betheme/functions/widget-recent-posts.php', 0, UNHEX('F0BEF461678F696A15E68C8D24328864'), UNHEX('F0BEF461678F696A15E68C8D24328864')),
(UNHEX('76A31061BD97F38DAE99B073D3E69DCC'), 'wp-content/themes/betheme/functions/widget-tag-cloud.php', 0, UNHEX('BB6AB7443712DF8833D56892902155FB'), UNHEX('BB6AB7443712DF8833D56892902155FB')),
(UNHEX('4EE842F05C4955CCB15FC9D990D5D1F4'), 'wp-content/themes/betheme/functions.php', 0, UNHEX('61893C185F44388E43044AD8332DAA8C'), UNHEX('61893C185F44388E43044AD8332DAA8C')),
(UNHEX('0CA342272D7C90C81B0CB310599C48AD'), 'wp-content/themes/betheme/header-shop.php', 0, UNHEX('7AE0CD8BBD3836E0FA54A3A9B1658794'), UNHEX('7AE0CD8BBD3836E0FA54A3A9B1658794')),
(UNHEX('D7ABC03E632AD01EA1BC17B00C970EBD'), 'wp-content/themes/betheme/header.php', 0, UNHEX('1EAFA15934EB3F26F827A1C555E6764B'), UNHEX('1EAFA15934EB3F26F827A1C555E6764B')),
(UNHEX('6676498AC88EE6ACCFE0983EA9D4A347'), 'wp-content/themes/betheme/includes/content-portfolio.php', 0, UNHEX('0D4F5FC93960F6FCC8977ECD5A5ED2B6'), UNHEX('0D4F5FC93960F6FCC8977ECD5A5ED2B6')),
(UNHEX('A877A1A54CA7622A3931CFE49ADA124F'), 'wp-content/themes/betheme/includes/content-post.php', 0, UNHEX('A6B3C5338AD3F14E5531A754C8F2C862'), UNHEX('A6B3C5338AD3F14E5531A754C8F2C862')),
(UNHEX('ED915FF4AD74A0C047146EF5072988A9'), 'wp-content/themes/betheme/includes/content-single-portfolio.php', 0, UNHEX('D0131E4CEC504649B9A8CD512B167D23'), UNHEX('D0131E4CEC504649B9A8CD512B167D23')),
(UNHEX('68A0F13982B13CBCBE013BE2933F6390'), 'wp-content/themes/betheme/includes/content-single.php', 0, UNHEX('98FDC6B05181C5156EBA1D1082403D59'), UNHEX('98FDC6B05181C5156EBA1D1082403D59')),
(UNHEX('9FFBA69FCF4ADA67E01A838F42D57A0D'), 'wp-content/themes/betheme/includes/header-creative.php', 0, UNHEX('4296473A57A82911C26D022115C3F9CA'), UNHEX('4296473A57A82911C26D022115C3F9CA')),
(UNHEX('D0C1642F67A79C4936C878BCE9EB8C3E'), 'wp-content/themes/betheme/includes/header-single-intro.php', 0, UNHEX('7FDC61CD536754AC86F74C6CE12C7265'), UNHEX('7FDC61CD536754AC86F74C6CE12C7265')),
(UNHEX('0A3542E6E4EA25C5E5BCA9F6E7D5D389'), 'wp-content/themes/betheme/includes/header-sliding-area.php', 0, UNHEX('0DACB3897B9BC6BE52B027CB781E906F'), UNHEX('0DACB3897B9BC6BE52B027CB781E906F')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('59F1093CD3019DDA44C4A031A1AF8A65'), 'wp-content/themes/betheme/includes/header-top-area.php', 0, UNHEX('837E19076021AF21E3F4427133D0AE95'), UNHEX('837E19076021AF21E3F4427133D0AE95')),
(UNHEX('29B5C71C7200D47CC2D9ADA0BD577F85'), 'wp-content/themes/betheme/index.php', 0, UNHEX('9D1DBFB2D4463288409FA8A1C27F0C33'), UNHEX('9D1DBFB2D4463288409FA8A1C27F0C33')),
(UNHEX('8527224350156D3C88AC3221C3A60AB2'), 'wp-content/themes/betheme/js/menu.js', 0, UNHEX('D43C5DF9975C188CBC0D85CF050B6CC2'), UNHEX('D43C5DF9975C188CBC0D85CF050B6CC2')),
(UNHEX('DB93B56BC55E2B98787B5C4C3ED41858'), 'wp-content/themes/betheme/js/parallax/smoothscroll.js', 0, UNHEX('35B06F5519F6E60B6B727E24DAF95155'), UNHEX('35B06F5519F6E60B6B727E24DAF95155')),
(UNHEX('1B6C8AEF670FB988B2EFD3C704192888'), 'wp-content/themes/betheme/js/parallax/stellar.js', 0, UNHEX('2F2C7A2D288AB29B954D06D81FC78E5B'), UNHEX('2F2C7A2D288AB29B954D06D81FC78E5B')),
(UNHEX('B110F98C6740CCE3FD704B7FF912B45F'), 'wp-content/themes/betheme/js/parallax/translate3d.js', 0, UNHEX('A9769BC1C082345917F7809D56D4BFB1'), UNHEX('A9769BC1C082345917F7809D56D4BFB1')),
(UNHEX('877FBB8C8B21BE273202338D0B5D3FE0'), 'wp-content/themes/betheme/js/plugins.js', 0, UNHEX('8B201D7638112EDD9B1D59566DB2B962'), UNHEX('8B201D7638112EDD9B1D59566DB2B962')),
(UNHEX('CA0E9FC85EAABC6841C95E6681B7292D'), 'wp-content/themes/betheme/muffin-options/fields/ajax/field_ajax.js', 0, UNHEX('E33BE671FD29C1DB12A95A2B90DC0223'), UNHEX('E33BE671FD29C1DB12A95A2B90DC0223')),
(UNHEX('5B88EBDA27B647E78EDE626CCE709D08'), 'wp-content/themes/betheme/muffin-options/fields/ajax/field_ajax.php', 0, UNHEX('A65B0A1E890BD0E0764F58CFFDEAD839'), UNHEX('A65B0A1E890BD0E0764F58CFFDEAD839')),
(UNHEX('12C5B8A2BBFB473D1FFCBE82338E7357'), 'wp-content/themes/betheme/muffin-options/fields/checkbox/field_checkbox.js', 0, UNHEX('C2C3A70BC0C5DCFA240B5280A172D584'), UNHEX('C2C3A70BC0C5DCFA240B5280A172D584')),
(UNHEX('7281277B10C5CD09E5CB2D5C216D8319'), 'wp-content/themes/betheme/muffin-options/fields/checkbox/field_checkbox.php', 0, UNHEX('B474013DB31C4A2A81D617FC075D1458'), UNHEX('B474013DB31C4A2A81D617FC075D1458')),
(UNHEX('8746CEBB7534F44F4296B0444AE15395'), 'wp-content/themes/betheme/muffin-options/fields/color/field_color.js', 0, UNHEX('9D23DED11E647367082A7E2E06CED2DF'), UNHEX('9D23DED11E647367082A7E2E06CED2DF')),
(UNHEX('2EFADC0D233F7C6C5985CBE95EFB415E'), 'wp-content/themes/betheme/muffin-options/fields/color/field_color.php', 0, UNHEX('90D5D7DF1242A3614D3F3B918430EAC2'), UNHEX('90D5D7DF1242A3614D3F3B918430EAC2')),
(UNHEX('DC7F4C87C45D4EA73C7E75FA817D24E9'), 'wp-content/themes/betheme/muffin-options/fields/color_gradient/field_color_gradient.php', 0, UNHEX('EE5626E3A6259568532C7C90D8151F84'), UNHEX('EE5626E3A6259568532C7C90D8151F84')),
(UNHEX('52F6D7D601F8EAC7F27CA8067F4D7CE5'), 'wp-content/themes/betheme/muffin-options/fields/custom/field_custom.php', 0, UNHEX('170A6DA8B28C49FCF9150B3E42430CED'), UNHEX('170A6DA8B28C49FCF9150B3E42430CED')),
(UNHEX('D8EBF46EE6418109E1B4826F499ED674'), 'wp-content/themes/betheme/muffin-options/fields/font_select/field_font_select.php', 0, UNHEX('B39004A90D9B6487CCF498C25F3E8EAB'), UNHEX('B39004A90D9B6487CCF498C25F3E8EAB')),
(UNHEX('894B065127E82838E63BD270800578EF'), 'wp-content/themes/betheme/muffin-options/fields/icon/field_icon.js', 0, UNHEX('3CA11E0E429D4D2F60DB5A75793C27E9'), UNHEX('3CA11E0E429D4D2F60DB5A75793C27E9')),
(UNHEX('349771E53F836F7C537A31D369244DE9'), 'wp-content/themes/betheme/muffin-options/fields/icon/field_icon.php', 0, UNHEX('3DFF48E9022A85D1223E4B9B4C7A00C6'), UNHEX('3DFF48E9022A85D1223E4B9B4C7A00C6')),
(UNHEX('FA68BDB7A95EB62A1C1DC57D5C3897FE'), 'wp-content/themes/betheme/muffin-options/fields/info/field_info.php', 0, UNHEX('2BED0E419DF6A20863BAF817478F6636'), UNHEX('2BED0E419DF6A20863BAF817478F6636')),
(UNHEX('2DC1E4BD569414B15F34738EC3C00754'), 'wp-content/themes/betheme/muffin-options/fields/multi_text/field_multi_text.js', 0, UNHEX('C2C3A70BC0C5DCFA240B5280A172D584'), UNHEX('C2C3A70BC0C5DCFA240B5280A172D584')),
(UNHEX('DF54640DC333954DC41609E9A3A8BDC4'), 'wp-content/themes/betheme/muffin-options/fields/multi_text/field_multi_text.php', 0, UNHEX('7AE7BD523B6048B13DDF3008427B1999'), UNHEX('7AE7BD523B6048B13DDF3008427B1999')),
(UNHEX('B2217C8070D87D7F0846EF886ABD81A2'), 'wp-content/themes/betheme/muffin-options/fields/pages_select/field_pages_select.php', 0, UNHEX('BF8F02E03CB05CE6A8F8F732FBE18443'), UNHEX('BF8F02E03CB05CE6A8F8F732FBE18443')),
(UNHEX('96E342089470EBC91A2764158FD08CC2'), 'wp-content/themes/betheme/muffin-options/fields/radio_img/field_radio_img.js', 0, UNHEX('16B704198A45C90BF7942E647D0956EE'), UNHEX('16B704198A45C90BF7942E647D0956EE')),
(UNHEX('AB94616E07860C298EC77BFC14DE0F41'), 'wp-content/themes/betheme/muffin-options/fields/radio_img/field_radio_img.php', 0, UNHEX('4B040BB54300D3810AED2A484E9A7CED'), UNHEX('4B040BB54300D3810AED2A484E9A7CED')),
(UNHEX('873E376877016338F0D7F5BF9673960A'), 'wp-content/themes/betheme/muffin-options/fields/select/field_select.php', 0, UNHEX('2F775E817A8350E69DECCC1E354D441E'), UNHEX('2F775E817A8350E69DECCC1E354D441E')),
(UNHEX('23561A26102B56273656AD8264139ACD'), 'wp-content/themes/betheme/muffin-options/fields/sliderbar/field_sliderbar.js', 0, UNHEX('06939022E6FD60017016E2E99A8C0EE9'), UNHEX('06939022E6FD60017016E2E99A8C0EE9')),
(UNHEX('0A03EC9F215E63C2244AFF4C034F99FB'), 'wp-content/themes/betheme/muffin-options/fields/sliderbar/field_sliderbar.php', 0, UNHEX('02E53327C3DE00E5AB1A131B439CCC9D'), UNHEX('02E53327C3DE00E5AB1A131B439CCC9D')),
(UNHEX('2F40F032D6CFFC02B6BFBE93E9B779BB'), 'wp-content/themes/betheme/muffin-options/fields/sliderbar/jquery.ui.slider.js', 0, UNHEX('3554CFD40A5693E2BE8A01F6EBA75CF7'), UNHEX('3554CFD40A5693E2BE8A01F6EBA75CF7')),
(UNHEX('D96ED887EBD685B5263DC2E4BCCF6105'), 'wp-content/themes/betheme/muffin-options/fields/switch/field_switch.js', 0, UNHEX('BB072FDD570F22054A9E1DB0590A7D82'), UNHEX('BB072FDD570F22054A9E1DB0590A7D82')),
(UNHEX('9982FBCD202543DFD10CA870F1B2D222'), 'wp-content/themes/betheme/muffin-options/fields/switch/field_switch.php', 0, UNHEX('389291E9EBBB234D22511DFBF1F1933B'), UNHEX('389291E9EBBB234D22511DFBF1F1933B')),
(UNHEX('5D1147C443A91F48491FDE43F65BEF73'), 'wp-content/themes/betheme/muffin-options/fields/tabs/field_tabs.js', 0, UNHEX('10C121EBC4555BE40E0CD703DE7FFAB2'), UNHEX('10C121EBC4555BE40E0CD703DE7FFAB2')),
(UNHEX('62FF4B592CDF985C18D8A9071FE9B957'), 'wp-content/themes/betheme/muffin-options/fields/tabs/field_tabs.php', 0, UNHEX('ADACE71C264F90146E0DC1B531A55B7E'), UNHEX('ADACE71C264F90146E0DC1B531A55B7E')),
(UNHEX('69A41390975EF4F6B80752C2E2A2E20B'), 'wp-content/themes/betheme/muffin-options/fields/text/field_text.php', 0, UNHEX('A0428A333FE68C5D03828A05443A9C94'), UNHEX('A0428A333FE68C5D03828A05443A9C94')),
(UNHEX('373D545D97C6A2DAFAF8498BFC931CB9'), 'wp-content/themes/betheme/muffin-options/fields/textarea/field_textarea.php', 0, UNHEX('5FA8603F6C37553EA7CE432CAFBB7DF9'), UNHEX('5FA8603F6C37553EA7CE432CAFBB7DF9')),
(UNHEX('A4EE36A3CCD53E59DF1F35E32A4F3DD5'), 'wp-content/themes/betheme/muffin-options/fields/typography/field_typography.php', 0, UNHEX('4EDBBEF8EA241F17BE529C8824C6590F'), UNHEX('4EDBBEF8EA241F17BE529C8824C6590F')),
(UNHEX('97B61ADB3DE0D9BE4E316F8108EB6053'), 'wp-content/themes/betheme/muffin-options/fields/upload/field_upload.js', 0, UNHEX('B34B20156AF1D2D7E1843BC5B8FCAB45'), UNHEX('B34B20156AF1D2D7E1843BC5B8FCAB45')),
(UNHEX('907BF429676F03B3E9256771800ADAAF'), 'wp-content/themes/betheme/muffin-options/fields/upload/field_upload.php', 0, UNHEX('ED1CBB5E39F835DC95221E3E238A6A93'), UNHEX('ED1CBB5E39F835DC95221E3E238A6A93')),
(UNHEX('D2ADC18276513B2B9946CE9FD320AB41'), 'wp-content/themes/betheme/muffin-options/fonts.php', 0, UNHEX('CCB86CB20FB0E49905955C8657D277FC'), UNHEX('CCB86CB20FB0E49905955C8657D277FC')),
(UNHEX('B1933FD02C74702ECDA23484FC772715'), 'wp-content/themes/betheme/muffin-options/js/options.js', 0, UNHEX('BA8A99C7B51064671B5352481847E81B'), UNHEX('BA8A99C7B51064671B5352481847E81B')),
(UNHEX('36AFB012871CF1D0C389BD4BB5B74F9C'), 'wp-content/themes/betheme/muffin-options/options.php', 0, UNHEX('75246888CD8E370008156D0216BF48B1'), UNHEX('75246888CD8E370008156D0216BF48B1')),
(UNHEX('81826FB180D1D2EFB49B61659F47BC07'), 'wp-content/themes/betheme/muffin-options/theme-options.php', 0, UNHEX('170196382921A416D5A762718B7981C3'), UNHEX('170196382921A416D5A762718B7981C3')),
(UNHEX('8F640170F09339507C1537C16A73E8ED'), 'wp-content/themes/betheme/muffin-options/validation/color/validation_color.php', 0, UNHEX('6A08C52E58004F0376128EF33275B43E'), UNHEX('6A08C52E58004F0376128EF33275B43E')),
(UNHEX('1B4E4C6FBED0DEF6B51E99978B151484'), 'wp-content/themes/betheme/muffin-options/validation/email/validation_email.php', 0, UNHEX('4276CAA69395F3BB42BF1F3AE81A22D1'), UNHEX('4276CAA69395F3BB42BF1F3AE81A22D1')),
(UNHEX('A8C2D76EF26E9A75C1383979C4597CCE'), 'wp-content/themes/betheme/muffin-options/validation/html/validation_html.php', 0, UNHEX('C8D0E74352D1E36988D2B199DFBA49AA'), UNHEX('C8D0E74352D1E36988D2B199DFBA49AA')),
(UNHEX('BCB91AD9660F641F15A738D0ADF385F2'), 'wp-content/themes/betheme/muffin-options/validation/html_custom/validation_html_custom.php', 0, UNHEX('B9C938D08A8384152231D5561C70FF01'), UNHEX('B9C938D08A8384152231D5561C70FF01')),
(UNHEX('3D1575C16E559F2D2839EAF47C57FBDA'), 'wp-content/themes/betheme/muffin-options/validation/js/validation_js.php', 0, UNHEX('2CA6DE9CECDE558CA1C0B1FC4B633F6D'), UNHEX('2CA6DE9CECDE558CA1C0B1FC4B633F6D')),
(UNHEX('C030AFCFA2E6FF36FCCEAF8FF0F15D0E'), 'wp-content/themes/betheme/muffin-options/validation/no_html/validation_no_html.php', 0, UNHEX('8DCA36287797A4ED5DB5FA4A778FD962'), UNHEX('8DCA36287797A4ED5DB5FA4A778FD962')),
(UNHEX('88AC23CE00E3ADEA12E3BAA0BC43B72A'), 'wp-content/themes/betheme/muffin-options/validation/no_special_chars/validation_no_special_chars.php', 0, UNHEX('B73A6012C2659D363D18A62184FCD3C0'), UNHEX('B73A6012C2659D363D18A62184FCD3C0')),
(UNHEX('666E223783F7F4961B062253A3D93F98'), 'wp-content/themes/betheme/muffin-options/validation/numeric/validation_numeric.php', 0, UNHEX('9F16BF00ED4BB8A4BD1AB913274A1F03'), UNHEX('9F16BF00ED4BB8A4BD1AB913274A1F03')),
(UNHEX('A982D43B4DEB45EBA1AC43DED16AC8E8'), 'wp-content/themes/betheme/muffin-options/validation/preg_replace/validation_preg_replace.php', 0, UNHEX('04F7BA7289A1D29C4CEB4E3591FF4150'), UNHEX('04F7BA7289A1D29C4CEB4E3591FF4150')),
(UNHEX('C7BDDB873C1D2CF5185AE0ABDDEBEFC8'), 'wp-content/themes/betheme/muffin-options/validation/str_replace/validation_str_replace.php', 0, UNHEX('11FA5D668E359FCC9041269205AA64B8'), UNHEX('11FA5D668E359FCC9041269205AA64B8')),
(UNHEX('6BB0DEFEC7A4A2E6FA22ADD63F52F526'), 'wp-content/themes/betheme/muffin-options/validation/url/validation_url.php', 0, UNHEX('0BE5B47F32C77EB7481B1EF653DD5129'), UNHEX('0BE5B47F32C77EB7481B1EF653DD5129')),
(UNHEX('B33B1D97A0C8A7A23014F64741C070C1'), 'wp-content/themes/betheme/page.php', 0, UNHEX('DA77CD086D45D698BD45B83C5D21000A'), UNHEX('DA77CD086D45D698BD45B83C5D21000A')),
(UNHEX('BFF504A8C4A06C6417C3884EB98B3297'), 'wp-content/themes/betheme/search.php', 0, UNHEX('4C31FB67FBCABB50579826853EEB2558'), UNHEX('4C31FB67FBCABB50579826853EEB2558')),
(UNHEX('A844FB848CD086B3F8158EC469EB7CA6'), 'wp-content/themes/betheme/searchform.php', 0, UNHEX('C93502DFE591EF717F3D87B7792465C0'), UNHEX('C93502DFE591EF717F3D87B7792465C0')),
(UNHEX('2CBE14AA574C125CDB94AD852752B9D0'), 'wp-content/themes/betheme/sidebar-blog.php', 0, UNHEX('E651AB34E7A60F3DF636879BF58D1822'), UNHEX('E651AB34E7A60F3DF636879BF58D1822')),
(UNHEX('BB6D9CC8147F75364418000C189D63F4'), 'wp-content/themes/betheme/sidebar-taxonomy.php', 0, UNHEX('C2515F637A94E2788789C570005AF0DD'), UNHEX('C2515F637A94E2788789C570005AF0DD')),
(UNHEX('4C590740BACCB9CC048B1DCBC934482F'), 'wp-content/themes/betheme/sidebar.php', 0, UNHEX('43F63F0DEC02D5836022D9BC3AB1A88E'), UNHEX('43F63F0DEC02D5836022D9BC3AB1A88E')),
(UNHEX('4A522F5B8F679819D425BC948C805006'), 'wp-content/themes/betheme/single-attachment.php', 0, UNHEX('394C9AD1073A8B8C8F2BE7795CF57476'), UNHEX('394C9AD1073A8B8C8F2BE7795CF57476')),
(UNHEX('12A7B91D2018E15A5A29D8E8E770036B'), 'wp-content/themes/betheme/single-download.php', 0, UNHEX('73D973CE46315FF91215BFDA5096DABF'), UNHEX('73D973CE46315FF91215BFDA5096DABF')),
(UNHEX('E226489D6DD15E85191DDD6EC8236851'), 'wp-content/themes/betheme/single-portfolio.php', 0, UNHEX('8E4614824F7D53DC639EAD357BBD4B55'), UNHEX('8E4614824F7D53DC639EAD357BBD4B55')),
(UNHEX('DEAA6C92C69D9EE1D9D55ECC540A592F'), 'wp-content/themes/betheme/single.php', 0, UNHEX('8E1D07F55CC877682061B54D4DDF937B'), UNHEX('8E1D07F55CC877682061B54D4DDF937B')),
(UNHEX('4893724BFB9116A51309779EA23F514A'), 'wp-content/themes/betheme/style-colors.php', 0, UNHEX('A7D35E1AFF0C40EF0DE9173B73531819'), UNHEX('A7D35E1AFF0C40EF0DE9173B73531819')),
(UNHEX('C0D927F278A66181EFB78B2110938432'), 'wp-content/themes/betheme/style-one.php', 0, UNHEX('C47F96364FD2189DC1B290BEC7DD422D'), UNHEX('C47F96364FD2189DC1B290BEC7DD422D')),
(UNHEX('A57C2400280D145B528A97894325CCD8'), 'wp-content/themes/betheme/style-responsive.php', 0, UNHEX('67AA48BB7CF0AB39FA020F21281F9A68'), UNHEX('67AA48BB7CF0AB39FA020F21281F9A68')),
(UNHEX('D01A7A077138216D4FD08E2D4339DB2B'), 'wp-content/themes/betheme/style.php', 0, UNHEX('3E244DAF11BD2E15C2A8D93760E9ECA1'), UNHEX('3E244DAF11BD2E15C2A8D93760E9ECA1')),
(UNHEX('F521312C18A09B9B2F9D79615D73FD6E'), 'wp-content/themes/betheme/taxonomy-portfolio-types.php', 0, UNHEX('8F7E6F2E5F399591E83E7A85BE1F70EA'), UNHEX('8F7E6F2E5F399591E83E7A85BE1F70EA')),
(UNHEX('07377FC87D7AC00BE10F7BE386110188'), 'wp-content/themes/betheme/template-archives.php', 0, UNHEX('B3FB54C79D5F3A836DB04517684166DF'), UNHEX('B3FB54C79D5F3A836DB04517684166DF')),
(UNHEX('2A6E22784ADF89E41DAABF82BCE69DCF'), 'wp-content/themes/betheme/template-blank.php', 0, UNHEX('584C7249A96DB4C85DCDDCED476AB7D1'), UNHEX('584C7249A96DB4C85DCDDCED476AB7D1')),
(UNHEX('63D9E350F0ED62A1BA54328E1AFDEBD6'), 'wp-content/themes/betheme/template-portfolio.php', 0, UNHEX('D503CD66528B3D0D60AC4DF4BF736F59'), UNHEX('D503CD66528B3D0D60AC4DF4BF736F59')),
(UNHEX('2E18F49F47C65278F87057A293B9D34D'), 'wp-content/themes/betheme/template-sitemap.php', 0, UNHEX('904E7CDA904F235454EC936E6AE53818'), UNHEX('904E7CDA904F235454EC936E6AE53818')),
(UNHEX('F104825EAB355464527017B955250531'), 'wp-content/themes/betheme/tribe-events/default-template.php', 0, UNHEX('5AC645547D85694C4284E5862482465C'), UNHEX('5AC645547D85694C4284E5862482465C')),
(UNHEX('F87F18767B1510103E7AE42413127041'), 'wp-content/themes/betheme/under-construction.php', 0, UNHEX('2EABEBFAB4CAD565D1B44DB7CB431DE5'), UNHEX('2EABEBFAB4CAD565D1B44DB7CB431DE5')),
(UNHEX('CC3C012B723E882676AEA80516635AAC'), 'wp-content/themes/betheme/vc_templates/vc_accordion.php', 0, UNHEX('61981E9E9B8D4B12F485C16868208E0E'), UNHEX('61981E9E9B8D4B12F485C16868208E0E')),
(UNHEX('3BB508F16F186AE20BD13F2BD08AAEC9'), 'wp-content/themes/betheme/vc_templates/vc_accordion_tab.php', 0, UNHEX('4DB73CF6BD3C8EAFFC49B50042FE427B'), UNHEX('4DB73CF6BD3C8EAFFC49B50042FE427B')),
(UNHEX('C016545C47C3417B8AC1A615E7454319'), 'wp-content/themes/betheme/vc_templates/vc_tabs.php', 0, UNHEX('A21F9E7C8F6DFECB10892B26869D018C'), UNHEX('A21F9E7C8F6DFECB10892B26869D018C')),
(UNHEX('FB6C107E138A1BD4D97BFCAE644BFAC0'), 'wp-content/themes/betheme/vc_templates/vc_toggle.php', 0, UNHEX('ABAE7278DD005EB16D1067D348E7C873'), UNHEX('ABAE7278DD005EB16D1067D348E7C873')),
(UNHEX('311AFDB09646DFE4EDB7E936C0B13F56'), 'wp-content/themes/betheme/woocommerce/archive-product.php', 0, UNHEX('BD6D10ACE987D00BDD86AD56316049C4'), UNHEX('BD6D10ACE987D00BDD86AD56316049C4')),
(UNHEX('400DE11E4CA9342442ADE8E6334E06E7'), 'wp-content/themes/betheme/woocommerce/cart/cart.php', 0, UNHEX('BA3F7C350C326A55BAAEAA82663A7C89'), UNHEX('BA3F7C350C326A55BAAEAA82663A7C89')),
(UNHEX('405114A0A55A141FA6C6CBF26F3281CF'), 'wp-content/themes/betheme/woocommerce/cart/mini-cart.php', 0, UNHEX('A14D96A04C82163AA4F3A071F2F6B163'), UNHEX('A14D96A04C82163AA4F3A071F2F6B163')),
(UNHEX('062B77FDD5BAD757861E60B0C46A27A1'), 'wp-content/themes/betheme/woocommerce/content-product.php', 0, UNHEX('2C0F4051DB7424302C8B1EE3BB8CE2C0'), UNHEX('2C0F4051DB7424302C8B1EE3BB8CE2C0')),
(UNHEX('04AB1CBA692EDF872AD3E6160919818E'), 'wp-content/themes/betheme/woocommerce/content-single-product.php', 0, UNHEX('6D487486DF42894235CB0726AAD8E4AF'), UNHEX('6D487486DF42894235CB0726AAD8E4AF')),
(UNHEX('13B4FA6B5B1BD476A8A34D3EB2176542'), 'wp-content/themes/betheme/woocommerce/loop/loop-end.php', 0, UNHEX('E59A4B2126794342EF3B18FCAE830CAB'), UNHEX('E59A4B2126794342EF3B18FCAE830CAB')),
(UNHEX('882ACB0FA90B634273B98899AF2E9292'), 'wp-content/themes/betheme/woocommerce/loop/loop-start.php', 0, UNHEX('1ADDB4C2DE420708F3DA7C6E8EA493AD'), UNHEX('1ADDB4C2DE420708F3DA7C6E8EA493AD')),
(UNHEX('98A199CFF8BC0D64D3C57387D00B4C56'), 'wp-content/themes/betheme/woocommerce/loop/no-products-found.php', 0, UNHEX('8DA589ED2A68921B172AF94354C02B16'), UNHEX('8DA589ED2A68921B172AF94354C02B16')),
(UNHEX('BE926147557249591B9B29CB3770DB16'), 'wp-content/themes/betheme/woocommerce/loop/orderby.php', 0, UNHEX('AAD36DEF9E1401B1C6A356876E7589CC'), UNHEX('AAD36DEF9E1401B1C6A356876E7589CC')),
(UNHEX('D597A3FF90462B8238E0129966A51266'), 'wp-content/themes/betheme/woocommerce/loop/pagination.php', 0, UNHEX('F12FC195F40382EC2D0BD945B413E984'), UNHEX('F12FC195F40382EC2D0BD945B413E984')),
(UNHEX('9F1FA5728549B4BD5716BC2023046EE3'), 'wp-content/themes/betheme/woocommerce/loop/price.php', 0, UNHEX('B55FFB33BD19650DE03011F4EAA8544B'), UNHEX('B55FFB33BD19650DE03011F4EAA8544B')),
(UNHEX('A2CE05AC07831CFBEFE726CF6268C33B'), 'wp-content/themes/betheme/woocommerce/loop/rating.php', 0, UNHEX('6A2EA2F3C8B60574B4AFE329AEACBDA9'), UNHEX('6A2EA2F3C8B60574B4AFE329AEACBDA9')),
(UNHEX('C4B3279A6B46B62AD1EB4165BAA6C62D'), 'wp-content/themes/betheme/woocommerce/loop/result-count.php', 0, UNHEX('92196E4FAA7D036AE6D1663E3BC57A3D'), UNHEX('92196E4FAA7D036AE6D1663E3BC57A3D')),
(UNHEX('EE2EE3B20BAC6CE2A564F10D116FFD9F'), 'wp-content/themes/betheme/woocommerce/loop/sale-flash.php', 0, UNHEX('46CFDA39D11CAC68B1B5B272BD879832'), UNHEX('46CFDA39D11CAC68B1B5B272BD879832')),
(UNHEX('2E500F3A3A56FE1B7630D6358E1D4951'), 'wp-content/themes/betheme/woocommerce/notices/error.php', 0, UNHEX('5B664A01F08DB09D18D4B2B8DDC305DE'), UNHEX('5B664A01F08DB09D18D4B2B8DDC305DE')),
(UNHEX('70B4DB7C768C180E26463C3E6B3EF9E7'), 'wp-content/themes/betheme/woocommerce/notices/notice.php', 0, UNHEX('CE386CDA397E18E1F9E048F151981BE9'), UNHEX('CE386CDA397E18E1F9E048F151981BE9')),
(UNHEX('493F96E5AC453E6E624854D07157936C'), 'wp-content/themes/betheme/woocommerce/notices/success.php', 0, UNHEX('806D7A49DCEFCA2BCAA956037272C359'), UNHEX('806D7A49DCEFCA2BCAA956037272C359')),
(UNHEX('83866BB6F59DA226DD555125B4029A35'), 'wp-content/themes/betheme/woocommerce/single-product/add-to-cart/external.php', 0, UNHEX('093D5FD02813D4EB83946482BBB350B9'), UNHEX('093D5FD02813D4EB83946482BBB350B9')),
(UNHEX('5509194384F9C034764D62ABF50B3CAA'), 'wp-content/themes/betheme/woocommerce/single-product/meta.php', 0, UNHEX('22254D6717F508E44F75530F17B090F3'), UNHEX('22254D6717F508E44F75530F17B090F3')),
(UNHEX('54B730B5C5940D1273A3CF49DAB7DB3F'), 'wp-content/themes/betheme/woocommerce/single-product/price.php', 0, UNHEX('346FF95DFFDE5242E149B970C6F23414'), UNHEX('346FF95DFFDE5242E149B970C6F23414')),
(UNHEX('9C1A57A4080853672B247850BFAB1885'), 'wp-content/themes/betheme/woocommerce/single-product/product-attributes.php', 0, UNHEX('C7DD2B71825286B7E34C16144BC80F46'), UNHEX('C7DD2B71825286B7E34C16144BC80F46')),
(UNHEX('F2CD368E8465C2D2823F48CC2936BCFF'), 'wp-content/themes/betheme/woocommerce/single-product/product-image.php', 0, UNHEX('28ED335876CC8158A4CA6736EBE1AA57'), UNHEX('28ED335876CC8158A4CA6736EBE1AA57')),
(UNHEX('90FE4A3A9ED55BD0181BC9B7E46707FB'), 'wp-content/themes/betheme/woocommerce/single-product/product-thumbnails.php', 0, UNHEX('05D6FA88C618091CCCC13CDDEF4FB515'), UNHEX('05D6FA88C618091CCCC13CDDEF4FB515')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('79ECCD5EEC141EF79D6C6599EF69E88F'), 'wp-content/themes/betheme/woocommerce/single-product/related.php', 0, UNHEX('74C03CF89A27585755405C97C477E46B'), UNHEX('74C03CF89A27585755405C97C477E46B')),
(UNHEX('B47780E31EFA5EC3B2BD52FC619649EF'), 'wp-content/themes/betheme/woocommerce/single-product/sale-flash.php', 0, UNHEX('C61D3EBB20DDAF8CC74916E40E644569'), UNHEX('C61D3EBB20DDAF8CC74916E40E644569')),
(UNHEX('86994EB9605E497C5097F6D27FE6AC59'), 'wp-content/themes/betheme/woocommerce/single-product/share.php', 0, UNHEX('448C020B6DB9BDF6CC7E7F4E59180171'), UNHEX('448C020B6DB9BDF6CC7E7F4E59180171')),
(UNHEX('0890BDEBB282F38F08940F26E31172C7'), 'wp-content/themes/betheme/woocommerce/single-product/short-description.php', 0, UNHEX('90EF42C14BC6B4C94C55F5D5F40FA36A'), UNHEX('90EF42C14BC6B4C94C55F5D5F40FA36A')),
(UNHEX('C84D320E2EA651AAB446288617D05615'), 'wp-content/themes/betheme/woocommerce/single-product/tabs/additional-information.php', 0, UNHEX('B264E2E515885251E79AC40AF9BFD3F0'), UNHEX('B264E2E515885251E79AC40AF9BFD3F0')),
(UNHEX('7691C588CFE6954457EAFE44BF549CD7'), 'wp-content/themes/betheme/woocommerce/single-product/tabs/description.php', 0, UNHEX('4D1673067766110CD04383052F94DADD'), UNHEX('4D1673067766110CD04383052F94DADD')),
(UNHEX('3B41C179585276D4A41B4F41689AB9C9'), 'wp-content/themes/betheme/woocommerce/single-product/tabs/tabs.php', 0, UNHEX('1BF00A4F2A7B29C661E78A8F31E52B2B'), UNHEX('1BF00A4F2A7B29C661E78A8F31E52B2B')),
(UNHEX('FD6CB756B855983FACD48194058A36C6'), 'wp-content/themes/betheme/woocommerce/single-product/title.php', 0, UNHEX('E61EED8B7EE0AC84287D423B737AF6BA'), UNHEX('E61EED8B7EE0AC84287D423B737AF6BA')),
(UNHEX('D2F1DB477E922C05217AE638F6D4E1BE'), 'wp-content/themes/betheme/woocommerce/single-product/up-sells.php', 0, UNHEX('CB70B57EFDA1B72774BBCADA5E43CE0D'), UNHEX('CB70B57EFDA1B72774BBCADA5E43CE0D')),
(UNHEX('25543349E1B909C65C93F04F451F183F'), 'wp-content/themes/betheme/woocommerce/single-product.php', 0, UNHEX('82AF26B7525C20121A9B782A142AD4DC'), UNHEX('82AF26B7525C20121A9B782A142AD4DC')),
(UNHEX('1D8E9A83AC4ACC7D46B7DF4500DE39B3'), 'wp-content/themes/index.php', 0, UNHEX('67442C5615EBA73D105C0715C6620850'), UNHEX('67442C5615EBA73D105C0715C6620850')),
(UNHEX('788E73A532E9F5B382225AD155E3C2AE'), 'wp-content/themes/twentyfifteen/404.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ACF3C2A0019A9232D54D4414802491B2')),
(UNHEX('BD7D9D80254AFEBCE3FD678AE57AAA9D'), 'wp-content/themes/twentyfifteen/archive.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B6BF92278874581371240737D6CA51C')),
(UNHEX('C47CACB71A9B1BF2EEC43A73C77E9A08'), 'wp-content/themes/twentyfifteen/author-bio.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('34DCD4A152172429FAC7EBFB775A4FF5')),
(UNHEX('5CD44A6827F27BADE1E061D3600F5FD3'), 'wp-content/themes/twentyfifteen/comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52F7DAA26417FDBDC993A84748D5F181')),
(UNHEX('A8325B84AA73180FC324AACE74D5585B'), 'wp-content/themes/twentyfifteen/content-link.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B399E0462769D55610FA310B01BC1BF3')),
(UNHEX('A7C7DC60DCE483BDBF6557EE59BCBF05'), 'wp-content/themes/twentyfifteen/content-none.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('80E901EE9B9656E4081EBD582BD53199')),
(UNHEX('3BC122C243E8C1D898DCB3832068631A'), 'wp-content/themes/twentyfifteen/content-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06DA247A78E2C415F8361BDE93934D23')),
(UNHEX('DE5ECF4B5E17BB3876D91D38E3A7EBD0'), 'wp-content/themes/twentyfifteen/content-search.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('05ECA53C435579FB51924FDFC4CC62CF')),
(UNHEX('D6E7E37623EF39F702D0F2293F4970D7'), 'wp-content/themes/twentyfifteen/content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F3C689E9AD6173E43BDA54271D0CE70')),
(UNHEX('4AEC8803A87FFAF830E3C600C9C2C23B'), 'wp-content/themes/twentyfifteen/css/editor-style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C542480DA525A3DC0C255ED966C90DCC')),
(UNHEX('8EE5A1E703C4AC7F2BB9B918AC9DD930'), 'wp-content/themes/twentyfifteen/css/ie.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F86CDF670FF2A4F649194E8E36C1B7FC')),
(UNHEX('9C6CA364B8D59F88154C1BAB15317530'), 'wp-content/themes/twentyfifteen/css/ie7.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6468F9823D831D5B4B4D37D5C52C88AC')),
(UNHEX('00FBDB8E78052599641ACE6B4B5D1728'), 'wp-content/themes/twentyfifteen/footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6859D3A0A826E984DF36D3098CFD874E')),
(UNHEX('CAE84DCB614EEE9AF960B43AB82C0BD6'), 'wp-content/themes/twentyfifteen/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('80C6D2FDCCE4DC9213F5425552F3E494')),
(UNHEX('FA8A275F47B798FE3E81E2722D67CAAF'), 'wp-content/themes/twentyfifteen/genericons/COPYING.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9423B96EB6160477FD4A2B7DE890419')),
(UNHEX('D4108086AAC07DD776CFA3FE900847C0'), 'wp-content/themes/twentyfifteen/genericons/Genericons.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E286921C96E71C281FEDC8376BA46A7F')),
(UNHEX('F1C24A5DFA82B1B03B9D6F2A17A9B150'), 'wp-content/themes/twentyfifteen/genericons/Genericons.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2FBF3D1BC2B37A65582AB97CD3EAA462')),
(UNHEX('114A398F3FC52B8BE65102D3E9B4B5C3'), 'wp-content/themes/twentyfifteen/genericons/Genericons.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD260E7477D834B7D0890B9470638124')),
(UNHEX('64AE6F6EA6573E61CC1BA799C010F3EC'), 'wp-content/themes/twentyfifteen/genericons/Genericons.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('732FF0FD6E5D9D64B2C8C81F7AC83F01')),
(UNHEX('75FE0CEC5122B1E57E57A8F6AC99C3B0'), 'wp-content/themes/twentyfifteen/genericons/LICENSE.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B234EE4D69F5FCE4486A80FDAF4A4263')),
(UNHEX('766C42549BE8AA5B36C718D542C24AF9'), 'wp-content/themes/twentyfifteen/genericons/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75F6390A4A93FD4C613751B7A9E78491')),
(UNHEX('3ABFA858EF26651DDCD3CDA30496A7C0'), 'wp-content/themes/twentyfifteen/genericons/genericons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4A5F119C255C653E1FF74AF2B021BAF')),
(UNHEX('782E6F1A304CB3750C20CFB3E4041EDA'), 'wp-content/themes/twentyfifteen/header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0136450BE21BD6B4B3C14AF6A6C64D07')),
(UNHEX('C3085EC0EA43C14FEFCF1C13508F3EF4'), 'wp-content/themes/twentyfifteen/image.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8127B8DF949BBF73CFF3C248DA7B07E')),
(UNHEX('E34C24810F40AAB35DBDBD9A9D252B58'), 'wp-content/themes/twentyfifteen/inc/back-compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('61BF8FC8C8C0C413D7209A085BDC607A')),
(UNHEX('CECF2CC01D9FA047B620B13AC530A02F'), 'wp-content/themes/twentyfifteen/inc/custom-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('81345FEC4EDE475E0746FD7D5BE59346')),
(UNHEX('022A6C1158F3AAB1CC0E4B5071185501'), 'wp-content/themes/twentyfifteen/inc/customizer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('861825F8459DBF344709F0D3C3F148E9')),
(UNHEX('CD61A2827162FE4F6149C22DF30D2A0F'), 'wp-content/themes/twentyfifteen/inc/template-tags.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FAE5B710860233CFA195E0114C18F5A')),
(UNHEX('71060F005EF46D76420B731066437ECC'), 'wp-content/themes/twentyfifteen/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('84C9B262AE5A4B939E934BAD57D8EE3A')),
(UNHEX('07BEDD069640BA8CA84E94A61F205F6E'), 'wp-content/themes/twentyfifteen/js/color-scheme-control.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6705BDA44F3ACB5DC98FC1BCC65884DB')),
(UNHEX('119C5ADF3168A68AFD1296918C4E33C6'), 'wp-content/themes/twentyfifteen/js/customize-preview.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0D91074B5F13F0DCD4A34BCC561C329')),
(UNHEX('BE8926CAF4054B479DFB1189161F2996'), 'wp-content/themes/twentyfifteen/js/functions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A76B662D0CCA75D9012DB66D1D2EB7C5')),
(UNHEX('BDACC8575706D5836FF86DDACBD0E965'), 'wp-content/themes/twentyfifteen/js/html5.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E95CA1122287C8B6889B126AC893B750')),
(UNHEX('F86B6F5A0CFDF6A87A212FBDCC667F07'), 'wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B82F191BE2383003721F8B0D6FBAAEA9')),
(UNHEX('8B8DC6E37107F0B79E8AF80544F9AA60'), 'wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D774BF15E2E23E3A7BBB9AFA92F4F0B6')),
(UNHEX('3305CF6B1E4D66E2396AE602E49E5D93'), 'wp-content/themes/twentyfifteen/languages/twentyfifteen.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C5D50C792D877BD77AC9ABD9FF49E39A')),
(UNHEX('D7B23280440BA1C9BB262D75F3F50915'), 'wp-content/themes/twentyfifteen/page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('429635D5E4118C5E9B001299609043FE')),
(UNHEX('7FE98D95AA9E639642F27721F7C40B57'), 'wp-content/themes/twentyfifteen/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A2929B3936DC8A9E0B6D4A40B4AE19F')),
(UNHEX('355DFFF4081EC31F1D2F808484F50DD0'), 'wp-content/themes/twentyfifteen/rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3B49A7BEEA0B7ABA6B5F1D065046816')),
(UNHEX('6D9C16FF17A5C61A952FB7AE911284C2'), 'wp-content/themes/twentyfifteen/screenshot.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5BA3748DD5AE31944FE972B2485E080D')),
(UNHEX('5CCCE7132B35AEE91FC2A6445722EF98'), 'wp-content/themes/twentyfifteen/search.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3EB7C42237D19ED78921F0540AAA7DF2')),
(UNHEX('A4BFEE15221C5CC4E944A62D5C6763A3'), 'wp-content/themes/twentyfifteen/sidebar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECA6C02AB3707A042E39F47B88A5E153')),
(UNHEX('E792C5FF789ADE41676D25B6E61B9EBB'), 'wp-content/themes/twentyfifteen/single.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C86C43956EBCD706EFB11B2FF4DA13EF')),
(UNHEX('7576FAD59E03285335E41087B9ED9BA8'), 'wp-content/themes/twentyfifteen/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3403F224DCEC49EF0BA768F73B61529C')),
(UNHEX('38324E47F4407C10CD4DE29F08387C0A'), 'wp-content/themes/twentyfourteen/404.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9B12A3C8353C6228BA30C0AE482F773')),
(UNHEX('52428BB7DCF2654CA098C2B1AB187BDD'), 'wp-content/themes/twentyfourteen/archive.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4EF0E158F5A1F8443BF97114A8D2B57')),
(UNHEX('C2690E69AD9642DC65382EBCAD14389D'), 'wp-content/themes/twentyfourteen/author.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('151EE220F67D7AE1BDF7BDA3F5BC1059')),
(UNHEX('DF962FFD32A55A128D14A27BAC36BBE0'), 'wp-content/themes/twentyfourteen/category.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6C3C886C3D540398F7BDF0780AF253D')),
(UNHEX('E66A49F92157D8CFF98A8CEC2A3A4784'), 'wp-content/themes/twentyfourteen/comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2EFFFBBAF999EA105FDD87EB7F5802EC')),
(UNHEX('8A344281690031B49ACBD9F8C43E2FC1'), 'wp-content/themes/twentyfourteen/content-aside.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB91AA87AA7912C72A73D3240C9C7552')),
(UNHEX('616E96DCA8AB01354DC293671D557BC4'), 'wp-content/themes/twentyfourteen/content-audio.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('18FD6764D8E84C235CF608DE19A2AC7C')),
(UNHEX('F0B62141B417AAFE0D1BDA960D123ECE'), 'wp-content/themes/twentyfourteen/content-featured-post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60C3CC0B0F5810B027A067545C6429D8')),
(UNHEX('D22B714B28BF6596246B9C5C14B2A3B4'), 'wp-content/themes/twentyfourteen/content-gallery.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3E41626CE9C510857C69760A49E1C77')),
(UNHEX('01DFE260C8BD07B663208629649CB812'), 'wp-content/themes/twentyfourteen/content-image.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4B047923A816247EE4A32070B3E9C781')),
(UNHEX('35BA16C7570442A6AE24A393EE936C80'), 'wp-content/themes/twentyfourteen/content-link.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('672556D294D18DEAEAF88E1BD4AA63A2')),
(UNHEX('7C8D747C934179A5830D41CEEBFB9281'), 'wp-content/themes/twentyfourteen/content-none.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03870915E35D081758261432E7FE5F01')),
(UNHEX('17D36DF289DC6A67DD2ED8E550B1D814'), 'wp-content/themes/twentyfourteen/content-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66DAD33222D97A59086C0FFA2F9CB683')),
(UNHEX('DF3D460B68337B44577DE7FB216293DE'), 'wp-content/themes/twentyfourteen/content-quote.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9E64D4EB0B08DB6B14F1FB498F393CAA')),
(UNHEX('5142878C5150362A4ACCBFE9ED8C633B'), 'wp-content/themes/twentyfourteen/content-video.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D85FE3394E177674D028DCB6C0012E10')),
(UNHEX('B3627C4C1976E3D95FAB379D8EF04587'), 'wp-content/themes/twentyfourteen/content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB9AEF43AA9619C54B5AA197CBB33FC0')),
(UNHEX('E006D4C836AEB4392693B5CDF8C552EF'), 'wp-content/themes/twentyfourteen/css/editor-style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A23A1E96059C33072DCE3FD9F893F6E')),
(UNHEX('7C3B9D3FE7ECEBA00C13141431D7F632'), 'wp-content/themes/twentyfourteen/css/ie.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA04C78E3FC2016E9EF44F6ADCE36541')),
(UNHEX('0622D17DAD25F99578F0523A46B7DBEE'), 'wp-content/themes/twentyfourteen/featured-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01F551FB2071CF9EEE3256ABFC1CFC77')),
(UNHEX('9DE570589406497DB7DDDD01BE1379AB'), 'wp-content/themes/twentyfourteen/footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71B7C04AE5BFE6196E6A399A54F105C8')),
(UNHEX('19E5BC046031A19EA4DCF76FE3EB7816'), 'wp-content/themes/twentyfourteen/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5D97A8AD082A4D70A458169BE2B3D2B')),
(UNHEX('1C4C6FA653580FF791F3392172C03482'), 'wp-content/themes/twentyfourteen/genericons/COPYING.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9423B96EB6160477FD4A2B7DE890419')),
(UNHEX('C41697551FE546200BD6FDF695D49E19'), 'wp-content/themes/twentyfourteen/genericons/Genericons-Regular.otf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D131056B90B61A4ED8D82B883E148411')),
(UNHEX('0BBCC7A89560C9721BF75D9B7FAAB268'), 'wp-content/themes/twentyfourteen/genericons/LICENSE.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B234EE4D69F5FCE4486A80FDAF4A4263')),
(UNHEX('BF16D259B2FBA98E3197D88E0324C9A7'), 'wp-content/themes/twentyfourteen/genericons/README.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4923271C0E79B5A346A440B9C0C76422')),
(UNHEX('3D67DDDFE43C3BFDA111338CCE0B7788'), 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADF093B1EC7239C03865A87AE6D60160')),
(UNHEX('C117B20BEA7C99AB55D643904485B968'), 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA07151366F79DA6116CF5CFC3CC477B')),
(UNHEX('B4B72AEAB4B6865A8633B05CFE661FC2'), 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F83F27FB1BFD20D64BA2AE3EAAF4B1CA')),
(UNHEX('A3E1F1E580BDB7B68ADA8A1674D5259C'), 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DB7A8D16B367E4C38591BE6D7E979876')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('02E0BC970F213E239240D7F03757DC27'), 'wp-content/themes/twentyfourteen/genericons/genericons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8604C201CA1B346289D82DAF2B6C91F6')),
(UNHEX('011E92A4C8849837D967E4625E491135'), 'wp-content/themes/twentyfourteen/header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('579FFAB1A187693F540206A09CED13C1')),
(UNHEX('27B2A554EBF02A3C9C153D60B210D3BF'), 'wp-content/themes/twentyfourteen/image.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0AB7007099A440C088A95C6C62E722E')),
(UNHEX('DD7B665ABFB5FCDFA59B97BF09E44B51'), 'wp-content/themes/twentyfourteen/images/pattern-dark.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA45BDBE5BFD2EC67435D5E1AD05006B')),
(UNHEX('D70D6E382305C394FAD83992FABFF67C'), 'wp-content/themes/twentyfourteen/images/pattern-light.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF69A6FD14BF4770B36A8880BF53DDA8')),
(UNHEX('2CE5FDCE3160D0A6F4859A713BD2527C'), 'wp-content/themes/twentyfourteen/inc/back-compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B29AC75D7A34A9CD14F1AB9E660FDFAE')),
(UNHEX('DEA08AAEF7B1970B4077C288E7632191'), 'wp-content/themes/twentyfourteen/inc/custom-header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6300F93C453609B506A93B11E62E2A2B')),
(UNHEX('A495B1050C0172E1EC9819535869D3F1'), 'wp-content/themes/twentyfourteen/inc/customizer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('80CEBB16F566725AEC2A9E575A876AF1')),
(UNHEX('F0D5A36DD2EC70C2FC1EE9A98DF7390A'), 'wp-content/themes/twentyfourteen/inc/featured-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2536A0292C468F72832B79AA39114D2')),
(UNHEX('ED1A7072353E1FA0F623459DF6B4C495'), 'wp-content/themes/twentyfourteen/inc/template-tags.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('742564101E26B69EE68C48152C651A4F')),
(UNHEX('8CBC7593910604642AF86F5A3EE29DE9'), 'wp-content/themes/twentyfourteen/inc/widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECA319D77D4F2599CFE05BDF7E588638')),
(UNHEX('A8ECA4E31A8BA04E77566C9FF02FCCB8'), 'wp-content/themes/twentyfourteen/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('015E97ABD72A9D31BA1E78F7A2D3B623')),
(UNHEX('64238FBB753D6BA766EE9B27F000B2D6'), 'wp-content/themes/twentyfourteen/js/customizer.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2076270975F96875B8472E3242FBACD')),
(UNHEX('B100BB204DC45CDB35CCBF85E9631000'), 'wp-content/themes/twentyfourteen/js/featured-content-admin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA00EAECFF50D9777022A34C4B36DBD8')),
(UNHEX('E6DDE0C5A5E65810D97FAFE7D451DAC7'), 'wp-content/themes/twentyfourteen/js/functions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('922B981634BB3C5C3E5BCEC9D213729A')),
(UNHEX('DBE47650695A1BDEB43857F901B0FCB0'), 'wp-content/themes/twentyfourteen/js/html5.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A98A86B5CB48C1506F338463259CE41')),
(UNHEX('067ACF53B2FACDAC805CD32FF9EA8A1E'), 'wp-content/themes/twentyfourteen/js/keyboard-image-navigation.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9EC09E3F667433FCC24B25ABB4D91700')),
(UNHEX('43327D09B6F93283EF862D08B86389B9'), 'wp-content/themes/twentyfourteen/js/slider.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB29961D43DBA40012014728E02CB4ED')),
(UNHEX('1B0CD377E469F8686724A2959D0EF3D2'), 'wp-content/themes/twentyfourteen/languages/twentyfourteen.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB2F9CD9710C854182BB1F213632FD76')),
(UNHEX('6F501E5A0AC925E36F325821E119275E'), 'wp-content/themes/twentyfourteen/page-templates/contributors.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C2AA2F090782F3E37FF65878BE943B5')),
(UNHEX('CD1EC0AC63A8E514861D27367AB3C949'), 'wp-content/themes/twentyfourteen/page-templates/full-width.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4302651322F5C66DBAFCB6006F8273E3')),
(UNHEX('EA26FE28AC7966930DDCD01B2A4B6341'), 'wp-content/themes/twentyfourteen/page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0B1B4DA93B446A0352EF3FA9FA0F0881')),
(UNHEX('332721F814E939EAD71E4944F4E84C24'), 'wp-content/themes/twentyfourteen/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('693993D7E61E73E0423E838AB6BBE46B')),
(UNHEX('02E1063BCE9C706E65829AC3135E40B4'), 'wp-content/themes/twentyfourteen/rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C5AC139D63DC35758431F6321C5CEBDB')),
(UNHEX('5B8FCEC57550458C111DA2B4F2787BBE'), 'wp-content/themes/twentyfourteen/screenshot.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DA0FD106B313F2E396F4163511F4245')),
(UNHEX('4BEEDFA2A9D8C92CAFDE53C8F3C147AF'), 'wp-content/themes/twentyfourteen/search.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('576673884375879ACEDAEF607DA3F4E0')),
(UNHEX('02F873CD1AD3F85A7490E36306FA09E9'), 'wp-content/themes/twentyfourteen/sidebar-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF0102A3FCC88324D1D200444FA6B14B')),
(UNHEX('2FE1F1278670956932308CDCF7EF0952'), 'wp-content/themes/twentyfourteen/sidebar-footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E007AB6019E9DC6B74D699F3CC7C2C36')),
(UNHEX('FD9FD2A6C0BFA42432A1628D1D4CA524'), 'wp-content/themes/twentyfourteen/sidebar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4F526EE15D266497FBE7FE8E129C8D6E')),
(UNHEX('179DDA52BE204E2B606707564F8EA65A'), 'wp-content/themes/twentyfourteen/single.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('194EFE4F47287621248A754CF99AE261')),
(UNHEX('34225E75EF5975AD44D8E6DB97434123'), 'wp-content/themes/twentyfourteen/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7AB54CB35710F92D1A49657081E44660')),
(UNHEX('24A5059D86B5E6E7FEAE2F86B23407CF'), 'wp-content/themes/twentyfourteen/tag.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B98B612C84922756C9B106EB4ADB4515')),
(UNHEX('84C49D59450914C81586CE248AD31E1C'), 'wp-content/themes/twentyfourteen/taxonomy-post_format.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B82E1917FCB15C2B36EDDECE8121A684')),
(UNHEX('D9B9D38332484159EA664D9C238E6DCA'), 'wp-content/themes/twentysixteen/404.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38C8974713403D0C1D2F36BC28C90DE0')),
(UNHEX('A2D38D3F4B0CBDF68E25513624D6FB33'), 'wp-content/themes/twentysixteen/archive.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6F6CBDB939A4EEFC69AD7E6565150A00')),
(UNHEX('7AFADC371F2C441A32DC12A4E3AD894D'), 'wp-content/themes/twentysixteen/comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6EEF443E449757EA25F45F5D7E8D1596')),
(UNHEX('B468B3309A8D736FB4DA1850F46D29D9'), 'wp-content/themes/twentysixteen/css/editor-style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA8D078C71D5110CF46DF79D48BA5EC4')),
(UNHEX('A956143B0BC536185CE1CC81863DC6BE'), 'wp-content/themes/twentysixteen/css/ie.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C4BEFEC0A6E11C831ED7F4C188181B6A')),
(UNHEX('A1CAEBF15FA2EC56BE0E8206D986C062'), 'wp-content/themes/twentysixteen/css/ie7.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0C5FF1A5EBDD5862688EB0674496DDD')),
(UNHEX('B29FE8538357D14D2361B721F6253492'), 'wp-content/themes/twentysixteen/css/ie8.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22870C763F8A125017FE2EFC543C57D0')),
(UNHEX('D1DFEB7A8517401BEBABCA251E86B405'), 'wp-content/themes/twentysixteen/footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2649588FAD6FF41ECC1F129010CF4F71')),
(UNHEX('1E3C51E0349BBE2C915A0C68CAA8847C'), 'wp-content/themes/twentysixteen/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0D2C52C1F43CEE6EC6686BBEB6D9F5AD')),
(UNHEX('B45E2B847737623DBBF63B9745B07B0C'), 'wp-content/themes/twentysixteen/genericons/COPYING.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9423B96EB6160477FD4A2B7DE890419')),
(UNHEX('FD667740C5CAE6C1BD4A9ABE461695D4'), 'wp-content/themes/twentysixteen/genericons/Genericons.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BEBB165302A5D3A90AB9012F3B5D733E')),
(UNHEX('8D3984F47DDCF9EBAA9FF9A9211A0DB4'), 'wp-content/themes/twentysixteen/genericons/Genericons.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29816C642AAA0E5A8C9402F4D2DA62CF')),
(UNHEX('4578228B8C47437E324AB0DEC59573A4'), 'wp-content/themes/twentysixteen/genericons/Genericons.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('008827208FFC4EEAB99BF3CC14FE1E56')),
(UNHEX('7306AC91792D90209641E658A651E467'), 'wp-content/themes/twentysixteen/genericons/Genericons.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3F73B280148EEED102D4A6874AC7886')),
(UNHEX('14A6546650AC252C053548E4C4348CB8'), 'wp-content/themes/twentysixteen/genericons/LICENSE.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B234EE4D69F5FCE4486A80FDAF4A4263')),
(UNHEX('A22371EB5B0A684B2BEAB538EDE96D78'), 'wp-content/themes/twentysixteen/genericons/README.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('031EC4ED36A007D7D9F15600D7EBD5E8')),
(UNHEX('D6F2A99097A1E2BC91429C1714EF9757'), 'wp-content/themes/twentysixteen/genericons/genericons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('13A6500DDF36C6DD581877AEFC78D34D')),
(UNHEX('0807BB43E77E67492F1EAF91C9695F44'), 'wp-content/themes/twentysixteen/header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB5146424E9BE12155AC61EE86ECC6E5')),
(UNHEX('0595D1BC52ED4B649BE2E5FE1EE41550'), 'wp-content/themes/twentysixteen/image.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2870B12D1692538A157F70F92D5194F')),
(UNHEX('82FCE75D5D530213881278BB5EF636D6'), 'wp-content/themes/twentysixteen/inc/back-compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9B9BCB80065E860F6CEA17AE74F1DF8C')),
(UNHEX('66990279C490B28CC6BC76684B8A151D'), 'wp-content/themes/twentysixteen/inc/customizer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1FC29D258F3AB097D1885FC86E5E965C')),
(UNHEX('78DB6BA98081F14D8B5EEEDE11A3084F'), 'wp-content/themes/twentysixteen/inc/template-tags.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4C66B9E779F727EF95B205905E80F400')),
(UNHEX('FE0C7377AD66F2085072D9D375B9173B'), 'wp-content/themes/twentysixteen/index.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E892C7110A2CBFCAAA25A0DC4E832A19')),
(UNHEX('6288CAA146083174963DAAC7E2DE0976'), 'wp-content/themes/twentysixteen/js/color-scheme-control.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A95C970E1EDCDF6322FF93E297E4F7A')),
(UNHEX('AA4D6CD82F41C9F3CF71DBB79DDE0F2D'), 'wp-content/themes/twentysixteen/js/customize-preview.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3241A807C07FF37024D5A318B14A54D0')),
(UNHEX('C7C944E68526D44DEAAD45D62ADEA953'), 'wp-content/themes/twentysixteen/js/functions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41EA2A94670DE0E183C4262B67784399')),
(UNHEX('BCE935385295A6AB1C7978899F91842A'), 'wp-content/themes/twentysixteen/js/html5.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EE990907B315027DA600EEEAEE2E04B')),
(UNHEX('3E23D7D6F8AAA0A7D17774A09245BA37'), 'wp-content/themes/twentysixteen/js/keyboard-image-navigation.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5DE7ED2727C193E9F32F5797A590889E')),
(UNHEX('DC4DDE8D2C54C976F31A00B60028D555'), 'wp-content/themes/twentysixteen/js/skip-link-focus-fix.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F1224221E5EECB4831ADE6B6AD2F5073')),
(UNHEX('9C1ADB8CAB98F87C855150C8242C8E6E'), 'wp-content/themes/twentysixteen/languages/twentysixteen.pot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6867F8FC7DB1E47D32CEE3F9CF7AED4')),
(UNHEX('CF800CBC3301A6CBD3B0C60BDB21C226'), 'wp-content/themes/twentysixteen/page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9E96FCAE16A74CC6DFA4A703BA05AD1')),
(UNHEX('36B1DD1FE018F9DF74699D79D178D9BF'), 'wp-content/themes/twentysixteen/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C2FCE4644A7C8A833137AE90B8743F2')),
(UNHEX('F042F5C8B0BA2EBAE300A51B37C6FED5'), 'wp-content/themes/twentysixteen/rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8EC2F57F746C2E5981CE5A387E58CFA7')),
(UNHEX('1778D92CC2A8FEB6154E3244F1B5CBB1'), 'wp-content/themes/twentysixteen/screenshot.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90DEFE8D6E5C230E4A01B32F3C0F57CD')),
(UNHEX('8D4D85E39332F681CEADDD22D240E138'), 'wp-content/themes/twentysixteen/search.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D8AF7665469040A0B7310481610801C2')),
(UNHEX('184662D989AEAB51D56C02AF9ABCA243'), 'wp-content/themes/twentysixteen/searchform.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82DB8FD49B68A57525D03EBCD700235E')),
(UNHEX('AE80FA82B698D0016CFBFAFC1E91DEAD'), 'wp-content/themes/twentysixteen/sidebar-content-bottom.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B24F15644973CAA9E3A7417F82A4132')),
(UNHEX('B85F8AD3C6DF4261BCB2A6BB50473BCF'), 'wp-content/themes/twentysixteen/sidebar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EAC298AFB626B7030F15A3FA49EB7E72')),
(UNHEX('D4FA129B2655B08C10FFE408CAE56BFC'), 'wp-content/themes/twentysixteen/single.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A0FA3EB0573B6F5D1EB355A36F6C7E50')),
(UNHEX('FB3AD63B3A2D731381A6D8E735279207'), 'wp-content/themes/twentysixteen/style.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('729AA758BB330DC50F6BEA29F7979398')),
(UNHEX('CF864B09B4D5A84C8A483A6467C53C36'), 'wp-content/themes/twentysixteen/template-parts/biography.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C5D5FD7A8B480CB6F83754E07814292')),
(UNHEX('34F54272381358F9731329AD93898FED'), 'wp-content/themes/twentysixteen/template-parts/content-none.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('782006598D42A9B76A9FB8BE8479F6A5')),
(UNHEX('43F04CAF9BE0EEE34CB04AD64007D7CD'), 'wp-content/themes/twentysixteen/template-parts/content-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7345D516801B45CB172AB81CC6D7C8B7')),
(UNHEX('95B9734B9787A62043C20FB7F45C472F'), 'wp-content/themes/twentysixteen/template-parts/content-search.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('077D4139A0D0CE6C0B7F7FFC630A4F57')),
(UNHEX('E32E9488615A9EF897E8C56AF8A8BE61'), 'wp-content/themes/twentysixteen/template-parts/content-single.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DF63599EC46FE84C1D78E2EDFA967746')),
(UNHEX('D856C8F0B2F18D1EDB9CE9F81E917D41'), 'wp-content/themes/twentysixteen/template-parts/content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('828B24E78EF32F733D4EB09C0E9EB0E6')),
(UNHEX('7749C266E8ABC1052348FDAF394CA8DD'), 'wp-content/uploads/hm_custom_css_js/custom.js', 0, UNHEX('0F4DD5A8E38705F51E9EF5418D29475E'), UNHEX('0F4DD5A8E38705F51E9EF5418D29475E')),
(UNHEX('E761F4B7FEB4938BFADBF55D533CD849'), 'wp-content/uploads/wp-migrate-db/index.php', 0, UNHEX('CAE8AD2FF5DBB5CC0950A039F8A0E642'), UNHEX('CAE8AD2FF5DBB5CC0950A039F8A0E642')),
(UNHEX('26C9DFEB095014F0730C686375137353'), 'wp-content/wflogs/attack-data.php', 0, UNHEX('23D8AD0ABEEEC5798F490262BD0DDB0D'), UNHEX('23D8AD0ABEEEC5798F490262BD0DDB0D')),
(UNHEX('D355F7806ED02F7C724019DAAAF2D7C1'), 'wp-content/wflogs/config.php', 0, UNHEX('B9A189DC20CAD27F794E81D82781BC5A'), UNHEX('B9A189DC20CAD27F794E81D82781BC5A')),
(UNHEX('13CC1041C26FDA21CC56E1EAC5B36076'), 'wp-content/wflogs/ips.php', 0, UNHEX('187A8C5323BC1684ECC31F393CB96242'), UNHEX('187A8C5323BC1684ECC31F393CB96242')),
(UNHEX('E361DD4F6A1C27F7C5BB442AD6815634'), 'wp-cron.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F28242F5766D6525B949F376813236D3')),
(UNHEX('8E8483F976FCB48A08CF8CE98C5939D3'), 'wp-includes/ID3/getid3.lib.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C52DE7647222FE4B24E2EA04755F99B8')),
(UNHEX('6402F5E53A77A4EED04FCDD086171513'), 'wp-includes/ID3/getid3.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97BCD61856DF7AFA653D491775EFDA5C')),
(UNHEX('39D58DD2A2D5EC39F1EB640D12EB8A59'), 'wp-includes/ID3/license.commercial.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A3B670896FC4A8067ADB2C6D978418E')),
(UNHEX('7DEFC890E68A5C4CFCAF608AA7E46929'), 'wp-includes/ID3/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35D98AADF8F7CC6851336651F7A66B98')),
(UNHEX('442EF7EE88F63A95000FBEA553D45238'), 'wp-includes/ID3/module.audio-video.asf.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('286B1999C151B7BA01CFD57C24E134CF')),
(UNHEX('780947214EE4B724A52E9A648E5462EF'), 'wp-includes/ID3/module.audio-video.flv.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B834869B62C57FEA91851B146DCE3D3')),
(UNHEX('D66FD2A82A4B02EEEA6F98377B83203C'), 'wp-includes/ID3/module.audio-video.matroska.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('639AA5AE894B396A00FB53FC8069E74A')),
(UNHEX('548C8AB3766D3F2CB361DEE9E35434EA'), 'wp-includes/ID3/module.audio-video.quicktime.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('272DFD6E4C391F20611A11D921E66EEB')),
(UNHEX('D816C01A768C493A776DE4B2277E4B2D'), 'wp-includes/ID3/module.audio-video.riff.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EE82540F026662197F7003474FD92DE2')),
(UNHEX('94B1A6AE4CD8E21736090CD8C0E8D7B3'), 'wp-includes/ID3/module.audio.ac3.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E81C4500FB4C3B224FD2F9A78BA66427')),
(UNHEX('C7B35CAADD5F4C2D11065980C58C2524'), 'wp-includes/ID3/module.audio.dts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3EA566007C94C03372EB6F46C5D2001')),
(UNHEX('40F8912BE254CE8427B7B78FA518D9A4'), 'wp-includes/ID3/module.audio.flac.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('055003EA7C0388FD73107113D3ED3BC3')),
(UNHEX('BE8397F14E1EE9C4F5FE40BD28BA3397'), 'wp-includes/ID3/module.audio.mp3.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB87257B2F0507F4AC5591D4226DFC86')),
(UNHEX('3A18AE7C4CFB483628CEDF63B56782D6'), 'wp-includes/ID3/module.audio.ogg.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BDC813A7FA95FECEED4F6D4B37D3C97')),
(UNHEX('CE5F292DAA5D13EDCB8C6B4F09C3F7C3'), 'wp-includes/ID3/module.tag.apetag.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('346C8C1B97CAECBA5592A91452FA3949')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('C1F91F02C1327A73F18EFA3478CE4542'), 'wp-includes/ID3/module.tag.id3v1.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B368BE9E19051D00CAC0E67341D051D')),
(UNHEX('2C86E1D440B59A686AE47172DE9202FF'), 'wp-includes/ID3/module.tag.id3v2.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F26306A3858AD4074679D94F2AEEAD4E')),
(UNHEX('893FA0389D94F71998D1C95ACFD04EC1'), 'wp-includes/ID3/module.tag.lyrics3.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1255F9FB3380BA93DD223981B21832ED')),
(UNHEX('287E36767156EC30F47B8622071C7F07'), 'wp-includes/ID3/readme.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9396DFE1C69C938EB17F564C4E5BAB18')),
(UNHEX('691FA20F993BD9F5269906BE6FE2AE3F'), 'wp-includes/IXR/class-IXR-base64.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EE2A36D606D508AF44B654E6176599BB')),
(UNHEX('AEFB0609FDD3AD67C8B1216E06915087'), 'wp-includes/IXR/class-IXR-client.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51C4A34BCE41CFB25DDA8E75850E5951')),
(UNHEX('B6C16478B9CDD66542C0DD9904CF9F35'), 'wp-includes/IXR/class-IXR-clientmulticall.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF10903340B8EBC353A5050A5FACE990')),
(UNHEX('5AE9CE3DD3A7C5720F1F6322B29479AE'), 'wp-includes/IXR/class-IXR-date.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8ACA0E3DFF273D632ED8A7861CA16967')),
(UNHEX('5E4800F5427CDBD83419DB407A07C1F7'), 'wp-includes/IXR/class-IXR-error.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('673622AC95ED755C2733BCB2AD9C628A')),
(UNHEX('24F3CFAB2FF17FFEA5AD1F21AFB243E6'), 'wp-includes/IXR/class-IXR-introspectionserver.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('325561BE77E43CF849779170864F372D')),
(UNHEX('FF977E25429700837A98EE07F53F6F0F'), 'wp-includes/IXR/class-IXR-message.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('772AB67BCCB0682544AB0B6D72F4122C')),
(UNHEX('8A77EC1ADE13648FCFA2F3FC0D754422'), 'wp-includes/IXR/class-IXR-request.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25702E3C8D53C7A1EA99D47A31CFA204')),
(UNHEX('97FFB5616CF2569A3F8E66FD1AD1918C'), 'wp-includes/IXR/class-IXR-server.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91F377AF5C147854983E9FCA3AA7FF19')),
(UNHEX('33EF1EA36E14671B00A4BF5C0009F157'), 'wp-includes/IXR/class-IXR-value.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03929D66FB3EA8356CCDF86A0066E80C')),
(UNHEX('BFB8F7F25CE84D05BC4DF8462FB11349'), 'wp-includes/Requests/Auth/Basic.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('67FDD878CC84DF15093455D6096B2143')),
(UNHEX('4AA23E1FD7E6EFA301C5F81022CDE42F'), 'wp-includes/Requests/Auth.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3197D2529DD957B2ACC3944F5BFCD64A')),
(UNHEX('186931FC9E457E4EAC49E241CD94E0C6'), 'wp-includes/Requests/Cookie/Jar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E9300C5FB1F52670A0B52234D95C9510')),
(UNHEX('53E75EF9376A4B3549364BE60E322112'), 'wp-includes/Requests/Cookie.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D19D43AFE99BC52881322B927960A4D3')),
(UNHEX('B5C14FC2AD0A098455C9EDA097526212'), 'wp-includes/Requests/Exception/HTTP/304.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D33B4634CE4113DB49EF9DDDEDF754AB')),
(UNHEX('203C40BE73819486EE0DC3C546A88C2F'), 'wp-includes/Requests/Exception/HTTP/305.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('58F8F700904BEBE62F60A11C2CFBAB26')),
(UNHEX('3850D6A71BEA1A05BC4847457D1538DA'), 'wp-includes/Requests/Exception/HTTP/306.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57737A071FA1754E50DB6ADCC9F25875')),
(UNHEX('480FF1FD598D03665548E87584706401'), 'wp-includes/Requests/Exception/HTTP/400.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51E56E878CBB564AB852C978FB35FCD0')),
(UNHEX('2FB2FE7DE3A6BF4C05FA3B3FCA14775C'), 'wp-includes/Requests/Exception/HTTP/401.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B2AB80EB9CBFD87BAA23FC1648E9940')),
(UNHEX('2A5C541DD29D29255DF3AA791E69442B'), 'wp-includes/Requests/Exception/HTTP/402.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('60F859D55150DA0B0A7A959AC9F347D6')),
(UNHEX('9C9F176CDBC0332E09170217584E8202'), 'wp-includes/Requests/Exception/HTTP/403.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BCD160E8F70DC76FFBBF6B33B7FE31DF')),
(UNHEX('3B0223BF096EA98FE5DC25221BF59DF9'), 'wp-includes/Requests/Exception/HTTP/404.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1ED416CC6311835900857973F8923C4D')),
(UNHEX('59159BB4B68A62DAA77F2CC5FDF74A1F'), 'wp-includes/Requests/Exception/HTTP/405.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD38D182DE6D21B2D2AC18B381ADF97F')),
(UNHEX('8C0EF2466A5D70DB20D2EDDC41630D70'), 'wp-includes/Requests/Exception/HTTP/406.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4BC8CB6CEF688C729EDC3990220006AC')),
(UNHEX('94D7E8FF4E74BB194BF4A35505F285EF'), 'wp-includes/Requests/Exception/HTTP/407.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2C817E9F5D8768BBDE4D66A26E6C6B5')),
(UNHEX('BABF87000E6E3A548B717D4B2013F840'), 'wp-includes/Requests/Exception/HTTP/408.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('403E3164844958C5144F98ECC8B77689')),
(UNHEX('589AA406BE76961AC692AF8A0422EB24'), 'wp-includes/Requests/Exception/HTTP/409.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('995A1DC469E67E2A3D0B8F9BEBFEA9B6')),
(UNHEX('85FD1E9B0E54D7EC9691B53A745BA6DF'), 'wp-includes/Requests/Exception/HTTP/410.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71BE4F3437DFBADDA52F38582184E19B')),
(UNHEX('29118D04F8947CFC7B34E62B5DC25828'), 'wp-includes/Requests/Exception/HTTP/411.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27A552A1E4160C4DF61B2ECA5A604796')),
(UNHEX('862981C0D2E25968A82EF23BBCE8C5A1'), 'wp-includes/Requests/Exception/HTTP/412.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25B88449DCB7A1A83DD906378AA556C7')),
(UNHEX('09982EA6D90835077561CE576B4AF898'), 'wp-includes/Requests/Exception/HTTP/413.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E9963CC15DC99059B7D9FF584C17BFD8')),
(UNHEX('5BC559C1D03434F34F72B6956C0230CD'), 'wp-includes/Requests/Exception/HTTP/414.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BCA65D55E2409EF6A5291ED8E6A12368')),
(UNHEX('8CDF7DA55E3732C2080712828488B7AE'), 'wp-includes/Requests/Exception/HTTP/415.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0258CC0FB05462EA8F11CCAEA34A55C3')),
(UNHEX('9E67944BEB3BFB7146BB56497DFE51ED'), 'wp-includes/Requests/Exception/HTTP/416.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F931824E39E39617C9AAC661804478F8')),
(UNHEX('50265F23CF27DC047A54E20B868E0873'), 'wp-includes/Requests/Exception/HTTP/417.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4270026A1B8E684F5EC0635C47201C23')),
(UNHEX('C54480AC9043E819E8D4C346137DB1CB'), 'wp-includes/Requests/Exception/HTTP/418.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A21BAE298F1C9FEDA5B0E93FE348AF3')),
(UNHEX('10DE5D50AA4A51C680366FD6A2F7953B'), 'wp-includes/Requests/Exception/HTTP/428.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9A97BB0369F70142E4E57DA75EAE742A')),
(UNHEX('BF4F2FB411C3AC11EE607C67A8075F00'), 'wp-includes/Requests/Exception/HTTP/429.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53F0DD257C04462EC3A05A6485B38FCC')),
(UNHEX('8CCA9ABC7B068028FA8BD05C699F372E'), 'wp-includes/Requests/Exception/HTTP/431.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0E3737C622417CA08D5D1933C1489D9')),
(UNHEX('A80D17B266A0019090E668CF38B01521'), 'wp-includes/Requests/Exception/HTTP/500.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0AFA9C66B6D830A094815F2124DFFDA')),
(UNHEX('D96C3B0B616FF2B498E2B97EFB47D6E1'), 'wp-includes/Requests/Exception/HTTP/501.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('650CDAB83034F22D3FE803F5D791A835')),
(UNHEX('08E7E262196D8025B2878ADBDAADD6AB'), 'wp-includes/Requests/Exception/HTTP/502.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7CC83A6C80CF7AF9D5217B17FB47FF69')),
(UNHEX('6EC5A2A829E1AE630E889BDE71145E22'), 'wp-includes/Requests/Exception/HTTP/503.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3906F7520861C39F43F46000D45554B4')),
(UNHEX('4F7913997D4D6190CD13885FD6FA9349'), 'wp-includes/Requests/Exception/HTTP/504.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('02D76D8CCCAA446293201112908A2AA5')),
(UNHEX('20CC0D2409518A5E4328D8C081EDE4F5'), 'wp-includes/Requests/Exception/HTTP/505.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E5D4109053303E65B2F4364C1AC12DE')),
(UNHEX('D5754723FC29B97CC35EB4ACB8110636'), 'wp-includes/Requests/Exception/HTTP/511.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03756E9A4E3C4B77F8D09BB9918FD140')),
(UNHEX('879F89FBA6AF3E1C325C6F8629ACB7D7'), 'wp-includes/Requests/Exception/HTTP/Unknown.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA646C02E1AB81B632AF41FBCF0A57AC')),
(UNHEX('CAC4FC8357E53EC4D29FA2CFEFFEC85B'), 'wp-includes/Requests/Exception/HTTP.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8D5FC68B3C6FA15E4526C161172DAE5')),
(UNHEX('881BAF178D1149792D820AB7C5848D91'), 'wp-includes/Requests/Exception/Transport/cURL.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('853654CD672A1A9B3A09AF077837DFE1')),
(UNHEX('EF724982E5EDEA96C98035200EC14690'), 'wp-includes/Requests/Exception/Transport.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABBB6CF8DA7AE8EA204A0118AB5ED101')),
(UNHEX('15549AC498355648ABACFC501C7BD6F4'), 'wp-includes/Requests/Exception.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('879BAC9EFA180085AB33E90E1ACC5249')),
(UNHEX('0CE013F9140F08D42E517D33D2D95489'), 'wp-includes/Requests/Hooker.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0F08C5401425A9615BD19E2F34A5E107')),
(UNHEX('5896EA4DBEB79AC378DAB3FC4AF0B9F6'), 'wp-includes/Requests/Hooks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C15A0A520B9A8976778A169CEEBD919')),
(UNHEX('A5D420ED5C8FB9DEC28594546E80915D'), 'wp-includes/Requests/IDNAEncoder.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D77DADA232F0079B1412E0D050B4D8B1')),
(UNHEX('E98154151D7FE14233BA9B0B47F6DE7B'), 'wp-includes/Requests/IPv6.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5DF4B884E8A07E81703F1AC6B6E54B1')),
(UNHEX('AA887D7AB29AEE81A423B88099821E1A'), 'wp-includes/Requests/IRI.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('183508325D839C7BF27DB5F909600E58')),
(UNHEX('7F77B4279C5065BEFA46C32BF5905600'), 'wp-includes/Requests/Proxy/HTTP.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FFD0E62F32DB05BDBDA6BCA407D7F029')),
(UNHEX('2379F79FF174102891244E548FFC74A5'), 'wp-includes/Requests/Proxy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5406B1037B500D7D374B85C2A879947')),
(UNHEX('47205865F4B778EFC577305CC96F0338'), 'wp-includes/Requests/Response/Headers.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AD7C382D2B68F19412DA7F43E63A960')),
(UNHEX('CE59B58D15662FF7707799CD0E8C7FA7'), 'wp-includes/Requests/Response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11CE7086BBB7AE52E6ABB7C4FD270B47')),
(UNHEX('55862024413DA94865D87CEE7AC89628'), 'wp-includes/Requests/SSL.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('265067EB274136AC28BE300B37540C4F')),
(UNHEX('633401321F6A9BA7CE78E563ECC4641B'), 'wp-includes/Requests/Session.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('37F8CADD86FCBFCE9602B5BCF67D6C8E')),
(UNHEX('9060D84087AFF0FCD7DA590F45EE2104'), 'wp-includes/Requests/Transport/cURL.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0EE4801D08DA383712136160435AE0D1')),
(UNHEX('66BFB8D9CC0F429C0844EA46720D0D9E'), 'wp-includes/Requests/Transport/fsockopen.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D21EE4A4F60AD1AFC48F118483FB73F')),
(UNHEX('95D21D2EC9494F49A250B2B325158F29'), 'wp-includes/Requests/Transport.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('019C993BCE6BED178BAF4B5C566CC617')),
(UNHEX('7E418B488467E799E9FEA64B0B5480E9'), 'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B5F03AC8C752B34B9E726F04D548327A')),
(UNHEX('D0D62F81A81C3F9FE096DADB55F187EA'), 'wp-includes/Requests/Utility/FilteredIterator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10F9A2D9618ED678B72541AA9E0579D3')),
(UNHEX('059CFD976B9235538148E5D0E7D0AB1E'), 'wp-includes/SimplePie/Author.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('348071ED105FF0418B25964E771BA331')),
(UNHEX('5506F05C707B1C4AFE984FC30E51CB26'), 'wp-includes/SimplePie/Cache/Base.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9443EDA189BBD9325D0C9C045D237C6A')),
(UNHEX('2C8A68C983733F030F34425BCB5ED59D'), 'wp-includes/SimplePie/Cache/DB.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0659BF084F55A303F5922EDC62BCFBF6')),
(UNHEX('E9D6E7D9F6562C4540865806829A9079'), 'wp-includes/SimplePie/Cache/File.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A33DBB0540ECC29CC6425B14100953D1')),
(UNHEX('F98786F31F49993A3450FA55D2D908C0'), 'wp-includes/SimplePie/Cache/Memcache.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F69D4A55B2A1168531535107AB843FB6')),
(UNHEX('023C2938542A2E8D53017553D2C4BA9F'), 'wp-includes/SimplePie/Cache/MySQL.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8911ECE15DF42CA43991A48D5785687')),
(UNHEX('59D69D81BB1455AA80D5CF7DC304722F'), 'wp-includes/SimplePie/Cache.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('79FC9017A23A836F4D0F68F7764CA734')),
(UNHEX('ADCCDD22DC9211B3F7D3C36E7A1F4411'), 'wp-includes/SimplePie/Caption.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BDBABCDCCA426A4DADF6675BC4C4EBE9')),
(UNHEX('B5B1E3B70B0771864BD11955D46AEDA4'), 'wp-includes/SimplePie/Category.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BA7EC8CC3F13D4F27F2E0ADCAF64BB2A')),
(UNHEX('B56C260108F62A87A91CF5F1DFF5C826'), 'wp-includes/SimplePie/Content/Type/Sniffer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C72C3F369855562D96C77ECE1C7DB33')),
(UNHEX('8D1095D2616E9DB5F6563D54792058E4'), 'wp-includes/SimplePie/Copyright.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD7FBF68B954A9D50955CC808DB7CB6A')),
(UNHEX('D86FC51DC7A39E09D7A3E19F6630BF59'), 'wp-includes/SimplePie/Core.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A4AE19A923B890F2DCF7E2D415FD1AD2')),
(UNHEX('CDBD33C2E8813DA3A14FC147C47C7EA7'), 'wp-includes/SimplePie/Credit.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0385E4A14DE78C8B2A167F3E0AEA197C')),
(UNHEX('B89A8550BF174F663BF699CD2FF317D7'), 'wp-includes/SimplePie/Decode/HTML/Entities.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45975E2FCF0D428691A55A2394252F61')),
(UNHEX('32F0EC5E1428C1FACAADE02D5E78BDAF'), 'wp-includes/SimplePie/Enclosure.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('122E861F42EB6E01CE8D4B0F11FB735D')),
(UNHEX('B70A6676A038A6F7E1310EB793992D49'), 'wp-includes/SimplePie/Exception.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('094BFD76269C9FCC3C5CDA8F05D05335')),
(UNHEX('1383B63472E88825DEE3D3C96AB89E97'), 'wp-includes/SimplePie/File.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AEBA08AD6B558736EA0AAF2BEB2925B7')),
(UNHEX('EC50D8B7FA8CE68287CCBAC6B42440D8'), 'wp-includes/SimplePie/HTTP/Parser.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5725C7D0FB347F1C08DF3690A58F3609')),
(UNHEX('6F5A30861C9AF7F9D1D81FD43C63CD30'), 'wp-includes/SimplePie/IRI.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E16FF20D3E68692CF3B617B875F36F5')),
(UNHEX('66CEE4A0D9FDC20865ABAA0152B929DA'), 'wp-includes/SimplePie/Item.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('104510E221FA08437AEC008E633CDCA7')),
(UNHEX('17C254429BA44F3EDF7632EDEE7D4561'), 'wp-includes/SimplePie/Locator.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8073A4C6DA1BB33B877576665EF5EAB5')),
(UNHEX('464690768C91563B76F0382F9E0DB58F'), 'wp-includes/SimplePie/Misc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CECDE679C62DD50207D8D25ECE1A4B89')),
(UNHEX('8A4D6AF741D54D99F103124FDE224966'), 'wp-includes/SimplePie/Net/IPv6.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A546790E216ABDD9801795949FB6B40F')),
(UNHEX('824204D2F303D987C8763C5376E7A8B3'), 'wp-includes/SimplePie/Parse/Date.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EE82D2E70DC8AFC6B96510D2B9CFF45E')),
(UNHEX('B374664609D6727B99DC87A05F49B278'), 'wp-includes/SimplePie/Parser.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52BB2EE462E7E414A77EFDC7EBF52BCC')),
(UNHEX('64E2BA68C4A77B71348732F74B2218DF'), 'wp-includes/SimplePie/Rating.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3D7013A46D09C74B0EE3D8AF617412FB')),
(UNHEX('7DC13720DE98E64448441F0E11DA506C'), 'wp-includes/SimplePie/Registry.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1CC8A2E6C0B5DD3176398D6400F0D9B8')),
(UNHEX('00601B59B1CFAD7216471DA606A69484'), 'wp-includes/SimplePie/Restriction.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A191E7168116418817388113BD57914')),
(UNHEX('5BB180E031190701B65941646BF6172C'), 'wp-includes/SimplePie/Sanitize.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42D8B8C0CF46B5D8A511E0AE48B88F75')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('15A4CA1C306CB1DD6AC630132B25F20E'), 'wp-includes/SimplePie/Source.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E83BB1DE3E018F0537BB32A8C9617FF')),
(UNHEX('DEE9276706218E3A964899EE292C13BE'), 'wp-includes/SimplePie/XML/Declaration/Parser.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FB1DA7028C385BB9D4203C9F6732362')),
(UNHEX('5A7FD28C07A35BBCF80A76E2CBE20946'), 'wp-includes/SimplePie/gzdecode.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C538E2BC0E866197DB616C17841134D4')),
(UNHEX('4FFE6875B247AFFDE1B22600EF4CFF1C'), 'wp-includes/Text/Diff/Engine/native.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5AD272A18821212BEE3C3DF2AE8780E')),
(UNHEX('C7822D6929F62EF85CCEE8E67A845E61'), 'wp-includes/Text/Diff/Engine/shell.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75AB41DC91CD7E4AAA5E74A5F9E6EEBA')),
(UNHEX('F72040EF0E3B80FA182ACFC17CA815B0'), 'wp-includes/Text/Diff/Engine/string.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A11B1933D17FC4DA9C3000CACEF6929')),
(UNHEX('65BD065E237CDB8DA254D0A99288107A'), 'wp-includes/Text/Diff/Engine/xdiff.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6B91FC8628A0C0474AD58389A475815')),
(UNHEX('26AC91955277193F7E846AAD684AA444'), 'wp-includes/Text/Diff/Renderer/inline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('880AE56E35B150B4B2C7E9D94227E81E')),
(UNHEX('33E2C9665133E068F0355BC0A357B93C'), 'wp-includes/Text/Diff/Renderer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FC8720DF4330B50F59374FDC40D94753')),
(UNHEX('5D422305CD32E87ADAECFA62559CC92F'), 'wp-includes/Text/Diff.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C70D59E9E9A6E9BD11537719313E32A')),
(UNHEX('2D6B64CFAF8D91AA58DF775C379FC0AF'), 'wp-includes/admin-bar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50D7B64A6BD73550E84529C18C8D2FD1')),
(UNHEX('4775B55EA82F31C6D40FD58153F18E37'), 'wp-includes/atomlib.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83CF707B4178575ABBCDF66D5E64AD2A')),
(UNHEX('9D26078753ECA7BF6FB824E6F730F86E'), 'wp-includes/author-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A379E3F3C76D2936929CBF0C47A8482')),
(UNHEX('D03E9B7306CB1F6C019B574437F54DB0'), 'wp-includes/bookmark-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4675B6C675004098BA08C353522EA81')),
(UNHEX('869F00A63E23198A05D1049BE1AD7A28'), 'wp-includes/bookmark.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('699621354A1E6C190B2428D0C2540BCD')),
(UNHEX('C78516FA39A0D919393AA0F7A41AFE15'), 'wp-includes/cache.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('913D5DF0AE82BF71B80DAE3A21D712C6')),
(UNHEX('DC3247FD3FA65F15E6FC5CE8C6FA2D42'), 'wp-includes/canonical.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24245A33170AB78622CF6BA9CEB55A9E')),
(UNHEX('EBE35943E0DE6F83166F52D4E4BA9E94'), 'wp-includes/capabilities.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('397FE2803B36E192FDE591CC751CEAB0')),
(UNHEX('896AAEC349EED4D33CEA9F9FB3866955'), 'wp-includes/category-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DEAD7B832C77EBBB948CA7227362ED2D')),
(UNHEX('44EFB2D6350A27E55CA5C37E01579389'), 'wp-includes/category.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65F4456DB498C7784F5E31C87F901C6A')),
(UNHEX('6D0B4492C6548E6D730391B7F241A97D'), 'wp-includes/certificates/ca-bundle.crt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD1C7BDEBDFC411EB8A336E3D758692C')),
(UNHEX('E87F4A89D9E579949E306DEC60E4A82F'), 'wp-includes/class-IXR.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('32AC76BEA2307022852B2F7A62C60C2B')),
(UNHEX('3A3CB724168E7FCD302C77222665287B'), 'wp-includes/class-feed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC29246BA6BF335C20A212B3F73245B6')),
(UNHEX('04219B94C8407C9834ABB06E9DADF414'), 'wp-includes/class-http.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A708D6BE588CAB7066FD2F06F6F8E60')),
(UNHEX('D826E35A6801CD06249B1B0CC3896F82'), 'wp-includes/class-json.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('808A427BA07643D4DEAF4DFDCF418E6D')),
(UNHEX('A3ED9145E2E2ED95C0513FE8DE0928C4'), 'wp-includes/class-oembed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C5A8EEA0006E4CAC1A00E0858998D65')),
(UNHEX('0906511257AFEF8C7F887E2DCA0064C5'), 'wp-includes/class-phpass.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('03191A210CCBEA54CB07DEDFEDB7CC42')),
(UNHEX('EC38B7DAA799BA737DEFF7D5B6E04E69'), 'wp-includes/class-phpmailer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3EFF9ED4B6CADF990B4F238ED91C5ADE')),
(UNHEX('22B5F2C917E0C9753E1F31D037FE8E9F'), 'wp-includes/class-pop3.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('154B5451C8A93A4F21A74054BE961D79')),
(UNHEX('17F6DE012ACA370DE7E6183FE1B6FD0F'), 'wp-includes/class-requests.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3965ACA1181B2FB6EC75617AB4D4223C')),
(UNHEX('B8E8AB5C20AF9449D1BBC1BBE819162C'), 'wp-includes/class-simplepie.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0DBEF394A91127F068AC8FDD587D4895')),
(UNHEX('BFE0CE9A2CCC519861BB676CB7C41AAF'), 'wp-includes/class-smtp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12C62B22075A3C4B74EBC8AB3A98D295')),
(UNHEX('65AEE45F175FF325F717E8AE7888C0DB'), 'wp-includes/class-snoopy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73B05CDEC5859FF6EDCFBCD22EBD0960')),
(UNHEX('8429C5A9B6EA85325BA409D334A85F61'), 'wp-includes/class-walker-category-dropdown.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0991DFB6E6FF797684DD25602CADC96D')),
(UNHEX('0F9563ADDB6E78C017D4BA7C061003C8'), 'wp-includes/class-walker-category.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('395C33FE65447B3A1872A087F60E3D4A')),
(UNHEX('4BFD4B2BEC86C032A4090861655A9365'), 'wp-includes/class-walker-comment.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('952F0728639041515C1B8F88F7EA5316')),
(UNHEX('AFDCCF0CE6E528E8A7A83A701152DF2F'), 'wp-includes/class-walker-nav-menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1501EE4EE5715B3B8BEB9EE96498103A')),
(UNHEX('024A0E0FF30DD3B747073E90FB8284F5'), 'wp-includes/class-walker-page-dropdown.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4701BC7C46E09979FA82082957BAB4F4')),
(UNHEX('35537B1FEF54C68196AECE65BD2F03CB'), 'wp-includes/class-walker-page.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8AD33BC88E8B59D8BA1B5A1D9764106F')),
(UNHEX('D6B6CBE539D89E66F8706F020C331674'), 'wp-includes/class-wp-admin-bar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('39C9DFD486B8F1D8D09468CF0857B89C')),
(UNHEX('1BD6BB450ABB3C1EA50E42845BEC2C0E'), 'wp-includes/class-wp-ajax-response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('215A169D146B9D894F6787A4F7177DFE')),
(UNHEX('BFB70A1485D39B4951454409E6FCEA89'), 'wp-includes/class-wp-comment-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A201F578CE308F5A1614828C470C1974')),
(UNHEX('541010D172F1C2E57ECF19575D1119EF'), 'wp-includes/class-wp-comment.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2C67C5D546D7C43B9C1B6042679A8CB2')),
(UNHEX('C88D509EC320E933C4EFD114800A94CD'), 'wp-includes/class-wp-customize-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6582E9BE9A1A295D3C82F0E19F4FCCB0')),
(UNHEX('681A4F686CF806E75FF8CD4C6D2FE5B7'), 'wp-includes/class-wp-customize-manager.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5BE4FA63A28C6751D3D2797F8E08D546')),
(UNHEX('60FE8F55041305AE3217918F9A6D6457'), 'wp-includes/class-wp-customize-nav-menus.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F187DE05B14744761405FED0BA2E054')),
(UNHEX('0D98D2A7784F7AE4E286F77A8290BE68'), 'wp-includes/class-wp-customize-panel.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07FC324ED3A49E39C83CF11689DB12B2')),
(UNHEX('ECC02D78C71428C545B66F49843DDD07'), 'wp-includes/class-wp-customize-section.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E76FA8484FC120119F392D397F63A081')),
(UNHEX('668575330AB8154D5CC17D362A30ED9E'), 'wp-includes/class-wp-customize-setting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3C847C9F7D4AEFF1077072E46D3B008A')),
(UNHEX('E7944AFAA1D19165F70D586494D424DD'), 'wp-includes/class-wp-customize-widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('797E03A309B78B95E70DB12C9C16566B')),
(UNHEX('6AB46773CD3636CE2480A4382AA845D9'), 'wp-includes/class-wp-dependency.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D09965CA6B8824D4846B63F46749E9B')),
(UNHEX('F984C9B1259BB9617B5ABC6A090225BF'), 'wp-includes/class-wp-editor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AC02B009B8F86BEA051AA1A3FADD231B')),
(UNHEX('3560E05D5CCDAD6900A5DFED1A4A8154'), 'wp-includes/class-wp-embed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CFAEB2963E48D6292E017276E04E4AC')),
(UNHEX('BACD6B7B139AE426F211F3BB780AB6F8'), 'wp-includes/class-wp-error.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('31CB0B54E528309BD8E75798148A3806')),
(UNHEX('4F203D28088D3ACBC43CE109DE3146BF'), 'wp-includes/class-wp-feed-cache-transient.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAF72D33F3CD1FC7ABA1BD95A9B01122')),
(UNHEX('D68CB7F10B71E6C3B3FD58B05BC8D2C7'), 'wp-includes/class-wp-feed-cache.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AD629304EE561AD516423DE478FD3DAB')),
(UNHEX('2344AEC58483FD1481F79F1C3525BBC4'), 'wp-includes/class-wp-hook.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FAFB8CE3C14998EBE00BC08C9A2E3138')),
(UNHEX('B21EFC2642B03556EB4155551D2C93EC'), 'wp-includes/class-wp-http-cookie.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DEF187BF659EEE2EA973FACA88ED46D8')),
(UNHEX('E407D1E723FF694AE5AE48B73FF640B8'), 'wp-includes/class-wp-http-curl.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E41051ADC047C1234A8952C3991C41EA')),
(UNHEX('95E84D4F2C9DCCE37305E6D2D40DE7E2'), 'wp-includes/class-wp-http-encoding.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6BD6106B97E662EA37E568DA5E233CC0')),
(UNHEX('C3E575FF58DBDDBC23822D11C6C2F8AA'), 'wp-includes/class-wp-http-ixr-client.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1D5C63F0C6F615AD83B6CFE96BD11EC')),
(UNHEX('67B166F63104FBDBB6F279E43B15B45F'), 'wp-includes/class-wp-http-proxy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C03D899ABAE74D1A7BA338297605BB1C')),
(UNHEX('E14086108B4D5D191C22B0A085694E4A'), 'wp-includes/class-wp-http-requests-hooks.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0E5AFAA58CA0B9CCF20C2CEFC29C35F2')),
(UNHEX('87422079D6777F862BB3E0D67C74ABCB'), 'wp-includes/class-wp-http-requests-response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73EA7B2C69D37B39A5CAAFC47ACF2682')),
(UNHEX('A9CADAB774EC67975A1D180FB76745F2'), 'wp-includes/class-wp-http-response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB145F4F0377F6090AEC423D3C111B45')),
(UNHEX('DFB0530E82B388B1685BFCDBB3CC151B'), 'wp-includes/class-wp-http-streams.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DABA5F5E6CF665ED31109661B3D795E8')),
(UNHEX('3EA9C658B90D06FD62F5DFDA9FAE2457'), 'wp-includes/class-wp-image-editor-gd.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('93B1A0A110CEABFA0EDEA8043640AB50')),
(UNHEX('E105A95EBAFB625296E55349E121D33F'), 'wp-includes/class-wp-image-editor-imagick.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1591B72B32D446D00DC8DAB8F18D0C57')),
(UNHEX('FAB3ACBB540A199A88F4AD652E28BCB1'), 'wp-includes/class-wp-image-editor.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CEED2615F44D597A8F2C733DD6A3A46F')),
(UNHEX('FD60536BE5C5375474E07F76B9A058BD'), 'wp-includes/class-wp-list-util.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE1A39C1F5451BE0B1969BE4999C5BA0')),
(UNHEX('4C7A02F981D0EF015AD1FCF81023903C'), 'wp-includes/class-wp-locale-switcher.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ECA02C963D30481FC115C3135AB0C182')),
(UNHEX('9E316C3C9C2011747E4C9F05550477F3'), 'wp-includes/class-wp-locale.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D86BAB68D4D77871FF3FDC3B8A650F42')),
(UNHEX('027FF622C57155798484A339EC2551A6'), 'wp-includes/class-wp-matchesmapregex.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5943D5A4F23C62EDE93966D48E694665')),
(UNHEX('47751DB9A2D8E8FE05D2D210D2CAADF2'), 'wp-includes/class-wp-meta-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E8404E9CE36AC2197DAADEE7DC41870')),
(UNHEX('1AFAC31A183A5CAE9D5266F950DB7E33'), 'wp-includes/class-wp-metadata-lazyloader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B7CBF9911D4690A12C9B31F7CCEF81A5')),
(UNHEX('D7778C685DA0C3A1CB260693774DB3C4'), 'wp-includes/class-wp-network-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7CDC784893DA3FE9238B387352997AEE')),
(UNHEX('38DC9E74C6EEBB1A77844E7861B0E4A9'), 'wp-includes/class-wp-network.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC3ED1D2E2C47FB9C4EFA84768C2DA75')),
(UNHEX('50C3FF40A184C93B0E623C0AB86311E1'), 'wp-includes/class-wp-oembed-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('393E9EC0ED404F381943C2F26D76E345')),
(UNHEX('7E56A9DC58615D1E148B193770937C52'), 'wp-includes/class-wp-post-type.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0910C65650A123D72E050E39523FC210')),
(UNHEX('7E91A1520E654F588766329414F16080'), 'wp-includes/class-wp-post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27737677E6C4F7B6E3BFC13264ED353F')),
(UNHEX('D9062D680A0D6096E9C3BDDB95432F73'), 'wp-includes/class-wp-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6FDACC253BA3C6AEEC26C780AF71AD8')),
(UNHEX('EB4D1AA5D5FC97481415B33FCDB21F5A'), 'wp-includes/class-wp-rewrite.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70AF56F28004ED62F3333B476C42403A')),
(UNHEX('0A8ACCF366C9D3853B1E7BBB7416F587'), 'wp-includes/class-wp-role.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5E6D69020BD12AEB874FF64E74B2790C')),
(UNHEX('95C7800733E58B3CACB226B3AA59C486'), 'wp-includes/class-wp-roles.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('51E11D99B14A3B85C2DB1EE85E54BE75')),
(UNHEX('18D178289BC5A5DCBA842E92F5C6D587'), 'wp-includes/class-wp-session-tokens.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('668442C8B58333F3A940783BCF88C01F')),
(UNHEX('AB98B8F718DE90B871E36963BC063D92'), 'wp-includes/class-wp-simplepie-file.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7EA687D769805C04FC68BF2376B8A5F')),
(UNHEX('033C2EA6D8348176B7E463992260A674'), 'wp-includes/class-wp-simplepie-sanitize-kses.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('63551C5E5A80B6945D614C1BC49949A8')),
(UNHEX('81CEC25781DAE8F73DB6D4984864FB7A'), 'wp-includes/class-wp-site-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74805ED750264694D05F47E7E3159DED')),
(UNHEX('87627E35C3611F1FF99AA04940292AF1'), 'wp-includes/class-wp-site.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DBF5A76D022DDCDA004452BF2419DA6F')),
(UNHEX('ED085CE1531C83D587968038B8963B32'), 'wp-includes/class-wp-tax-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DA42E0AD13E157C565E023283705A339')),
(UNHEX('C1117E5194D4811CC5B4044670ECDBCD'), 'wp-includes/class-wp-taxonomy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B61C29FA96AA2BC8DC292AE7FB6C70F2')),
(UNHEX('ED88D2E3493093B1422CF31D68CA9B70'), 'wp-includes/class-wp-term-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('690520A1CD72A65D28135CB43DA83C65')),
(UNHEX('DD96BC27D6227C33E25F99747CA9F601'), 'wp-includes/class-wp-term.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5BA70BADD0127C14DFCDEED67396AD58')),
(UNHEX('F81EE8C7A2BD42D5B428D65C06BD304A'), 'wp-includes/class-wp-text-diff-renderer-inline.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('994486A99255B5B110D9551BBF763FC7')),
(UNHEX('4A02CE252EACF37E9CC29771E16CBC10'), 'wp-includes/class-wp-text-diff-renderer-table.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35F7D0339927A70B706479AB598F0AB9')),
(UNHEX('A823D73F8099EF476309C2AF6C316517'), 'wp-includes/class-wp-theme.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7E3D067147EF200C7EEE6D7C93397AB')),
(UNHEX('F1EFAAAF08BE7A79B4D5C83E5F2B9474'), 'wp-includes/class-wp-user-meta-session-tokens.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAF996E4D786C8029FAC3F19ADDE1849')),
(UNHEX('A11B398DD46CC2D79F3F2072EDE871C0'), 'wp-includes/class-wp-user-query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A8ACF2C89EDB9BA5D6EB912B7C4B411C')),
(UNHEX('1E52F1885CB5268886541C09C07C1F60'), 'wp-includes/class-wp-user.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA5CFDA8768363C28AE2B71EB23775C2')),
(UNHEX('1000F5AA5DC061F076950494BE435901'), 'wp-includes/class-wp-walker.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A57738FC768186F8CDE37E12DBECC61')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('BF7B8931F0FA22B806A65EEB01D2C82E'), 'wp-includes/class-wp-widget-factory.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F2A675BB7B4DFCD2A483335B03D989DE')),
(UNHEX('E7446AD79EE515385D66D09412105FDA'), 'wp-includes/class-wp-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB0B765A39AF644F41D7C770D8C835FC')),
(UNHEX('6A81E4B18BB9BFE1F02588DDC35D801B'), 'wp-includes/class-wp-xmlrpc-server.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2964E7E12ED478F5A5607F31E3EBA5D1')),
(UNHEX('24B902C1BC43C1AEC0F32FBC3914B9B8'), 'wp-includes/class-wp.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49FA592BF80B248677AE2A9C92A48A74')),
(UNHEX('79B405ED1DDD459061CCF33A128D5B00'), 'wp-includes/class.wp-dependencies.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5857761BDEDA9FCFA1BBDA934A7AFBBB')),
(UNHEX('A58DD9EBF1A73B7ED3B752B73E9EA302'), 'wp-includes/class.wp-scripts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9AE3F634D1EFB2F958284912BC7C5B97')),
(UNHEX('391CCF885B130F9F31647BC4F4EE4008'), 'wp-includes/class.wp-styles.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8255DE3A300AF152C78468611DBF3604')),
(UNHEX('3DB08A6B98155B349C93A220BC903DCE'), 'wp-includes/comment-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E3E9F072A57446EE8A3EB4CEB5986D62')),
(UNHEX('91531896C6F70C8A4B4B321D1369C988'), 'wp-includes/comment.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AA195FBD47A24B6BE84ED40B82DCF563')),
(UNHEX('D15F5C63396D4C8A76E9E8A33189D1FC'), 'wp-includes/compat.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D888115E10240770B95F6BE1A3458B01')),
(UNHEX('F52D227F44ED9DCACAB944B23561D02F'), 'wp-includes/cron.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8648A64C31D3E2D6724224770F628E56')),
(UNHEX('9AC4FE03DA3DD6AC4896402D6998EF1F'), 'wp-includes/css/admin-bar-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('50DCB762647A492E4769EA0947B50248')),
(UNHEX('D37BDAAD643354FA5879BD91F1D0373B'), 'wp-includes/css/admin-bar-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1FDF9FEAD757CDA46F53F3B79B55FE47')),
(UNHEX('D4C886709FFED15D34CCD04CF1C471A6'), 'wp-includes/css/admin-bar.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2C05AEB1C11F06A8B3C1BC8888714F9')),
(UNHEX('FE4922ED70A2D074CA51B9C95B5A3678'), 'wp-includes/css/admin-bar.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('181A0DE4F1C4252AEBB47F2204F0C119')),
(UNHEX('74388CC0D0EF70AFCC8BD57A7B6A4470'), 'wp-includes/css/buttons-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E0E4FFC59213FCAB73CD96AC94D0F002')),
(UNHEX('B6EEA4556C31C0C89544FC626D67F1AF'), 'wp-includes/css/buttons-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AD1A5E86B0AB2DE7258FABC0A62B9AE')),
(UNHEX('F40882128E3BEAA25EF0A9B8B4386384'), 'wp-includes/css/buttons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('247139EB61E43078FE91E3770545528E')),
(UNHEX('F0D0B726A74CDBBDC2A8119DE3564E8A'), 'wp-includes/css/buttons.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74AC6750D8FAED75774166C72F88FCBF')),
(UNHEX('46AD175CBA431C3FCC5AD6FAF6D6FD1D'), 'wp-includes/css/customize-preview-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('514952B81C6DBEF19B62B040E76484F9')),
(UNHEX('ECFDA5C6AF07C3E6307E0D6A1B413475'), 'wp-includes/css/customize-preview-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCCB91A79BD1A1B14BDAD769D3B04FF2')),
(UNHEX('FE6756DCE0D6484977139ED321B592C0'), 'wp-includes/css/customize-preview.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5A052C8869B9F302405B069B1AA0613')),
(UNHEX('E6BF79A76C9A8073F3A7553EC23CF2E1'), 'wp-includes/css/customize-preview.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69BFC88E3F3D46F116DA818588E1C958')),
(UNHEX('D4CA70FF04FD53959A60DF5D545D44C8'), 'wp-includes/css/dashicons.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CBD78303F0AB99BCF4470575B0F8A7EA')),
(UNHEX('B14C8392857945F57B7F06A617F86693'), 'wp-includes/css/dashicons.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF3C0E8F26FE2025A0F22138FFE30D53')),
(UNHEX('F2701F6F828DB4583025F7A2C7EDCFEB'), 'wp-includes/css/editor-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('66921114B83A2E737E69F2847B4C9CF3')),
(UNHEX('EA8DA5B2AB326A456267D88857B278DB'), 'wp-includes/css/editor-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9FE3E6BA7EB849F83F99D4C157A9351F')),
(UNHEX('4C73D087C59B0AB2637D3E1BFF4B9787'), 'wp-includes/css/editor.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E97B439D9F0C638E88D8A4CC21823025')),
(UNHEX('5FD67C9CAF0B54A24D5EEEBD1EF5C44A'), 'wp-includes/css/editor.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5B03F5CA13605379B6C565EBFA55570')),
(UNHEX('20E0F463CCAB29498C0A702CCD91AB83'), 'wp-includes/css/jquery-ui-dialog-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('10939FF6A3629FBA80E30E2E7C526901')),
(UNHEX('7E46A3CCE3AB8E3E6479ECD06A8B0F13'), 'wp-includes/css/jquery-ui-dialog-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DE1C2E841D52991CC738F4B029A4F249')),
(UNHEX('0369F4A27F5004C399FB966C6400FA91'), 'wp-includes/css/jquery-ui-dialog.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A0347BA6476AC6B646D145697970E81C')),
(UNHEX('4056F324F54BC6E7F23CDE312AE0ACC0'), 'wp-includes/css/jquery-ui-dialog.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DAE18845CFC3C211C5C6DE92401B2AD5')),
(UNHEX('003567C0CBCFEAAB9463178B30892244'), 'wp-includes/css/media-views-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('501CF1920C7156D8FC36D09906B89B96')),
(UNHEX('5FF5B4EFFDE1387D13CCDF019C3FE58E'), 'wp-includes/css/media-views-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('75BCF36D04024586721BF54011740BB9')),
(UNHEX('EBB2D453DAB070978F474DC7AFA86CED'), 'wp-includes/css/media-views.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8DA4DEC91CFF43F7F5DC6E44746ED049')),
(UNHEX('1C3425B74948C44F02918BCAB0D2164C'), 'wp-includes/css/media-views.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07103BD9815F3C477BBF3F8AF86C85CE')),
(UNHEX('C7A4113E7AB1D4849F139D214A5D3E0E'), 'wp-includes/css/wp-auth-check-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A74DE32F6B6DC6E4E6716845A839132')),
(UNHEX('C85918072427ABBB0EBE9A106F91E3EC'), 'wp-includes/css/wp-auth-check-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1E98D74916D7911BCC284EAB254E2CB')),
(UNHEX('8185032C43551C55EEE80B9CFA39692D'), 'wp-includes/css/wp-auth-check.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A209401A035E188AAF75FE3392D48184')),
(UNHEX('59A00B3638D448123B252CB95F630A80'), 'wp-includes/css/wp-auth-check.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E888776B29D7888ACDA2E33B4131D3FA')),
(UNHEX('827780B735BB0BFF07EFC1A129BAFB9E'), 'wp-includes/css/wp-embed-template-ie.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EEB729369EF309D89ED0BC7120AACADF')),
(UNHEX('1E796E6DC03B98082FD055734B09BBBF'), 'wp-includes/css/wp-embed-template-ie.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AEC3CAC7756E9B405BCBF0AD39C7772')),
(UNHEX('922F16BB17C998FC5DF45EA4575C8371'), 'wp-includes/css/wp-embed-template.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C01952804CD717C96AFE10E9689BBD32')),
(UNHEX('7AA8AF513C929827199A80557ED4525C'), 'wp-includes/css/wp-embed-template.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('433386DE4A64B9CA6D74E14756BDAFF6')),
(UNHEX('5C5BE6ED6925CDB03CFA98651E933EA9'), 'wp-includes/css/wp-pointer-rtl.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8BB0BEF9034C514F114E05FF9FC63840')),
(UNHEX('6A51FBF59765F78AF83B0E1613E21D65'), 'wp-includes/css/wp-pointer-rtl.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('456E10F2561E65F2B76C1985B657EBDB')),
(UNHEX('73FF43344DBE2A02B5BE2A4215AB29B5'), 'wp-includes/css/wp-pointer.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82EEAE4C68288D28C8809EF9FB1BC3EA')),
(UNHEX('2D9CE79FE89782A08715597B5D6E7383'), 'wp-includes/css/wp-pointer.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E9FD782602EAD0DDD91ECBE600BB078')),
(UNHEX('AE788857BA89901C321E65F67576D44C'), 'wp-includes/customize/class-wp-customize-background-image-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('700FCF87FA150F061F909DD1747CCE33')),
(UNHEX('9A569F5EE68233B1E76D3605872E5F50'), 'wp-includes/customize/class-wp-customize-background-image-setting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29D940877494FE6A123233B413E39D57')),
(UNHEX('F5B744B0B5AA36ED53FF2FC86351823F'), 'wp-includes/customize/class-wp-customize-background-position-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0A5D93333C4C1228C9B0A870E8AA48FF')),
(UNHEX('4D598CF14788B05C740358FB84929D2F'), 'wp-includes/customize/class-wp-customize-color-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7EF700003910FD1C2695639782759390')),
(UNHEX('FE162754FA9FE5F4CC81ADE959B2C799'), 'wp-includes/customize/class-wp-customize-cropped-image-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('188E5B572722F166ECF649DE99A99F74')),
(UNHEX('F3BDB34EF2B3CBF484FCABF3CF73C2F9'), 'wp-includes/customize/class-wp-customize-custom-css-setting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46FAAD031295ECFB005ACCEAA6966516')),
(UNHEX('A4FC59A400290D2F6A18F1A929F44172'), 'wp-includes/customize/class-wp-customize-filter-setting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C8C2605676FD3E41B3A220E224B11FF7')),
(UNHEX('5A7888FF31A1324BD35AA42CB8EC177F'), 'wp-includes/customize/class-wp-customize-header-image-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2BE32DB1C5FE68D5FDD4D0B3D7B9D0F9')),
(UNHEX('A802B006CC1B9CC0274B857A8E668CE5'), 'wp-includes/customize/class-wp-customize-header-image-setting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('33A7A6CF0C70FCAC180247C9739230A4')),
(UNHEX('E1993EC293EAC6CC0AF43590B4EBE45A'), 'wp-includes/customize/class-wp-customize-image-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5569B414680E2DC9C0201B84F6EE4BF3')),
(UNHEX('0C2AFA154F8FC47F91CCE202EAB7E569'), 'wp-includes/customize/class-wp-customize-media-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72D9749D6A2B497138EE8636E1F0909D')),
(UNHEX('9F6853D1019090C03A0F04B016F6D360'), 'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AB3B790F65A6DAC64D535AE39813930')),
(UNHEX('18F833C6B9DC956AE762699ACEA5EEB6'), 'wp-includes/customize/class-wp-customize-nav-menu-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19C4C58E91C6CEBFF06C9B3CD136C248')),
(UNHEX('43B2D89AD6141554BC52AA217616467B'), 'wp-includes/customize/class-wp-customize-nav-menu-item-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB6ED57F64CA505759FF5DD0191AD332')),
(UNHEX('FDAD0E047BA0090A7C1D70A3041BD9A4'), 'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A74B69476DAD500C6A8377A2641A3F8A')),
(UNHEX('62E2F7122BC6B404DD9FF3B433EF8618'), 'wp-includes/customize/class-wp-customize-nav-menu-location-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21937AE7A6D44E486F3B1625B1A9EB3F')),
(UNHEX('EDBA47AE2093D87EAA15D0FFF460F816'), 'wp-includes/customize/class-wp-customize-nav-menu-name-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BE860D996D35F933754A894C8A50833')),
(UNHEX('14A52D83E8040142F1F18F7C74535EBC'), 'wp-includes/customize/class-wp-customize-nav-menu-section.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('805CC39342700D6871C72754646FB740')),
(UNHEX('1CCD6B301D42DFE20461F7EEAC60CB08'), 'wp-includes/customize/class-wp-customize-nav-menu-setting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78FEBF68A10E3FCFE9D7A53F5126178F')),
(UNHEX('0478E0F3916DFC80A500DE0F7E90B6C2'), 'wp-includes/customize/class-wp-customize-nav-menus-panel.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('11BC9A75EC3A51269382849FC2925384')),
(UNHEX('EF07407D26A34A7ECFC2BE26F3E8001C'), 'wp-includes/customize/class-wp-customize-new-menu-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B8BC62182F5B6415BAC0D1D5A4CB4CD')),
(UNHEX('32AFE5E3BAA8617C460C966C331F5DF6'), 'wp-includes/customize/class-wp-customize-new-menu-section.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E8D4FC64423B7F95C7AE0A4A87ED886D')),
(UNHEX('0B81FDC3DEE45906C611EEF0EB71EF84'), 'wp-includes/customize/class-wp-customize-partial.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('258777A25990B9240CBA91100AE1EB75')),
(UNHEX('798102D70A962C0A43E77C5B69100616'), 'wp-includes/customize/class-wp-customize-selective-refresh.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5F8900C1F9B9FDC9AE8CC88B697824F')),
(UNHEX('5436064B153F8694B473D320823728F9'), 'wp-includes/customize/class-wp-customize-sidebar-section.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('21542B6361CEB246AFB8A4B1ECC4D2EB')),
(UNHEX('0620FB2C654FA29ACB7A8F82C3911195'), 'wp-includes/customize/class-wp-customize-site-icon-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C05C69A86F98EAB6893AC526B76C33DF')),
(UNHEX('1614F63FC784A3F980EB3A0ADE1FD658'), 'wp-includes/customize/class-wp-customize-theme-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9225FC149F9D74A9B25FC90EB2C2F2C0')),
(UNHEX('8112F958518DFBE1643972D7DABC96DB'), 'wp-includes/customize/class-wp-customize-themes-section.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2EEF141CA8A69CFFC8D51EEE31224156')),
(UNHEX('E3A065C65CDB6BEE12637FE70BDF5866'), 'wp-includes/customize/class-wp-customize-upload-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AEBA7D8C346F71E79C5BEA97240937B')),
(UNHEX('5B35F99AD759D94E68A6AB8A4B884DE8'), 'wp-includes/customize/class-wp-widget-area-customize-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D941FF8ED2CB1011E102F4F7DF4329FF')),
(UNHEX('0A5495A62F5C392459A4550ADBCACD8C'), 'wp-includes/customize/class-wp-widget-form-customize-control.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('887FD01BD4EBA2D0ECC4170D007D88A9')),
(UNHEX('9900A3F9B5E8A0D21C2E177DA5667741'), 'wp-includes/date.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12204885EC0406C9DEDC333D731A72E2')),
(UNHEX('7DFDD6CB117B1552D2A2D4E08D1DA222'), 'wp-includes/default-constants.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91446B09148BE6C1B4B77F72FE3072CA')),
(UNHEX('FAE8528A2C9E41A7C0FD1AF1474A272D'), 'wp-includes/default-filters.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('454973755D1EF9982236C0E00488B5FA')),
(UNHEX('564C36DD37475E6C25441B357A33C8E8'), 'wp-includes/default-widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12A94F6954B830FC2A00DA68FA2967BB')),
(UNHEX('7095F0B42ED0B00394F3815BC38D44A1'), 'wp-includes/deprecated.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EA4C18B0072A668D448949574DB1B965')),
(UNHEX('29DDDBF85DEFDDD51D5A24D950251602'), 'wp-includes/embed-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('880C0F3EBDEF45564A7B3B1536FF212A')),
(UNHEX('E63965BAF2D06B6BF652CA6F9786FE53'), 'wp-includes/embed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1EA1DC468F82487D08AE5817AC05E0A0')),
(UNHEX('22A19E068EBE6239AE8B65D17CAE5FCB'), 'wp-includes/feed-atom-comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2EFA90F57308EBC0A4F6F950751793DC')),
(UNHEX('9AAA99913240EF0F6BE4AC773E4B9432'), 'wp-includes/feed-atom.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DAC1010014E22C7D35B37DC0437EFCE3')),
(UNHEX('DC08C8BC91D89FDC270D1460F9F4CACE'), 'wp-includes/feed-rdf.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C15976464FE989A6136BEAEDD27DE9A')),
(UNHEX('FC1D5D29E9E909B983F37B973F527D1B'), 'wp-includes/feed-rss.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4DC733D73FD9EBC810A067C12E0E420D')),
(UNHEX('B40BB5DFB23BF89B3011FF82D9CB0B0B'), 'wp-includes/feed-rss2-comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C1FB77AB52C09ED5EAD32FC5824D17D9')),
(UNHEX('5F1F2A05C4E2BD9E4C16FF30E23E070D'), 'wp-includes/feed-rss2.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A409671E54CB7F9C300B7CE86D71ACE7')),
(UNHEX('7BEF52431BBC01DA1A8F2E2A22A25118'), 'wp-includes/feed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('285EE5104C514DCF085AF6B4F4E6950A')),
(UNHEX('968E191A356FD614DD2352272FA4AC6C'), 'wp-includes/fonts/dashicons.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('30E410C715C6215FA7FAA1C979B6480C')),
(UNHEX('14CEA28353CBAAC40AB4029642E15622'), 'wp-includes/fonts/dashicons.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('780E6968CD0E378B1F7723D89FA59AB5')),
(UNHEX('E3ECF33C6B554A762510F21B8D318287'), 'wp-includes/fonts/dashicons.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FEA1FCE46BAFE469BA2F101FDC583E2')),
(UNHEX('95CC660730D90C15CBCDADA1DA7EB729'), 'wp-includes/fonts/dashicons.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C1C1AD41C025F72592BCA820E073BEC')),
(UNHEX('E7C589FB0969E0F690BF2F051517D0AD'), 'wp-includes/formatting.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('437781D78F7241C3BAAAC94E969E7FFB')),
(UNHEX('1AEBE3E8C1A195297174731F43493918'), 'wp-includes/functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DDCEF0C8F973704E300D455D031024F')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('E762604BAC27D71D8AECBB9C8FE7E24B'), 'wp-includes/functions.wp-scripts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA0BD887583D897C7DDC0FB381258555')),
(UNHEX('682064D11F92EABB8532F602C35FC072'), 'wp-includes/functions.wp-styles.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E665E24A159238E25A805717DB32FB98')),
(UNHEX('EB309E818A52F04AB37B79EDCBA3F7EF'), 'wp-includes/general-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D842798A62DC01E642CD89C86FB58BF9')),
(UNHEX('B92F26BC8ED6FBE132AED1A10D674473'), 'wp-includes/http.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('49EB4A3A882DD22A93967D5151445DD4')),
(UNHEX('2E4968559C8E0EE2338EBF2B421A84BC'), 'wp-includes/images/admin-bar-sprite-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB51AC1312EB060B9BC638FEF46F80CA')),
(UNHEX('90A755CC9B092743D4BBF1BACFDAAB1A'), 'wp-includes/images/admin-bar-sprite.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('53CF11A41F973A80570E0ECAC5D3FE5E')),
(UNHEX('72E95FE8062F99CD48473DCD25973CBA'), 'wp-includes/images/arrow-pointer-blue-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('256DE214110572DE8C5D34B8391163CF')),
(UNHEX('40809ECC98398A23AF4CC379280BD0DA'), 'wp-includes/images/arrow-pointer-blue.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('779FFC62E3CE872A4CABB2C35BBB14F9')),
(UNHEX('E647C4C50635D840E6E8D9DA303795C7'), 'wp-includes/images/blank.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48BB2BAAF4353109F7C2665D96AA390B')),
(UNHEX('0ECD3E12FF4DD20538B820D9B5ADD17C'), 'wp-includes/images/crystal/archive.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9653CA07FAF08E9CCC493041020E6EEB')),
(UNHEX('F44A1B1427238982724E8430610DC87F'), 'wp-includes/images/crystal/audio.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('996E56F18F3AC9CF89F347D8D42D236B')),
(UNHEX('77A3A4EF4CFDEAA3301E9CEFF05D722E'), 'wp-includes/images/crystal/code.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1460EF31B2CFFAEF1CB012F531AE391F')),
(UNHEX('94F4A89621DEACA9C4DFB3C20CC1AB70'), 'wp-includes/images/crystal/default.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('41F23E292A2FBEDC21ECAE2D04F29BBA')),
(UNHEX('440C6DB70ABBBD7A974882C35394EFEF'), 'wp-includes/images/crystal/document.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F89275E639A73C0F9C4448BF933545C')),
(UNHEX('6A9097A3C9FF1535462B1FB8AFED6F01'), 'wp-includes/images/crystal/interactive.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AF52CF6D60F2EDBA609939A70304E601')),
(UNHEX('CCC78AB745C17696632CEED8B579535E'), 'wp-includes/images/crystal/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F05DB54C63E36918479B6651930DCFE7')),
(UNHEX('5E7FE583C390AFF088AF2B85797CD008'), 'wp-includes/images/crystal/spreadsheet.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('358639F8D0A20C318054CB01C76EA4EA')),
(UNHEX('BC18ACF0E0C4161FCDEF22A652D1C59C'), 'wp-includes/images/crystal/text.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90CC20D1B2AAFC23BE64FF2511E35BB5')),
(UNHEX('55C3E5E0240B692275C2CA26CBF4B839'), 'wp-includes/images/crystal/video.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('94010EDBFD8E6CA589DAA4B83BF53D0B')),
(UNHEX('2AAEE42D3310F675AC8D45C25BD54F23'), 'wp-includes/images/down_arrow-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A073B8A1EE9B2482017F3628DA40A861')),
(UNHEX('1D0A9CDF4F825F98AB3B5D2F5E990CE7'), 'wp-includes/images/down_arrow.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('65DCC85D3A75FF5776FBE3DF0122B7E2')),
(UNHEX('D29EB3E5FAECC79FF603094B73CDD7D0'), 'wp-includes/images/icon-pointer-flag-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A9E5E1A632F1B3B962E4C426D55ACC72')),
(UNHEX('D65AD7F6097221DE8F66D5D11CBE09DE'), 'wp-includes/images/icon-pointer-flag.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0D32C87F2AD8BC2455EBF6A60171027')),
(UNHEX('59882C9065EA41F5BC1F77C0608FE1C4'), 'wp-includes/images/media/archive.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('113914D2EEDFF268FB00DAD3C3AC9175')),
(UNHEX('3AF96E1FCCA31F524DEB7469239AF53D'), 'wp-includes/images/media/audio.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8674614341F1BEC5FEB22EB7E75ADFC0')),
(UNHEX('C0B133221DFC0C287AD9618034EE388C'), 'wp-includes/images/media/code.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D6F96130CAD55CA9310EED555A9555F')),
(UNHEX('283FCBDCD73EB9F453A94EE68F9A9C26'), 'wp-includes/images/media/default.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2DB6A9E6CD49D2429668CE40E0DEE762')),
(UNHEX('2F3CD8A75EC9BC667D9622D7F8FB24B8'), 'wp-includes/images/media/document.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76E5349938F6CE9179931436DE1C64A3')),
(UNHEX('D672599F53AF7877441F59CB9A4A995B'), 'wp-includes/images/media/interactive.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52D7ACCB82AEF17FC2C3B4C58968DC48')),
(UNHEX('0B9CAB4856D5A5BD6490E0B370D55670'), 'wp-includes/images/media/spreadsheet.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F1C0A034E4F112D60054FCDECC873FB2')),
(UNHEX('39ED89E673B433D953055A2C70E93867'), 'wp-includes/images/media/text.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7AB98773E6E430F718C89D9F5119804B')),
(UNHEX('9D0A25665B1B216145AB72D274678069'), 'wp-includes/images/media/video.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8DE0E9F175EA68179B81DDDB71A010F7')),
(UNHEX('D96BEFDB2F799EB3A9FD9B2689139F47'), 'wp-includes/images/rss-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C71759615BA051C1E6F597FD726A9D11')),
(UNHEX('DBC872819ABCC1B5D8811D3DD4D492E9'), 'wp-includes/images/rss.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5B05BBF28F294B02EFD942A4E5AB806')),
(UNHEX('7BF10DDE0F080C2D11E4DC7DA05EE9C6'), 'wp-includes/images/smilies/frownie.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('519BF3D0051B841E0CB08DC4F4831EED')),
(UNHEX('D0A27F92ED8EB9827CE18ED1E4D84019'), 'wp-includes/images/smilies/icon_arrow.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFCAB5090B1280BBE495DBEAD4D2281F')),
(UNHEX('EFE3AFA9E8090E27AFE6B6DEA88BF756'), 'wp-includes/images/smilies/icon_biggrin.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7597052FE2B16DB307D6BD14E7B8C6B')),
(UNHEX('B024E5CD9399016212486EAE802C002D'), 'wp-includes/images/smilies/icon_confused.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FEFA473594650055A36B9E3062C9A91')),
(UNHEX('582CE745F5436A245F83AC3849A78230'), 'wp-includes/images/smilies/icon_cool.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('96467EB5AE18DFA22EA1C0FA3E74380E')),
(UNHEX('C494D4BCFCDD7FD57050885A094890B4'), 'wp-includes/images/smilies/icon_cry.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('453E7A3F8BBB417008F06D576C41D060')),
(UNHEX('215F8D039FE8BCB5703370996ED7D34C'), 'wp-includes/images/smilies/icon_eek.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A6C65FA6FF738EF6C46A4E80A65F7AA0')),
(UNHEX('C2024F6263AEB32220CEC7DB7C064A28'), 'wp-includes/images/smilies/icon_evil.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('63BF101BD3D4F7564D3CF31822218D2E')),
(UNHEX('9A4A9E8B42BE4754B23B2C6CA3C0540E'), 'wp-includes/images/smilies/icon_exclaim.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5CE371458C1A2148595F5F3DAF7B5FC8')),
(UNHEX('C82275409EB354AC7F8514539BF135F2'), 'wp-includes/images/smilies/icon_idea.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BDB3226D2568B8C1EDF8F453B1E872E6')),
(UNHEX('9E20C16E80249B877188EF5E7166B4A7'), 'wp-includes/images/smilies/icon_lol.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4F04DC65A387CA9B8C0F22CA8C0EC8C')),
(UNHEX('8E28A2FB8FD794EF1D57E5681C403D61'), 'wp-includes/images/smilies/icon_mad.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D7BE08B669651A63080CFE7B9004D330')),
(UNHEX('1AFD5545E47328EEB1F79E231545F670'), 'wp-includes/images/smilies/icon_mrgreen.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FDE9E44A8AAE0E89BD527792B4779ACA')),
(UNHEX('FFC4EA6BB5CB69EED02EBCA5B85CA593'), 'wp-includes/images/smilies/icon_neutral.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A95DBFAA99809B0150687AE0CB45AED')),
(UNHEX('9AA58F37B8134D33C29AE3241CCBF48C'), 'wp-includes/images/smilies/icon_question.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D22775B2E32645907141F788C36D4E9D')),
(UNHEX('A692AFFC9E3A5B2662FA5BAE6859A9B8'), 'wp-includes/images/smilies/icon_razz.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('17CBE5CBADE2B4EC3D85BE4AC9409ADD')),
(UNHEX('24921084F5B330530F0D9872FE02AEA9'), 'wp-includes/images/smilies/icon_redface.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C6D8B101C821641F983175221346112')),
(UNHEX('89BC421E155D6EC884A838DA376798F3'), 'wp-includes/images/smilies/icon_rolleyes.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFC8BBC65FCBD2B82A3E2C1AB41A216A')),
(UNHEX('A8488AA3F5C19C5077E015F0253896C0'), 'wp-includes/images/smilies/icon_sad.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1A273DB3C34F6AFB3FED75417CA5E7B6')),
(UNHEX('80F706EAFF65D8070EE63937E3614A53'), 'wp-includes/images/smilies/icon_smile.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2984729C3B6CDC07508B88B5C0A4D1E')),
(UNHEX('3BF1576374D4D3E72A2BF7AC427216CA'), 'wp-includes/images/smilies/icon_surprised.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('299972B5CDD1F1E0690DD95E4038BD87')),
(UNHEX('878E5C013AE2C3DA887FD5EA29672C5C'), 'wp-includes/images/smilies/icon_twisted.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('62ABD50CA92EB2381A7C60E351F64C46')),
(UNHEX('9C3883A98E85A6ACE3503561C4A89D09'), 'wp-includes/images/smilies/icon_wink.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D01A4F87055AC0FCE8A66739D80434BA')),
(UNHEX('677C795F936F342289A958864E9AF98F'), 'wp-includes/images/smilies/mrgreen.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2D35C1E05EB1949106D34ADD6A9D9DDA')),
(UNHEX('1F987B85E959C25CC07AE98CBFB07D63'), 'wp-includes/images/smilies/rolleyes.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('20BEBEF0054F851332DF4F66DDA3698D')),
(UNHEX('DCE9D5BB5A6D6C95EE34F4CBAE550F03'), 'wp-includes/images/smilies/simple-smile.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E94BB2CF7BC285138EB166B201779768')),
(UNHEX('7D60C6D267220E50C932AEC21C56BD87'), 'wp-includes/images/spinner-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C1371BCB4392968647852A9C9DF5D6C')),
(UNHEX('3AEF5871DD9DAF4A5CA63550F2B63403'), 'wp-includes/images/spinner.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B0A3DDE331637E27AA6476D476481871')),
(UNHEX('7D08C4893D9574A9ADF291BB0113A4B9'), 'wp-includes/images/toggle-arrow-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('46CAE1CA5CF883F4C91243447215EF11')),
(UNHEX('94DCB55B0FD2B26D258936F253383A44'), 'wp-includes/images/toggle-arrow.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DCDFCE879761FDE6123BEB64CECF2AF2')),
(UNHEX('2FE9B9A0ECC4EFCEB01F31CA697787A7'), 'wp-includes/images/uploader-icons-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADC1E7B0262D80E44F18A287C395CB7E')),
(UNHEX('5FD6E08134E4813393CDCB13193D8E93'), 'wp-includes/images/uploader-icons.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4011D935C0F4DCF0CFFC0F99D6D9680')),
(UNHEX('7839405E16369CC5DF91ACF39F6FB7E8'), 'wp-includes/images/w-logo-blue.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD5B4EB05706A2F05F707FE077AE1030')),
(UNHEX('95688F9789A7914601755165F1AA20EE'), 'wp-includes/images/wlw/wp-comments.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4CC2365D0450DEDEC30CEC2E73A8A1D4')),
(UNHEX('F6FDE58DC0501C712DB374F3B9406CCA'), 'wp-includes/images/wlw/wp-icon.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('311D098ECA9A89370877334B1B8F992A')),
(UNHEX('A7E8E1FAB0369190629D67B73E5FAA1B'), 'wp-includes/images/wlw/wp-watermark.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3B9A87754D6DDCAD447C89778E93C544')),
(UNHEX('B30C7EA39AB9AD55F722D0269018D005'), 'wp-includes/images/wpicons-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3E76ED756C4056FA9249A944F667E37')),
(UNHEX('679424475CBEEBB13BA972C4C4CF3158'), 'wp-includes/images/wpicons.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6453FCF875718D91560F5FAEDCE361F4')),
(UNHEX('AE0D45F61CC855CF0E9CF8CD84DED91C'), 'wp-includes/images/wpspin-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DEF33AAD959CD289D49DDF2A41F076D')),
(UNHEX('529678AE344D7040B039750AD68A2070'), 'wp-includes/images/wpspin.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DD4E6DD268A70CE4C1C5143B1A4092DD')),
(UNHEX('DE4EC45CFC7C0FF3602AB72C19294034'), 'wp-includes/images/xit-2x.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FB0729C541CBDC4609FAF3F4AD02FC7')),
(UNHEX('FAFDCA0A5CD4FBC9B62E35FA108E9A19'), 'wp-includes/images/xit.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5012902A358FBB96031ACDCF048D7CA')),
(UNHEX('7C2FDA92EB005B2A3493FF7805FC01E3'), 'wp-includes/js/admin-bar.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D97A1899A7F641E693928F5A47C33DE4')),
(UNHEX('4DD0A0009A419FAABB3951DE2BA0CD08'), 'wp-includes/js/admin-bar.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B2E733F0C117E30AC8974DCC69AB11D8')),
(UNHEX('5233F0B85573EB33C3C87D54EA9CDBC1'), 'wp-includes/js/autosave.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CFAC42246A04C9F37F0A0E5F0474EE4')),
(UNHEX('771075E89A6C7CE50CF570089816CA51'), 'wp-includes/js/autosave.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C2366B7DE7027D09661ECDDE0C8D1025')),
(UNHEX('501C45DBABBD37727C6F49B136FFF03E'), 'wp-includes/js/backbone.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9263DDBE52F85E7BE13301AC26889C8E')),
(UNHEX('DBDF0A70A1F11FD3476E750E3AA2B8D3'), 'wp-includes/js/colorpicker.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F01017CA562067F4840EB2B6F99F2DAF')),
(UNHEX('30A4E780C54500308C82108158CF4812'), 'wp-includes/js/colorpicker.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E186209DC41A59F2FB627C24E640712D')),
(UNHEX('705579FC6109EA62AFE07661843BA138'), 'wp-includes/js/comment-reply.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('14EAC74EA4D8AECA08E8EF8D54D42600')),
(UNHEX('31F9CE588A2FB27436305ED28021DC37'), 'wp-includes/js/comment-reply.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56BC2726D829207BFA802F957AAC0791')),
(UNHEX('6259C62CA5B0CFA559AA72DB9DD13BBE'), 'wp-includes/js/crop/cropper.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6B79350BF46E0F692A4D1B2807ED0399')),
(UNHEX('0DC32514DB11E1E3CF25BC7953FD60F0'), 'wp-includes/js/crop/cropper.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D97B296D918482E1273C56FBFF6A8E2')),
(UNHEX('A628BC7C056EE495C1B473415246E42B'), 'wp-includes/js/crop/marqueeHoriz.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8CCCAE9C1EBAFDB83BE602E4D44C6F0A')),
(UNHEX('5AB1001E839C5988B392B320C3A66667'), 'wp-includes/js/crop/marqueeVert.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE9ACCF100A4B9930639ADFF52D4DCC7')),
(UNHEX('B672815CD96A0694B4A8F2E141241381'), 'wp-includes/js/customize-base.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0CDC710A8F36181A0C701A3CE7E5997B')),
(UNHEX('560A07D5C95560BD5F9A35FA98AD1B38'), 'wp-includes/js/customize-base.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82E54A4C50D795DE58583BC8C3C5366C')),
(UNHEX('93567DBB50949CB16D952FAF7C492AD9'), 'wp-includes/js/customize-loader.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3735895CE4BC1061B033B00DDADC22DE')),
(UNHEX('62E094FB08BF94D28C2026E93F7FAC7B'), 'wp-includes/js/customize-loader.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07FFBAC3F2BA98BE80444078BF478E06')),
(UNHEX('B2FFFEAD78C47FD099D229444387CC3C'), 'wp-includes/js/customize-models.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A799B747D1CC99F440EC4630A32E040')),
(UNHEX('0AA3DC4E4E4DBCD4DB91343BFA70D034'), 'wp-includes/js/customize-models.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E715EA6806C9FDB94AA4D56812DD0217')),
(UNHEX('EE1ABD0487E57B3A1AAA028AE5341E66'), 'wp-includes/js/customize-preview-nav-menus.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('207399A4074C9EF066C5834C07E43F08')),
(UNHEX('999E4619041B7E85919F79B56337762D'), 'wp-includes/js/customize-preview-nav-menus.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('526952E7A87A339B276F5DCFC96C5176')),
(UNHEX('3908BA0D3527580EF9FDC63E1E3F7F92'), 'wp-includes/js/customize-preview-widgets.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('436093EDEC320C9F9DA76CEE03DEB3AC')),
(UNHEX('EFFF80C9391787CA72C00B4DD4A7C4E8'), 'wp-includes/js/customize-preview-widgets.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B40ADE72A4E6ADD4EC2147A58859A4B')),
(UNHEX('EA34CAD7E7BA3291160629412E3B34D1'), 'wp-includes/js/customize-preview.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('619E58942A49B70E1490E19DEAB325F6')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('3E716CEE2BAA6D14C80035C4A622865E'), 'wp-includes/js/customize-preview.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('71F5D65A2ADD0646814684E11B1A3AF9')),
(UNHEX('13A2FDF10BE7554E151D4541C867EF74'), 'wp-includes/js/customize-selective-refresh.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AA9F21B635906C5318B64C3AEDBB8FE')),
(UNHEX('306AEF56C6BDC9663A8A3586E760955C'), 'wp-includes/js/customize-selective-refresh.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FD4DD5652EC927A08AF04D6EE78B931')),
(UNHEX('515997EA31F0546C92B9567203083C17'), 'wp-includes/js/customize-views.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('122B154B05F13396529C049C1A17D8D1')),
(UNHEX('EF595E7E357E91A8709F472D8A8C0F8A'), 'wp-includes/js/customize-views.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('000D91B0DE96556E03C3053F728B2987')),
(UNHEX('DAFD1221A71614287494F2893C0ED4B9'), 'wp-includes/js/heartbeat.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4714400D54B96A2C380B245300A5BE5A')),
(UNHEX('8B6E393790492E4FFAD29DDEBFF0B007'), 'wp-includes/js/heartbeat.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('126CC4D1E35B74EDB525B06E3788E0F2')),
(UNHEX('9179DF678BED1F7A6155228309584B47'), 'wp-includes/js/hoverIntent.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAB3598B438A9E63984F1C6E9DD79B01')),
(UNHEX('532E46C8AB41BE7F6AAEFFE428A03A05'), 'wp-includes/js/hoverIntent.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CA500ADE854C31417FAF5762E31B9D00')),
(UNHEX('5EEFF95E5C0551F3C33D2877B210EE86'), 'wp-includes/js/imagesloaded.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0C2C0D7E37652E66657C8C8D6376442')),
(UNHEX('069397AC256251F1A3931B624D3CD678'), 'wp-includes/js/imgareaselect/border-anim-h.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5AC3C42CC86E745A5E36B67B4C70A134')),
(UNHEX('8BBA46E822F7E87668E2A1244C628E8D'), 'wp-includes/js/imgareaselect/border-anim-v.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('20C97A21993CF137EAD9FDBECBC42AA8')),
(UNHEX('3C46E90FEBEF507ACC193232A387127E'), 'wp-includes/js/imgareaselect/imgareaselect.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D28CAD92829B3D633A087B5F3B595AF')),
(UNHEX('D8382F42B18F24389088CF1E04606D9C'), 'wp-includes/js/imgareaselect/jquery.imgareaselect.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7A0E1BFC429252530CFB8318F53A5986')),
(UNHEX('D5F6BCFACDA436E9002FFD936BFAC0F4'), 'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('25F42E049E65EE16D442799755724025')),
(UNHEX('53582B37CAFB081E311D3FC5F5CFEE2D'), 'wp-includes/js/jcrop/Jcrop.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A8BFD37651305BDAFBCF2CD51B0254B')),
(UNHEX('FC678D229A107D5FBF37B8BDA6DC4A35'), 'wp-includes/js/jcrop/jquery.Jcrop.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('56CC9EA201DC2F4B910E78BFACAC9211')),
(UNHEX('54872E6F40CEA832FF77F5768E9F58B9'), 'wp-includes/js/jcrop/jquery.Jcrop.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2F61AB984C177275C71E34FF1A17C102')),
(UNHEX('76A19610020CDEA303E3FB1D7F5211EF'), 'wp-includes/js/jquery/jquery-migrate.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C57B762589F13EA5B3579CA5E6C369B')),
(UNHEX('BA61C9406F9BFF27BFC96B62EDFE0EF9'), 'wp-includes/js/jquery/jquery-migrate.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7121994EEC5320FBE6586463BF9651C2')),
(UNHEX('C4E0CA99007DF4DFE794A04B9BF62EFF'), 'wp-includes/js/jquery/jquery.color.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF2DB8DBF145CE47F31781EEF33E764A')),
(UNHEX('76FAD2B8293B8F44B08D7E4A22E08F71'), 'wp-includes/js/jquery/jquery.form.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5AFD8E41D2EC22C19932B068CD90A71')),
(UNHEX('263D1A10BD2B747FED9222A22F6B270A'), 'wp-includes/js/jquery/jquery.form.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DBC3808473DEF00FCE45FE564DC72DCB')),
(UNHEX('9CFE501A8DC52FE904A203AF6C0E25A1'), 'wp-includes/js/jquery/jquery.hotkeys.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E29483A8CA26A0DD8B0D1146C6B0A6E9')),
(UNHEX('C5CD2D8670936C45C6F3D86B86112FF6'), 'wp-includes/js/jquery/jquery.hotkeys.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E353217D4555AB5C62B367BE6889813D')),
(UNHEX('6723E92C764D91FF8E8B97DF3A0CF5E4'), 'wp-includes/js/jquery/jquery.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8610F03FE77640DEE8C4CC924E060F12')),
(UNHEX('632CBD85B05B78DEABF433A5060AF940'), 'wp-includes/js/jquery/jquery.masonry.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD0EB3406096FF80266E7C9D7D419186')),
(UNHEX('7B9F1F29D734653402703AB106665787'), 'wp-includes/js/jquery/jquery.query.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3BCC587AF2C7B01FC6FBC9C077050143')),
(UNHEX('281588D4672500CFC334DDDB6C3E9C8D'), 'wp-includes/js/jquery/jquery.schedule.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0426B39754AA6BC766D89EA4C41BBD06')),
(UNHEX('7168FF36361F3597797CF23DEF3F5309'), 'wp-includes/js/jquery/jquery.serialize-object.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D15C29A18D9FFA8B9B4AE86C3C0CFA22')),
(UNHEX('FC303C5073C9F1D79E480F97D1C13232'), 'wp-includes/js/jquery/jquery.table-hotkeys.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A706EAD694231E74FD6750B1670580A5')),
(UNHEX('F2B1A0ADFC1FB242C95204D47A878759'), 'wp-includes/js/jquery/jquery.table-hotkeys.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E56F81676F199DB7BF937E69A64909FA')),
(UNHEX('6D59B7C118939A0C7D10C9BDEB0B853F'), 'wp-includes/js/jquery/jquery.ui.touch-punch.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4CC86D1003C45134D6838F13E3885DB1')),
(UNHEX('C6AC2B1A96BCCA1F49F3645E69203C00'), 'wp-includes/js/jquery/suggest.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3A2474569145D51ECABF7FC4FB078982')),
(UNHEX('821133A496C6876515C728C3BA39F911'), 'wp-includes/js/jquery/suggest.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7311075C2B411B299C94E36E2E3BAB89')),
(UNHEX('36D9A80917CEFF0E3A7B945E0544E189'), 'wp-includes/js/jquery/ui/accordion.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('334C2FFB0B086FFC0F6F192EA120F3C2')),
(UNHEX('67FE4564C9E331A2D2447DC2C2FC918A'), 'wp-includes/js/jquery/ui/autocomplete.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0FF3EBA6258651773C3A5CC909EFDE6')),
(UNHEX('1DDCE55D2F7EFFF8D571A1A558C58E45'), 'wp-includes/js/jquery/ui/button.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2CE99E1ED08DF351E6A58EB4B6BCBFA9')),
(UNHEX('E825799D3E7D48C3166F14DAE6FA2836'), 'wp-includes/js/jquery/ui/core.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9CE4E157448487D4EFE0CA538F656A71')),
(UNHEX('406B2FA0C1A107058CE649893F542C12'), 'wp-includes/js/jquery/ui/datepicker.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFB63DC18FDE53FEF4D4FDC19DDFDCD6')),
(UNHEX('1846ABD2657FC0FBD67DED28B71BE5BF'), 'wp-includes/js/jquery/ui/dialog.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3ECD9590AAC778514F4E69975ED91A62')),
(UNHEX('7001F4F43775CC4CCD5F7F7B32C39B96'), 'wp-includes/js/jquery/ui/draggable.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('443C277789BAF69C490019D59C1B36ED')),
(UNHEX('EF7A0FFAC09CD8F6D7F27C947AFB7876'), 'wp-includes/js/jquery/ui/droppable.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DEBF5224C4162887D1A6E3198ED953D8')),
(UNHEX('0B266306B5590144D823E8507B2BA29D'), 'wp-includes/js/jquery/ui/effect-blind.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ADDBE09F173C4F1BD86D41AC5F3B4F4C')),
(UNHEX('FFA861355B34FC053515BC4D659D7043'), 'wp-includes/js/jquery/ui/effect-bounce.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4BC4C97924BEA4BF7B04D7B46FF4F64C')),
(UNHEX('9CE55589B1F324EC5C2ADD315E9C53FD'), 'wp-includes/js/jquery/ui/effect-clip.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7939457E8AB231B951713475A056173')),
(UNHEX('EC440D0F687DBC0419E811AFB682210A'), 'wp-includes/js/jquery/ui/effect-drop.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('57FE560887CAC7A5B2598188463290E8')),
(UNHEX('CF8A153DF7C658AEACF762427A27208C'), 'wp-includes/js/jquery/ui/effect-explode.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C0DF625CCA418CFD803A11514A3DD1E6')),
(UNHEX('9DB490C741F3472C87C33C8C07B8B816'), 'wp-includes/js/jquery/ui/effect-fade.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9F6FD64F4F5FF5893B7B72A235246D0C')),
(UNHEX('04B7500027D8306CA79FAF76C8234A3C'), 'wp-includes/js/jquery/ui/effect-fold.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D365EC1B3A7EE82F93C9AFD441E456C')),
(UNHEX('0C7BE74D8C930C69BB69326E95C336DC'), 'wp-includes/js/jquery/ui/effect-highlight.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('95E8EBE62ADF187FB4C3B84EB5BEF821')),
(UNHEX('A6FCADF3386039F9D73F42629306D091'), 'wp-includes/js/jquery/ui/effect-puff.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE496D6C9D63BC47854084C8B3FC20D6')),
(UNHEX('98188BB5EF8638281AB96AE85A5D077D'), 'wp-includes/js/jquery/ui/effect-pulsate.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BF836F20530440115A2A8487CA7021C5')),
(UNHEX('15343B56CFF4278C2FB6F2E61CA866BA'), 'wp-includes/js/jquery/ui/effect-scale.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D57D0830652C29C3E0E301B02B6DB754')),
(UNHEX('100693A2FE4E56D4B1B30BE6887AC35A'), 'wp-includes/js/jquery/ui/effect-shake.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('260CBAFCBCEDC23348A371CB80083112')),
(UNHEX('0217A8917EB87760B2353B4611E3AEAE'), 'wp-includes/js/jquery/ui/effect-size.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B00E3DFD6EEBCCD5EA9AEB3293D85A25')),
(UNHEX('59D4E4D6ED5DA690AEC59E49869516A8'), 'wp-includes/js/jquery/ui/effect-slide.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA23475FB01C8F4D56DA98CA0C1179B5')),
(UNHEX('8CAD6CAB2E48077C538417B3D67BB086'), 'wp-includes/js/jquery/ui/effect-transfer.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07E5B0DEA800777DD2108788B56EF90B')),
(UNHEX('CFDD99AA50289983C94F270E4591F965'), 'wp-includes/js/jquery/ui/effect.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3F7161CF139D5A2C5E6D34E1C0026F9D')),
(UNHEX('37C063EEC2A229DCE61E1753F36562B5'), 'wp-includes/js/jquery/ui/menu.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C91CFFF50715441295FE7463BB5D3894')),
(UNHEX('A1B2A8E680CB3A7806D9FD3DE17D8804'), 'wp-includes/js/jquery/ui/mouse.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('82835A8960DDD73020389DBFA45C39A0')),
(UNHEX('6E6566BEB3B04140B4FFB952873FA4FD'), 'wp-includes/js/jquery/ui/position.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C4A13EDEC1958817E83433AEAA42F62')),
(UNHEX('3D66E975F1A5413E3C54116896C9CF40'), 'wp-includes/js/jquery/ui/progressbar.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B94D71DA54D9B4413FFA4C7D792269C5')),
(UNHEX('12FFB42DB986693E62738C0C7F9B31E9'), 'wp-includes/js/jquery/ui/resizable.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A5001032177C492CF0FF7C86BC01169F')),
(UNHEX('D876F5FDE3C60DEAFBB4120B26588D89'), 'wp-includes/js/jquery/ui/selectable.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B632ADD191ECAE92E6A7B6B97212A640')),
(UNHEX('5330F4D6BEE2D74B2F313775FC8EEC94'), 'wp-includes/js/jquery/ui/selectmenu.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB7DB4CBAA328E395A680C78692236F0')),
(UNHEX('0F5CDC07E0E3941DB7F041562AE7B1BF'), 'wp-includes/js/jquery/ui/slider.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9408EFE2CE5A6B4364F34CBDA02F814B')),
(UNHEX('6D8808BA2D1A6D31BDA5C8FBA377C7EF'), 'wp-includes/js/jquery/ui/sortable.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2896E90CC17E9ABC160ED96BB86B07E3')),
(UNHEX('6D459AAFF1F6BEBA5CE71529DED86FD4'), 'wp-includes/js/jquery/ui/spinner.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3ACF32DA612BF35221C09394856591DC')),
(UNHEX('AFF08B812835EC6148AD791C6F2C58FE'), 'wp-includes/js/jquery/ui/tabs.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5330C83425AB1B8F67CE63F741427ADB')),
(UNHEX('2D8A5FBAD72BCDD405590B6EA813D953'), 'wp-includes/js/jquery/ui/tooltip.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('443F68690D84EEE42CF3019071340730')),
(UNHEX('CA2126F869C6295EFE57ADB2F406529C'), 'wp-includes/js/jquery/ui/widget.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8CF7F36BBD79BC0664B6113F7A7837FE')),
(UNHEX('2AE7101A3037D1A5314F81D3D3D98E38'), 'wp-includes/js/json2.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('73A1D77B4E827C45061F4FAB041030A9')),
(UNHEX('FDB4F6D7F8F529DD28A4D03C1F07D9DD'), 'wp-includes/js/json2.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35D899A81986173F44F9BBE686CC583C')),
(UNHEX('AAAAF5D914860C987C860120B20FBD19'), 'wp-includes/js/masonry.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5420B6516C14245B504E7240A8310F2C')),
(UNHEX('72E9F6107287284AAF67F728A879AD74'), 'wp-includes/js/mce-view.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('121281E52F8F9965F747CA5E8AB92ABE')),
(UNHEX('EE1417890B9566D92575DF50FBCAF184'), 'wp-includes/js/mce-view.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('602FC8936631C7079B786CBBAC621DD8')),
(UNHEX('8DAC7BDF306C28C6B275392C7753D875'), 'wp-includes/js/media-audiovideo.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F256503CAA6BC23B44C82E3F46B6B23B')),
(UNHEX('B547565C7AB28523B0FF83213BA2C40F'), 'wp-includes/js/media-audiovideo.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F093100D539F03B5D1D31F1E74029B44')),
(UNHEX('F575F481034E90E21D832E415FD95FCF'), 'wp-includes/js/media-editor.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4C69A1599BD6868A31CD43B7F899964D')),
(UNHEX('092CB9A92FD595188B21E79B6779FE64'), 'wp-includes/js/media-editor.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('79CF51BAE2593B7AC27B73789E43646D')),
(UNHEX('52AF5C5343AF7C6A7504D339B505BF41'), 'wp-includes/js/media-grid.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('846BBF2E3ACC156CE4D6DEB772C703B3')),
(UNHEX('F459B4AA528959692FB5B76C404858D3'), 'wp-includes/js/media-grid.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76FE68861654653491EC8A68CEB2DA4C')),
(UNHEX('10298F9F0C5FE6F6924AAF87D71D99D4'), 'wp-includes/js/media-models.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9DBD7395FAC0F6F1065BD5231D14941F')),
(UNHEX('82468920E5474ACED642EC7F887337B5'), 'wp-includes/js/media-models.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EED9813BAD592D4287BE0EB0EBB68497')),
(UNHEX('81C889563F09DD13DE1701135DC62941'), 'wp-includes/js/media-views.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B44BC57736B0F9071A8D5B4E1A1C38C0')),
(UNHEX('96C1BC0B9945983FC61D8CD0AEE1BEA0'), 'wp-includes/js/media-views.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B1414F1A1DF9AF09F7F4CF3B86E41967')),
(UNHEX('8AF1EC369264F513A27813C71144C9D1'), 'wp-includes/js/mediaelement/background.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('703C659E4BF563A05C6338A1727E006C')),
(UNHEX('1AB1650DD6F3E46A215EB20CB809E3F7'), 'wp-includes/js/mediaelement/bigplay.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('716436FB3DF0D29E6B37DD62D952676A')),
(UNHEX('37B5D84F2BB2BB1BBE0F978AC78B276E'), 'wp-includes/js/mediaelement/bigplay.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('746C3AF7A145A09239A36E5EF61CFEA0')),
(UNHEX('C1EA3595EC5B2C096AC42810EAC6AAB6'), 'wp-includes/js/mediaelement/controls.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('24A0227FBDD3ACFD86FF03FC3FC6C8A4')),
(UNHEX('4771DC4001AFFC02DDD3676DE5B1AA16'), 'wp-includes/js/mediaelement/controls.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('40F56F5A736DA4EFFEB790CEDB8A52F0')),
(UNHEX('8EF62B97CDBF049B234674FE45C78D37'), 'wp-includes/js/mediaelement/froogaloop.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2A8742C0AC1CDBEC23BE44A7D4E9A3C9')),
(UNHEX('E41EA14ED960F5F57248036E30A3A9CD'), 'wp-includes/js/mediaelement/jumpforward.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('15E1AC8CBACC2EFDF1AC2677DE48A253')),
(UNHEX('E99C272018ADC6237388FE19DFBE557C'), 'wp-includes/js/mediaelement/loading.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('76B326F4D44222126FEE21076595BEF5')),
(UNHEX('1BA779B4DDDA0821A100705AE8885B41'), 'wp-includes/js/mediaelement/mediaelement-and-player.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8970E6E672A1D312C8D8EF471FFB7D5F')),
(UNHEX('09073FB1CFE486E6DB0819997199754D'), 'wp-includes/js/mediaelement/mediaelementplayer.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0687E33E84A860C33A3A885193A6D937')),
(UNHEX('1B1241945ACAE59396CC854C05839B28'), 'wp-includes/js/mediaelement/skipback.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD6DC830EB45B3A5A96BBC936FF54846')),
(UNHEX('AD9D9A9553C768DEEBE153D025547AF8'), 'wp-includes/js/mediaelement/wp-mediaelement.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('00F8EB37D4873AFF33559BE1AB3A5DA0')),
(UNHEX('FB4481CF10E1EA5DE69F7CDFBCAA2499'), 'wp-includes/js/mediaelement/wp-mediaelement.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D889C99F04A39573D4BE5B346C6272F')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('B31CE84D0C139FE97E0ACF547C020EB7'), 'wp-includes/js/mediaelement/wp-mediaelement.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('74CA084F6791AF45527BE4B531909512')),
(UNHEX('FEEAC6F6D51B4EBA0CB739A5017BAE3B'), 'wp-includes/js/mediaelement/wp-mediaelement.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8E7A4405D35139F62871A539516679A1')),
(UNHEX('361718DB18DADF17A81C582F80BF484C'), 'wp-includes/js/mediaelement/wp-playlist.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AAF77F7481F419F5F8C46AE338820443')),
(UNHEX('CBA4D490927B25106BF2A58E23B666DB'), 'wp-includes/js/mediaelement/wp-playlist.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('264563E94E2D16B1066BD413EBC592DE')),
(UNHEX('4A10FE890C455BA57F3755D2D31AEF7E'), 'wp-includes/js/plupload/handlers.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7A8494F68FF136D5BF92A075FA61DFE0')),
(UNHEX('8FDC3B28587060D299D6EC9170DDB708'), 'wp-includes/js/plupload/handlers.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A08D4288293BFBCD0D198F7AA3EDA619')),
(UNHEX('CC568DDAAE999CC612EA4DAFE96AD381'), 'wp-includes/js/plupload/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('751419260AA954499F7ABAABAA882BBE')),
(UNHEX('C343B6339D213051F26F954ABF652060'), 'wp-includes/js/plupload/plupload.flash.swf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('370D768E45524F47FBD2988974D3D76C')),
(UNHEX('22C2E10BFBC286B26384ACCC39D01D26'), 'wp-includes/js/plupload/plupload.full.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A431FB4049B24566D27C12E2793D818')),
(UNHEX('20E270283F516EED0788ACD56181DB5A'), 'wp-includes/js/plupload/plupload.silverlight.xap', 1, UNHEX('00000000000000000000000000000000'), UNHEX('747100C185CF33F6588930A5941D62F7')),
(UNHEX('354382290A5775BEEABD9D2F46D2634B'), 'wp-includes/js/plupload/wp-plupload.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('2B6F0CC54E381FD52F3A3726E09C1D07')),
(UNHEX('FF4CD9F3EAF3906535783F653DE68826'), 'wp-includes/js/plupload/wp-plupload.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C74A0F866C5DFD1DC9A45474651F6EF')),
(UNHEX('EC3FD8D4DEFDB7689BB10290D217CE3B'), 'wp-includes/js/quicktags.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('481E904DD706F51AF4BF2FAA4070165B')),
(UNHEX('DF8CF207912883A9A989D5DB3281E1E8'), 'wp-includes/js/quicktags.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A365C2FCD52566AE9FD3DB9A28C673D')),
(UNHEX('CB8DE547E4AF806F1B65B7FFEF6F9C1C'), 'wp-includes/js/shortcode.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FC8CB580E0EDC5CDA1A550747D0DE6C9')),
(UNHEX('67F5E45D6252062588205A1D8DDB45BA'), 'wp-includes/js/shortcode.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B342D56A90B09ADFAD6D95A4717C0B24')),
(UNHEX('B54F97721023BDD4FD54BA478717BF21'), 'wp-includes/js/swfobject.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9FFDBA2CFF497D701684657E329871F5')),
(UNHEX('F2B096FC4DC2D9A64DC62F0C7F60BC18'), 'wp-includes/js/swfupload/handlers.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('14B2D04FDB85BC1F171CF3DFB2987DCA')),
(UNHEX('C56023E3D8479662AF43D0E51BD68ACE'), 'wp-includes/js/swfupload/handlers.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('96592C6B3FAD580CE04E12BC3047EF3B')),
(UNHEX('9A1A2DAE947837C3F92841C434F9BBE7'), 'wp-includes/js/swfupload/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CBE05BB060C85E07882DC06FF751577A')),
(UNHEX('EF443D4AC785122F13030936DE836185'), 'wp-includes/js/swfupload/plugins/swfupload.cookies.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FA57EC00DDA88DD6B5C2037CCB4D5CF')),
(UNHEX('E7A96CDA584E454D08CA43675673413A'), 'wp-includes/js/swfupload/plugins/swfupload.queue.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9953522FBD4A1B02BBF635A92D76CD8F')),
(UNHEX('2C42DA030C63C5DDD6D49B5AF90E3459'), 'wp-includes/js/swfupload/plugins/swfupload.speed.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('415A3787846BB6C2D745602C2AFB73AC')),
(UNHEX('B9F924CB3C40E399C59861F4ABD56322'), 'wp-includes/js/swfupload/plugins/swfupload.swfobject.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CCB51571A75637DB08545CAAF2ED9E73')),
(UNHEX('8AC124A1D6784D313EE8B25F3850000B'), 'wp-includes/js/swfupload/swfupload.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6CD370BFD4D86C44AC155FD913E971AC')),
(UNHEX('2A7424AADF8B76C3D16EE58116DD73F1'), 'wp-includes/js/swfupload/swfupload.swf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BD5A25F23589652CA472D41FE1484F0C')),
(UNHEX('C2FD0931AA07F5D090E3808581533A28'), 'wp-includes/js/thickbox/loadingAnimation.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CE2268030DD2151B63CDF4FFC2F626BA')),
(UNHEX('E9D4DEE27493FE985A01D14F2783200A'), 'wp-includes/js/thickbox/macFFBgHack.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('189217C8B067EF86ADD757922C2F75B4')),
(UNHEX('92767B4CF64A6CC58D80597AD560B028'), 'wp-includes/js/thickbox/thickbox.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('805AA150A391E44E3245F25EA83BDFCB')),
(UNHEX('411945B6FB1FF4115B80608C11B78195'), 'wp-includes/js/thickbox/thickbox.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D5D248A8730754587B4224C2D9AD36C7')),
(UNHEX('393AF99764AF6F0A91F070605279A8A2'), 'wp-includes/js/tinymce/langs/wp-langs-en.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('08F8669F7453B17563A62E6BBB376137')),
(UNHEX('970976BE134F2E04847CDFA417D2B582'), 'wp-includes/js/tinymce/license.txt', 1, UNHEX('00000000000000000000000000000000'), UNHEX('045D04E17422D99E338DA75B9C749B7C')),
(UNHEX('1C9C0A19247ADF58A360CE0F08314277'), 'wp-includes/js/tinymce/plugins/charmap/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B450E5710839230572ADC66772782A89')),
(UNHEX('6B13827F88B824364FB3D22D4E8578A0'), 'wp-includes/js/tinymce/plugins/charmap/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('318A17CED489D313FA5D74038EF540A0')),
(UNHEX('4161F7404AA7F703F3F1C2D7C581B71C'), 'wp-includes/js/tinymce/plugins/colorpicker/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22538C49F524050BD8300B44526ABC2A')),
(UNHEX('2C3C930CAA20DF3F17435DE1300B418C'), 'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E86C1CECC74753DCC8B63784C0815A3')),
(UNHEX('0248438318ECDC21F303ABAA11222888'), 'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E5313168FB2B657A4BD2F5E06B931A22')),
(UNHEX('0E676FAC739C56E3A33BEDC7FF850A24'), 'wp-includes/js/tinymce/plugins/compat3x/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0BCFA3158493FCC012B28CC71CF62C12')),
(UNHEX('305D8119714B27FB669878C1BBCFE3A8'), 'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3834EAC105922686E034799A66A771CB')),
(UNHEX('CB2181A223F2B0D5497C1B8F82DB46E9'), 'wp-includes/js/tinymce/plugins/directionality/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5F21385B1F4513568D611D595040D141')),
(UNHEX('26BC8B5D3057F1EC0A2913FF3D92BF03'), 'wp-includes/js/tinymce/plugins/directionality/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78302F1959B7A828BBA2949C70FFE5F9')),
(UNHEX('87171681F2509377AAA98D30E268FF39'), 'wp-includes/js/tinymce/plugins/fullscreen/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AE983B9A7A8D0AD43CAD5EF5AD85C1AB')),
(UNHEX('73DEC58F5527F7EC14C06540A1648B1F'), 'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F70177AF61C65044AAA0A18594338F3C')),
(UNHEX('E1F15C39C3A33E9C189F84497A349363'), 'wp-includes/js/tinymce/plugins/hr/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('428C9FB47A7B83FA0440A15886D0B11A')),
(UNHEX('A0BE8E7686925C51149CA5C02DBCCA17'), 'wp-includes/js/tinymce/plugins/hr/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('831204A97DA9FA6B6784885A930A2743')),
(UNHEX('CF808D7418471DC8A99D04C8C08BA444'), 'wp-includes/js/tinymce/plugins/image/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7F7E4215EF62B1621A3479411D621A9B')),
(UNHEX('BB09E6E3E3456D5BA5ACB3C7D86CC53C'), 'wp-includes/js/tinymce/plugins/image/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('70E32E47FC0E319BF3558D21C537E983')),
(UNHEX('21D55295E10B9B70FB6E4CD177E26D37'), 'wp-includes/js/tinymce/plugins/lists/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('951AFF9CE655DAA3FA7EF637B9841C9F')),
(UNHEX('DD4A3006CFF5A7C96AA05967DA68A30B'), 'wp-includes/js/tinymce/plugins/lists/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C9262830210151BA3773C4AD358067AC')),
(UNHEX('A0A5645D0046D6186D081FC5B270B244'), 'wp-includes/js/tinymce/plugins/media/moxieplayer.swf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4E59D34EFB2DA0B9A033596A85E4B1EF')),
(UNHEX('60F6A6943BA022AD2DB9FFC82B7E043B'), 'wp-includes/js/tinymce/plugins/media/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5EF80C55F07303AF4E086692F247C1E9')),
(UNHEX('C6858E908B06877C5FCB692F79A1D209'), 'wp-includes/js/tinymce/plugins/media/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('900194F71EF56CB47D027A61ED75C1C9')),
(UNHEX('FC98958CB51CC6AA71A5E682B38B0CD0'), 'wp-includes/js/tinymce/plugins/paste/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('89DCD2E2EA2DD86ABE9C00761B806A9C')),
(UNHEX('D92C28A1691C0F373A5ECC5E10E78923'), 'wp-includes/js/tinymce/plugins/paste/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('38D2137A5518E2BC7A88B4BF35C4FFCA')),
(UNHEX('78EB8D82829F407D59C7038C69CB2B7F'), 'wp-includes/js/tinymce/plugins/tabfocus/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A5D784C2AC2CE5F64E0968C35492F03')),
(UNHEX('93F0AB760FEEADF9C30E7CDF2DF0C917'), 'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DCE840159A3F860C4FF689AA2CD11428')),
(UNHEX('3F5DFD50FB2E0EA39831FFB483CC3262'), 'wp-includes/js/tinymce/plugins/textcolor/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5272A99516C467771EF3076422BEB18F')),
(UNHEX('CD93DF59E13336BEE96CE7805918ABB0'), 'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E10227DE7811E15DC17A31ABF79B9338')),
(UNHEX('FD47FE9DB2212368D41113390984F226'), 'wp-includes/js/tinymce/plugins/wordpress/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C3C8B527B2177FE3C1065D5812B86F48')),
(UNHEX('02751EDEC773B69B793627762CAADE3D'), 'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12F8CFC114D4644E0A8DCB4784A63A79')),
(UNHEX('2E20D3005F6F45FF5D41B55FD430504A'), 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('640CBC0058638C4FB0400370DBCF25A3')),
(UNHEX('FAE2907D87DBE1B350C39B99505CA91A'), 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8607E87DCBB351D067D1A54485E8A357')),
(UNHEX('09503D4E3E8CA862226A3A7E5B517BE1'), 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('06F7AECB5BDFA28739EEA0A498D15A81')),
(UNHEX('33DBD5E91C1C27BAB0C1524B9A4266FD'), 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EAFBB1478981E337981D287474E240B8')),
(UNHEX('3CEFCE75EABF961ADC9CB5C70B59D45E'), 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('458EA8A81563CE8EAA88303F659FE146')),
(UNHEX('CB36A03CA5CA43EAEFAEBFB9563A2872'), 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4A2D07EE67FFB1C5B76B2AC486216057')),
(UNHEX('6A9B5E8189E3A3DB9D68F13895AEE79F'), 'wp-includes/js/tinymce/plugins/wpembed/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CF382AF5522FA9A0BB3F049225DE14EF')),
(UNHEX('CE8AC3598328658AA45F62C5576A5FB0'), 'wp-includes/js/tinymce/plugins/wpembed/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7EC45BCBE992C74C095A75BB2D2CF0FF')),
(UNHEX('F2D22506AF00FACA7A9466C04EC87053'), 'wp-includes/js/tinymce/plugins/wpemoji/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F77A6131C150653DDFA17A568A1962D0')),
(UNHEX('BF40EA11C92CD0086E5C96809D2B6BB7'), 'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C6CC2CE4842CF34494B20855418EC7EE')),
(UNHEX('75BFDC33217041B3668529520FAF4DDB'), 'wp-includes/js/tinymce/plugins/wpgallery/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9D48345044E6111FBEB9D2FB444D5C49')),
(UNHEX('EB4FD3BF10FA3B0EA43D5C144ABC7A79'), 'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('04FB37608EF94F9A747901B2F98B4FCE')),
(UNHEX('086B981591B203D0126285C967538819'), 'wp-includes/js/tinymce/plugins/wplink/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('006614E9B8BC45C0C876A438BA68924B')),
(UNHEX('4CF78529D1D96124AD442DEFD3AEAA4A'), 'wp-includes/js/tinymce/plugins/wplink/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('4AFCED1F9AB8700E47F31367BE6FE7F5')),
(UNHEX('22054574C97988739FC3EDDE1A7C1567'), 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BBE31109BB4A2955AC73C0B0AC1E8D8C')),
(UNHEX('332B7AC0FF2E86B182360E517E5D795B'), 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A92E4569E92450776F18E0BB6DDAE1B1')),
(UNHEX('E3E11E71D53832BDFA1F76C22614234D'), 'wp-includes/js/tinymce/plugins/wpview/plugin.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('273623256BA39EA22D7706E94FA7A706')),
(UNHEX('16576C85D8793ACF00566E6084640096'), 'wp-includes/js/tinymce/plugins/wpview/plugin.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('36CBCBB2F625BB726DFCCD3F5B47F253')),
(UNHEX('E15AB18EAE283E28AA3162DEAB945AEA'), 'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('07CB8D19850CDF59CD8AA2BA8D3ECCA8')),
(UNHEX('02DE1994E4A5EA1C37992687F20CC880'), 'wp-includes/js/tinymce/skins/lightgray/content.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A163C2A2E85D1C363E181B3C57F30D8A')),
(UNHEX('BE92288E5B0E333FD3482F875BB0655D'), 'wp-includes/js/tinymce/skins/lightgray/fonts/readme.md', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7A0F64800CF38B2BE8D3DC4540EC31DD')),
(UNHEX('19FBB33ED92FE1A1875FF318B3E9C3C0'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12D26C285B71D790F4B0C94423EF1F99')),
(UNHEX('7CA09A84E52C5ED56A0BF6808F17246E'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FCF1AB0BBAD7D5BE115CAC9FFB360A2B')),
(UNHEX('123AB25890E632EC4DD3FED67EFBC818'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A2A1F732CC34764C684ED521C6F3327C')),
(UNHEX('6017CEFEC7531194604E498B5E47EF08'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('28806940C647CF671BEBF4AE0630E570')),
(UNHEX('8FFB7418F730C367F1BB61862FC5FD9E'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7E0C88F02DCAF2F78C90B4DC7827B709')),
(UNHEX('760CDAB4A1E5C7D656B9BDD84BB5FA50'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6196B6EB25B52AC8BBE4A94E6DA8AE27')),
(UNHEX('7F16605EE058B8FE5F64D8BE9623B30D'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.json', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BFF751D0BDDE38EEBBE0C90DF8A510CC')),
(UNHEX('9D51A0B2C1CCD481EF328A3775EDA04C'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7262D908F15434EC7C3AE2126BC87350')),
(UNHEX('50E38501F130B981618BBC52D37A3D20'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AEFBFCB02F143D3B3D3E47FF3DE8EFB1')),
(UNHEX('B81AE413A1AF6CEECEDEF93317C88AC2'), 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A7A41EA9358B658EC53E9D042334C1A8')),
(UNHEX('F5A586C2D8DE3E192B1BDC9E4C5BEE6D'), 'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ABD3613571800FDCC891181D5F34F840')),
(UNHEX('4C1F3C23B3F313861AD27FE1BCD3DC7D'), 'wp-includes/js/tinymce/skins/lightgray/img/loader.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('394BAFC3CC4DFB3A0EE48C1F54669539')),
(UNHEX('6F50F0FB1463998781EC6FA92EE47214'), 'wp-includes/js/tinymce/skins/lightgray/img/object.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3726450D7457D750A2F4D9441C7EE20')),
(UNHEX('9858B8D4CDEC6735FBF49FBC289D3D63'), 'wp-includes/js/tinymce/skins/lightgray/img/trans.gif', 1, UNHEX('00000000000000000000000000000000'), UNHEX('12BF9E19374920DE3146A64775F46A5E')),
(UNHEX('BF3C7B91C1BB872C2DCC02215B4D80FA'), 'wp-includes/js/tinymce/skins/lightgray/skin.ie7.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AB035D1D6FD828A1530EE6B2DF22E70A')),
(UNHEX('D9FE033ECF7EE421F0AA67C50C718B98'), 'wp-includes/js/tinymce/skins/lightgray/skin.min.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('27FE3311345B14CC022A9682A0E658DA')),
(UNHEX('C4885E41F59A2B6C86AEAC6FF86489D2'), 'wp-includes/js/tinymce/skins/wordpress/images/audio.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('377E21E6DFE0008EF7C6D4FD2208770B')),
(UNHEX('46488C8EBC3301306D8F3ABDB8739BB6'), 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7852DE09AC59B5589ED4DBDDA4E4DEE6')),
(UNHEX('ECA1E763DAC62E4417C272BF207CF6EE'), 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('52D0C08FE45ACA3F662E81C738F5E209')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('04C8840794CED3781879A8E581F58BD6'), 'wp-includes/js/tinymce/skins/wordpress/images/embedded.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F58DAAA070DD4EA21BD6790F7EC36E22')),
(UNHEX('46C101F4ACC3835C9F4FE7A1660C67EE'), 'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1ECAEE31EC029DED0E18F576958A5214')),
(UNHEX('B25F66F4E7B21C3B77D061CBD9DA81B1'), 'wp-includes/js/tinymce/skins/wordpress/images/gallery.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A1065FB19F8C105077F9B4501055DB34')),
(UNHEX('46019648C89D6CEB6593C916011B23DD'), 'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C2CD70B1C8972CF25B85E1E78A5251E')),
(UNHEX('4E8F33DD6A4070753593ABB6BF5E9B86'), 'wp-includes/js/tinymce/skins/wordpress/images/more.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FCB7BCD40ABC0A6D003BFC0FCBABE67A')),
(UNHEX('FA8AAD7E858B0C610F25A1EB211EBB50'), 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7BCE36BF2355513AF7917C193E23EBD6')),
(UNHEX('07BDBD9323AD90F9DB15093E1CFB0437'), 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E449E3DA6DC51F85FC4C571179DD9348')),
(UNHEX('94984086BB7BF74AA4E1AB35E4B7B458'), 'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('552CFB3A29AC01A0D88B0422C5517159')),
(UNHEX('37AB2557797ED7B9503F0F10AB78F2E7'), 'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A56C7A563660776D5A421C730B8DCFD6')),
(UNHEX('DE335EEBCB504D9F5998E6ED488844D8'), 'wp-includes/js/tinymce/skins/wordpress/images/video.png', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D0C2B6F7A042A93D0D7ABB1E83336AC1')),
(UNHEX('DBAAF2EAF7092EE6D5B8DF5CBEF20EAF'), 'wp-includes/js/tinymce/skins/wordpress/wp-content.css', 1, UNHEX('00000000000000000000000000000000'), UNHEX('78532B5F1FEDA917CA31DC124122036A')),
(UNHEX('80916168A423D4ED38ED63F19CC20583'), 'wp-includes/js/tinymce/themes/inlite/theme.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF6758C8F83385D2E839E15E12463720')),
(UNHEX('C60999B72341A90A230262231EFCA03D'), 'wp-includes/js/tinymce/themes/inlite/theme.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('072D29E6B3B22EF87EC8AF8A3A79B924')),
(UNHEX('722B7A6B3BBB2005340618AFE6574913'), 'wp-includes/js/tinymce/themes/modern/theme.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E873CD5A3AC205304D4F48B8D106AA35')),
(UNHEX('6E23A9743D95278592C1DEF5625D7BF1'), 'wp-includes/js/tinymce/themes/modern/theme.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('020976230A9FCDC90EBC06144DCB9865')),
(UNHEX('822874546C44CEAC372687B34D502EC0'), 'wp-includes/js/tinymce/tiny_mce_popup.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DBE62082422B75D89ECB983409EC966D')),
(UNHEX('09D639848366DE88559C66F2FEE6079C'), 'wp-includes/js/tinymce/tinymce.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F1E10E7C01E44DB33C5003D897EAF85')),
(UNHEX('476DB9993A86074DC4BE56C0914CD089'), 'wp-includes/js/tinymce/utils/editable_selects.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('EB642A0ABA7A8666A7B1472230FCB374')),
(UNHEX('2AD1FE8F4C12ED6D262632FDD50A6215'), 'wp-includes/js/tinymce/utils/form_utils.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F9C61354383F5A50A9A77B902DFDAE7F')),
(UNHEX('ECB883FA7615C8DB36E09A3B980E7E8F'), 'wp-includes/js/tinymce/utils/mctabs.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B9B50DDBE07C754A6B656B0FDADA3500')),
(UNHEX('344149178E6E12303988860F37026360'), 'wp-includes/js/tinymce/utils/validate.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C42B5160BDBEFD1293D76B30520757F4')),
(UNHEX('FC1127F1FA9983E6B3D77DB5908D9D30'), 'wp-includes/js/tinymce/wp-tinymce.js.gz', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AE89B4F452465B662619B182F6F1C4E')),
(UNHEX('CFC2C813ADC10B48D4B9F2DC66EB6BE1'), 'wp-includes/js/tinymce/wp-tinymce.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8A620AB81DC7307F7072B1D312924876')),
(UNHEX('1270DB9ED4324E1C3C3A5AA537BB7282'), 'wp-includes/js/tw-sack.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B989A5BD84F6EBCBC1393EC003E6E991')),
(UNHEX('8BBA14B0C568142BB9AB42CCC6F21DD0'), 'wp-includes/js/tw-sack.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BC4487194E1F88126B8A500AD47E6889')),
(UNHEX('CFE98BADA1827B5EAA074D552AF48D5F'), 'wp-includes/js/twemoji.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BE2F6B80D0307857A83D0B17B9F24D2D')),
(UNHEX('4DE53B43E5CC02CFD5D5385979EFB28F'), 'wp-includes/js/twemoji.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('467EF54BFF10851A04064EEBC9837D52')),
(UNHEX('B275E6D83C65E7789BAE40D688C2883E'), 'wp-includes/js/underscore.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6A3A434A1360CC744341E97DE9177BC6')),
(UNHEX('3CE6686AD8098E34BDBB983461D032F6'), 'wp-includes/js/utils.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19EA0DA213EDA9C7BC4360F1D4C18B3C')),
(UNHEX('19FC0F2655580DE84C34147B9AE2D1D4'), 'wp-includes/js/utils.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F6E3D57217DE41FA3243331155452BB1')),
(UNHEX('13DC30E6BDE535CC1FB76D0B6B14E4ED'), 'wp-includes/js/wp-a11y.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('201A720227378280081F67809D781AB2')),
(UNHEX('D12F13B8873080DE0A2A37B866289BB6'), 'wp-includes/js/wp-a11y.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FADD746CDDDAAFB9978CBAB2E4E4580F')),
(UNHEX('5D2852AA262110E2C6313B993398EA12'), 'wp-includes/js/wp-ajax-response.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C404D2EBAB29A76E5A4EEF0A23C3EB10')),
(UNHEX('12758C293803464739A143B0289DB69A'), 'wp-includes/js/wp-ajax-response.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D37497D8AC9CC91EACC91B76CBFF30CC')),
(UNHEX('217C1128DF79CB57982A314F6F324375'), 'wp-includes/js/wp-api.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD75984F189D0A308E7F0FC70436E4EB')),
(UNHEX('D39FEE02F106C76D79AC2B0A661DE93A'), 'wp-includes/js/wp-api.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5B04D3AC5A88211004528A50437A0B3C')),
(UNHEX('93882E8F9976382D7F724AC595ED7151'), 'wp-includes/js/wp-auth-check.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99500DD54ADC76769E1A798A9725D765')),
(UNHEX('7455D22F4473A449DAA417DC737412E3'), 'wp-includes/js/wp-auth-check.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('99C97A7D6AD9E1BA06BBD76F29ECAAD6')),
(UNHEX('F4AD6AE5381DFA9CC8C48FC31AACB1F3'), 'wp-includes/js/wp-backbone.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FF08A91EBA7F4FB95BE7D5EB4A072D76')),
(UNHEX('303C9211CEC5C8FF6CDABFFEF64AADE2'), 'wp-includes/js/wp-backbone.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B978D3C20A25CA1D36C1688C298C8239')),
(UNHEX('18D492D7E3BE419F95D7D9F972AB8E5E'), 'wp-includes/js/wp-custom-header.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E62551D535DC3B007870E89F881EE21')),
(UNHEX('5A985F228CEA7EB44ACFC08F1BC9E4E4'), 'wp-includes/js/wp-custom-header.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('802BEE0E5F600483E0247F59B3B329B4')),
(UNHEX('B18B3DB79D2D58D48D6E7B5DB71B7066'), 'wp-includes/js/wp-embed-template.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D6C3FB049F657928EAC2CD9C7EEF6925')),
(UNHEX('BD905A2012F8904F19670A578B579232'), 'wp-includes/js/wp-embed-template.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C05D678A8197A72C4A44BF540017278A')),
(UNHEX('80D673536BDC69AB3C342763EC2D1336'), 'wp-includes/js/wp-embed.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8D94A6648C7A70C0496257BB2699599')),
(UNHEX('E64A7E5F6FB866996BB3A8F6F3BACF0B'), 'wp-includes/js/wp-embed.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5A03F97CC479B9F5D7EFDACCEC31BC17')),
(UNHEX('7FE674721EB3CEB5461B5FEE20C3C7D7'), 'wp-includes/js/wp-emoji-loader.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E34797CB4169E053E6D526294921D66')),
(UNHEX('3BFC1DEDD9E2012A0B311A6EBDC334D3'), 'wp-includes/js/wp-emoji-loader.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F3EC21904CC0CF5D899F29E35B0B4612')),
(UNHEX('CADD0962A20CB79638CE5BBF90B6A579'), 'wp-includes/js/wp-emoji-release.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CB6284B70DA03A43468244BE7EAFA362')),
(UNHEX('008CFEE63B66F31BFA51EE3D2AC795C3'), 'wp-includes/js/wp-emoji.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DDC49AD0E4B146CC8FF73D976F1298BB')),
(UNHEX('5B923E9578823B14F2776E122F748D48'), 'wp-includes/js/wp-emoji.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1ACDD0CD523695BD920CCC418B0678C9')),
(UNHEX('BF99B83D563BA2178BEDEDC24E2E4B07'), 'wp-includes/js/wp-list-revisions.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('47510D7560D22A974C8C0EEC6E24BCBD')),
(UNHEX('4534EDD766750D23523A6B211E6A6768'), 'wp-includes/js/wp-list-revisions.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D252F431D400B696E25CA9FEC9A1113E')),
(UNHEX('9F6276BEC9154592ECB448D5C7E3CE84'), 'wp-includes/js/wp-lists.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A3AD4F080BD61DA2B9F2F9390B1533D1')),
(UNHEX('9639B565DD45F880627FDDBE6CB433A2'), 'wp-includes/js/wp-lists.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7DF18B42CBD5CBAA5067C06F57AA876B')),
(UNHEX('BF23B24175490C2E46AAF92FF6A0C70F'), 'wp-includes/js/wp-pointer.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('35CB8B380BBD1F2EAA723AC49BA5F3F0')),
(UNHEX('EAAFC787BE1DC6DB34CB93541F60A16B'), 'wp-includes/js/wp-pointer.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('368F987C644D70580097E48066C99082')),
(UNHEX('A43F3F6EBFEBE6E5FDE55F326790B76A'), 'wp-includes/js/wp-util.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('91C322750BC80F1CACFD4F991E65A415')),
(UNHEX('482B80457E997D0EA73151DBF0BDAED9'), 'wp-includes/js/wp-util.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('83118AA939B5832DD4E1CAD8B186012C')),
(UNHEX('F541346508F8EAC77BB95E9A8186D25A'), 'wp-includes/js/wpdialog.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72E8395FD44D4039009C5396888FA6BA')),
(UNHEX('DF97CF0B0651B5A675E221D9B678955B'), 'wp-includes/js/wpdialog.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D22D9FA5BB00BA0667080DA846C4A1BE')),
(UNHEX('9AB07774F248A9EBE1172D739300C26E'), 'wp-includes/js/wplink.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD437907913D9FF37C7B68191F011363')),
(UNHEX('DF0FE0D2C12289BB96BECD63296ADB22'), 'wp-includes/js/wplink.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CFF6FCC5B70652EE476588BC20884511')),
(UNHEX('FDA9D57F27E68042E2088AAD37531DC2'), 'wp-includes/js/zxcvbn-async.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('97A79E96A815B200139356055D752333')),
(UNHEX('4C28CAFDA26EF8395B1232C04336E59A'), 'wp-includes/js/zxcvbn-async.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3196E9B61F703909E139CE7E049A7FFD')),
(UNHEX('4AF2BE81ACB4CA4F68D3FDD07344D8BE'), 'wp-includes/js/zxcvbn.min.js', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A14CD5113BD0D57563C1A9B63CAE05F8')),
(UNHEX('A0E0D196DD71DDE453474B0F791828FE'), 'wp-includes/kses.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('416EC3D5F75FA24824AB1CAA1DC97F38')),
(UNHEX('10C9E8EB133A7F6DA1B05BDDA2AF3A23'), 'wp-includes/l10n.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6864CCCA7D1A1FD815F5442C76A4F73D')),
(UNHEX('CBEF1D76ED452CBF2D4FE47BCF01BA96'), 'wp-includes/link-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('592ABA670DDC2508B4E99C6693DBC349')),
(UNHEX('5F6A18F5F0875FB1A82FD4CCD679D3B1'), 'wp-includes/load.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C7F3D53D854B2C49B8D1BFE5A1B2DDF9')),
(UNHEX('4436066DCB658E727B704BE84F181092'), 'wp-includes/locale.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5FAC3F3E6E59E2BA781546E0E287F1AE')),
(UNHEX('61C6C50383C9FB286DE04542FD086CC9'), 'wp-includes/media-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6426AF25864EDA831F1AEB6EF84BC584')),
(UNHEX('297BF46A572D5F80513D3FED476CD2A2'), 'wp-includes/media.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('344CDA4F9953CA6D249C27C434303570')),
(UNHEX('7FDB4BFB51F07D1455263B2698EFD851'), 'wp-includes/meta.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6457957563F60630107C6AA86B2FFFBD')),
(UNHEX('1DD367B99B498621D9ADD1C7D6075FC6'), 'wp-includes/ms-blogs.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01F6A10C1A41B6D6867ACFE7D73EAD33')),
(UNHEX('6D41E7F059B7E0CAC0AE52627CDE538E'), 'wp-includes/ms-default-constants.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4E2D441BED3FD59246F9D8D4DF76977')),
(UNHEX('A4071E2EDD814215BEC0784B1291598C'), 'wp-includes/ms-default-filters.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('22369029D48F623B74CC6B96A913FE01')),
(UNHEX('A85BC26EC50F477BC3F927BEA2713A9B'), 'wp-includes/ms-deprecated.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DC5154FFEC9B60437F4D06054E5E8F1B')),
(UNHEX('EBADB70DE710217A7D4D4C9D114B8145'), 'wp-includes/ms-files.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6E5192E9E3BFBEBEDC13C62DB1F9A013')),
(UNHEX('BC76259F7F948C53B45BBFCCAAA3D1BE'), 'wp-includes/ms-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B46F2E627ED10EBACDA5BEB93D7848F6')),
(UNHEX('C35F16B497A76A5358E032CE1951513D'), 'wp-includes/ms-load.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6ECEE997DC34647439C978627CAE4F3D')),
(UNHEX('7F6A2686C25EFBCCF88C62B3F4048C98'), 'wp-includes/ms-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3FC17D4F9A78266E41CC6261E2E80188')),
(UNHEX('C50FAA117B41B8EA6D6DF910DF2A9D4B'), 'wp-includes/nav-menu-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D76833ACAA4D38BE4160B0D0F060F38')),
(UNHEX('A15BF6486E5B50D62E7EBDF0DF46557C'), 'wp-includes/nav-menu.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1D006BDE02BE15163ED480FE389F4778')),
(UNHEX('B64D52B2E66CC442109C07151146A575'), 'wp-includes/option.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFBCB9F197A4A3ACBECE4273287FEA66')),
(UNHEX('4E7CFEC2874AD0B2AA7A6ED7F6117377'), 'wp-includes/pluggable-deprecated.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E463B18764F9A900CCFE7EB7356A12C3')),
(UNHEX('6830582DC869FFBBD5E18D5ECC476038'), 'wp-includes/pluggable.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5610E0678F0495C7A33FC2D02FB99981')),
(UNHEX('E4F61B003087F9719FC48A4E792994D4'), 'wp-includes/plugin.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7AF5DB46A978AC913F8482108D4EC4A2')),
(UNHEX('0ECC200E87ECA10C4311AA5907968EF1'), 'wp-includes/pomo/entry.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ED9D811EF0CB13BDC0FA60B8314C8D61')),
(UNHEX('3438B2155674D412BA9A2B5E125807F4'), 'wp-includes/pomo/mo.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1AE9794CE9CA84552E5E7A332F168F65')),
(UNHEX('AAE65B4BBAEEE6628EC4DA320C3810B7'), 'wp-includes/pomo/po.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0AD8053B19FC235615E1569B977C6FC6')),
(UNHEX('9A31573B639FB69AB8B04EF1C022EF75'), 'wp-includes/pomo/streams.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('BEAC73A17CC41D2D138D3C69F1967080')),
(UNHEX('A7D31D923FDA9FA345BFCE14B6245046'), 'wp-includes/pomo/translations.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D1F31B54F938C2E5361A9542FDB55210')),
(UNHEX('9461B17455DA71B65E21E430C6A36C81'), 'wp-includes/post-formats.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('824AE252F1D6934C172A51293E1BCFDD')),
(UNHEX('4DFC90C149824DD4EFFCC0724490F52D'), 'wp-includes/post-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C69B77BAEA896FD3AC4DCAA3EA6427A5')),
(UNHEX('C3E16959969086851E007F0A52299684'), 'wp-includes/post-thumbnail-template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CD0D2FCF22D2D8A6E08AC3759FFD3BBC')),
(UNHEX('AB88B030116A886CB5530713D3FD4BF2'), 'wp-includes/post.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('603154B721AB8AD8F78D353F9B33B97F')),
(UNHEX('8E20E94124DBA46643814EF699330737'), 'wp-includes/query.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('3186A59AF5C093F04CDD8E3ABA5C81DF')),
(UNHEX('F64B460A4FF269F17D2CEDF6917701C7'), 'wp-includes/random_compat/byte_safe_strings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FC75C18C95D974A9FDB1B101F66F7969')),
(UNHEX('87C2D96FD477ACDBE5D08ED736393649'), 'wp-includes/random_compat/cast_to_int.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FA5F76745AC2D63B9466F130D35C7FB1')) ;
INSERT INTO `wp2o_wfFileMods` ( `filenameMD5`, `filename`, `knownFile`, `oldMD5`, `newMD5`) VALUES
(UNHEX('A810911BA276398562D424131F91134C'), 'wp-includes/random_compat/error_polyfill.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C25954E57E1AE32722FA6C840A55658C')),
(UNHEX('F6146AD8E6B2055AB7133B0A6CD093BC'), 'wp-includes/random_compat/random.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('878595E91EF1477C8C315B085F73319A')),
(UNHEX('7481A80C80FB912EA8C39595381631BD'), 'wp-includes/random_compat/random_bytes_com_dotnet.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1E6572BDE34C56CBC47374721CE19EDE')),
(UNHEX('3F32795421737CC0A874B0E688F7757D'), 'wp-includes/random_compat/random_bytes_dev_urandom.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('503C21CB3DB02DED66E01FF8614468BC')),
(UNHEX('9A9E94F3DF5B9D89F4443F5F851E5B9F'), 'wp-includes/random_compat/random_bytes_libsodium.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('818C88A4F866D417FADB7D1907F7AB3E')),
(UNHEX('F0A14E20B61EA2FB6904066916DAADF9'), 'wp-includes/random_compat/random_bytes_libsodium_legacy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F47E469A9C2DDEE526CA362C87E18551')),
(UNHEX('B9D42549851189E77D8C50F67A57ADC9'), 'wp-includes/random_compat/random_bytes_mcrypt.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('256CF4E9312F73C5806C8B291677D269')),
(UNHEX('FC5ED6BAE3F1930208535EB163D3FCCA'), 'wp-includes/random_compat/random_bytes_openssl.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B369564BFFC76D82449527930B638DBA')),
(UNHEX('D9D6339BCF49EA39385CD9D69BCC5B74'), 'wp-includes/random_compat/random_int.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('90E6DAF85D6D0D6956692BD49033ED38')),
(UNHEX('9E452D6AE0CA316AECA3CA0D02CF4593'), 'wp-includes/registration-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1C4B69CA4CD9B8538714B2483D0E5995')),
(UNHEX('355C683E0CF3CE77091D9D97870C4ECB'), 'wp-includes/registration.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D4F39E983366EA5C1B3FD4644B19AE06')),
(UNHEX('F9D1FF9AF4DFD08D33F83E23BC2EFB12'), 'wp-includes/rest-api/class-wp-rest-request.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CC6546B3D947F96A323580FAB32935C8')),
(UNHEX('87562B40FF3081F10EFC70B8C98F6869'), 'wp-includes/rest-api/class-wp-rest-response.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('08796D0CDA636C6A24BCEBBB73EF2C98')),
(UNHEX('083AEBADB2151463E087D75250650B28'), 'wp-includes/rest-api/class-wp-rest-server.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D858F4C5041D70D67BA4CC1DB9B035AC')),
(UNHEX('61E66169E7479DF6AC887DEFDE1A20B9'), 'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48A54973CFA2391245E05B9D29B7DC3A')),
(UNHEX('086B001AC19AE181197B0320DD9B36F1'), 'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B4EBF121D502F40F2BF39DC6682930C9')),
(UNHEX('892EA49478D6F60F517DE9740A7002F3'), 'wp-includes/rest-api/endpoints/class-wp-rest-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E537A25018F4556A4A3A73E60FC7E409')),
(UNHEX('CB7D556126676CC3E469B829BAEBC221'), 'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7D48BC4A38F3CF29197747E7177B9A25')),
(UNHEX('7194731EDF1B0C84B4C69EE0C3B9E5D6'), 'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('01C72B885D4628F5288CD064F8419A42')),
(UNHEX('337A27824FEF93E1A776FE4A26FFF320'), 'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('69DCE67251BFB4325F60F90BB9E769C4')),
(UNHEX('DF4C11238DA6B9E0E261B38F895720F1'), 'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('5C1B301929F07FE965FE55352740DD48')),
(UNHEX('437F63E88869469BD768E80C2E6E3794'), 'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('08A7DD22A433706834EE9268A98D8C95')),
(UNHEX('0571A88813E35F220F0CF1311915C946'), 'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F109B15EA7DAB111E098D503A76B4D30')),
(UNHEX('8EC11A2C1F7AF3D511A713D290945592'), 'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E627AE2B4C7C30188A6F8894350E7AF4')),
(UNHEX('DFC8A630E12024A2374F3E8DE9BFE00B'), 'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('42869651268312186F1C6509FB32DC05')),
(UNHEX('D0F4D203CFCD2CD9E17F1811F166EBD7'), 'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('414A3D6A753FAA994D79A478DE937E4A')),
(UNHEX('CDAA75B96F77734643B9475B6383EFAB'), 'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A017A8B39D5EB32722005BD8CD97C1F3')),
(UNHEX('EB0A6ADD8D656121E81A075764907110'), 'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0FB48CC8F80CEE5263765DBC44915F58')),
(UNHEX('17E0E357D04D466033CCDC24F7E61D0F'), 'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F7CF58A5ECE889C1722DE7F092364F68')),
(UNHEX('49362E3A0A28CDC01007F9690042F8CF'), 'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD80640AA3158963CD554BE3584AAF0E')),
(UNHEX('04B011C39A32E2B17FFB640E03CD3D01'), 'wp-includes/rest-api.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7C5FA149CBF77142643F65F54FF5C864')),
(UNHEX('5F02B0000CDFC56420954D507EDBEB44'), 'wp-includes/revision.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A64AAC575856CDE32FEF754FBA8DF20E')),
(UNHEX('29BE4F7A3D9C75A98717EEA308C4CBB7'), 'wp-includes/rewrite.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7FDB1E49EFCAD59217D02B5849F237B2')),
(UNHEX('FEE0A203BF77039BF1190827A2362907'), 'wp-includes/rss-functions.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('19FF1FAE31FD2D0338C7601BCB4BAF58')),
(UNHEX('82A7ACE3ED41BC13CEF28C311A853BA4'), 'wp-includes/rss.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C21D6D86E75BEF00FA6C4A0EC5E1CA3B')),
(UNHEX('39977D20425EBFB23F09EB9D22EB7F0C'), 'wp-includes/script-loader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('522B14B2A30A38273C2E2C7CE63236F7')),
(UNHEX('4568FBA1B0CBFDEDB9ECD0406171BB8C'), 'wp-includes/session.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D94561CEA0C5C13A609B9CDE5A7635D4')),
(UNHEX('566E650221CA7A3075310E3FAC12BF03'), 'wp-includes/shortcodes.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FE2F596608A20E34FED045E19065E819')),
(UNHEX('EFD15818123D55A117706670BE80C15A'), 'wp-includes/taxonomy.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('45CFA0F3B8644F8EB8EF296E25529E86')),
(UNHEX('843A7F2B5BF5B967BEA6435ADDD8F392'), 'wp-includes/template-loader.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('A745024F45F018741479BDCF5518F59B')),
(UNHEX('883A3D8F25C6CCE2BEF9A00F4DD4DBB5'), 'wp-includes/template.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('C178E46FABA05BD56821CA7809703568')),
(UNHEX('3E68D0A9EC58140C582AFF763195A9B9'), 'wp-includes/theme-compat/comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1822BA9F62E4BF3D510A7E4306E67D4B')),
(UNHEX('2238410A3DF21CAEE187BC6670350415'), 'wp-includes/theme-compat/embed-404.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8FAB25000FAFEE699FB4E76871ED02F4')),
(UNHEX('66D688F30CBDF9A6BC56EDD4B929E439'), 'wp-includes/theme-compat/embed-content.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D56B68C3883DF89DC813B2EAFA2901C')),
(UNHEX('FD2B0B715E65B795E9E36775CF46360A'), 'wp-includes/theme-compat/embed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('72B64C89BF45F2760C6133F7A3DD3649')),
(UNHEX('CD6D8D13A5024C304E22C8547EEC62DC'), 'wp-includes/theme-compat/footer-embed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('16841CF55ADC04AB84F22E932B96196A')),
(UNHEX('FE7F5119D6BF361193C87971E4A23838'), 'wp-includes/theme-compat/footer.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8C5FF873DC3098A5E46CCBBF909C377E')),
(UNHEX('26CE7641B9F651CDF46389DA7177382C'), 'wp-includes/theme-compat/header-embed.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('67962BA2C878829D26817766D258DCC0')),
(UNHEX('1F4CE41FE56250DE2D4906D7AD316680'), 'wp-includes/theme-compat/header.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('304C40BBA1DD25870A0BCEFFEFC25024')),
(UNHEX('E330973BEA2D2CD3411F15DE4579E60E'), 'wp-includes/theme-compat/sidebar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8087F37304AD86FF1748B4446C9A2C0A')),
(UNHEX('931D58E88156D7984F7C387D069A8082'), 'wp-includes/theme.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6008981D0C78D479B76037D4E25DE450')),
(UNHEX('F6CAED862BA202039AC771C97057A3C3'), 'wp-includes/update.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('1BB7AE9151520E3EC8AF790B39168DA1')),
(UNHEX('6BBDFA0F42CB9EE3623D790386DA1E12'), 'wp-includes/user.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('7530EB886EDB4A1CC488F12D582F14E4')),
(UNHEX('672B797289E4D0718480F68044A9B42F'), 'wp-includes/vars.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CDD1939EFCA2D5BAD7E9EC8D4A82CF80')),
(UNHEX('355AACCCE4E053CEBCE376D960369739'), 'wp-includes/version.php', 0, UNHEX('1C0AFC84D372FACFCF631F2963C603CB'), UNHEX('1C0AFC84D372FACFCF631F2963C603CB')),
(UNHEX('592C5170EA676D752397659F18B1BC7E'), 'wp-includes/widgets/class-wp-nav-menu-widget.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('AFBF19AD014DC6023920E44A101C4441')),
(UNHEX('F1B15459DB03501D704506F19D778693'), 'wp-includes/widgets/class-wp-widget-archives.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('ACFDCFD10301A0571225EC3145E241D2')),
(UNHEX('4930C57FF3B953FE2432A354D0FC422A'), 'wp-includes/widgets/class-wp-widget-calendar.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D631FE8ECD841DA8184557266FF63ADD')),
(UNHEX('52E3480D30FC8F218464911E3F632606'), 'wp-includes/widgets/class-wp-widget-categories.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('CAFD5F12E49B19F873E2AC26C2D12D26')),
(UNHEX('26E9A5B18698F1F25791B3D880D37CA1'), 'wp-includes/widgets/class-wp-widget-links.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('985F5C6F8A40F67F73DB1532F5EEEC53')),
(UNHEX('AB6ED6A2A1F90D920B563591198B2CD9'), 'wp-includes/widgets/class-wp-widget-meta.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F78AE934C6F1921AE6DE84A44574C355')),
(UNHEX('4BAF638E8A231C053273922F2885228E'), 'wp-includes/widgets/class-wp-widget-pages.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8F60DF1F5783A04980E94B19B027A632')),
(UNHEX('A416CC369086E8F37E65AA7BD0222E77'), 'wp-includes/widgets/class-wp-widget-recent-comments.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0BEFE107628F60D955235857B3A60F7A')),
(UNHEX('6C2F0A1CD17FD480B057C1CDB12D63CF'), 'wp-includes/widgets/class-wp-widget-recent-posts.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FD62C7F12F4F0187163736053E6DE33C')),
(UNHEX('1707818D7937AFD01F4D41E440A09A85'), 'wp-includes/widgets/class-wp-widget-rss.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('995CE71359DEADE3012B50D860499E27')),
(UNHEX('460DBA78D3777EDB0DDCB1B4E71B0AA6'), 'wp-includes/widgets/class-wp-widget-search.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('E056A6EB7EA3D066E5E3E7FB92328D1B')),
(UNHEX('A22D895B6970F99C055C5E98D8F3C15D'), 'wp-includes/widgets/class-wp-widget-tag-cloud.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('48F6469307BE6CF9887DE1B4E36C6C68')),
(UNHEX('9D0019C920899F6B7E8219A35535540F'), 'wp-includes/widgets/class-wp-widget-text.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('9EED6662626ED3DEC07D9BB180DC956E')),
(UNHEX('53DB0E1CCA26EB617A38F64AD8B639A7'), 'wp-includes/widgets.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('29DB8F190ADA723AE62348EF2279DBE2')),
(UNHEX('F840A8D2EA7342303C807B6CB6339FD1'), 'wp-includes/wlwmanifest.xml', 1, UNHEX('00000000000000000000000000000000'), UNHEX('DFD490B6F383EA02A269031FF05E8896')),
(UNHEX('4CC2118A651FA17422706328099265C7'), 'wp-includes/wp-db.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('D7318E6A1AB6AE542B3076A6B5E636ED')),
(UNHEX('28EF5EA6334E12BD9AA99391A2330812'), 'wp-includes/wp-diff.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('B8D2A2F2F34943B684B7E0250D342C2E')),
(UNHEX('9AFF995E90078F27BD7188C2EE3085EA'), 'wp-links-opml.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('55F5EEDA4F64271322D249C14685C162')),
(UNHEX('8F249D811BBBC0AA6AB6589E5D29443A'), 'wp-load.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('0C9F44118DAE384E454723318492AF4F')),
(UNHEX('DD11BA0D00464AC8E49642E1DE65E712'), 'wp-login.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('F49AAED6BC1D047DDC5E6EBEEA47EFFC')),
(UNHEX('B48333A0542E5E9DC6993CDE0FF7F814'), 'wp-mail.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('8D6C9E4DAB7697A044A22A96CD787068')),
(UNHEX('3B31D18B2312C1595F4E0F1C84A574F7'), 'wp-settings.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('FB589663AE16319C1E228EDF604125E9')),
(UNHEX('168C1C2C903423A28528E7230C170614'), 'wp-signup.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('496A6629F2AFD9E8274A180CB5CA0EF1')),
(UNHEX('6FE3AE9A2D01D73B3F583A8FFB70D2A1'), 'wp-trackback.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('253CB636365BFD99AF1E73462286437F')),
(UNHEX('34DA829CD94C24BC2C4B5B9C75CCE284'), 'xmlrpc.php', 1, UNHEX('00000000000000000000000000000000'), UNHEX('6C53E2FF076280C5CFC410A3C632C785')) ;

#
# End of data contents of table `wp2o_wfFileMods`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfHits`
#

DROP TABLE IF EXISTS `wp2o_wfHits`;


#
# Table structure of table `wp2o_wfHits`
#

CREATE TABLE `wp2o_wfHits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '200',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM AUTO_INCREMENT=2938555 DEFAULT CHARSET=latin1;


#
# Data contents of table `wp2o_wfHits`
#
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936253, '0.000000', '1550683363.990523', UNHEX('00000000000000000000FFFF7385FDD4'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936254, '0.000000', '1550683463.853298', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936255, '0.000000', '1550683651.232796', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936256, '0.000000', '1550683664.793193', UNHEX('00000000000000000000FFFF73A4AAC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936257, '0.000000', '1550683667.340502', UNHEX('00000000000000000000FFFF73A4AAC2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936258, '0.000000', '1550683690.359837', UNHEX('00000000000000000000FFFF73A4AAC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936259, '0.000000', '1550683691.631369', UNHEX('00000000000000000000FFFF73A4AAC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936260, '0.000000', '1550683692.746042', UNHEX('00000000000000000000FFFF73A4AAC2'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936261, '0.000000', '1550683701.006053', UNHEX('00000000000000000000FFFF73A4AAC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936262, '0.000000', '1550683702.479668', UNHEX('00000000000000000000FFFF73A4AAC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936263, '0.000000', '1550683703.618512', UNHEX('00000000000000000000FFFF73A4AAC2'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936264, '0.000000', '1550683845.771649', UNHEX('00000000000000000000FFFFB955BFC9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', '', NULL, NULL),
(2936265, '0.000000', '1550683847.091864', UNHEX('00000000000000000000FFFFB955BFC9'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936266, '0.000000', '1550683900.511452', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936267, '0.000000', '1550683931.232534', UNHEX('00000000000000000000FFFF3409493A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) JobBot/5.0 (compatible; +http://www.jobseeker.com.au/bot.html) Safari/538.1', '', NULL, NULL),
(2936268, '0.000000', '1550683933.721840', UNHEX('00000000000000000000FFFF3409493A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) JobBot/5.0 (compatible; +http://www.jobseeker.com.au/bot.html) Safari/538.1', '', NULL, NULL),
(2936269, '0.000000', '1550683951.147058', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936270, '0.000000', '1550683987.889685', UNHEX('00000000000000000000FFFF0D428B00'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936271, '0.000000', '1550684106.152807', UNHEX('00000000000000000000FFFF3624969D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/audit-manager-corporate-assurance-division/video/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2936272, '0.000000', '1550684178.825784', UNHEX('00000000000000000000FFFF36249668'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-presence/our-vision-mission-values/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2936273, '0.000000', '1550684240.174199', UNHEX('00000000000000000000FFFFB44C0FA1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/?p=297', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2936274, '0.000000', '1550684241.284340', UNHEX('00000000000000000000FFFFB44C0F22'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/combine-cycle-gas-turbine-ccgt/', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2936275, '0.000000', '1550684251.253612', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936276, '0.000000', '1550684325.727868', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936277, '0.000000', '1550684551.410738', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936278, '0.000000', '1550684621.015709', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936279, '0.000000', '1550684623.583538', UNHEX('00000000000000000000FFFF7B887453'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936280, '0.000000', '1550684624.708752', UNHEX('00000000000000000000FFFF7B887453'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936281, '0.000000', '1550684646.038449', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936282, '0.000000', '1550684647.229953', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936283, '0.000000', '1550684648.477524', UNHEX('00000000000000000000FFFF7B887453'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936284, '0.000000', '1550684694.032548', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936285, '0.000000', '1550684695.568923', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936286, '0.000000', '1550684703.872078', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936287, '0.000000', '1550684704.976656', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936288, '0.000000', '1550684706.226582', UNHEX('00000000000000000000FFFF7B887453'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936289, '0.000000', '1550684730.939524', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936290, '0.000000', '1550684733.139860', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936291, '0.000000', '1550684734.359257', UNHEX('00000000000000000000FFFF7B887453'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936292, '0.000000', '1550684742.983204', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936293, '0.000000', '1550684745.277406', UNHEX('00000000000000000000FFFF7B887453'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936294, '0.000000', '1550684746.675446', UNHEX('00000000000000000000FFFF7B887453'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936295, '0.000000', '1550684756.418619', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936296, '0.000000', '1550684851.323778', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936297, '0.000000', '1550684869.333342', UNHEX('00000000000000000000FFFF05BDAD96'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/tenaganasional.asp', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)', '', NULL, NULL),
(2936298, '0.000000', '1550684932.069177', UNHEX('00000000000000000000FFFF6A4ECD52'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936299, '0.000000', '1550684935.623952', UNHEX('00000000000000000000FFFF6A4ECD52'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936300, '0.000000', '1550684970.207749', UNHEX('00000000000000000000FFFF42F94214'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936301, '0.000000', '1550685151.360178', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936302, '0.000000', '1550685185.516800', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936303, '0.000000', '1550685282.744791', UNHEX('00000000000000000000FFFF2E041688'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0', '', NULL, NULL),
(2936304, '0.000000', '1550685451.228148', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936305, '0.000000', '1550685631.769787', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936306, '0.000000', '1550685751.356511', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936307, '0.000000', '1550685851.382978', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936308, '0.000000', '1550685852.771735', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936309, '0.000000', '1550685856.181710', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936310, '0.000000', '1550685856.243211', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936311, '0.000000', '1550685859.036108', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936312, '0.000000', '1550685860.194334', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936313, '0.000000', '1550685861.561402', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936314, '0.000000', '1550685861.569189', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936315, '0.000000', '1550685865.351460', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936316, '0.000000', '1550685866.572800', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936317, '0.000000', '1550685867.882358', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936318, '0.000000', '1550685867.922479', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936319, '0.000000', '1550685877.314739', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936320, '0.000000', '1550685878.454322', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936321, '0.000000', '1550685879.667553', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936322, '0.000000', '1550685879.670614', UNHEX('00000000000000000000FFFF0EC0D49A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936323, '0.000000', '1550685939.953030', UNHEX('00000000000000000000FFFF6A4ECD52'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936324, '0.000000', '1550685941.671538', UNHEX('00000000000000000000FFFF6A4ECD52'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936325, '0.000000', '1550686051.253165', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936326, '0.000000', '1550686061.564591', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936327, '0.000000', '1550686068.041399', UNHEX('00000000000000000000FFFF6A4ECD52'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', '', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936328, '0.000000', '1550686070.939379', UNHEX('00000000000000000000FFFF6A4ECD52'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936329, '0.000000', '1550686240.106822', UNHEX('00000000000000000000FFFFB44C0F96'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2F', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2936330, '0.000000', '1550686351.278492', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936331, '0.000000', '1550686493.451914', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936332, '0.000000', '1550686504.280091', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-release/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936333, '0.000000', '1550686505.471777', UNHEX('00000000000000000000FFFF0E8F0F32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936334, '0.000000', '1550686509.038814', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936335, '0.000000', '1550686510.460696', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936336, '0.000000', '1550686511.655476', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-declares-dividend-of-7-8-sen-for-fy2016/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936337, '0.000000', '1550686513.163865', UNHEX('00000000000000000000FFFF0E8F0F32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-welcomes-us-ambassador-to-its-clean-energy-power-plant-in-sabah/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936338, '0.000000', '1550686514.690874', UNHEX('00000000000000000000FFFF0E8F0F32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-signs-mou-with-iwk/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936339, '0.000000', '1550686516.070256', UNHEX('00000000000000000000FFFF0E8F0F32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-is-on-track-to-expand-its-business-in-china/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936340, '0.000000', '1550686518.537537', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-signs-term-sheet-to-divest-60-of-its-water-treatment-operations-to-siic-environment-an-sgx-st-mainboard-listed-company/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936341, '0.000000', '1550686519.996187', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-awarded-nrw-contract-worth-rm15-9-million/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936342, '0.000000', '1550686521.873746', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-bullish-on-growth-prospects/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936343, '0.000000', '1550686523.300475', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill%e6%88%90%e9%95%bf%e5%89%8d%e6%99%af%e7%9c%8b%e6%b6%a8/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936344, '0.000000', '1550686525.581202', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-yakin-dengan-prospek-perkembangan/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936345, '0.000000', '1550686526.854158', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-adopts-new-technology-for-water-leak-detection/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2936346, '0.000000', '1550686608.718710', UNHEX('00000000000000000000FFFFCF2E0DA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936347, '0.000000', '1550686644.378528', UNHEX('00000000000000000000FFFFCF2E0DA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936348, '0.000000', '1550686649.020710', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936349, '0.000000', '1550686650.630051', UNHEX('00000000000000000000FFFFAF88B188'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936350, '0.000000', '1550686651.313950', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936351, '0.000000', '1550686655.857321', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936352, '0.000000', '1550686656.859736', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936353, '0.000000', '1550686657.949227', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936354, '0.000000', '1550686668.031316', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936355, '0.000000', '1550686668.893329', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936356, '0.000000', '1550686669.845453', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936357, '0.000000', '1550686670.819337', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936358, '0.000000', '1550686684.992198', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936359, '0.000000', '1550686686.030968', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936360, '0.000000', '1550686699.652450', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936361, '0.000000', '1550686700.656953', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936362, '0.000000', '1550686701.641429', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936363, '0.000000', '1550686726.332406', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936364, '0.000000', '1550686727.333607', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936365, '0.000000', '1550686728.290857', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936366, '0.000000', '1550686743.135451', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936367, '0.000000', '1550686744.126055', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936368, '0.000000', '1550686745.122892', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936369, '0.000000', '1550686768.687824', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936370, '0.000000', '1550686769.746745', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936371, '0.000000', '1550686770.817444', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936372, '0.000000', '1550686796.988245', UNHEX('00000000000000000000FFFF284DA782'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-holdings%e4%b8%8a%e5%b8%82%e4%b8%bb%e8%a6%81%e4%ba%a4%e6%98%93%e6%9d%bf/video/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936373, '0.000000', '1550686807.888749', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936374, '0.000000', '1550686808.906698', UNHEX('00000000000000000000FFFFAF88B188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936375, '0.000000', '1550686809.962590', UNHEX('00000000000000000000FFFFAF88B188'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936376, '0.000000', '1550686932.614602', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936377, '0.000000', '1550686951.284188', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936378, '0.000000', '1550686991.788306', UNHEX('00000000000000000000FFFF284DA77C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936379, '0.000000', '1550687251.189148', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936380, '0.000000', '1550687365.893332', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936381, '0.000000', '1550687551.248988', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936382, '0.000000', '1550687805.070412', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936383, '0.000000', '1550687851.217145', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936384, '0.000000', '1550688151.694477', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936385, '0.000000', '1550688235.306080', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936386, '0.000000', '1550688275.120554', UNHEX('00000000000000000000FFFF7385FDD4'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936387, '0.000000', '1550688275.195313', UNHEX('00000000000000000000FFFF7385FDD4'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936388, '0.000000', '1550688451.173252', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936389, '0.000000', '1550688660.259093', UNHEX('00000000000000000000FFFF5B5AB142'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2936390, '0.000000', '1550688662.595476', UNHEX('00000000000000000000FFFF5B5AB142'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2936391, '0.000000', '1550688664.918093', UNHEX('00000000000000000000FFFF5B5AB142'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2936392, '0.000000', '1550688665.713906', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936393, '0.000000', '1550688666.947659', UNHEX('00000000000000000000FFFF5B5AB142'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', 'loginFailInvalidUsername', NULL, NULL),
(2936394, '0.000000', '1550688672.959753', UNHEX('00000000000000000000FFFF7B88769F'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936395, '0.000000', '1550688672.957531', UNHEX('00000000000000000000FFFF7B88769F'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936396, '0.000000', '1550688690.997359', UNHEX('00000000000000000000FFFF7B88769F'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936397, '0.000000', '1550688691.006557', UNHEX('00000000000000000000FFFF7B88769F'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936398, '0.000000', '1550688693.579297', UNHEX('00000000000000000000FFFF7B88769F'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936399, '0.000000', '1550688693.629114', UNHEX('00000000000000000000FFFF7B88769F'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936400, '0.000000', '1550688753.124035', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936401, '0.000000', '1550688787.034352', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936402, '0.000000', '1550688788.515315', UNHEX('00000000000000000000FFFF7B8876BE'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936403, '0.000000', '1550689051.161448', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936404, '0.000000', '1550689098.358199', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936405, '0.000000', '1550689263.600722', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936406, '0.000000', '1550689265.026424', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936407, '0.000000', '1550689283.815288', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936408, '0.000000', '1550689285.203036', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936409, '0.000000', '1550689286.321339', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936410, '0.000000', '1550689297.201100', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936411, '0.000000', '1550689298.571597', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936412, '0.000000', '1550689299.764379', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936413, '0.000000', '1550689310.633272', UNHEX('00000000000000000000FFFF284DA782'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/category/job/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936414, '0.000000', '1550689317.230077', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936415, '0.000000', '1550689318.330673', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936416, '0.000000', '1550689319.523147', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936417, '0.000000', '1550689351.145168', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936418, '0.000000', '1550689441.219382', UNHEX('00000000000000000000FFFF42F94214'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/water-supply-services/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936419, '0.000000', '1550689443.143601', UNHEX('00000000000000000000FFFF42F94215'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936420, '0.000000', '1550689474.498161', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936421, '0.000000', '1550689475.889066', UNHEX('00000000000000000000FFFF7B8876BE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936422, '0.000000', '1550689531.006635', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936423, '0.000000', '1550689651.172687', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936424, '0.000000', '1550689800.145971', UNHEX('00000000000000000000FFFF42F94216'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936425, '0.000000', '1550689823.946880', UNHEX('00000000000000000000FFFF36E3CBDC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36', '', NULL, NULL),
(2936426, '0.000000', '1550689934.543093', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936427, '0.000000', '1550689936.361686', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936428, '0.000000', '1550689937.441788', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936429, '1550689946.015977', '1550689945.510000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936430, '1550689944.456494', '1550689944.010000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936431, '1550689942.919493', '1550689942.440000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936432, '1550689941.337069', '1550689940.870000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936433, '1550689939.786498', '1550689939.310000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936434, '0.000000', '1550689952.137908', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936435, '0.000000', '1550689969.958847', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936436, '0.000000', '1550690251.132432', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936437, '0.000000', '1550690408.154012', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936438, '0.000000', '1550690552.148092', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936439, '0.000000', '1550690846.204266', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936440, '0.000000', '1550690851.138061', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936441, '0.000000', '1550691151.180915', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936442, '0.000000', '1550691282.940512', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936443, '0.000000', '1550691344.923097', UNHEX('00000000000000000000FFFF113A62EF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)', '', NULL, NULL),
(2936444, '0.000000', '1550691346.164926', UNHEX('00000000000000000000FFFF113A62EF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)', '', NULL, NULL),
(2936445, '0.000000', '1550691347.159642', UNHEX('00000000000000000000FFFF113A62EF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-ranhill/our-vision-mission-values/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)', '', NULL, NULL),
(2936446, '0.000000', '1550691348.136022', UNHEX('00000000000000000000FFFF113A62EF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)', '', NULL, NULL),
(2936447, '0.000000', '1550691451.269768', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936448, '0.000000', '1550691705.558342', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936449, '0.000000', '1550691751.389327', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936450, '0.000000', '1550691763.974367', UNHEX('00000000000000000000FFFF284DA782'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936451, '0.000000', '1550691816.963789', UNHEX('00000000000000000000FFFF9D372732'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936452, '0.000000', '1550691909.799280', UNHEX('00000000000000000000FFFF42F94216'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/feed/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936453, '0.000000', '1550692031.110866', UNHEX('00000000000000000000FFFFB956A464'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', '', NULL, NULL),
(2936454, '0.000000', '1550692033.317791', UNHEX('00000000000000000000FFFFB956A464'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936455, '0.000000', '1550692051.280174', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936456, '0.000000', '1550692070.910807', UNHEX('00000000000000000000FFFF9D372732'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/datuk-dr-nik-norzrul-thani-nik-hassan-thani/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936457, '0.000000', '1550692143.176359', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936458, '0.000000', '1550692353.207573', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936459, '0.000000', '1550692570.497760', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936460, '0.000000', '1550692651.142818', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936461, '0.000000', '1550692680.062302', UNHEX('00000000000000000000FFFF42F94214'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-saw-choo-boon/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936462, '0.000000', '1550692766.297119', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936463, '0.000000', '1550692768.386991', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936464, '0.000000', '1550692769.452230', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936465, '0.000000', '1550692951.188121', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936466, '1550692777.882383', '1550692777.410000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936467, '1550692776.344976', '1550692775.840000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936468, '1550692774.789030', '1550692774.330000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936469, '1550692773.239639', '1550692772.770000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936470, '1550692771.693696', '1550692771.240000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936471, '0.000000', '1550693011.479945', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936472, '0.000000', '1550693040.440103', UNHEX('00000000000000000000FFFF42F9425A'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936473, '0.000000', '1550693098.399617', UNHEX('00000000000000000000FFFF362494D6'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/records.php', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2936474, '0.000000', '1550693100.742514', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936475, '0.000000', '1550693103.069704', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936476, '0.000000', '1550693104.264310', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936477, '0.000000', '1550693251.263836', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936478, '1550693112.566072', '1550693112.040000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936479, '1550693110.936854', '1550693110.460000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936480, '1550693109.378837', '1550693108.900000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936481, '1550693107.861553', '1550693107.400000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936482, '1550693106.366203', '1550693105.880000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936483, '0.000000', '1550693254.846190', UNHEX('00000000000000000000FFFF9A757CA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)', '', NULL, NULL),
(2936484, '0.000000', '1550693358.655408', UNHEX('00000000000000000000FFFF284DA782'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/group-legal-executive/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936485, '0.000000', '1550693433.937766', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936486, '0.000000', '1550693539.905456', UNHEX('00000000000000000000FFFF284DA77C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/clean-energy/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936487, '0.000000', '1550693551.212574', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936488, '0.000000', '1550693568.495443', UNHEX('00000000000000000000FFFFCF2E0DA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936489, '0.000000', '1550693851.306518', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936490, '0.000000', '1550693867.557684', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936491, '0.000000', '1550693899.072958', UNHEX('00000000000000000000FFFF9D372732'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-signature-projects/amata-city-water-wastewater-treatment-plant/video/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936492, '0.000000', '1550694014.740949', UNHEX('00000000000000000000FFFF672FC102'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2936493, '0.000000', '1550694016.608779', UNHEX('00000000000000000000FFFF672FC102'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2936494, '0.000000', '1550694018.430287', UNHEX('00000000000000000000FFFF672FC102'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2936495, '0.000000', '1550694020.210654', UNHEX('00000000000000000000FFFF672FC102'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', 'loginFailInvalidUsername', NULL, NULL),
(2936496, '0.000000', '1550694151.242034', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936497, '0.000000', '1550694183.460368', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936498, '0.000000', '1550694185.321702', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936499, '0.000000', '1550694186.514524', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936500, '0.000000', '1550694298.977068', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936501, '1550694194.688565', '1550694194.220000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936502, '1550694193.163029', '1550694192.690000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936503, '1550694191.670230', '1550694191.220000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936504, '1550694190.184024', '1550694189.740000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936505, '1550694188.666877', '1550694188.120000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936506, '0.000000', '1550694319.688194', UNHEX('00000000000000000000FFFF45BFF9CA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'http://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'BLP_bbot/0.1', '', NULL, NULL),
(2936507, '0.000000', '1550694345.281617', UNHEX('00000000000000000000FFFFA2DE5188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936508, '0.000000', '1550694349.793619', UNHEX('00000000000000000000FFFFA2DE5188'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936509, '0.000000', '1550694392.622285', UNHEX('00000000000000000000FFFFA2DE5188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936510, '0.000000', '1550694394.425446', UNHEX('00000000000000000000FFFFA2DE5188'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2936511, '0.000000', '1550694451.306572', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936512, '0.000000', '1550694505.405041', UNHEX('00000000000000000000FFFFCFF1E878'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', 'http://web.archive.org/cache/http://www.investors-watch.com/wp-staging/ranhill/robots.txt', 'Mozilla/5.0 (compatible; archive.org_bot; Wayback Machine Live Record; +http://archive.org/details/archive.org_bot)', '', NULL, NULL),
(2936513, '0.000000', '1550694521.869800', UNHEX('00000000000000000000FFFFCF2E0DA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936514, '0.000000', '1550694722.506332', UNHEX('00000000000000000000FFFF284DA77C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936515, '0.000000', '1550694725.061300', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936516, '0.000000', '1550694751.313653', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936517, '0.000000', '1550694854.119620', UNHEX('00000000000000000000FFFFCF2E0DA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/privacy-statement/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936518, '0.000000', '1550695051.252510', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936519, '0.000000', '1550695113.980033', UNHEX('00000000000000000000FFFF7B7D476F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2F', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2936520, '0.000000', '1550695154.666391', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936521, '0.000000', '1550695351.284302', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936522, '0.000000', '1550695584.542821', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936523, '0.000000', '1550695651.406789', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936524, '0.000000', '1550695774.653535', UNHEX('00000000000000000000FFFFCF2E0DA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936525, '0.000000', '1550695951.329828', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936526, '0.000000', '1550696011.009691', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936527, '0.000000', '1550696043.517862', UNHEX('00000000000000000000FFFF362496B4'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/video/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2936528, '0.000000', '1550696254.408778', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936529, '0.000000', '1550696437.020187', UNHEX('00000000000000000000FFFFCF2E0DA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936530, '0.000000', '1550696441.904646', UNHEX('00000000000000000000FFFFB1345727'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2936531, '0.000000', '1550696446.126607', UNHEX('00000000000000000000FFFFB1345727'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', 'loginFailInvalidUsername', NULL, NULL),
(2936532, '0.000000', '1550696454.671102', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936533, '0.000000', '1550696467.868904', UNHEX('00000000000000000000FFFF71D27B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-N960F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2936534, '0.000000', '1550696469.384777', UNHEX('00000000000000000000FFFF71D27B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-N960F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2936535, '0.000000', '1550696551.599644', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936536, '0.000000', '1550696894.273464', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936537, '0.000000', '1550696903.687491', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936538, '0.000000', '1550697192.971360', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936539, '0.000000', '1550697246.522446', UNHEX('00000000000000000000FFFF9D3727FE'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/category/job/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936540, '0.000000', '1550697340.189924', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936541, '0.000000', '1550697492.973721', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936542, '0.000000', '1550697750.953175', UNHEX('00000000000000000000FFFF26633E5D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; evc-batch/2.0)', '', NULL, NULL),
(2936543, '0.000000', '1550697766.148483', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936544, '0.000000', '1550697794.297006', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936545, '0.000000', '1550697889.611779', UNHEX('00000000000000000000FFFF05FFFD1B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)', '', NULL, NULL),
(2936546, '0.000000', '1550697892.615540', UNHEX('00000000000000000000FFFF9D372732'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936547, '0.000000', '1550697892.870587', UNHEX('00000000000000000000FFFF05FFFD1B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/xmlrpc.php?rsd', '', 'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)', '', NULL, NULL),
(2936548, '0.000000', '1550698093.370901', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936549, '0.000000', '1550698198.094784', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936550, '0.000000', '1550698293.123465', UNHEX('00000000000000000000FFFF2EE5A88B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; SemrushBot/3~bl; +http://www.semrush.com/bot.html)', '', NULL, NULL),
(2936551, '0.000000', '1550698296.480336', UNHEX('00000000000000000000FFFF2EE5A885'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/', '', 'Mozilla/5.0 (compatible; SemrushBot/3~bl; +http://www.semrush.com/bot.html)', '', NULL, NULL),
(2936552, '0.000000', '1550698391.388370', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936553, '0.000000', '1550698591.989495', UNHEX('00000000000000000000FFFF42F94216'), 0, 404, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/governance.php', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936554, '0.000000', '1550698634.960229', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936555, '0.000000', '1550698691.449417', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936556, '0.000000', '1550698877.953654', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936557, '0.000000', '1550698920.399161', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936558, '0.000000', '1550698921.134265', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936559, '0.000000', '1550698923.308206', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936560, '0.000000', '1550698922.038640', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/whistle-blowing/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936561, '0.000000', '1550698922.178477', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936562, '0.000000', '1550698925.036747', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936563, '0.000000', '1550698922.776458', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936564, '0.000000', '1550698925.649373', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-vision-mission-values/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936565, '0.000000', '1550698927.299957', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936566, '0.000000', '1550698931.124344', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936567, '0.000000', '1550698934.679065', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-policies/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936568, '0.000000', '1550698935.431411', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936569, '0.000000', '1550698935.600993', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-releases/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936570, '0.000000', '1550698935.332171', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936571, '0.000000', '1550698937.370478', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/water-supply-services/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936572, '0.000000', '1550698935.917892', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936573, '0.000000', '1550698936.333157', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936574, '0.000000', '1550698937.435979', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/water-and-waste-water-treatment/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936575, '0.000000', '1550698936.674939', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/class', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936576, '0.000000', '1550698937.632251', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936577, '0.000000', '1550698937.863098', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936578, '0.000000', '1550698940.466813', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/clean-energy/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936579, '0.000000', '1550698941.081069', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/non-revenue-water/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936580, '0.000000', '1550698941.728885', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability-report/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936581, '0.000000', '1550698941.981904', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936582, '0.000000', '1550698943.106928', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability-policies/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936583, '0.000000', '1550698944.272942', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/whistle-blowing/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936584, '0.000000', '1550698946.226089', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/press-release/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936585, '0.000000', '1550698947.334981', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936586, '0.000000', '1550698947.700073', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/video/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936587, '0.000000', '1550698947.693954', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936588, '0.000000', '1550698947.882837', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/span', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936589, '0.000000', '1550698948.163067', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936590, '0.000000', '1550698948.207510', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936591, '0.000000', '1550698948.464415', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936592, '0.000000', '1550698948.914911', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936593, '0.000000', '1550698950.210861', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-policies/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936594, '0.000000', '1550698950.534017', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/whistle-blowing/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936595, '0.000000', '1550698950.882328', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936596, '0.000000', '1550698951.525926', UNHEX('00000000000000000000FFFF3AFC34B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36', '', NULL, NULL),
(2936597, '0.000000', '1550698991.456538', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936598, '0.000000', '1550699066.346270', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936599, '0.000000', '1550699175.109618', UNHEX('00000000000000000000FFFF42F94216'), 0, 404, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/the-managers-non-revenue-water-handbook/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936600, '0.000000', '1550699291.515674', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936601, '0.000000', '1550699339.856587', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936602, '0.000000', '1550699342.106573', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936603, '0.000000', '1550699343.211641', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936604, '0.000000', '1550699501.168906', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936605, '0.000000', '1550699502.662973', UNHEX('00000000000000000000FFFFCF2E0D0C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/?C=D%3BO%3DA', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936606, '1550699353.273527', '1550699352.750000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936607, '1550699351.678221', '1550699351.150000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936608, '1550699350.078574', '1550699349.610000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936609, '1550699348.520317', '1550699348.020000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936610, '1550699346.289283', '1550699345.790000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936611, '0.000000', '1550699591.526647', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936612, '0.000000', '1550699729.698104', UNHEX('00000000000000000000FFFF42F94215'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-technology/video/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936613, '0.000000', '1550699731.339419', UNHEX('00000000000000000000FFFF42F94215'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/video/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936614, '0.000000', '1550699746.422633', UNHEX('00000000000000000000FFFF42F94214'), 0, 404, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/07/video-300x81@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/media/video/video/', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936615, '0.000000', '1550699891.550556', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936616, '0.000000', '1550699935.923710', UNHEX('00000000000000000000FFFF9F459BEC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36', '', NULL, NULL),
(2936617, '0.000000', '1550699936.653232', UNHEX('00000000000000000000FFFF9F459BEC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36', '', NULL, NULL),
(2936618, '0.000000', '1550699938.715984', UNHEX('00000000000000000000FFFF9F459BEC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36', '', NULL, NULL),
(2936619, '0.000000', '1550699939.338579', UNHEX('00000000000000000000FFFF9F459BEC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36', '', NULL, NULL),
(2936620, '0.000000', '1550699944.900397', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936621, '0.000000', '1550699952.223030', UNHEX('00000000000000000000FFFF42F94215'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/tan-sri-hamdan-mohamad/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936622, '0.000000', '1550699954.231593', UNHEX('00000000000000000000FFFF42F94216'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936623, '0.000000', '1550700085.427332', UNHEX('00000000000000000000FFFFDAD478E0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com.sg/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936624, '0.000000', '1550700086.864399', UNHEX('00000000000000000000FFFFDAD478E0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936625, '0.000000', '1550700087.900670', UNHEX('00000000000000000000FFFFDAD478E0'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936626, '0.000000', '1550700191.481339', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936627, '0.000000', '1550700245.405316', UNHEX('00000000000000000000FFFF9D372732'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936628, '0.000000', '1550700260.162112', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-120x120-precomposed.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936629, '0.000000', '1550700261.414155', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-120x120.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936630, '0.000000', '1550700262.399431', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-precomposed.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936631, '0.000000', '1550700263.447189', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936632, '0.000000', '1550700264.658387', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-120x120-precomposed.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936633, '0.000000', '1550700265.682135', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-120x120.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936634, '0.000000', '1550700266.852544', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-precomposed.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936635, '0.000000', '1550700267.982213', UNHEX('00000000000000000000FFFF70CCEF17'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon.png', '', 'MobileSafari/604.1 CFNetwork/976 Darwin/18.2.0', '', NULL, NULL),
(2936636, '0.000000', '1550700375.598153', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936637, '0.000000', '1550700412.659240', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936638, '0.000000', '1550700414.412717', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936639, '0.000000', '1550700415.497344', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936640, '0.000000', '1550700491.436714', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936641, '1550700424.086877', '1550700423.590000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936642, '1550700422.539401', '1550700422.020000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936643, '1550700420.983792', '1550700420.450000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936644, '1550700419.394653', '1550700418.890000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936645, '1550700417.764261', '1550700417.240000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936646, '0.000000', '1550700794.473578', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936647, '0.000000', '1550700805.308686', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936648, '0.000000', '1550700931.475376', UNHEX('00000000000000000000FFFF42F94214'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/category/job/feed/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936649, '0.000000', '1550701094.424589', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936650, '0.000000', '1550701229.754525', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936651, '0.000000', '1550701393.470142', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936652, '0.000000', '1550701467.218581', UNHEX('00000000000000000000FFFF334D34A0'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936653, '0.000000', '1550701562.275635', UNHEX('00000000000000000000FFFF95CABC63'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Win64; x64; Trident/4.0)', '', NULL, NULL),
(2936654, '0.000000', '1550701660.900888', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936655, '0.000000', '1550701690.508493', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936656, '0.000000', '1550701990.481771', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936657, '0.000000', '1550702075.771969', UNHEX('00000000000000000000FFFF2501CC5C'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/403.shtml', 'https://www.investors-watch.com/wp-staging/ranhill/403.shtml', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36', '', NULL, NULL),
(2936658, '0.000000', '1550702093.342038', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936659, '0.000000', '1550702290.423393', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936660, '0.000000', '1550702433.319555', UNHEX('00000000000000000000FFFF05FFFD1B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)', '', NULL, NULL),
(2936661, '0.000000', '1550702434.441413', UNHEX('00000000000000000000FFFF05FFFD1B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)', '', NULL, NULL),
(2936662, '0.000000', '1550702436.674930', UNHEX('00000000000000000000FFFF8D088E55'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)', '', NULL, NULL),
(2936663, '0.000000', '1550702516.360856', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936664, '0.000000', '1550702591.075303', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936665, '0.000000', '1550702810.428842', UNHEX('00000000000000000000FFFF12ED4676'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/403.shtml', '', 'python-requests/2.7.0 CPython/3.6.8 Linux/4.14.94-73.73.amzn1.x86_64', '', NULL, NULL),
(2936666, '0.000000', '1550702813.562188', UNHEX('00000000000000000000FFFF12ED4676'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/403.shtml', '', 'python-requests/2.7.0 CPython/3.6.8 Linux/4.14.94-73.73.amzn1.x86_64', '', NULL, NULL),
(2936667, '0.000000', '1550702890.481967', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936668, '0.000000', '1550702942.450694', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936669, '0.000000', '1550703112.068952', UNHEX('00000000000000000000FFFF6A80011A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.co.jp/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936670, '0.000000', '1550703116.944841', UNHEX('00000000000000000000FFFF6A80011A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936671, '0.000000', '1550703121.913529', UNHEX('00000000000000000000FFFF6A80011A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936672, '0.000000', '1550703123.245143', UNHEX('00000000000000000000FFFF6A80011A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936673, '0.000000', '1550703124.558788', UNHEX('00000000000000000000FFFF6A80011A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936674, '0.000000', '1550703137.251296', UNHEX('00000000000000000000FFFF6A80011A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936675, '0.000000', '1550703138.588356', UNHEX('00000000000000000000FFFF6A80011A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936676, '0.000000', '1550703142.536922', UNHEX('00000000000000000000FFFF6A80011A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936677, '0.000000', '1550703143.840305', UNHEX('00000000000000000000FFFF6A80011A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936678, '0.000000', '1550703145.159823', UNHEX('00000000000000000000FFFF6A80011A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936679, '0.000000', '1550703170.058260', UNHEX('00000000000000000000FFFF77EC678D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'http://www.google.com.hk', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36', '', NULL, NULL),
(2936680, '0.000000', '1550703192.482129', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936681, '0.000000', '1550703202.907119', UNHEX('00000000000000000000FFFF77EC678D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/xmlrpc.php', 'http://www.google.com.hk', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36', '', NULL, NULL),
(2936682, '0.000000', '1550703207.820236', UNHEX('00000000000000000000FFFF7B886A09'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936683, '0.000000', '1550703210.638670', UNHEX('00000000000000000000FFFF7B886A09'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936684, '0.000000', '1550703211.674012', UNHEX('00000000000000000000FFFF7B886A09'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936685, '0.000000', '1550703217.341560', UNHEX('00000000000000000000FFFF677790FA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/?author=1', 'http://www.google.com.hk', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36', '', NULL, NULL),
(2936686, '0.000000', '1550703227.524747', UNHEX('00000000000000000000FFFF7B886A09'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936687, '0.000000', '1550703228.766360', UNHEX('00000000000000000000FFFF7B886A09'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936688, '0.000000', '1550703243.345308', UNHEX('00000000000000000000FFFFCF2E0D11'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936689, '0.000000', '1550703252.454179', UNHEX('00000000000000000000FFFF7B886A09'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936690, '0.000000', '1550703253.476415', UNHEX('00000000000000000000FFFF7B886A09'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936691, '0.000000', '1550703254.468226', UNHEX('00000000000000000000FFFF7B886A09'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936692, '0.000000', '1550703257.994232', UNHEX('00000000000000000000FFFF5F9A6893'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/?author=3', 'http://www.google.com.hk', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36', '', NULL, NULL),
(2936693, '0.000000', '1550703281.819257', UNHEX('00000000000000000000FFFF9D3727F5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936694, '0.000000', '1550703289.605040', UNHEX('00000000000000000000FFFFBD5B7306'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/?author=4', 'http://www.google.com.hk', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36', '', NULL, NULL),
(2936695, '0.000000', '1550703316.925333', UNHEX('00000000000000000000FFFFB90DE58A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/?author=5', 'http://www.google.com.hk', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36', '', NULL, NULL),
(2936696, '0.000000', '1550703330.327110', UNHEX('00000000000000000000FFFF8649C79A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/plugins/wp-easy-gallery-pro/admin/php.php', 'http://www.investors-watch.com/wp-staging/ranhill/wp-content/plugins/wp-easy-gallery-pro/admin/php.php', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36', '', NULL, NULL),
(2936697, '0.000000', '1550703371.833823', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936698, '0.000000', '1550703490.592110', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936699, '0.000000', '1550703532.607155', UNHEX('00000000000000000000FFFF42F95395'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/loong-mei-yi/', '', 'Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 5 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko; googleweblight) Chrome/38.0.1025.166 Mobile Safari/535.19', '', NULL, NULL),
(2936700, '0.000000', '1550703535.605896', UNHEX('00000000000000000000FFFF42F95396'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 5 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko; googleweblight) Chrome/38.0.1025.166 Mobile Safari/535.19', '', NULL, NULL),
(2936701, '0.000000', '1550703790.578716', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936702, '0.000000', '1550703814.148065', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936703, '0.000000', '1550703815.878202', UNHEX('00000000000000000000FFFF9D3727F2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/water-supply-services/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936704, '0.000000', '1550703861.198856', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936705, '0.000000', '1550703863.637325', UNHEX('00000000000000000000FFFF3C36612E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936706, '0.000000', '1550703868.545050', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936707, '0.000000', '1550703869.630715', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936708, '0.000000', '1550703878.334502', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936709, '0.000000', '1550703880.540300', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936710, '0.000000', '1550703883.110160', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936711, '0.000000', '1550703884.316057', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936712, '0.000000', '1550703954.257248', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936713, '0.000000', '1550703955.271613', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936714, '0.000000', '1550703959.829059', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/', 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936715, '0.000000', '1550703960.912610', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/', 'https://www.investors-watch.com/wp-staging/ranhill/media/video/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936716, '0.000000', '1550704087.136252', UNHEX('00000000000000000000FFFF73842E4B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.bursamalaysia.com/market/listed-companies/list-of-companies/plc-profile.html?stock_code=5272', 'Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936717, '0.000000', '1550704090.129810', UNHEX('00000000000000000000FFFF73842E4B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936718, '0.000000', '1550704090.694391', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936719, '0.000000', '1550704111.889071', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936720, '0.000000', '1550704113.704066', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936721, '0.000000', '1550704114.786132', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936722, '0.000000', '1550704227.669316', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936723, '1550704123.161062', '1550704122.690000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936724, '1550704121.634424', '1550704121.110000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936725, '1550704120.047448', '1550704119.530000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936726, '1550704118.445100', '1550704117.950000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936727, '1550704116.868745', '1550704116.380000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936728, '0.000000', '1550704229.828428', UNHEX('00000000000000000000FFFF3C36612E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936729, '0.000000', '1550704252.307261', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936730, '0.000000', '1550704264.870030', UNHEX('00000000000000000000FFFFB7AB57AE'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936731, '0.000000', '1550704273.600201', UNHEX('00000000000000000000FFFFB7AB57AE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936732, '0.000000', '1550704275.929427', UNHEX('00000000000000000000FFFFB7AB57AE'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936733, '0.000000', '1550704277.223196', UNHEX('00000000000000000000FFFFB7AB57AE'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936734, '0.000000', '1550704277.220523', UNHEX('00000000000000000000FFFFB7AB57AE'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936735, '0.000000', '1550704326.391685', UNHEX('00000000000000000000FFFFB7AB57AE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936736, '0.000000', '1550704326.528919', UNHEX('00000000000000000000FFFFB7AB57AE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936737, '0.000000', '1550704328.166809', UNHEX('00000000000000000000FFFFB7AB57AE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.1.0; SM-G610F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36', '', NULL, NULL),
(2936738, '0.000000', '1550704390.548496', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936739, '0.000000', '1550704603.373896', UNHEX('00000000000000000000FFFFCAA50A83'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936740, '0.000000', '1550704637.358573', UNHEX('00000000000000000000FFFF284DA732'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-holdings-lists-on-main-board/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936741, '0.000000', '1550704684.998383', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936742, '0.000000', '1550704690.813219', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936743, '0.000000', '1550704777.429299', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936744, '0.000000', '1550704779.259066', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2936745, '0.000000', '1550704780.398174', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2936746, '0.000000', '1550704847.447417', UNHEX('00000000000000000000FFFF284DA732'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/project-highlights/infrastructure/74-petronas-twin-towers-kuala-lumpur', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936747, '1550704788.938162', '1550704788.360000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936748, '1550704787.172173', '1550704786.680000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936749, '1550704785.636286', '1550704785.100000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936750, '1550704784.056035', '1550704783.520000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936751, '1550704782.482161', '1550704781.990000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2936752, '0.000000', '1550704865.826773', UNHEX('00000000000000000000FFFFB1801806'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936753, '0.000000', '1550704867.465654', UNHEX('00000000000000000000FFFFB1801806'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1', '', NULL, NULL),
(2936754, '0.000000', '1550704906.295100', UNHEX('00000000000000000000FFFF71D26761'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936755, '0.000000', '1550704908.562244', UNHEX('00000000000000000000FFFF71D26761'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936756, '0.000000', '1550704914.297379', UNHEX('00000000000000000000FFFF71D26761'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936757, '0.000000', '1550704915.387061', UNHEX('00000000000000000000FFFF71D26761'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936758, '0.000000', '1550704918.217211', UNHEX('00000000000000000000FFFF71D26761'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936759, '0.000000', '1550704983.882329', UNHEX('00000000000000000000FFFFA772F61C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'python-requests/2.20.1', '', NULL, NULL),
(2936760, '0.000000', '1550704990.660455', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936761, '0.000000', '1550705106.031702', UNHEX('00000000000000000000FFFF6A0B982E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 YisouSpider/5.0 Safari/537.36', '', NULL, NULL),
(2936762, '0.000000', '1550705113.133519', UNHEX('00000000000000000000FFFF2A9CFE3F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 YisouSpider/5.0 Safari/537.36', '', NULL, NULL),
(2936763, '0.000000', '1550705115.757780', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936764, '0.000000', '1550705171.434343', UNHEX('00000000000000000000FFFF68839370'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/tenaganasional.asp', '', 'Mozilla/5.0 (compatible; Gluten Free Crawler/1.0; +http://glutenfreepleasure.com/)', '', NULL, NULL),
(2936765, '0.000000', '1550705260.999766', UNHEX('00000000000000000000FFFFB7ABB972'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 6.0; CAM-L21 Build/HUAWEICAM-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36', '', NULL, NULL),
(2936766, '0.000000', '1550705264.133503', UNHEX('00000000000000000000FFFFB7ABB972'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; CAM-L21 Build/HUAWEICAM-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36', '', NULL, NULL),
(2936767, '0.000000', '1550705267.602768', UNHEX('00000000000000000000FFFFB7ABB972'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; CAM-L21 Build/HUAWEICAM-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36', '', NULL, NULL),
(2936768, '0.000000', '1550705267.565015', UNHEX('00000000000000000000FFFFB7ABB972'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; CAM-L21 Build/HUAWEICAM-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.158 Mobile Safari/537.36', '', NULL, NULL),
(2936769, '0.000000', '1550705290.673482', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936770, '0.000000', '1550705424.055426', UNHEX('00000000000000000000FFFF42F94214'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936771, '0.000000', '1550705551.619689', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936772, '0.000000', '1550705590.625677', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936773, '0.000000', '1550705727.126615', UNHEX('00000000000000000000FFFF8649C79A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/plugins/wp-easy-gallery-pro/admin/php.php', 'http://investors-watch.com/wp-staging/ranhill/wp-content/plugins/wp-easy-gallery-pro/admin/php.php', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36', '', NULL, NULL),
(2936774, '0.000000', '1550705890.617758', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936775, '0.000000', '1550705946.531870', UNHEX('00000000000000000000FFFFB7ABB96E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936776, '0.000000', '1550705949.956160', UNHEX('00000000000000000000FFFFB7ABB96E'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936777, '0.000000', '1550705983.040362', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936778, '0.000000', '1550706030.965230', UNHEX('00000000000000000000FFFF3A573FEC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.co.kr/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=2ahUKEwjchr-PvsvgAhXQdt4KHWfOBhYQFjAAegQIAhAC&url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2F&usg=AOvVaw1M_OFUeLEV-yGJklgLbcNz', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936779, '0.000000', '1550706033.272722', UNHEX('00000000000000000000FFFF3A573FEC'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936780, '0.000000', '1550706034.255348', UNHEX('00000000000000000000FFFFB9D3F59E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.80.33 (KHTML, like Gecko) Chrome/56.4.9202.4575 Safari/534.50 OPR/44.5.0925.6297', '', NULL, NULL),
(2936781, '0.000000', '1550706040.502138', UNHEX('00000000000000000000FFFFB9D3F59E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/xmlrpc.php', 'http://investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.80.33 (KHTML, like Gecko) Chrome/56.4.9202.4575 Safari/534.50 OPR/44.5.0925.6297', '', NULL, NULL),
(2936782, '0.000000', '1550706041.076778', UNHEX('00000000000000000000FFFF3A573FEC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936783, '0.000000', '1550706042.124298', UNHEX('00000000000000000000FFFF3A573FEC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936784, '0.000000', '1550706048.301301', UNHEX('00000000000000000000FFFF3A573FEC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-releases/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936785, '0.000000', '1550706049.382465', UNHEX('00000000000000000000FFFF3A573FEC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936786, '0.000000', '1550706082.701384', UNHEX('00000000000000000000FFFF3A573FEC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/media/press-releases/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936787, '0.000000', '1550706083.810978', UNHEX('00000000000000000000FFFF3A573FEC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2936788, '0.000000', '1550706140.721041', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936789, '0.000000', '1550706143.512097', UNHEX('00000000000000000000FFFF76645774'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936790, '0.000000', '1550706166.877144', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936791, '0.000000', '1550706167.867952', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936792, '0.000000', '1550706169.239675', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936793, '0.000000', '1550706171.165143', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936794, '0.000000', '1550706171.191703', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936795, '0.000000', '1550706190.668507', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936796, '0.000000', '1550706199.011623', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936797, '0.000000', '1550706200.207889', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936798, '0.000000', '1550706201.433714', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936799, '0.000000', '1550706201.495500', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936800, '0.000000', '1550706320.995864', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936801, '0.000000', '1550706322.903665', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936802, '0.000000', '1550706322.880209', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936803, '0.000000', '1550706326.416168', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936804, '0.000000', '1550706326.511568', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936805, '0.000000', '1550706327.181152', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/carbonfootprint@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936806, '0.000000', '1550706327.782673', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936807, '0.000000', '1550706327.324818', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/waterreclamation@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936808, '0.000000', '1550706327.306891', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws-pic@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936809, '0.000000', '1550706329.404045', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936810, '0.000000', '1550706329.399304', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936811, '0.000000', '1550706344.522410', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936812, '0.000000', '1550706344.170759', UNHEX('00000000000000000000FFFF7B886A18'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936813, '0.000000', '1550706345.948559', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936814, '0.000000', '1550706347.739505', UNHEX('00000000000000000000FFFF7B886A18'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936815, '0.000000', '1550706347.833197', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936816, '0.000000', '1550706349.129699', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936817, '0.000000', '1550706348.908856', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936818, '0.000000', '1550706348.931824', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/carbonfootprint@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936819, '0.000000', '1550706351.109160', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936820, '0.000000', '1550706353.301608', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936821, '0.000000', '1550706353.882065', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936822, '0.000000', '1550706353.902293', UNHEX('00000000000000000000FFFF7B886A18'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936823, '0.000000', '1550706355.729908', UNHEX('00000000000000000000FFFF7B886A18'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936824, '0.000000', '1550706357.021925', UNHEX('00000000000000000000FFFF7B886A18'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936825, '0.000000', '1550706357.091233', UNHEX('00000000000000000000FFFF7B886A18'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936826, '0.000000', '1550706361.579066', UNHEX('00000000000000000000FFFF7B886A18'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936827, '0.000000', '1550706362.698411', UNHEX('00000000000000000000FFFF7B886A18'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936828, '0.000000', '1550706364.025876', UNHEX('00000000000000000000FFFF7B886A18'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936829, '0.000000', '1550706364.012019', UNHEX('00000000000000000000FFFF7B886A18'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936830, '0.000000', '1550706369.394978', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936831, '0.000000', '1550706371.571346', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936832, '0.000000', '1550706373.026623', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936833, '0.000000', '1550706373.039098', UNHEX('00000000000000000000FFFFB7AB7685'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G532G Build/MMB29T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.2 Chrome/44.0.2403.133 Mobile Safari/537.36', '', NULL, NULL),
(2936834, '0.000000', '1550706376.171631', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936835, '0.000000', '1550706377.132782', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936836, '0.000000', '1550706378.411173', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936837, '0.000000', '1550706379.623094', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936838, '0.000000', '1550706379.681602', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936839, '0.000000', '1550706395.527251', UNHEX('00000000000000000000FFFF7B886A18'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936840, '0.000000', '1550706395.571534', UNHEX('00000000000000000000FFFF7B886A18'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936841, '0.000000', '1550706411.925990', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936842, '0.000000', '1550706450.132678', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936843, '0.000000', '1550706451.107120', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936844, '0.000000', '1550706452.219010', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936845, '0.000000', '1550706453.424892', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936846, '0.000000', '1550706453.477345', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936847, '0.000000', '1550706490.682777', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936848, '0.000000', '1550706612.965780', UNHEX('00000000000000000000FFFF71D236E0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936849, '0.000000', '1550706615.120496', UNHEX('00000000000000000000FFFF71D236E0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936850, '0.000000', '1550706622.348585', UNHEX('00000000000000000000FFFF71D236E0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936851, '0.000000', '1550706623.640492', UNHEX('00000000000000000000FFFF71D236E0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936852, '0.000000', '1550706627.137172', UNHEX('00000000000000000000FFFF71D236E0'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936853, '0.000000', '1550706627.127920', UNHEX('00000000000000000000FFFF71D236E0'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936854, '0.000000', '1550706696.810302', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936855, '0.000000', '1550706698.019378', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936856, '0.000000', '1550706699.206330', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936857, '0.000000', '1550706699.263097', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936858, '0.000000', '1550706740.285723', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936859, '0.000000', '1550706741.275084', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936860, '0.000000', '1550706742.429432', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936861, '0.000000', '1550706743.607471', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936862, '0.000000', '1550706743.603632', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936863, '0.000000', '1550706790.666126', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936864, '0.000000', '1550706807.485478', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936865, '0.000000', '1550706808.682478', UNHEX('00000000000000000000FFFF76645774'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936866, '0.000000', '1550706810.399331', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936867, '0.000000', '1550706810.992815', UNHEX('00000000000000000000FFFF76645774'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936868, '0.000000', '1550706854.338043', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936869, '0.000000', '1550706871.957620', UNHEX('00000000000000000000FFFFB51FD73E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.ar/', 'Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936870, '0.000000', '1550706881.166804', UNHEX('00000000000000000000FFFFB51FD73E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936871, '0.000000', '1550706982.495777', UNHEX('00000000000000000000FFFFCAA50A83'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936872, '0.000000', '1550706987.065919', UNHEX('00000000000000000000FFFFCAA50A83'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936873, '0.000000', '1550706995.059918', UNHEX('00000000000000000000FFFFCAA50A83'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936874, '0.000000', '1550706995.745351', UNHEX('00000000000000000000FFFFCAA50A83'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936875, '0.000000', '1550706996.573568', UNHEX('00000000000000000000FFFFCAA50A83'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936876, '0.000000', '1550706997.403666', UNHEX('00000000000000000000FFFFCAA50A83'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936877, '0.000000', '1550707053.524189', UNHEX('00000000000000000000FFFF6F412F34'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.google.com.sg/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936878, '0.000000', '1550707055.751965', UNHEX('00000000000000000000FFFF6F412F34'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936879, '0.000000', '1550707056.818610', UNHEX('00000000000000000000FFFF6F412F34'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2936880, '0.000000', '1550707090.672590', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936881, '0.000000', '1550707206.571642', UNHEX('00000000000000000000FFFF9D3727F2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/governance/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936882, '0.000000', '1550707288.916817', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936883, '0.000000', '1550707360.319860', UNHEX('00000000000000000000FFFFB8487323'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.1.25 (KHTML, like Gecko) Version/8.0 Safari/600.1.25', '', NULL, NULL),
(2936884, '0.000000', '1550707390.648469', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936885, '0.000000', '1550707610.265914', UNHEX('00000000000000000000FFFF01203A0B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936886, '0.000000', '1550707690.703916', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936887, '0.000000', '1550707721.690242', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936888, '0.000000', '1550707728.147407', UNHEX('00000000000000000000FFFF42F94216'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936889, '0.000000', '1550707859.551400', UNHEX('00000000000000000000FFFF73A43B28'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 9; BLA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36', '', NULL, NULL),
(2936890, '0.000000', '1550707861.919486', UNHEX('00000000000000000000FFFF73A43B28'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 9; BLA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36', '', NULL, NULL),
(2936891, '0.000000', '1550707876.229155', UNHEX('00000000000000000000FFFF73A43B28'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 9; BLA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36', '', NULL, NULL),
(2936892, '0.000000', '1550707877.500722', UNHEX('00000000000000000000FFFF73A43B28'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 9; BLA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36', '', NULL, NULL),
(2936893, '0.000000', '1550707881.300609', UNHEX('00000000000000000000FFFF73A43B28'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 9; BLA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36', '', NULL, NULL),
(2936894, '0.000000', '1550707881.366450', UNHEX('00000000000000000000FFFF73A43B28'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 9; BLA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36', '', NULL, NULL),
(2936895, '0.000000', '1550707992.627890', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936896, '0.000000', '1550708170.843292', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936897, '0.000000', '1550708275.339019', UNHEX('00000000000000000000FFFFCB7960E2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936898, '0.000000', '1550708290.687650', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936899, '0.000000', '1550708592.693396', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936900, '0.000000', '1550708593.740753', UNHEX('00000000000000000000FFFF42F94214'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936901, '0.000000', '1550708605.785720', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936902, '0.000000', '1550708721.086079', UNHEX('00000000000000000000FFFFCF2E0DDF'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-signature-projects/video/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2936903, '0.000000', '1550708790.907802', UNHEX('00000000000000000000FFFF79786642'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936904, '0.000000', '1550708793.796831', UNHEX('00000000000000000000FFFF79786642'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936905, '0.000000', '1550708831.022888', UNHEX('00000000000000000000FFFF34094937'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) JobBot/5.0 (compatible; +http://www.jobseeker.com.au/bot.html) Safari/538.1', '', NULL, NULL),
(2936906, '0.000000', '1550708833.417378', UNHEX('00000000000000000000FFFF34094937'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) JobBot/5.0 (compatible; +http://www.jobseeker.com.au/bot.html) Safari/538.1', '', NULL, NULL),
(2936907, '0.000000', '1550708890.779384', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936908, '0.000000', '1550708896.868197', UNHEX('00000000000000000000FFFF3624968D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance-report/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2936909, '0.000000', '1550708920.423595', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.bing.com/search?q=ranhill&filters=ufn%3a%22ranhill+berhad%22+sid%3a%22837e6002-4207-edbf-b484-b2211929358f%22&form=EDGHPT&qs=MB&cvid=ec32026a193c442b8cb26beb80d13b71&refig=9213df3479e242b0beee2974d037b792&cc=US&setlang=en-US', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936910, '0.000000', '1550708922.942141', UNHEX('00000000000000000000FFFFAF8F6BED'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936911, '0.000000', '1550708933.081181', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936912, '0.000000', '1550708934.217544', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936913, '0.000000', '1550708940.825793', UNHEX('00000000000000000000FFFF71D24B94'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936914, '0.000000', '1550708944.896176', UNHEX('00000000000000000000FFFF71D24B94'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936915, '0.000000', '1550708948.737471', UNHEX('00000000000000000000FFFF71D24B94'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936916, '0.000000', '1550708949.824242', UNHEX('00000000000000000000FFFF71D24B94'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936917, '0.000000', '1550708953.578793', UNHEX('00000000000000000000FFFF71D24B94'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936918, '0.000000', '1550708953.585209', UNHEX('00000000000000000000FFFF71D24B94'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936919, '0.000000', '1550708958.557511', UNHEX('00000000000000000000FFFF71D24B94'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936920, '0.000000', '1550708959.720687', UNHEX('00000000000000000000FFFF71D24B94'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936921, '0.000000', '1550708962.307386', UNHEX('00000000000000000000FFFF71D24B94'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936922, '0.000000', '1550708962.418105', UNHEX('00000000000000000000FFFF71D24B94'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936923, '0.000000', '1550708974.396762', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936924, '0.000000', '1550708975.288001', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936925, '0.000000', '1550708976.406369', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936926, '0.000000', '1550708985.044149', UNHEX('00000000000000000000FFFF79792BBC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936927, '0.000000', '1550709013.071540', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936928, '0.000000', '1550709014.160474', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936929, '0.000000', '1550709036.061993', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936930, '0.000000', '1550709036.763376', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936931, '0.000000', '1550709044.009308', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/whistle-blowing/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936932, '0.000000', '1550709045.199659', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/whistle-blowing/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/whistle-blowing/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936933, '0.000000', '1550709080.976888', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/whistle-blowing/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936934, '0.000000', '1550709082.070951', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936935, '0.000000', '1550709190.731478', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936936, '0.000000', '1550709209.830742', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936937, '0.000000', '1550709211.055580', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936938, '0.000000', '1550709214.969080', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936939, '0.000000', '1550709216.094031', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936940, '0.000000', '1550709278.894197', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936941, '0.000000', '1550709280.017130', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936942, '0.000000', '1550709447.139538', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936943, '0.000000', '1550709447.987706', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936944, '0.000000', '1550709449.095027', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936945, '0.000000', '1550709458.968507', UNHEX('00000000000000000000FFFF71D24B94'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936946, '0.000000', '1550709460.092272', UNHEX('00000000000000000000FFFF71D24B94'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936947, '0.000000', '1550709461.369165', UNHEX('00000000000000000000FFFF71D24B94'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936948, '0.000000', '1550709461.393270', UNHEX('00000000000000000000FFFF71D24B94'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936949, '0.000000', '1550709465.123341', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936950, '0.000000', '1550709472.392274', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill%e6%88%90%e9%95%bf%e5%89%8d%e6%99%af%e7%9c%8b%e6%b6%a8/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936951, '0.000000', '1550709473.508896', UNHEX('00000000000000000000FFFFAF8F6BED'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill%e6%88%90%e9%95%bf%e5%89%8d%e6%99%af%e7%9c%8b%e6%b6%a8/', 'https://www.investors-watch.com/wp-staging/ranhill/ranhill%e6%88%90%e9%95%bf%e5%89%8d%e6%99%af%e7%9c%8b%e6%b6%a8/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2936952, '0.000000', '1550709492.710756', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2936953, '0.000000', '1550709591.153438', UNHEX('00000000000000000000FFFFD31901F2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2936954, '0.000000', '1550709594.153952', UNHEX('00000000000000000000FFFF76C97822'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.google.com.my/', 'Mozilla/5.0 (Linux; U; Android 8.1.0; en-gb; Redmi 5 Build/OPM1.171019.026) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.4.3-g', '', NULL, NULL),
(2936955, '0.000000', '1550709595.406534', UNHEX('00000000000000000000FFFFD31901F2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2936956, '0.000000', '1550709596.311971', UNHEX('00000000000000000000FFFF76C97822'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (Linux; U; Android 8.1.0; en-gb; Redmi 5 Build/OPM1.171019.026) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.4.3-g', '', NULL, NULL),
(2936957, '0.000000', '1550709597.578854', UNHEX('00000000000000000000FFFF76C97822'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (Linux; U; Android 8.1.0; en-gb; Redmi 5 Build/OPM1.171019.026) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.4.3-g', '', NULL, NULL),
(2936958, '0.000000', '1550709597.623294', UNHEX('00000000000000000000FFFF76C97822'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (Linux; U; Android 8.1.0; en-gb; Redmi 5 Build/OPM1.171019.026) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.4.3-g', '', NULL, NULL),
(2936959, '0.000000', '1550709607.291377', UNHEX('00000000000000000000FFFFD31901F2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2936960, '0.000000', '1550709608.160482', UNHEX('00000000000000000000FFFFD31901F2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2936961, '0.000000', '1550709609.258108', UNHEX('00000000000000000000FFFFD31901F2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2936962, '0.000000', '1550709618.601277', UNHEX('00000000000000000000FFFFD31901F2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2936963, '0.000000', '1550709619.665475', UNHEX('00000000000000000000FFFFD31901F2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2936964, '0.000000', '1550709633.994536', UNHEX('00000000000000000000FFFFB7AB4EC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936965, '0.000000', '1550709635.516126', UNHEX('00000000000000000000FFFFB7AB4EC5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936966, '0.000000', '1550709637.017350', UNHEX('00000000000000000000FFFFB7AB4EC5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936967, '0.000000', '1550709637.008559', UNHEX('00000000000000000000FFFFB7AB4EC5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2936968, '0.000000', '1550709763.109318', UNHEX('00000000000000000000FFFF73A457D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1726) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2936969, '0.000000', '1550709792.645585', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936970, '0.000000', '1550709820.013067', UNHEX('00000000000000000000FFFF73A457D7'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1726) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2936971, '0.000000', '1550709872.938112', UNHEX('00000000000000000000FFFFA18BDE87'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936972, '0.000000', '1550709893.133496', UNHEX('00000000000000000000FFFF73A457D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1726) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2936973, '0.000000', '1550709899.601529', UNHEX('00000000000000000000FFFF73A457D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1726) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2936974, '0.000000', '1550709903.064405', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936975, '0.000000', '1550709927.179680', UNHEX('00000000000000000000FFFF42F94217'), 0, 404, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/category/job/video/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936976, '0.000000', '1550709934.589738', UNHEX('00000000000000000000FFFFAF88DB43'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936977, '0.000000', '1550709937.272361', UNHEX('00000000000000000000FFFFAF88DB43'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936978, '0.000000', '1550709938.827261', UNHEX('00000000000000000000FFFFAF88DB43'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936979, '0.000000', '1550709938.904088', UNHEX('00000000000000000000FFFFAF88DB43'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936980, '0.000000', '1550709995.998701', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936981, '0.000000', '1550709998.938057', UNHEX('00000000000000000000FFFFAF8B8E9D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2936982, '0.000000', '1550710034.421251', UNHEX('00000000000000000000FFFF42F94217'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2936983, '0.000000', '1550710043.437220', UNHEX('00000000000000000000FFFF5DA03C16'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about.asp?sectionID=1&subsectionID=1', '', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) LinkCheck by Siteimprove.com', '', NULL, NULL),
(2936984, '0.000000', '1550710064.016374', UNHEX('00000000000000000000FFFFDCB56C6E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2936985, '0.000000', '1550710067.835807', UNHEX('00000000000000000000FFFF6FCEDD06'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', 'http://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2936986, '0.000000', '1550710075.070162', UNHEX('00000000000000000000FFFF40F4F0C7'), 0, 200, 0, 0, 0, 'https://WWW.investors-watch.com/wp-staging/ranhill/INVESTOR-RELATIONS/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36', '', NULL, NULL),
(2936987, '0.000000', '1550710077.166999', UNHEX('00000000000000000000FFFF40F4F0C7'), 0, 200, 0, 0, 0, 'https://WWW.investors-watch.com/wp-staging/ranhill/INVESTOR-RELATIONS/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36', '', NULL, NULL),
(2936988, '0.000000', '1550710079.820874', UNHEX('00000000000000000000FFFF40F4F0C7'), 0, 200, 0, 0, 0, 'https://WWW.investors-watch.com/wp-staging/ranhill/INVESTOR-RELATIONS/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36', '', NULL, NULL),
(2936989, '0.000000', '1550710081.968689', UNHEX('00000000000000000000FFFF40F4F0C7'), 0, 200, 0, 0, 0, 'https://WWW.investors-watch.com/wp-staging/ranhill/INVESTOR-RELATIONS/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36', '', NULL, NULL),
(2936990, '0.000000', '1550710084.012420', UNHEX('00000000000000000000FFFF40F4F0C7'), 0, 200, 0, 0, 0, 'https://WWW.investors-watch.com/wp-staging/ranhill/INVESTOR-RELATIONS/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36', '', NULL, NULL),
(2936991, '0.000000', '1550710090.787109', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936992, '0.000000', '1550710115.625059', UNHEX('00000000000000000000FFFF40F4F0C7'), 0, 200, 0, 0, 0, 'https://WWW.investors-watch.com/wp-staging/ranhill/INVESTOR-RELATIONS/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36', '', NULL, NULL),
(2936993, '0.000000', '1550710117.679102', UNHEX('00000000000000000000FFFF40F4F0C7'), 0, 200, 0, 0, 0, 'https://WWW.investors-watch.com/wp-staging/ranhill/INVESTOR-RELATIONS/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36', '', NULL, NULL),
(2936994, '0.000000', '1550710119.509389', UNHEX('00000000000000000000FFFF5DA03C16'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/melut_basin_sudan.asp', '', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) LinkCheck by Siteimprove.com', '', NULL, NULL),
(2936995, '0.000000', '1550710270.367113', UNHEX('00000000000000000000FFFFB44C0F12'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2', '', NULL, NULL),
(2936996, '0.000000', '1550710271.745842', UNHEX('00000000000000000000FFFFB44C0FA3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2', '', NULL, NULL),
(2936997, '0.000000', '1550710334.427411', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2936998, '0.000000', '1550710396.719821', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2936999, '0.000000', '1550710418.258576', UNHEX('00000000000000000000FFFFB44C0F9A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2937000, '0.000000', '1550710484.287112', UNHEX('00000000000000000000FFFFD213571A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.0; SM-A710F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937001, '0.000000', '1550710486.640310', UNHEX('00000000000000000000FFFFD213571A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'Mozilla/5.0 (Linux; Android 7.0; SM-A710F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937002, '0.000000', '1550710488.072949', UNHEX('00000000000000000000FFFFD213571A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'Mozilla/5.0 (Linux; Android 7.0; SM-A710F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937003, '0.000000', '1550710488.029001', UNHEX('00000000000000000000FFFFD213571A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'Mozilla/5.0 (Linux; Android 7.0; SM-A710F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937004, '0.000000', '1550710532.631286', UNHEX('00000000000000000000FFFFB7AB4912'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937005, '0.000000', '1550710533.968890', UNHEX('00000000000000000000FFFFB7AB4912'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937006, '0.000000', '1550710535.309028', UNHEX('00000000000000000000FFFFB7AB4912'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937007, '0.000000', '1550710535.922517', UNHEX('00000000000000000000FFFFB7AB4912'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937008, '0.000000', '1550710690.743272', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937009, '0.000000', '1550710768.403296', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937010, '0.000000', '1550710911.066775', UNHEX('00000000000000000000FFFF36249432'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937011, '0.000000', '1550710950.182753', UNHEX('00000000000000000000FFFFC6015854'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2937012, '0.000000', '1550710953.261785', UNHEX('00000000000000000000FFFFC6015854'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2937013, '0.000000', '1550710956.387448', UNHEX('00000000000000000000FFFFC6015854'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2937014, '0.000000', '1550710961.055868', UNHEX('00000000000000000000FFFFC6015854'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', 'loginFailInvalidUsername', NULL, NULL),
(2937015, '0.000000', '1550710990.867399', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937016, '0.000000', '1550711082.294653', UNHEX('00000000000000000000FFFF935C89B9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', '', 'facebookexternalhit/1.1;line-poker/1.0', '', NULL, NULL),
(2937017, '0.000000', '1550711084.623894', UNHEX('00000000000000000000FFFF935C89B4'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', '', 'facebookexternalhit/1.1;line-poker/1.0', '', NULL, NULL),
(2937018, '0.000000', '1550711199.232559', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937019, '0.000000', '1550711290.809640', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937020, '0.000000', '1550711590.779723', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937021, '0.000000', '1550711635.084820', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937022, '0.000000', '1550711846.710668', UNHEX('00000000000000000000FFFFCB7900B3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937023, '0.000000', '1550711861.267553', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937024, '0.000000', '1550711863.283912', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937025, '0.000000', '1550711890.799635', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937026, '0.000000', '1550711913.527498', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937027, '0.000000', '1550711914.847091', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937028, '0.000000', '1550711944.678487', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937029, '0.000000', '1550711947.009588', UNHEX('00000000000000000000FFFFAF8A1CE1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937030, '0.000000', '1550711957.237683', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937031, '0.000000', '1550711958.351378', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937032, '0.000000', '1550711974.155653', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937033, '0.000000', '1550711975.154825', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937034, '0.000000', '1550711994.721813', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937035, '0.000000', '1550711995.958153', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937036, '0.000000', '1550712001.232535', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937037, '0.000000', '1550712002.427526', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937038, '0.000000', '1550712003.577867', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937039, '0.000000', '1550712017.612953', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937040, '0.000000', '1550712018.611964', UNHEX('00000000000000000000FFFFAF8A1CE1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937041, '0.000000', '1550712069.860056', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937042, '0.000000', '1550712117.609314', UNHEX('00000000000000000000FFFF36249559'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-ranhill/feed/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937043, '0.000000', '1550712129.391781', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12; en-US) AppleWebKit/602.1.18 (KHTML, like Gecko) Version/9.2 Safari/602.1.18', '', NULL, NULL),
(2937044, '0.000000', '1550712132.204104', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business', '', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12; en-US) AppleWebKit/602.1.18 (KHTML, like Gecko) Version/9.2 Safari/602.1.18', '', NULL, NULL),
(2937045, '0.000000', '1550712133.521891', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', '', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12; en-US) AppleWebKit/602.1.18 (KHTML, like Gecko) Version/9.2 Safari/602.1.18', '', NULL, NULL),
(2937046, '0.000000', '1550712136.226205', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063', '', NULL, NULL),
(2937047, '0.000000', '1550712137.617276', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063', '', NULL, NULL),
(2937048, '0.000000', '1550712140.511635', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance', '', 'Mozilla/5.0 (X11; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0', '', NULL, NULL),
(2937049, '0.000000', '1550712141.585201', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', '', 'Mozilla/5.0 (X11; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0', '', NULL, NULL),
(2937050, '0.000000', '1550712144.197332', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact', '', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12; en-US) AppleWebKit/602.1.18 (KHTML, like Gecko) Version/9.2 Safari/602.1.18', '', NULL, NULL),
(2937051, '0.000000', '1550712145.276489', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', '', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12; en-US) AppleWebKit/602.1.18 (KHTML, like Gecko) Version/9.2 Safari/602.1.18', '', NULL, NULL),
(2937052, '0.000000', '1550712147.938276', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937053, '0.000000', '1550712149.016614', UNHEX('00000000000000000000FFFF68EFCFC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36', '', NULL, NULL),
(2937054, '0.000000', '1550712203.996249', UNHEX('00000000000000000000FFFFCBD24FC0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937055, '0.000000', '1550712211.639564', UNHEX('00000000000000000000FFFFCBD24FC0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937056, '0.000000', '1550712216.453670', UNHEX('00000000000000000000FFFFCBD24FC0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937057, '0.000000', '1550712219.647468', UNHEX('00000000000000000000FFFFCBD24FC0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937058, '0.000000', '1550712224.476663', UNHEX('00000000000000000000FFFFCBD24FC0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937059, '0.000000', '1550712226.200393', UNHEX('00000000000000000000FFFFCBD24FC0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937060, '0.000000', '1550712231.538295', UNHEX('00000000000000000000FFFF7117E244'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937061, '0.000000', '1550712379.742929', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937062, '0.000000', '1550712381.940697', UNHEX('00000000000000000000FFFF79790FA2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937063, '0.000000', '1550712406.263564', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937064, '0.000000', '1550712407.536003', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937065, '0.000000', '1550712408.890662', UNHEX('00000000000000000000FFFFAF8C88A1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937066, '0.000000', '1550712415.893811', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937067, '0.000000', '1550712417.154408', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937068, '0.000000', '1550712418.315268', UNHEX('00000000000000000000FFFFB44C0F97'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-release/', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2937069, '0.000000', '1550712419.461673', UNHEX('00000000000000000000FFFFB44C0F1A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2937070, '0.000000', '1550712440.406591', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937071, '0.000000', '1550712441.806997', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937072, '0.000000', '1550712483.440475', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937073, '0.000000', '1550712484.502637', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937074, '0.000000', '1550712504.882220', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937075, '0.000000', '1550712506.310180', UNHEX('00000000000000000000FFFF73A44D73'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937076, '0.000000', '1550712507.754265', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937077, '0.000000', '1550712510.239429', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937078, '0.000000', '1550712510.235437', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937079, '0.000000', '1550712515.538645', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937080, '0.000000', '1550712516.843378', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937081, '0.000000', '1550712541.121812', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937082, '0.000000', '1550712542.384123', UNHEX('00000000000000000000FFFF79790FA2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2937083, '0.000000', '1550712564.900993', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937084, '0.000000', '1550712565.262571', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937085, '0.000000', '1550712566.263186', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937086, '0.000000', '1550712567.436600', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937087, '0.000000', '1550712569.933129', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937088, '0.000000', '1550712570.197682', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937089, '0.000000', '1550712579.857531', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937090, '0.000000', '1550712580.935267', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937091, '0.000000', '1550712582.703872', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937092, '0.000000', '1550712582.732137', UNHEX('00000000000000000000FFFFAF8B8E9D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937093, '0.000000', '1550712787.554853', UNHEX('00000000000000000000FFFF71D2B1A4'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937094, '0.000000', '1550712789.350992', UNHEX('00000000000000000000FFFF71D2B1A4'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937095, '0.000000', '1550712791.374253', UNHEX('00000000000000000000FFFF71D2B1A4'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937096, '0.000000', '1550712802.266432', UNHEX('00000000000000000000FFFF71D2B1A4'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937097, '0.000000', '1550712803.495440', UNHEX('00000000000000000000FFFF71D2B1A4'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937098, '0.000000', '1550712811.228418', UNHEX('00000000000000000000FFFF71D2B1A4'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937099, '0.000000', '1550712860.294570', UNHEX('00000000000000000000FFFF3624964A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/non-revenue-water-specialist/video/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937100, '0.000000', '1550712939.425996', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937101, '0.000000', '1550712982.602481', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=2ahUKEwiGwcyB2MvgAhUVS48KHTZHBo0QFjABegQIDBAB&url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2F&usg=AOvVaw1M_OFUeLEV-yGJklgLbcNz', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937102, '0.000000', '1550712983.855498', UNHEX('00000000000000000000FFFFC0E4CC75'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937103, '0.000000', '1550712986.991424', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=2ahUKEwiGwcyB2MvgAhUVS48KHTZHBo0QFjABegQIDBAB&url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2F&usg=AOvVaw1M_OFUeLEV-yGJklgLbcNz', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937104, '0.000000', '1550712988.393546', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937105, '0.000000', '1550712997.293497', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937106, '0.000000', '1550712999.005979', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937107, '0.000000', '1550712999.978115', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937108, '0.000000', '1550713000.288043', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937109, '0.000000', '1550713001.313059', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937110, '0.000000', '1550713001.401260', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937111, '0.000000', '1550713003.827632', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937112, '0.000000', '1550713003.884984', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937113, '0.000000', '1550713005.128834', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937114, '0.000000', '1550713005.235774', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937115, '0.000000', '1550713006.429533', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937116, '0.000000', '1550713006.479912', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937117, '0.000000', '1550713007.711752', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937118, '0.000000', '1550713007.734649', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937119, '0.000000', '1550713008.983437', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937120, '0.000000', '1550713008.987452', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937121, '0.000000', '1550713030.244191', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937122, '0.000000', '1550713031.975236', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937123, '0.000000', '1550713033.312586', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937124, '0.000000', '1550713033.369290', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937125, '0.000000', '1550713034.808673', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937126, '0.000000', '1550713034.804238', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937127, '0.000000', '1550713036.333151', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937128, '0.000000', '1550713036.409348', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937129, '0.000000', '1550713037.762552', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937130, '0.000000', '1550713037.889082', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937131, '0.000000', '1550713039.234983', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937132, '0.000000', '1550713039.336481', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937133, '0.000000', '1550713040.766178', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937134, '0.000000', '1550713040.820359', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937135, '0.000000', '1550713041.985619', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937136, '0.000000', '1550713042.062130', UNHEX('00000000000000000000FFFFC0E4CC75'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937137, '0.000000', '1550713138.621305', UNHEX('00000000000000000000FFFFCF2E0D11'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937138, '0.000000', '1550713206.189087', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.bursamalaysia.com/market/listed-companies/list-of-companies/plc-profile.html?stock_code=5272', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937139, '0.000000', '1550713207.874672', UNHEX('00000000000000000000FFFF939E9CC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937140, '0.000000', '1550713214.707799', UNHEX('00000000000000000000FFFFC62D125E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937141, '0.000000', '1550713230.646063', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937142, '0.000000', '1550713231.470197', UNHEX('00000000000000000000FFFFAF8BC176'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937143, '0.000000', '1550713231.802748', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937144, '0.000000', '1550713232.880198', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937145, '0.000000', '1550713348.905964', UNHEX('00000000000000000000FFFFB00A63C8'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937146, '0.000000', '1550713350.022035', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp://www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)', '', NULL, NULL),
(2937147, '0.000000', '1550713351.110804', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp:/www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)', '', NULL, NULL),
(2937148, '0.000000', '1550713352.666337', UNHEX('00000000000000000000FFFFB00A63C8'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937149, '0.000000', '1550713353.934486', UNHEX('00000000000000000000FFFFB00A63C8'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2937150, '0.000000', '1550713356.952050', UNHEX('00000000000000000000FFFFB32B869C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937151, '0.000000', '1550713358.529360', UNHEX('00000000000000000000FFFFB32B869C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'loginFailInvalidUsername', NULL, NULL),
(2937152, '0.000000', '1550713359.948065', UNHEX('00000000000000000000FFFFA5E17060'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937153, '0.000000', '1550713362.062376', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp://www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937154, '0.000000', '1550713363.321912', UNHEX('00000000000000000000FFFFB9DC6523'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937155, '0.000000', '1550713364.077028', UNHEX('00000000000000000000FFFFA5E17060'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937156, '0.000000', '1550713364.423325', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp:/www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937157, '0.000000', '1550713365.244130', UNHEX('00000000000000000000FFFFB9DC6523'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2937158, '0.000000', '1550713369.976305', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp://www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937159, '0.000000', '1550713371.689822', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937160, '0.000000', '1550713371.762432', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp:/www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937161, '0.000000', '1550713398.763061', UNHEX('00000000000000000000FFFFA5E17060'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937162, '0.000000', '1550713401.181070', UNHEX('00000000000000000000FFFFA5E17060'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937163, '0.000000', '1550713448.656361', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937164, '0.000000', '1550713458.128269', UNHEX('00000000000000000000FFFFDB5CF411'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937165, '0.000000', '1550713469.809559', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp://www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937166, '0.000000', '1550713470.894681', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp:/www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937167, '0.000000', '1550713474.924371', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp://www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937168, '0.000000', '1550713475.943286', UNHEX('00000000000000000000FFFFCB7F7456'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/05/06.jpghttp:/www.simedarby.com/sites/default/files/board-of-directors/sime-darby_bod4.jpg', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2937169, '0.000000', '1550713512.903674', UNHEX('00000000000000000000FFFFD21307A1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937170, '0.000000', '1550713556.811976', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937171, '0.000000', '1550713559.833368', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937172, '0.000000', '1550713561.389099', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2937173, '0.000000', '1550713688.928802', UNHEX('00000000000000000000FFFFA5E17060'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937174, '1550713570.663922', '1550713570.140000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937175, '1550713569.062358', '1550713568.550000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937176, '1550713567.478629', '1550713566.950000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937177, '1550713565.440957', '1550713564.860000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937178, '1550713563.781336', '1550713563.160000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937179, '0.000000', '1550713731.879476', UNHEX('00000000000000000000FFFF2AEC0A54'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1', '', NULL, NULL),
(2937180, '0.000000', '1550713759.777646', UNHEX('00000000000000000000FFFFB4A3DC05'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1', '', NULL, NULL),
(2937181, '0.000000', '1550713763.478295', UNHEX('00000000000000000000FFFFB4A3DC44'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1', '', NULL, NULL),
(2937182, '0.000000', '1550713769.972848', UNHEX('00000000000000000000FFFFB4A3DC05'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1', '', NULL, NULL),
(2937183, '0.000000', '1550713774.845298', UNHEX('00000000000000000000FFFF2AEC0A5C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1', '', NULL, NULL),
(2937184, '0.000000', '1550713799.002776', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937185, '0.000000', '1550714005.663613', UNHEX('00000000000000000000FFFF73847689'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937186, '0.000000', '1550714054.997261', UNHEX('00000000000000000000FFFF3C34687D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937187, '0.000000', '1550714057.362499', UNHEX('00000000000000000000FFFF3C34687D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937188, '0.000000', '1550714061.790297', UNHEX('00000000000000000000FFFF3C34687D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937189, '0.000000', '1550714063.068280', UNHEX('00000000000000000000FFFF3C34687D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937190, '0.000000', '1550714066.629621', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2937191, '0.000000', '1550714068.228938', UNHEX('00000000000000000000FFFF797A311D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937192, '0.000000', '1550714068.770171', UNHEX('00000000000000000000FFFFD21307A1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2937193, '0.000000', '1550714071.822586', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2937194, '0.000000', '1550714073.030195', UNHEX('00000000000000000000FFFF3C34687D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937195, '0.000000', '1550714073.439710', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2937196, '0.000000', '1550714074.365552', UNHEX('00000000000000000000FFFF3C34687D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937197, '0.000000', '1550714146.164359', UNHEX('00000000000000000000FFFFD21307A1'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; ms-office; MSOffice 14)', '', NULL, NULL),
(2937198, '0.000000', '1550714147.927199', UNHEX('00000000000000000000FFFFD21307A1'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; ms-office; MSOffice 14)', '', NULL, NULL),
(2937199, '0.000000', '1550714148.748215', UNHEX('00000000000000000000FFFFAF88FD32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937200, '0.000000', '1550714158.774182', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937201, '0.000000', '1550714173.766612', UNHEX('00000000000000000000FFFF76645796'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937202, '0.000000', '1550714176.723341', UNHEX('00000000000000000000FFFFCBB09209'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937203, '0.000000', '1550714191.274841', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937204, '0.000000', '1550714195.033215', UNHEX('00000000000000000000FFFF73A4CC66'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937205, '0.000000', '1550714201.183574', UNHEX('00000000000000000000FFFF76645796'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937206, '0.000000', '1550714214.648673', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937207, '0.000000', '1550714216.221277', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937208, '0.000000', '1550714217.700397', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937209, '0.000000', '1550714217.767222', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937210, '0.000000', '1550714229.902329', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937211, '0.000000', '1550714231.362476', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937212, '0.000000', '1550714233.129924', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937213, '0.000000', '1550714233.165835', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937214, '0.000000', '1550714234.070704', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937215, '0.000000', '1550714239.917257', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937216, '0.000000', '1550714241.316145', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937217, '0.000000', '1550714242.778757', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937218, '0.000000', '1550714242.927569', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937219, '0.000000', '1550714257.994151', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937220, '0.000000', '1550714258.088923', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937221, '0.000000', '1550714259.626884', UNHEX('00000000000000000000FFFF76645796'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937222, '0.000000', '1550714262.184036', UNHEX('00000000000000000000FFFF76645796'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937223, '0.000000', '1550714263.112691', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937224, '0.000000', '1550714263.132715', UNHEX('00000000000000000000FFFF73A4CC66'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937225, '0.000000', '1550714268.879915', UNHEX('00000000000000000000FFFF362496B7'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-ranhill/board-of-directors/board-of-directors/dato-zulkifli-ibrahim/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937226, '0.000000', '1550714303.179543', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937227, '0.000000', '1550714360.810148', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937228, '0.000000', '1550714362.596906', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937229, '0.000000', '1550714384.323538', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937230, '0.000000', '1550714385.772357', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937231, '0.000000', '1550714387.617352', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937232, '0.000000', '1550714410.955254', UNHEX('00000000000000000000FFFF73A4CF07'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.1.0; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937233, '0.000000', '1550714412.991434', UNHEX('00000000000000000000FFFF73A4CF07'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Linux; Android 8.1.0; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937234, '0.000000', '1550714414.380869', UNHEX('00000000000000000000FFFF73A4CF07'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Linux; Android 8.1.0; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937235, '0.000000', '1550714414.425862', UNHEX('00000000000000000000FFFF73A4CF07'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Linux; Android 8.1.0; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937236, '0.000000', '1550714415.538495', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937237, '0.000000', '1550714416.973832', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937238, '0.000000', '1550714418.767620', UNHEX('00000000000000000000FFFFCBB09209'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937239, '0.000000', '1550714548.713859', UNHEX('00000000000000000000FFFFCB6A5D02'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '', NULL, NULL),
(2937240, '0.000000', '1550714551.672316', UNHEX('00000000000000000000FFFF362494BA'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/video/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937241, '0.000000', '1550714552.446953', UNHEX('00000000000000000000FFFFDB5C34F9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.bing.com/search?q=ranhill+powertron+2&FORM=AWRE', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937242, '0.000000', '1550714554.432853', UNHEX('00000000000000000000FFFFDB5C34F9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937243, '0.000000', '1550714555.332697', UNHEX('00000000000000000000FFFFCB6A5D02'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '', NULL, NULL),
(2937244, '0.000000', '1550714557.927611', UNHEX('00000000000000000000FFFF73A4D448'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://search.yahoo.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937245, '0.000000', '1550714560.693219', UNHEX('00000000000000000000FFFFDB5C34F9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937246, '0.000000', '1550714561.966882', UNHEX('00000000000000000000FFFFDB5C34F9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937247, '0.000000', '1550714563.043980', UNHEX('00000000000000000000FFFF73A4D448'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937248, '0.000000', '1550714582.727086', UNHEX('00000000000000000000FFFF73A4D448'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937249, '0.000000', '1550714584.132160', UNHEX('00000000000000000000FFFF73A4D448'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937250, '0.000000', '1550714589.905699', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937251, '0.000000', '1550714607.966009', UNHEX('00000000000000000000FFFF010953B5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937252, '0.000000', '1550714628.340092', UNHEX('00000000000000000000FFFF73A4D448'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937253, '0.000000', '1550714629.804618', UNHEX('00000000000000000000FFFF73A4D448'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937254, '0.000000', '1550714639.163413', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937255, '0.000000', '1550714643.088011', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937256, '0.000000', '1550714654.296540', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-adopts-new-technology-for-water-leak-detection/video/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937257, '0.000000', '1550714656.505034', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.bursamalaysia.com/market/listed-companies/list-of-companies/plc-profile.html?stock_code=5272', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937258, '0.000000', '1550714658.155430', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937259, '0.000000', '1550714662.932941', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937260, '0.000000', '1550714665.604423', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937261, '0.000000', '1550714666.638934', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937262, '0.000000', '1550714667.844162', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937263, '0.000000', '1550714671.517097', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937264, '0.000000', '1550714673.251186', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937265, '0.000000', '1550714696.568271', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937266, '0.000000', '1550714697.596556', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937267, '0.000000', '1550714698.677836', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937268, '0.000000', '1550714699.450904', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937269, '0.000000', '1550714701.067757', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937270, '0.000000', '1550714702.578066', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937271, '0.000000', '1550714703.578967', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937272, '0.000000', '1550714707.567074', UNHEX('00000000000000000000FFFF010953B5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937273, '0.000000', '1550714710.050004', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937274, '0.000000', '1550714711.235456', UNHEX('00000000000000000000FFFF939E9CC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937275, '0.000000', '1550714789.566708', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937276, '0.000000', '1550714791.747860', UNHEX('00000000000000000000FFFF73A45B0F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937277, '0.000000', '1550714861.051310', UNHEX('00000000000000000000FFFFAF88FD32'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937278, '0.000000', '1550714863.195624', UNHEX('00000000000000000000FFFFAF88FD32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937279, '0.000000', '1550714871.244709', UNHEX('00000000000000000000FFFFAF88FD32'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937280, '0.000000', '1550714872.524842', UNHEX('00000000000000000000FFFFAF88FD32'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937281, '0.000000', '1550714893.378284', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937282, '0.000000', '1550714894.849664', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937283, '0.000000', '1550714895.988013', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937284, '0.000000', '1550714901.409065', UNHEX('00000000000000000000FFFF73854F9E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937285, '0.000000', '1550714905.794163', UNHEX('00000000000000000000FFFF73854F9E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937286, '0.000000', '1550714911.132450', UNHEX('00000000000000000000FFFF76645796'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937287, '0.000000', '1550714928.607371', UNHEX('00000000000000000000FFFF76645796'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937288, '0.000000', '1550714949.031482', UNHEX('00000000000000000000FFFF3C313C62'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937289, '0.000000', '1550714956.656173', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937290, '0.000000', '1550714958.104388', UNHEX('00000000000000000000FFFF73854FD9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937291, '0.000000', '1550714982.624630', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937292, '0.000000', '1550714984.117393', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937293, '0.000000', '1550714987.912552', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937294, '0.000000', '1550714988.013894', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937295, '0.000000', '1550714989.539445', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937296, '0.000000', '1550714989.686295', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937297, '0.000000', '1550714990.845134', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937298, '0.000000', '1550714995.989588', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937299, '0.000000', '1550714996.976400', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937300, '0.000000', '1550714998.516854', UNHEX('00000000000000000000FFFF73854FD9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937301, '0.000000', '1550715013.255124', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937302, '0.000000', '1550715024.266373', UNHEX('00000000000000000000FFFF01203AC9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937303, '0.000000', '1550715024.507668', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937304, '0.000000', '1550715026.185621', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937305, '0.000000', '1550715041.380050', UNHEX('00000000000000000000FFFF9D3727F5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937306, '0.000000', '1550715078.576184', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937307, '0.000000', '1550715079.652140', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937308, '0.000000', '1550715081.346156', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937309, '0.000000', '1550715089.103187', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937310, '0.000000', '1550715091.121185', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937311, '0.000000', '1550715093.060311', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937312, '0.000000', '1550715105.567458', UNHEX('00000000000000000000FFFF7AA35F4B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937313, '0.000000', '1550715118.020715', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937314, '0.000000', '1550715120.155161', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937315, '0.000000', '1550715139.069055', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937316, '0.000000', '1550715140.387959', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937317, '0.000000', '1550715141.673530', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937318, '0.000000', '1550715146.526907', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937319, '0.000000', '1550715147.726189', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937320, '0.000000', '1550715149.074163', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937321, '0.000000', '1550715150.258820', UNHEX('00000000000000000000FFFF73A45B0F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937322, '0.000000', '1550715172.744891', UNHEX('00000000000000000000FFFF76645796'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937323, '0.000000', '1550715180.271637', UNHEX('00000000000000000000FFFFDB5C34F9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937324, '0.000000', '1550715181.393331', UNHEX('00000000000000000000FFFFDB5C34F9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937325, '0.000000', '1550715182.272677', UNHEX('00000000000000000000FFFF76645796'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937326, '0.000000', '1550715185.576101', UNHEX('00000000000000000000FFFFDB5C34F9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937327, '0.000000', '1550715186.688401', UNHEX('00000000000000000000FFFFDB5C34F9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937328, '0.000000', '1550715217.320983', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937329, '0.000000', '1550715220.069278', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937330, '0.000000', '1550715225.388194', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937331, '0.000000', '1550715226.690093', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937332, '0.000000', '1550715232.704600', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937333, '0.000000', '1550715233.929307', UNHEX('00000000000000000000FFFF01203AC9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937334, '0.000000', '1550715250.764677', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937335, '0.000000', '1550715283.371915', UNHEX('00000000000000000000FFFFB7ABB923'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937336, '0.000000', '1550715287.831624', UNHEX('00000000000000000000FFFFB7ABB923'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937337, '0.000000', '1550715310.462533', UNHEX('00000000000000000000FFFFB44C0F8D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/leow-peen-fong/', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2937338, '0.000000', '1550715352.051554', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-zulkifli-ibrahim/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937339, '0.000000', '1550715410.345297', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937340, '0.000000', '1550715412.313770', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937341, '0.000000', '1550715469.536893', UNHEX('00000000000000000000FFFF362494B1'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/izaddeen-daud/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937342, '0.000000', '1550715489.323149', UNHEX('00000000000000000000FFFFB7ABB923'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937343, '0.000000', '1550715490.588826', UNHEX('00000000000000000000FFFFB7ABB923'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937344, '0.000000', '1550715492.086902', UNHEX('00000000000000000000FFFFB7ABB923'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937345, '0.000000', '1550715503.020388', UNHEX('00000000000000000000FFFFB7ABB923'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937346, '0.000000', '1550715504.414574', UNHEX('00000000000000000000FFFFB7ABB923'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937347, '0.000000', '1550715507.734956', UNHEX('00000000000000000000FFFFB7ABB923'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937348, '0.000000', '1550715519.015119', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/about-ranhill/history/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937349, '0.000000', '1550715521.280689', UNHEX('00000000000000000000FFFFD3186991'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/about-ranhill/history/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/about-ranhill/history/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937350, '0.000000', '1550715523.095699', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937351, '0.000000', '1550715540.012196', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937352, '0.000000', '1550715541.733670', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937353, '0.000000', '1550715548.470693', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937354, '0.000000', '1550715549.663856', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937355, '0.000000', '1550715550.670833', UNHEX('00000000000000000000FFFF3C321072'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937356, '0.000000', '1550715552.819279', UNHEX('00000000000000000000FFFF3C321072'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937357, '0.000000', '1550715572.458163', UNHEX('00000000000000000000FFFF3C321072'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937358, '0.000000', '1550715573.614260', UNHEX('00000000000000000000FFFF3C321072'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937359, '0.000000', '1550715627.976364', UNHEX('00000000000000000000FFFF362494E3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/video/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937360, '0.000000', '1550715634.722219', UNHEX('00000000000000000000FFFF7B887479'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937361, '0.000000', '1550715646.976598', UNHEX('00000000000000000000FFFF7B887479'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937362, '0.000000', '1550715649.796493', UNHEX('00000000000000000000FFFF7B887479'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937363, '0.000000', '1550715659.885443', UNHEX('00000000000000000000FFFF42F94218'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2937364, '0.000000', '1550715664.198822', UNHEX('00000000000000000000FFFF42F94218'), 0, 404, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2937365, '0.000000', '1550715754.498414', UNHEX('00000000000000000000FFFFD8F442EC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)', '', NULL, NULL),
(2937366, '0.000000', '1550715756.558610', UNHEX('00000000000000000000FFFFAF8BBBF5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937367, '0.000000', '1550715759.796219', UNHEX('00000000000000000000FFFFAF8BBBF5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937368, '0.000000', '1550715768.520284', UNHEX('00000000000000000000FFFFAF8BBBF5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937369, '0.000000', '1550715770.283583', UNHEX('00000000000000000000FFFFAF8BBBF5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937370, '0.000000', '1550715834.831886', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-release/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937371, '0.000000', '1550715843.066319', UNHEX('00000000000000000000FFFFD31867D9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937372, '0.000000', '1550715849.011032', UNHEX('00000000000000000000FFFFAF8F064B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937373, '0.000000', '1550715852.039244', UNHEX('00000000000000000000FFFFB7AB51D0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 5.0; SM-N9005) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937374, '0.000000', '1550715868.273413', UNHEX('00000000000000000000FFFFAF8F064B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937375, '0.000000', '1550715869.851571', UNHEX('00000000000000000000FFFFAF8F064B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937376, '0.000000', '1550715875.843539', UNHEX('00000000000000000000FFFFAF8F064B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937377, '0.000000', '1550715876.928153', UNHEX('00000000000000000000FFFFAF8F064B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937378, '0.000000', '1550715878.328206', UNHEX('00000000000000000000FFFFAF8F064B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937379, '0.000000', '1550715883.041434', UNHEX('00000000000000000000FFFFB7AB51D0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 5.0; SM-N9005) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937380, '0.000000', '1550715896.490288', UNHEX('00000000000000000000FFFFCB6AD702'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937381, '0.000000', '1550715897.044886', UNHEX('00000000000000000000FFFF2684728D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0', '', NULL, NULL),
(2937382, '0.000000', '1550715898.923553', UNHEX('00000000000000000000FFFFCB6AD702'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937383, '0.000000', '1550715904.001056', UNHEX('00000000000000000000FFFFCB6AD702'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937384, '0.000000', '1550715905.492314', UNHEX('00000000000000000000FFFFCB6AD702'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937385, '0.000000', '1550715909.863265', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/url?url=https://www.investors-watch.com/wp-staging/ranhill/&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwicpoLy4svgAhUfTY8KHXaQDowQFggVMAA&usg=AOvVaw2kYKz9nRYpcVK2zD0kMyi1', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937386, '0.000000', '1550715910.308419', UNHEX('00000000000000000000FFFFAF8F064B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/loong-mei-yi/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937387, '0.000000', '1550715912.274400', UNHEX('00000000000000000000FFFF79792BBC'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937388, '0.000000', '1550715912.584877', UNHEX('00000000000000000000FFFFAF8F064B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/loong-mei-yi/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/loong-mei-yi/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937389, '0.000000', '1550715914.605964', UNHEX('00000000000000000000FFFF79792BBC'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937390, '0.000000', '1550715914.574867', UNHEX('00000000000000000000FFFFCB6AD702'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937391, '0.000000', '1550715916.137209', UNHEX('00000000000000000000FFFFCB6AD702'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937392, '0.000000', '1550715932.568816', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937393, '0.000000', '1550715933.564918', UNHEX('00000000000000000000FFFFCB6AD702'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937394, '0.000000', '1550715934.175312', UNHEX('00000000000000000000FFFF79792BBC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937395, '0.000000', '1550715934.995362', UNHEX('00000000000000000000FFFFCB6AD702'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937396, '0.000000', '1550715942.334558', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937397, '0.000000', '1550715944.263922', UNHEX('00000000000000000000FFFF79792BBC'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/4.0 (compatible;)', '', NULL, NULL),
(2937398, '0.000000', '1550715944.633752', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937399, '0.000000', '1550715945.066580', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937400, '0.000000', '1550715945.910570', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937401, '0.000000', '1550715946.818124', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937402, '0.000000', '1550715948.182859', UNHEX('00000000000000000000FFFF79792BBC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937403, '0.000000', '1550715950.172851', UNHEX('00000000000000000000FFFFD21307A1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937404, '0.000000', '1550715966.255414', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937405, '0.000000', '1550715967.547063', UNHEX('00000000000000000000FFFF79792BBC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937406, '0.000000', '1550715975.767887', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937407, '0.000000', '1550715977.131961', UNHEX('00000000000000000000FFFF79792BBC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937408, '0.000000', '1550715978.416533', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937409, '0.000000', '1550715979.158554', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937410, '0.000000', '1550715980.766120', UNHEX('00000000000000000000FFFF79792BBC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937411, '0.000000', '1550715993.495110', UNHEX('00000000000000000000FFFFD3186998'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '', NULL, NULL),
(2937412, '0.000000', '1550715995.381369', UNHEX('00000000000000000000FFFFD3186998'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', '', NULL, NULL),
(2937413, '0.000000', '1550716001.826285', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937414, '0.000000', '1550716003.843470', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937415, '0.000000', '1550716005.202068', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2937416, '1550716012.669117', '1550716012.020000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937417, '1550716010.957031', '1550716010.400000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937418, '1550716009.315847', '1550716008.680000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937419, '1550716007.525947', '1550716006.970000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937420, '0.000000', '1550716012.928094', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937421, '0.000000', '1550716015.429253', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937422, '0.000000', '1550716017.074511', UNHEX('00000000000000000000FFFF79792BBC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937423, '1550716014.631876', '1550716013.760000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937424, '0.000000', '1550716030.182158', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937425, '0.000000', '1550716033.186277', UNHEX('00000000000000000000FFFF79792BBC'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937426, '0.000000', '1550716043.896763', UNHEX('00000000000000000000FFFF79792BBC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '', NULL, NULL),
(2937427, '0.000000', '1550716142.771350', UNHEX('00000000000000000000FFFF7665F8EF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937428, '0.000000', '1550716156.519432', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937429, '0.000000', '1550716159.268203', UNHEX('00000000000000000000FFFFAF8B9749'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937430, '0.000000', '1550716369.971851', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937431, '0.000000', '1550716374.371069', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937432, '0.000000', '1550716374.667281', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937433, '0.000000', '1550716414.684388', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/category/job/page/2/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937434, '0.000000', '1550716492.050755', UNHEX('00000000000000000000FFFFD213FE6C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:40.0) Gecko/20100101 Firefox/40.0', '', NULL, NULL),
(2937435, '0.000000', '1550716493.970441', UNHEX('00000000000000000000FFFFD213FE6C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:40.0) Gecko/20100101 Firefox/40.0', '', NULL, NULL),
(2937436, '0.000000', '1550716499.480239', UNHEX('00000000000000000000FFFFD213FE6C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:40.0) Gecko/20100101 Firefox/40.0', '', NULL, NULL),
(2937437, '0.000000', '1550716501.034458', UNHEX('00000000000000000000FFFFD213FE6C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:40.0) Gecko/20100101 Firefox/40.0', '', NULL, NULL),
(2937438, '0.000000', '1550716537.745410', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937439, '0.000000', '1550716539.938584', UNHEX('00000000000000000000FFFF3C361E0F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937440, '0.000000', '1550716548.868632', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937441, '0.000000', '1550716549.856403', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937442, '0.000000', '1550716561.279371', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937443, '0.000000', '1550716562.331160', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937444, '0.000000', '1550716563.577929', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937445, '0.000000', '1550716615.134401', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937446, '0.000000', '1550716616.441336', UNHEX('00000000000000000000FFFF3C361E0F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937447, '0.000000', '1550716816.068113', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937448, '0.000000', '1550717097.234541', UNHEX('00000000000000000000FFFF7C0DCFF2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937449, '0.000000', '1550717100.487616', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937450, '0.000000', '1550717105.084878', UNHEX('00000000000000000000FFFFCBD9B0E7'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937451, '0.000000', '1550717114.508228', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937452, '0.000000', '1550717115.889669', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937453, '0.000000', '1550717194.102452', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937454, '0.000000', '1550717196.285042', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937455, '0.000000', '1550717197.883410', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937456, '0.000000', '1550717201.528042', UNHEX('00000000000000000000FFFFCBD98198'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937457, '0.000000', '1550717204.285197', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937458, '0.000000', '1550717205.434789', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937459, '0.000000', '1550717209.891567', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937460, '0.000000', '1550717211.250586', UNHEX('00000000000000000000FFFFAF8B9749'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937461, '0.000000', '1550717215.088479', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937462, '0.000000', '1550717216.693767', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937463, '0.000000', '1550717246.816499', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937464, '0.000000', '1550717265.753820', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937465, '0.000000', '1550717270.106267', UNHEX('00000000000000000000FFFF797B89D7'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937466, '0.000000', '1550717283.224594', UNHEX('00000000000000000000FFFFAF8A40C1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937467, '0.000000', '1550717285.642114', UNHEX('00000000000000000000FFFFAF8A40C1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937468, '0.000000', '1550717290.676888', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937469, '0.000000', '1550717292.543577', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937470, '0.000000', '1550717304.009332', UNHEX('00000000000000000000FFFFAF8A5E5A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937471, '0.000000', '1550717306.435953', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b', '', NULL, NULL),
(2937472, '0.000000', '1550717308.416573', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b', '', NULL, NULL),
(2937473, '0.000000', '1550717308.722530', UNHEX('00000000000000000000FFFFAF8A5E5A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937474, '0.000000', '1550717310.651012', UNHEX('00000000000000000000FFFFB44C0F86'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/group-secretarial-executive-secretarial/feed/', '', 'Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)', '', NULL, NULL),
(2937475, '0.000000', '1550717313.870298', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937476, '0.000000', '1550717315.265802', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937477, '0.000000', '1550717390.969519', UNHEX('00000000000000000000FFFFBEB7F7B1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1', '', NULL, NULL),
(2937478, '0.000000', '1550717392.986296', UNHEX('00000000000000000000FFFFBEB7F7B1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1', '', NULL, NULL),
(2937479, '0.000000', '1550717408.111010', UNHEX('00000000000000000000FFFFB7ABB920'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/about-ranhill/awards-recognition/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937480, '0.000000', '1550717412.297072', UNHEX('00000000000000000000FFFFB7ABB920'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/about-ranhill/awards-recognition/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/about-ranhill/awards-recognition/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937481, '0.000000', '1550717415.019501', UNHEX('00000000000000000000FFFFB7ABB920'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/staging/about-ranhill/awards-recognition/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937482, '0.000000', '1550717429.017895', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937483, '0.000000', '1550717450.781396', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937484, '0.000000', '1550717452.620002', UNHEX('00000000000000000000FFFFD3186991'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937485, '0.000000', '1550717482.323498', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937486, '0.000000', '1550717483.727264', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937487, '0.000000', '1550717490.559967', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937488, '0.000000', '1550717491.795468', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/investor-relations/bursa-announcements/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937489, '0.000000', '1550717500.612796', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937490, '0.000000', '1550717502.305951', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937491, '0.000000', '1550717504.885241', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937492, '0.000000', '1550717504.910934', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937493, '0.000000', '1550717519.559375', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937494, '0.000000', '1550717522.435344', UNHEX('00000000000000000000FFFFAF8F4FAD'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937495, '0.000000', '1550717540.805874', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937496, '0.000000', '1550717542.259209', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937497, '0.000000', '1550717584.158301', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/dato-sri-lim-haw-kuang/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937498, '0.000000', '1550717585.328266', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937499, '0.000000', '1550717585.937520', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/dato-sri-lim-haw-kuang/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937500, '0.000000', '1550717586.983703', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937501, '0.000000', '1550717588.455001', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937502, '0.000000', '1550717677.006090', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937503, '0.000000', '1550717677.568842', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937504, '0.000000', '1550717678.993350', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937505, '0.000000', '1550717680.592104', UNHEX('00000000000000000000FFFF797B89D7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/sustainability-report/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937506, '0.000000', '1550717747.118996', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937507, '0.000000', '1550717748.851703', UNHEX('00000000000000000000FFFFAF8F4FAD'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937508, '0.000000', '1550717750.505235', UNHEX('00000000000000000000FFFF73A4483F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937509, '0.000000', '1550717752.366828', UNHEX('00000000000000000000FFFF73A4483F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937510, '0.000000', '1550717764.836105', UNHEX('00000000000000000000FFFF6E042D81'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/v1', '', '', '', NULL, NULL),
(2937511, '0.000000', '1550717766.779427', UNHEX('00000000000000000000FFFF6E042D81'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/new', '', '', '', NULL, NULL),
(2937512, '0.000000', '1550717767.095265', UNHEX('00000000000000000000FFFF73A4483F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937513, '0.000000', '1550717767.271507', UNHEX('00000000000000000000FFFF73A4483F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937514, '0.000000', '1550717767.730179', UNHEX('00000000000000000000FFFF73A4483F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937515, '0.000000', '1550717769.289084', UNHEX('00000000000000000000FFFF71D27448'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com', 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0', '', NULL, NULL),
(2937516, '0.000000', '1550717770.614783', UNHEX('00000000000000000000FFFF73A4483F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937517, '0.000000', '1550717773.796015', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937518, '0.000000', '1550717773.831952', UNHEX('00000000000000000000FFFF71D27448'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0', '', NULL, NULL),
(2937519, '0.000000', '1550717773.933157', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937520, '0.000000', '1550717786.574816', UNHEX('00000000000000000000FFFF73A4483F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937521, '0.000000', '1550717788.356756', UNHEX('00000000000000000000FFFF73A4483F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937522, '0.000000', '1550717789.990375', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937523, '0.000000', '1550717790.076565', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937524, '0.000000', '1550717800.504333', UNHEX('00000000000000000000FFFF0E00E523'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 9; LYA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Mobile Safari/537.36', '', NULL, NULL),
(2937525, '0.000000', '1550717802.939383', UNHEX('00000000000000000000FFFF0E00E523'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'Mozilla/5.0 (Linux; Android 9; LYA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Mobile Safari/537.36', '', NULL, NULL),
(2937526, '0.000000', '1550717804.478170', UNHEX('00000000000000000000FFFF0E00E523'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'Mozilla/5.0 (Linux; Android 9; LYA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Mobile Safari/537.36', '', NULL, NULL),
(2937527, '0.000000', '1550717804.526770', UNHEX('00000000000000000000FFFF0E00E523'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', 'Mozilla/5.0 (Linux; Android 9; LYA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Mobile Safari/537.36', '', NULL, NULL),
(2937528, '0.000000', '1550717806.261428', UNHEX('00000000000000000000FFFF76648E7A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937529, '0.000000', '1550717808.182516', UNHEX('00000000000000000000FFFF76648E7A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937530, '0.000000', '1550717809.864563', UNHEX('00000000000000000000FFFF9D3727F5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937531, '0.000000', '1550717822.879152', UNHEX('00000000000000000000FFFFB7ABB95B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/71.0.3578.89 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937532, '0.000000', '1550717825.604042', UNHEX('00000000000000000000FFFFB7ABB95B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/71.0.3578.89 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937533, '0.000000', '1550717826.791759', UNHEX('00000000000000000000FFFF73A4483F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937534, '0.000000', '1550717827.386202', UNHEX('00000000000000000000FFFFB7ABB95B'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/71.0.3578.89 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2937535, '0.000000', '1550717828.586836', UNHEX('00000000000000000000FFFF73A4483F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937536, '0.000000', '1550717830.599463', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937537, '0.000000', '1550717830.584696', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937538, '0.000000', '1550717865.084033', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937539, '0.000000', '1550717865.074991', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937540, '0.000000', '1550717866.664981', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937541, '0.000000', '1550717866.685988', UNHEX('00000000000000000000FFFF73A4483F'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; HTC U11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937542, '0.000000', '1550717879.949164', UNHEX('00000000000000000000FFFF76648E7A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937543, '0.000000', '1550717881.317925', UNHEX('00000000000000000000FFFF76648E7A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937544, '0.000000', '1550717884.701457', UNHEX('00000000000000000000FFFF9D372733'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/news-sitemap.xml', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937545, '0.000000', '1550718035.438380', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937546, '0.000000', '1550718036.687621', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937547, '0.000000', '1550718069.955879', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937548, '0.000000', '1550718071.010764', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937549, '0.000000', '1550718072.090948', UNHEX('00000000000000000000FFFFCBD9B0E7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937550, '0.000000', '1550718088.230065', UNHEX('00000000000000000000FFFFA5E17060'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937551, '0.000000', '1550718090.235983', UNHEX('00000000000000000000FFFFA5E17060'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937552, '0.000000', '1550718106.410605', UNHEX('00000000000000000000FFFF7B7BDB21'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36/', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937553, '0.000000', '1550718109.534448', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937554, '0.000000', '1550718159.647821', UNHEX('00000000000000000000FFFF3C3647E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3711.0 Safari/537.36', '', NULL, NULL),
(2937555, '0.000000', '1550718162.166058', UNHEX('00000000000000000000FFFF3C3647E9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3711.0 Safari/537.36', '', NULL, NULL),
(2937556, '0.000000', '1550718168.007167', UNHEX('00000000000000000000FFFF3C3647E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3711.0 Safari/537.36', '', NULL, NULL),
(2937557, '0.000000', '1550718169.397554', UNHEX('00000000000000000000FFFF3C3647E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3711.0 Safari/537.36', '', NULL, NULL),
(2937558, '0.000000', '1550718171.354340', UNHEX('00000000000000000000FFFF3C3647E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3711.0 Safari/537.36', '', NULL, NULL),
(2937559, '0.000000', '1550718172.763929', UNHEX('00000000000000000000FFFF3C3647E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3711.0 Safari/537.36', '', NULL, NULL),
(2937560, '0.000000', '1550718248.264291', UNHEX('00000000000000000000FFFF3C3408D2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://malaysia.search.yahoo.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937561, '0.000000', '1550718250.516938', UNHEX('00000000000000000000FFFF3C3408D2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937562, '0.000000', '1550718264.283158', UNHEX('00000000000000000000FFFF3C3408D2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937563, '0.000000', '1550718265.544903', UNHEX('00000000000000000000FFFF3C3408D2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937564, '0.000000', '1550718299.203420', UNHEX('00000000000000000000FFFF4FB60937'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1', '', NULL, NULL),
(2937565, '0.000000', '1550718300.735287', UNHEX('00000000000000000000FFFF4FB60937'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1', '', NULL, NULL),
(2937566, '0.000000', '1550718386.076671', UNHEX('00000000000000000000FFFFDB5C487E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937567, '0.000000', '1550718388.789673', UNHEX('00000000000000000000FFFFDB5C487E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937568, '0.000000', '1550718403.411141', UNHEX('00000000000000000000FFFF22E7F1BF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36', '', NULL, NULL),
(2937569, '0.000000', '1550718450.212974', UNHEX('00000000000000000000FFFFAF91DBD1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937570, '0.000000', '1550718476.158515', UNHEX('00000000000000000000FFFF7749DB32'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36', '', NULL, NULL),
(2937571, '0.000000', '1550718501.077122', UNHEX('00000000000000000000FFFF7749DB32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36', '', NULL, NULL),
(2937572, '0.000000', '1550718512.809509', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937573, '0.000000', '1550718543.001037', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937574, '0.000000', '1550718553.002411', UNHEX('00000000000000000000FFFF3C327483'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937575, '0.000000', '1550718555.027858', UNHEX('00000000000000000000FFFF3C327483'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937576, '0.000000', '1550718558.495280', UNHEX('00000000000000000000FFFF3C327483'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937577, '0.000000', '1550718559.802311', UNHEX('00000000000000000000FFFF3C327483'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937578, '0.000000', '1550718569.866909', UNHEX('00000000000000000000FFFF3C327483'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937579, '0.000000', '1550718570.882859', UNHEX('00000000000000000000FFFF3C327483'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937580, '0.000000', '1550718689.814372', UNHEX('00000000000000000000FFFF7C5231FC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36', '', NULL, NULL),
(2937581, '0.000000', '1550718693.662227', UNHEX('00000000000000000000FFFF7C5231FC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36', '', NULL, NULL),
(2937582, '0.000000', '1550718812.833531', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937583, '0.000000', '1550718864.035769', UNHEX('00000000000000000000FFFFD319828B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937584, '0.000000', '1550718865.723530', UNHEX('00000000000000000000FFFFD319828B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937585, '0.000000', '1550718875.219295', UNHEX('00000000000000000000FFFFD319828B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937586, '0.000000', '1550718876.350853', UNHEX('00000000000000000000FFFFD319828B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937587, '0.000000', '1550718954.168321', UNHEX('00000000000000000000FFFFAF8BC54D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937588, '0.000000', '1550718964.409441', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937589, '0.000000', '1550718979.306612', UNHEX('00000000000000000000FFFF2A9C8920'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 YisouSpider/5.0 Safari/537.36', '', NULL, NULL),
(2937590, '0.000000', '1550718980.853187', UNHEX('00000000000000000000FFFF6A0B9E1C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'YisouSpider', '', NULL, NULL),
(2937591, '0.000000', '1550719029.075409', UNHEX('00000000000000000000FFFFB07AA0A6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937592, '0.000000', '1550719031.793535', UNHEX('00000000000000000000FFFFB07AA0A6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937593, '0.000000', '1550719039.491462', UNHEX('00000000000000000000FFFFB07AA0A6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937594, '0.000000', '1550719041.235562', UNHEX('00000000000000000000FFFFB07AA0A6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937595, '0.000000', '1550719112.540100', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937596, '0.000000', '1550719138.650334', UNHEX('00000000000000000000FFFFAF8A1D7B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937597, '0.000000', '1550719145.877546', UNHEX('00000000000000000000FFFFAF8A365C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.bursamalaysia.com/market/listed-companies/list-of-companies/plc-profile.html?stock_code=5272', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937598, '0.000000', '1550719148.543265', UNHEX('00000000000000000000FFFFAF8A365C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937599, '0.000000', '1550719151.107470', UNHEX('00000000000000000000FFFF71D23905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937600, '0.000000', '1550719155.410539', UNHEX('00000000000000000000FFFF71D23905'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937601, '0.000000', '1550719158.314360', UNHEX('00000000000000000000FFFF71D23905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937602, '0.000000', '1550719159.729347', UNHEX('00000000000000000000FFFF71D23905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937603, '0.000000', '1550719160.367861', UNHEX('00000000000000000000FFFF73849C6D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937604, '0.000000', '1550719161.450841', UNHEX('00000000000000000000FFFF71D23905'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937605, '0.000000', '1550719163.824821', UNHEX('00000000000000000000FFFF73849C6D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937606, '0.000000', '1550719168.381977', UNHEX('00000000000000000000FFFF71D23905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937607, '0.000000', '1550719169.859210', UNHEX('00000000000000000000FFFF71D23905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937608, '0.000000', '1550719171.212788', UNHEX('00000000000000000000FFFF71D23905'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937609, '0.000000', '1550719171.964240', UNHEX('00000000000000000000FFFF73849C6D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937610, '0.000000', '1550719173.181807', UNHEX('00000000000000000000FFFF73849C6D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937611, '0.000000', '1550719175.937911', UNHEX('00000000000000000000FFFF73849C6D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937612, '0.000000', '1550719176.012812', UNHEX('00000000000000000000FFFF73849C6D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937613, '0.000000', '1550719285.709888', UNHEX('00000000000000000000FFFF3A1B72F7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://en.wikipedia.org/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937614, '0.000000', '1550719288.610771', UNHEX('00000000000000000000FFFF3A1B72F7'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937615, '0.000000', '1550719305.542904', UNHEX('00000000000000000000FFFF3A1B72F7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937616, '0.000000', '1550719307.224118', UNHEX('00000000000000000000FFFF3A1B72F7'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937617, '0.000000', '1550719395.819275', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937618, '0.000000', '1550719402.922667', UNHEX('00000000000000000000FFFF42F94217'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/dissolved-air-floatation-daf/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2937619, '0.000000', '1550719409.145356', UNHEX('00000000000000000000FFFFD3186998'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937620, '0.000000', '1550719410.905228', UNHEX('00000000000000000000FFFFD3186998'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937621, '0.000000', '1550719413.588376', UNHEX('00000000000000000000FFFFD3186998'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937622, '0.000000', '1550719417.824418', UNHEX('00000000000000000000FFFFD3186998'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937623, '0.000000', '1550719419.040118', UNHEX('00000000000000000000FFFFD3186998'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937624, '0.000000', '1550719420.217250', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937625, '0.000000', '1550719444.778824', UNHEX('00000000000000000000FFFF43C0331A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20100101 Firefox/13.0.1', '', NULL, NULL),
(2937626, '0.000000', '1550719529.760523', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937627, '0.000000', '1550719560.213409', UNHEX('00000000000000000000FFFF71D2B36E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 5A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937628, '0.000000', '1550719563.655822', UNHEX('00000000000000000000FFFF71D2B36E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 5A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2937629, '0.000000', '1550719580.699658', UNHEX('00000000000000000000FFFFB956A46B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', '', NULL, NULL),
(2937630, '0.000000', '1550719581.954109', UNHEX('00000000000000000000FFFFB956A46B'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2937631, '0.000000', '1550719615.075464', UNHEX('00000000000000000000FFFFAF8BC176'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937632, '0.000000', '1550719780.579247', UNHEX('00000000000000000000FFFF797B0C32'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937633, '0.000000', '1550719780.936106', UNHEX('00000000000000000000FFFF7385660E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937634, '0.000000', '1550719781.901605', UNHEX('00000000000000000000FFFF7385660E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937635, '0.000000', '1550719782.665181', UNHEX('00000000000000000000FFFF797B0C32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937636, '0.000000', '1550719783.869772', UNHEX('00000000000000000000FFFF7385660E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937637, '0.000000', '1550719799.148611', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937638, '0.000000', '1550719801.741311', UNHEX('00000000000000000000FFFF73A4AA71'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937639, '0.000000', '1550719818.093281', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937640, '0.000000', '1550719818.968388', UNHEX('00000000000000000000FFFF797A340D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937641, '0.000000', '1550719822.633079', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937642, '0.000000', '1550719825.345685', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937643, '0.000000', '1550719826.797567', UNHEX('00000000000000000000FFFFAF8DB96B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937644, '0.000000', '1550719828.063406', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937645, '0.000000', '1550719834.001178', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937646, '0.000000', '1550719835.336195', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937647, '0.000000', '1550719838.017516', UNHEX('00000000000000000000FFFF7385660E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937648, '0.000000', '1550719839.437610', UNHEX('00000000000000000000FFFF7385660E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937649, '0.000000', '1550719841.045469', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', '', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937650, '0.000000', '1550719842.114283', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/code-of-conduct/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937651, '0.000000', '1550719850.986400', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', '', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937652, '0.000000', '1550719852.214668', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937653, '0.000000', '1550719866.640859', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937654, '0.000000', '1550719870.068147', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937655, '0.000000', '1550719871.371691', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937656, '0.000000', '1550719877.942569', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937657, '0.000000', '1550719879.137007', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937658, '0.000000', '1550719898.191010', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937659, '0.000000', '1550719898.518917', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937660, '0.000000', '1550719900.433624', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937661, '0.000000', '1550719901.039449', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937662, '0.000000', '1550719905.820856', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937663, '0.000000', '1550719907.012932', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937664, '0.000000', '1550719907.638648', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937665, '0.000000', '1550719908.508282', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937666, '0.000000', '1550719909.598187', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937667, '0.000000', '1550719918.185699', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937668, '0.000000', '1550719919.282136', UNHEX('00000000000000000000FFFFAF8DB96B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937669, '0.000000', '1550719978.335228', UNHEX('00000000000000000000FFFF79786542'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937670, '0.000000', '1550719979.932118', UNHEX('00000000000000000000FFFF79786542'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937671, '0.000000', '1550720002.596133', UNHEX('00000000000000000000FFFFC063F5A0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'python-requests/2.20.1', '', NULL, NULL),
(2937672, '0.000000', '1550720055.096368', UNHEX('00000000000000000000FFFFCAB8969C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937673, '0.000000', '1550720056.727789', UNHEX('00000000000000000000FFFFCAB8969C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937674, '0.000000', '1550720068.820988', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937675, '0.000000', '1550720095.378857', UNHEX('00000000000000000000FFFF7385660E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937676, '0.000000', '1550720097.422021', UNHEX('00000000000000000000FFFF7385660E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937677, '0.000000', '1550720111.520221', UNHEX('00000000000000000000FFFF7385660E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937678, '0.000000', '1550720156.968940', UNHEX('00000000000000000000FFFF73A454D1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937679, '0.000000', '1550720178.288949', UNHEX('00000000000000000000FFFFD319828B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937680, '0.000000', '1550720179.524165', UNHEX('00000000000000000000FFFFD319828B'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763', '', NULL, NULL),
(2937681, '0.000000', '1550720207.840273', UNHEX('00000000000000000000FFFFB7AB5664'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/aquasmart/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; WAS-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937682, '0.000000', '1550720210.250783', UNHEX('00000000000000000000FFFFB7AB5664'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/aquasmart/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/aquasmart/', 'Mozilla/5.0 (Linux; Android 8.0.0; WAS-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937683, '0.000000', '1550720212.183055', UNHEX('00000000000000000000FFFFB7AB5664'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/aquasmart/', 'Mozilla/5.0 (Linux; Android 8.0.0; WAS-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937684, '0.000000', '1550720212.982340', UNHEX('00000000000000000000FFFFB7AB5664'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/aquasmart/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/aquasmart/', 'Mozilla/5.0 (Linux; Android 8.0.0; WAS-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937685, '0.000000', '1550720213.620603', UNHEX('00000000000000000000FFFFB7AB5664'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/aquasmart/', 'Mozilla/5.0 (Linux; Android 8.0.0; WAS-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937686, '0.000000', '1550720221.570219', UNHEX('00000000000000000000FFFF36F33594'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36', '', NULL, NULL),
(2937687, '0.000000', '1550720222.537846', UNHEX('00000000000000000000FFFFAF90D609'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937688, '0.000000', '1550720224.996505', UNHEX('00000000000000000000FFFF36F33594'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed', '', 'Rome Client (http://tinyurl.com/64t5n) Ver: UNKNOWN', '', NULL, NULL),
(2937689, '0.000000', '1550720224.984276', UNHEX('00000000000000000000FFFFAF90D609'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937690, '0.000000', '1550720225.762958', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937691, '0.000000', '1550720227.585778', UNHEX('00000000000000000000FFFF36F33594'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Rome Client (http://tinyurl.com/64t5n) Ver: UNKNOWN', '', NULL, NULL),
(2937692, '0.000000', '1550720228.271472', UNHEX('00000000000000000000FFFFAF90D609'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937693, '0.000000', '1550720228.318533', UNHEX('00000000000000000000FFFFAF90D609'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937694, '0.000000', '1550720228.218248', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937695, '0.000000', '1550720229.671493', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937696, '0.000000', '1550720248.450848', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937697, '0.000000', '1550720249.877872', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937698, '0.000000', '1550720257.442241', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937699, '0.000000', '1550720258.644961', UNHEX('00000000000000000000FFFF73A4AA71'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937700, '0.000000', '1550720261.694211', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937701, '0.000000', '1550720401.873910', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937702, '0.000000', '1550720411.535494', UNHEX('00000000000000000000FFFF797A5949'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937703, '0.000000', '1550720427.735198', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/it-audit-executive/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2937704, '0.000000', '1550720440.622493', UNHEX('00000000000000000000FFFFAF8D9EF5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937705, '0.000000', '1550720445.523123', UNHEX('00000000000000000000FFFFAF8D9EF5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937706, '0.000000', '1550720522.630882', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-releases/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937707, '0.000000', '1550720524.561309', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-releases/', 'https://www.investors-watch.com/wp-staging/ranhill/media/press-releases/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937708, '0.000000', '1550720539.742215', UNHEX('00000000000000000000FFFF7B887436'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; U; Android 8.1.0; en-gb; POCOPHONE F1 Build/OPM1.171019.011) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.3.6-g', '', NULL, NULL),
(2937709, '0.000000', '1550720556.052480', UNHEX('00000000000000000000FFFF7B887436'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; U; Android 8.1.0; en-gb; POCOPHONE F1 Build/OPM1.171019.011) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.3.6-g', '', NULL, NULL),
(2937710, '0.000000', '1550720590.543213', UNHEX('00000000000000000000FFFFAF8A0423'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.google.com/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937711, '0.000000', '1550720592.712122', UNHEX('00000000000000000000FFFFAF8A0423'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937712, '0.000000', '1550720594.872089', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937713, '0.000000', '1550720598.019874', UNHEX('00000000000000000000FFFF73A436F6'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937714, '0.000000', '1550720599.833424', UNHEX('00000000000000000000FFFF73A436F6'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937715, '0.000000', '1550720599.898566', UNHEX('00000000000000000000FFFF73A436F6'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937716, '0.000000', '1550720601.804476', UNHEX('00000000000000000000FFFF73A436F6'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937717, '0.000000', '1550720602.012642', UNHEX('00000000000000000000FFFF73A436F6'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937718, '0.000000', '1550720610.075207', UNHEX('00000000000000000000FFFF0109F652'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937719, '0.000000', '1550720611.897745', UNHEX('00000000000000000000FFFF0109F652'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937720, '0.000000', '1550720621.321505', UNHEX('00000000000000000000FFFF0109F652'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937721, '0.000000', '1550720622.505977', UNHEX('00000000000000000000FFFF0109F652'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937722, '0.000000', '1550720627.433305', UNHEX('00000000000000000000FFFF73A451CF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937723, '0.000000', '1550720629.388569', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937724, '0.000000', '1550720631.281503', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937725, '0.000000', '1550720632.731396', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937726, '0.000000', '1550720632.732684', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937727, '0.000000', '1550720634.281639', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937728, '0.000000', '1550720634.335083', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937729, '0.000000', '1550720635.919278', UNHEX('00000000000000000000FFFF73A451CF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937730, '0.000000', '1550720639.787690', UNHEX('00000000000000000000FFFF73A451CF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937731, '0.000000', '1550720641.035191', UNHEX('00000000000000000000FFFF73A451CF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937732, '0.000000', '1550720642.523256', UNHEX('00000000000000000000FFFF73A451CF'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937733, '0.000000', '1550720642.582900', UNHEX('00000000000000000000FFFF73A451CF'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937734, '0.000000', '1550720643.761687', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937735, '0.000000', '1550720645.699949', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937736, '0.000000', '1550720647.969308', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937737, '0.000000', '1550720648.321511', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937738, '0.000000', '1550720648.920675', UNHEX('00000000000000000000FFFF73A451CF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937739, '0.000000', '1550720650.126980', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937740, '0.000000', '1550720650.604590', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2937741, '0.000000', '1550720651.541985', UNHEX('00000000000000000000FFFF73A451CF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937742, '0.000000', '1550720653.438674', UNHEX('00000000000000000000FFFF73A451CF'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937743, '0.000000', '1550720653.501338', UNHEX('00000000000000000000FFFF73A451CF'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.65', '', NULL, NULL),
(2937744, '0.000000', '1550720684.553348', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937745, '0.000000', '1550720712.656411', UNHEX('00000000000000000000FFFFAF8E54B0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937746, '0.000000', '1550720717.869838', UNHEX('00000000000000000000FFFFAF8E54B0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937747, '0.000000', '1550720721.986663', UNHEX('00000000000000000000FFFFAF8E54B0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937748, '0.000000', '1550720785.190121', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937749, '0.000000', '1550720788.411106', UNHEX('00000000000000000000FFFFD318875A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937750, '0.000000', '1550720833.066151', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937751, '0.000000', '1550720835.009137', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937752, '0.000000', '1550720848.009259', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937753, '0.000000', '1550720849.189451', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937754, '0.000000', '1550720864.266067', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11231; Pro)', '', NULL, NULL),
(2937755, '0.000000', '1550720869.486385', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; HCTE; ms-office; MSOffice 16)', '', NULL, NULL),
(2937756, '0.000000', '1550720874.336128', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11231; Pro)', '', NULL, NULL),
(2937757, '0.000000', '1550720878.796758', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; HCTE; ms-office; MSOffice 16)', '', NULL, NULL),
(2937758, '0.000000', '1550720879.266369', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937759, '0.000000', '1550720880.438480', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937760, '0.000000', '1550720881.259572', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11231; Pro)', '', NULL, NULL),
(2937761, '0.000000', '1550720883.203460', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; HCTE; ms-office; MSOffice 16)', '', NULL, NULL),
(2937762, '0.000000', '1550720884.367485', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11231; Pro)', '', NULL, NULL),
(2937763, '0.000000', '1550720885.667117', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937764, '0.000000', '1550720886.865540', UNHEX('00000000000000000000FFFFD2BA9D37'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937765, '0.000000', '1550720889.053770', UNHEX('00000000000000000000FFFFB7ABB903'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; HCTE; ms-office; MSOffice 16)', '', NULL, NULL),
(2937766, '0.000000', '1550720904.345674', UNHEX('00000000000000000000FFFFB7ABB92E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937767, '0.000000', '1550720907.763451', UNHEX('00000000000000000000FFFFB7ABB92E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937768, '0.000000', '1550720908.843982', UNHEX('00000000000000000000FFFFB7ABB92E'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937769, '0.000000', '1550720957.260393', UNHEX('00000000000000000000FFFF12CFF5B6'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; rv:27.3) Gecko/20130101 Firefox/27.3', '', NULL, NULL),
(2937770, '0.000000', '1550721082.629785', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937771, '0.000000', '1550721088.086254', UNHEX('00000000000000000000FFFF7664BEC5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937772, '0.000000', '1550721095.795044', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937773, '0.000000', '1550721097.110244', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937774, '0.000000', '1550721112.238214', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937775, '0.000000', '1550721113.806346', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937776, '0.000000', '1550721118.957282', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937777, '0.000000', '1550721122.953995', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937778, '0.000000', '1550721130.310739', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937779, '0.000000', '1550721131.780142', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937780, '0.000000', '1550721142.590226', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937781, '0.000000', '1550721143.895703', UNHEX('00000000000000000000FFFF7664BEC5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937782, '0.000000', '1550721151.399709', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937783, '0.000000', '1550721153.793268', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937784, '0.000000', '1550721170.611619', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937785, '0.000000', '1550721172.664398', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937786, '0.000000', '1550721187.206095', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937787, '0.000000', '1550721189.659869', UNHEX('00000000000000000000FFFF3D06B4DA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937788, '0.000000', '1550721195.303158', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937789, '0.000000', '1550721196.926135', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937790, '0.000000', '1550721198.091293', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937791, '0.000000', '1550721211.684975', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937792, '0.000000', '1550721213.135777', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937793, '0.000000', '1550721214.661339', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937794, '0.000000', '1550721224.818756', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937795, '0.000000', '1550721227.092833', UNHEX('00000000000000000000FFFF629EF2B2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937796, '0.000000', '1550721256.080156', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937797, '0.000000', '1550721257.597234', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937798, '0.000000', '1550721258.833560', UNHEX('00000000000000000000FFFF3D06B4DA'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937799, '0.000000', '1550721291.236466', UNHEX('00000000000000000000FFFF3A1A7F8D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937800, '0.000000', '1550721293.800030', UNHEX('00000000000000000000FFFF3A1A7F8D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937801, '0.000000', '1550721296.427303', UNHEX('00000000000000000000FFFF3A1A7F8D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937802, '0.000000', '1550721310.460793', UNHEX('00000000000000000000FFFFDB5C32B9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937803, '0.000000', '1550721323.170969', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937804, '0.000000', '1550721325.462347', UNHEX('00000000000000000000FFFF8A80F279'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', '', NULL, NULL),
(2937805, '0.000000', '1550721327.056404', UNHEX('00000000000000000000FFFF8A80F279'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2937806, '1550721336.442523', '1550721335.730000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937807, '1550721334.644358', '1550721334.080000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937808, '1550721332.957406', '1550721332.370000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937809, '1550721331.274997', '1550721330.640000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937810, '1550721329.539803', '1550721328.820000', UNHEX('00000000000000000000FFFF8A80F279'), 0, 403, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', NULL, 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2937811, '0.000000', '1550721345.695852', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937812, '0.000000', '1550721367.889061', UNHEX('00000000000000000000FFFF0E01E129'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937813, '0.000000', '1550721370.002299', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937814, '0.000000', '1550721372.670414', UNHEX('00000000000000000000FFFF362496BD'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/bursa-announcements/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2937815, '0.000000', '1550721373.718940', UNHEX('00000000000000000000FFFF0E01E129'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937816, '0.000000', '1550721373.888116', UNHEX('00000000000000000000FFFF71D2773D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937817, '0.000000', '1550721378.536786', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b', '', NULL, NULL),
(2937818, '0.000000', '1550721388.618130', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937819, '0.000000', '1550721388.872899', UNHEX('00000000000000000000FFFFD3186998'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-G960F Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2937820, '0.000000', '1550721389.916385', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937821, '0.000000', '1550721391.071221', UNHEX('00000000000000000000FFFF71D2773D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937822, '0.000000', '1550721395.936072', UNHEX('00000000000000000000FFFF0E01E129'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937823, '0.000000', '1550721397.516921', UNHEX('00000000000000000000FFFF0E01E129'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937824, '0.000000', '1550721398.836200', UNHEX('00000000000000000000FFFF0E01E129'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937825, '0.000000', '1550721403.039441', UNHEX('00000000000000000000FFFFCAB78712'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.bloomberg.com/quote/RAHH:MK', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937826, '0.000000', '1550721406.004493', UNHEX('00000000000000000000FFFFCAB78712'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937827, '0.000000', '1550721407.380339', UNHEX('00000000000000000000FFFF23C05407'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'ltx71 - (http://ltx71.com/)', '', NULL, NULL),
(2937828, '0.000000', '1550721410.356048', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937829, '0.000000', '1550721411.752554', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937830, '0.000000', '1550721412.894686', UNHEX('00000000000000000000FFFF71D2773D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937831, '0.000000', '1550721416.044369', UNHEX('00000000000000000000FFFFCAB78712'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937832, '0.000000', '1550721416.941887', UNHEX('00000000000000000000FFFFCAB78712'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937833, '0.000000', '1550721418.031779', UNHEX('00000000000000000000FFFFCAB78712'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937834, '0.000000', '1550721427.272191', UNHEX('00000000000000000000FFFFCAB78712'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937835, '0.000000', '1550721428.435069', UNHEX('00000000000000000000FFFFCAB78712'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937836, '0.000000', '1550721435.405439', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937837, '0.000000', '1550721436.884456', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937838, '0.000000', '1550721438.180936', UNHEX('00000000000000000000FFFF71D2773D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937839, '0.000000', '1550721460.461450', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937840, '0.000000', '1550721461.859529', UNHEX('00000000000000000000FFFF71D2773D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937841, '0.000000', '1550721465.375879', UNHEX('00000000000000000000FFFF71D2773D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937842, '0.000000', '1550721475.739893', UNHEX('00000000000000000000FFFF0E01E129'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937843, '0.000000', '1550721477.360213', UNHEX('00000000000000000000FFFF0E01E129'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937844, '0.000000', '1550721478.894580', UNHEX('00000000000000000000FFFF0E01E129'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937845, '0.000000', '1550721525.532464', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937846, '0.000000', '1550721556.016989', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937847, '0.000000', '1550721591.100256', UNHEX('00000000000000000000FFFF2ABDCD17'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937848, '0.000000', '1550721615.394199', UNHEX('00000000000000000000FFFFD31913FA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937849, '0.000000', '1550721617.632947', UNHEX('00000000000000000000FFFFD31913FA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937850, '0.000000', '1550721622.490646', UNHEX('00000000000000000000FFFFD31913FA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937851, '0.000000', '1550721623.567391', UNHEX('00000000000000000000FFFFD31913FA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937852, '0.000000', '1550721624.829565', UNHEX('00000000000000000000FFFFD31913FA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937853, '0.000000', '1550721665.152779', UNHEX('00000000000000000000FFFFD2BA8798'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937854, '0.000000', '1550721667.110692', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937855, '0.000000', '1550721668.962767', UNHEX('00000000000000000000FFFFB7ABB914'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937856, '0.000000', '1550721670.115274', UNHEX('00000000000000000000FFFFB7ABB914'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937857, '0.000000', '1550721686.143158', UNHEX('00000000000000000000FFFFD31913FA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937858, '0.000000', '1550721687.666385', UNHEX('00000000000000000000FFFFD31913FA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937859, '0.000000', '1550721718.044106', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937860, '0.000000', '1550721719.577744', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937861, '0.000000', '1550721720.711285', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937862, '0.000000', '1550721731.287261', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937863, '0.000000', '1550721732.734887', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937864, '0.000000', '1550721733.998672', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937865, '0.000000', '1550721735.598203', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937866, '0.000000', '1550721740.140354', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937867, '0.000000', '1550721741.357680', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937868, '0.000000', '1550721742.848423', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937869, '0.000000', '1550721766.767580', UNHEX('00000000000000000000FFFF3D0694D3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937870, '0.000000', '1550721770.878446', UNHEX('00000000000000000000FFFF3D0694D3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937871, '0.000000', '1550721797.927994', UNHEX('00000000000000000000FFFFB7AB527E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937872, '0.000000', '1550721799.353317', UNHEX('00000000000000000000FFFFB7AB527E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937873, '0.000000', '1550721800.893657', UNHEX('00000000000000000000FFFFB7AB527E'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937874, '0.000000', '1550721810.438941', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937875, '0.000000', '1550721811.743918', UNHEX('00000000000000000000FFFFB7ABB914'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937876, '0.000000', '1550721813.026482', UNHEX('00000000000000000000FFFFB7ABB914'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937877, '0.000000', '1550721816.156182', UNHEX('00000000000000000000FFFF73A45D7E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937878, '0.000000', '1550721821.836227', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937879, '0.000000', '1550721823.398001', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937880, '0.000000', '1550721824.947816', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937881, '0.000000', '1550721832.416861', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937882, '0.000000', '1550721838.013164', UNHEX('00000000000000000000FFFF73A45D7E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937883, '0.000000', '1550721844.521905', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937884, '0.000000', '1550721845.574545', UNHEX('00000000000000000000FFFF73A45D7E'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937885, '0.000000', '1550721846.585838', UNHEX('00000000000000000000FFFF73A45D7E'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-N950F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937886, '0.000000', '1550721847.025807', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937887, '0.000000', '1550721848.770211', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937888, '0.000000', '1550721864.258403', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937889, '0.000000', '1550721866.167588', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937890, '0.000000', '1550721879.013821', UNHEX('00000000000000000000FFFFA5E17060'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937891, '0.000000', '1550721885.296045', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937892, '0.000000', '1550721887.316761', UNHEX('00000000000000000000FFFFAF88DF59'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937893, '0.000000', '1550721890.395831', UNHEX('00000000000000000000FFFFD3187C12'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937894, '0.000000', '1550721891.104123', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937895, '0.000000', '1550721892.274848', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937896, '0.000000', '1550721896.380153', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937897, '0.000000', '1550721897.527813', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937898, '0.000000', '1550721908.469256', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937899, '0.000000', '1550721909.746894', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937900, '0.000000', '1550721915.297222', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937901, '0.000000', '1550721916.624282', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937902, '0.000000', '1550721919.825509', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937903, '0.000000', '1550721921.041811', UNHEX('00000000000000000000FFFFAF88DF59'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937904, '0.000000', '1550721923.061091', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937905, '0.000000', '1550721924.314659', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937906, '0.000000', '1550721924.567294', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937907, '0.000000', '1550721925.671371', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937908, '0.000000', '1550721926.604073', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937909, '0.000000', '1550721927.518389', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937910, '0.000000', '1550721929.488450', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937911, '0.000000', '1550721929.810116', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937912, '0.000000', '1550721930.805507', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937913, '0.000000', '1550721931.778953', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937914, '0.000000', '1550721932.936893', UNHEX('00000000000000000000FFFFB7ABB914'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2937915, '0.000000', '1550721942.354147', UNHEX('00000000000000000000FFFFCABE9442'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937916, '0.000000', '1550721944.021337', UNHEX('00000000000000000000FFFFCABE9442'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937917, '0.000000', '1550721956.677619', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937918, '0.000000', '1550721958.261417', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937919, '0.000000', '1550721961.335123', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937920, '0.000000', '1550721961.340294', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937921, '0.000000', '1550721985.110233', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2937922, '0.000000', '1550721994.479157', UNHEX('00000000000000000000FFFF42F94219'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2937923, '0.000000', '1550721999.751997', UNHEX('00000000000000000000FFFF7AA35F4B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937924, '0.000000', '1550722039.535928', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937925, '0.000000', '1550722041.017630', UNHEX('00000000000000000000FFFF73A44D73'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937926, '0.000000', '1550722043.497565', UNHEX('00000000000000000000FFFFA5E17061'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937927, '0.000000', '1550722048.605082', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937928, '0.000000', '1550722048.686131', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937929, '0.000000', '1550722051.497385', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2937930, '0.000000', '1550722059.780621', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937931, '0.000000', '1550722061.328523', UNHEX('00000000000000000000FFFF2ABDCD17'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937932, '0.000000', '1550722065.067642', UNHEX('00000000000000000000FFFFD2BA8798'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937933, '0.000000', '1550722067.482811', UNHEX('00000000000000000000FFFFD2BA8798'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937934, '0.000000', '1550722077.476226', UNHEX('00000000000000000000FFFFD2BA8798'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937935, '0.000000', '1550722078.775145', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937936, '0.000000', '1550722079.003023', UNHEX('00000000000000000000FFFFD2BA8798'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937937, '0.000000', '1550722080.496816', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937938, '0.000000', '1550722085.948900', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937939, '0.000000', '1550722087.774063', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937940, '0.000000', '1550722087.761757', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937941, '0.000000', '1550722089.569578', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937942, '0.000000', '1550722095.530657', UNHEX('00000000000000000000FFFF73A45B54'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937943, '0.000000', '1550722130.553273', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937944, '0.000000', '1550722132.964797', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937945, '0.000000', '1550722132.705296', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937946, '0.000000', '1550722133.438459', UNHEX('00000000000000000000FFFF73A44D73'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2937947, '0.000000', '1550722147.436796', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937948, '0.000000', '1550722148.940983', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937949, '0.000000', '1550722158.419832', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937950, '0.000000', '1550722159.924842', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'https://www.investors-watch.com/wp-staging/ranhill/carbon-footprint/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937951, '0.000000', '1550722185.653024', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937952, '0.000000', '1550722188.424089', UNHEX('00000000000000000000FFFF73A44F3C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2937953, '0.000000', '1550722211.989067', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937954, '0.000000', '1550722212.429423', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937955, '0.000000', '1550722213.809796', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937956, '0.000000', '1550722213.924376', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937957, '0.000000', '1550722215.278036', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937958, '0.000000', '1550722222.961490', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937959, '0.000000', '1550722224.233749', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937960, '0.000000', '1550722242.005239', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937961, '0.000000', '1550722243.452445', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937962, '0.000000', '1550722246.556767', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937963, '0.000000', '1550722248.185202', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937964, '0.000000', '1550722251.847499', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937965, '0.000000', '1550722252.994783', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937966, '0.000000', '1550722256.199529', UNHEX('00000000000000000000FFFF18152F68'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2937967, '0.000000', '1550722258.119760', UNHEX('00000000000000000000FFFF18152F68'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2937968, '0.000000', '1550722260.043517', UNHEX('00000000000000000000FFFF18152F68'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2937969, '0.000000', '1550722262.051791', UNHEX('00000000000000000000FFFF18152F68'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', 'loginFailInvalidUsername', NULL, NULL),
(2937970, '0.000000', '1550722264.141744', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937971, '0.000000', '1550722265.536144', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937972, '0.000000', '1550722267.156995', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937973, '0.000000', '1550722268.433654', UNHEX('00000000000000000000FFFF73A44F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2937974, '0.000000', '1550722277.199134', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937975, '0.000000', '1550722278.351913', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937976, '0.000000', '1550722289.652662', UNHEX('00000000000000000000FFFF3C32FCB0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937977, '0.000000', '1550722291.496874', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937978, '0.000000', '1550722292.942720', UNHEX('00000000000000000000FFFF2ABDCD17'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937979, '0.000000', '1550722295.766276', UNHEX('00000000000000000000FFFF3C32FCB0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937980, '0.000000', '1550722303.851228', UNHEX('00000000000000000000FFFF3C32FCB0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937981, '0.000000', '1550722305.350608', UNHEX('00000000000000000000FFFF3C32FCB0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937982, '0.000000', '1550722310.693106', UNHEX('00000000000000000000FFFF3C32FCB0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937983, '0.000000', '1550722312.297758', UNHEX('00000000000000000000FFFF3C32FCB0'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937984, '0.000000', '1550722322.649578', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937985, '0.000000', '1550722345.299389', UNHEX('00000000000000000000FFFFCB7936AA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937986, '0.000000', '1550722350.210062', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937987, '0.000000', '1550722351.558306', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937988, '0.000000', '1550722352.973922', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937989, '0.000000', '1550722354.431929', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937990, '0.000000', '1550722358.282985', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937991, '0.000000', '1550722363.683548', UNHEX('00000000000000000000FFFF67260F41'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/press.php', '', 'Mozilla/5.0 (compatible; MSIE 9.11; Windows NT 6.2; Trident/5.0)', '', NULL, NULL),
(2937992, '0.000000', '1550722371.737860', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937993, '0.000000', '1550722373.527212', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937994, '0.000000', '1550722375.103039', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2937995, '0.000000', '1550722377.408896', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937996, '0.000000', '1550722377.485799', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/carbonfootprint@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937997, '0.000000', '1550722377.580472', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/waterreclamation@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937998, '0.000000', '1550722377.629939', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2016/10/rws-pic@2x.jpg', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2937999, '0.000000', '1550722379.147865', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938000, '0.000000', '1550722380.178368', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938001, '0.000000', '1550722382.110848', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938002, '0.000000', '1550722389.843088', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938003, '0.000000', '1550722409.751884', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938004, '0.000000', '1550722412.397827', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938005, '0.000000', '1550722414.863850', UNHEX('00000000000000000000FFFF73A44EDE'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.1.1; CPH1717) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36', '', NULL, NULL),
(2938006, '0.000000', '1550722416.175959', UNHEX('00000000000000000000FFFF73A44EDE'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.1.1; CPH1717) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36', '', NULL, NULL),
(2938007, '0.000000', '1550722416.109496', UNHEX('00000000000000000000FFFF73A44EDE'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.1.1; CPH1717) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36', '', NULL, NULL),
(2938008, '0.000000', '1550722417.802961', UNHEX('00000000000000000000FFFF73A44EDE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.1.1; CPH1717) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36', '', NULL, NULL),
(2938009, '0.000000', '1550722419.399802', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938010, '0.000000', '1550722419.479651', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938011, '0.000000', '1550722420.562300', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938012, '0.000000', '1550722422.994780', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938013, '0.000000', '1550722424.100214', UNHEX('00000000000000000000FFFF73A44EDE'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.1; CPH1717) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36', '', NULL, NULL),
(2938014, '0.000000', '1550722425.579321', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938015, '0.000000', '1550722426.236810', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938016, '0.000000', '1550722427.273692', UNHEX('00000000000000000000FFFF73A44EDE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.1; CPH1717) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36', '', NULL, NULL),
(2938017, '0.000000', '1550722428.065507', UNHEX('00000000000000000000FFFF73A44EDE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 7.1.1; CPH1717) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36', '', NULL, NULL),
(2938018, '0.000000', '1550722428.988653', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938019, '0.000000', '1550722429.421545', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938020, '0.000000', '1550722441.578408', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938021, '0.000000', '1550722443.791997', UNHEX('00000000000000000000FFFF73A436F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938022, '0.000000', '1550722445.730076', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938023, '0.000000', '1550722445.768889', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938024, '0.000000', '1550722447.223015', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938025, '0.000000', '1550722447.209369', UNHEX('00000000000000000000FFFF73A436F6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0.1; CPH1701 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Mobile Safari/537.36 OPR/37.0.2192.112031', '', NULL, NULL),
(2938026, '0.000000', '1550722475.610648', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938027, '0.000000', '1550722483.424122', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938028, '0.000000', '1550722484.751411', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938029, '0.000000', '1550722492.468708', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938030, '0.000000', '1550722493.945223', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938031, '0.000000', '1550722506.733457', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938032, '0.000000', '1550722509.073757', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938033, '0.000000', '1550722513.596638', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938034, '0.000000', '1550722514.048752', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938035, '0.000000', '1550722514.971515', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938036, '0.000000', '1550722515.733509', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938037, '0.000000', '1550722516.747071', UNHEX('00000000000000000000FFFF73A45B54'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938038, '0.000000', '1550722518.338028', UNHEX('00000000000000000000FFFF73A45B54'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15', '', NULL, NULL),
(2938039, '0.000000', '1550722520.108384', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938040, '0.000000', '1550722521.422355', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938041, '0.000000', '1550722526.553432', UNHEX('00000000000000000000FFFF3C312699'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938042, '0.000000', '1550722528.909799', UNHEX('00000000000000000000FFFF3C312699'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938043, '0.000000', '1550722531.972624', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938044, '0.000000', '1550722533.081261', UNHEX('00000000000000000000FFFF3C312699'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938045, '0.000000', '1550722533.290117', UNHEX('00000000000000000000FFFF3C312699'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938046, '0.000000', '1550722534.255105', UNHEX('00000000000000000000FFFFCB7936AA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938047, '0.000000', '1550722580.192839', UNHEX('00000000000000000000FFFFB7AB594A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-mohamed-azman-yahya/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 4.2.2; C2305 Build/16.0.B.2.13) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36', '', NULL, NULL),
(2938048, '0.000000', '1550722586.550880', UNHEX('00000000000000000000FFFF67260F41'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/press.php', '', 'Mozilla/5.0 (compatible; MSIE 9.11; Windows NT 6.2; Trident/5.0)', '', NULL, NULL),
(2938049, '0.000000', '1550722643.049021', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'https://www.investors-watch.com/wp-staging/ranhill/media/press-releases/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938050, '0.000000', '1550722644.282940', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938051, '0.000000', '1550722674.145112', UNHEX('00000000000000000000FFFFAF8A3A8D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938052, '0.000000', '1550722806.296912', UNHEX('00000000000000000000FFFF113A62EF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2938053, '0.000000', '1550722807.593260', UNHEX('00000000000000000000FFFF113A62EF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/assistant-manager-corporate-finance/', '', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Applebot/0.1; +http://www.apple.com/go/applebot)', '', NULL, NULL),
(2938054, '0.000000', '1550722848.443647', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938055, '0.000000', '1550722875.255009', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/home/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938056, '0.000000', '1550722906.201171', UNHEX('00000000000000000000FFFFB7AB42DB'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938057, '0.000000', '1550722906.299421', UNHEX('00000000000000000000FFFFB7AB42DB'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938058, '0.000000', '1550722931.066409', UNHEX('00000000000000000000FFFF766592F6'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938059, '0.000000', '1550722932.240539', UNHEX('00000000000000000000FFFF766592F6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938060, '0.000000', '1550722934.157724', UNHEX('00000000000000000000FFFF766592F6'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938061, '0.000000', '1550722945.025140', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/comments/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938062, '0.000000', '1550723105.876417', UNHEX('00000000000000000000FFFFAF8BB021'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938063, '0.000000', '1550723107.392430', UNHEX('00000000000000000000FFFFAF8BB021'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938064, '0.000000', '1550723109.107371', UNHEX('00000000000000000000FFFFAF8BB021'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938065, '0.000000', '1550723109.115061', UNHEX('00000000000000000000FFFFAF8BB021'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938066, '0.000000', '1550723146.694796', UNHEX('00000000000000000000FFFF42F94218'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-saw-choo-boon/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938067, '0.000000', '1550723205.541886', UNHEX('00000000000000000000FFFFD3185E22'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36', '', NULL, NULL),
(2938068, '0.000000', '1550723208.012879', UNHEX('00000000000000000000FFFFD3185E22'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36', '', NULL, NULL),
(2938069, '0.000000', '1550723251.524181', UNHEX('00000000000000000000FFFF71D233DC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938070, '0.000000', '1550723252.714552', UNHEX('00000000000000000000FFFF71D233DC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938071, '0.000000', '1550723254.082437', UNHEX('00000000000000000000FFFF71D233DC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938072, '0.000000', '1550723254.922092', UNHEX('00000000000000000000FFFF71D233DC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938073, '0.000000', '1550723257.553826', UNHEX('00000000000000000000FFFF71D233DC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938074, '0.000000', '1550723280.312626', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938075, '0.000000', '1550723286.551217', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938076, '0.000000', '1550723289.131263', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938077, '0.000000', '1550723290.872698', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938078, '0.000000', '1550723292.156040', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938079, '0.000000', '1550723304.159909', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938080, '0.000000', '1550723305.914095', UNHEX('00000000000000000000FFFFD21307A1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938081, '0.000000', '1550723323.112856', UNHEX('00000000000000000000FFFF36249497'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-holdings%E4%B8%8A%E5%B8%82%E4%B8%BB%E8%A6%81%E4%BA%A4%E6%98%93%E6%9D%BF/video/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2938082, '0.000000', '1550723336.316010', UNHEX('00000000000000000000FFFF71D2CBD2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/datuk-abdullah-karim/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938083, '0.000000', '1550723338.485899', UNHEX('00000000000000000000FFFF71D2CBD2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/datuk-abdullah-karim/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/datuk-abdullah-karim/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938084, '0.000000', '1550723342.197188', UNHEX('00000000000000000000FFFF71D2CBD2'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/datuk-abdullah-karim/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938085, '0.000000', '1550723350.364250', UNHEX('00000000000000000000FFFFAF8F2972'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon.png', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 IceWarp Desktop Client/7.1.31849.0', '', NULL, NULL),
(2938086, '0.000000', '1550723350.512246', UNHEX('00000000000000000000FFFFAF8F2972'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-precomposed.png', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 IceWarp Desktop Client/7.1.31849.0', '', NULL, NULL),
(2938087, '0.000000', '1550723350.998425', UNHEX('00000000000000000000FFFFAF8F2972'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon.png', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 IceWarp Desktop Client/7.1.31849.0', '', NULL, NULL),
(2938088, '0.000000', '1550723351.218216', UNHEX('00000000000000000000FFFFAF8F2972'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/apple-touch-icon-precomposed.png', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 IceWarp Desktop Client/7.1.31849.0', '', NULL, NULL),
(2938089, '0.000000', '1550723352.381406', UNHEX('00000000000000000000FFFFAF8F2972'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 IceWarp Desktop Client/7.1.31849.0', '', NULL, NULL),
(2938090, '0.000000', '1550723353.349801', UNHEX('00000000000000000000FFFFAF8F2972'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 IceWarp Desktop Client/7.1.31849.0', '', NULL, NULL),
(2938091, '0.000000', '1550723369.029773', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938092, '0.000000', '1550723371.699494', UNHEX('00000000000000000000FFFF3C321F3C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938093, '0.000000', '1550723380.913765', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938094, '0.000000', '1550723382.306102', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938095, '0.000000', '1550723385.278447', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938096, '0.000000', '1550723386.298117', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938097, '0.000000', '1550723394.344364', UNHEX('00000000000000000000FFFFB7ABB97F'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.innisfree.com/my/en/login/login.do', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/72.0.3626.101 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2938098, '0.000000', '1550723395.826763', UNHEX('00000000000000000000FFFFB7ABB97F'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/72.0.3626.101 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2938099, '0.000000', '1550723396.882166', UNHEX('00000000000000000000FFFFB7ABB97F'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/72.0.3626.101 Mobile/15E148 Safari/605.1', '', NULL, NULL),
(2938100, '0.000000', '1550723399.496608', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938101, '0.000000', '1550723400.790948', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938102, '0.000000', '1550723407.689849', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2938103, '0.000000', '1550723411.674542', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938104, '0.000000', '1550723413.205365', UNHEX('00000000000000000000FFFF3C321F3C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938105, '0.000000', '1550723434.491193', UNHEX('00000000000000000000FFFF42F94217'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/dato-sri-lim-haw-kuang/', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938106, '0.000000', '1550723448.996091', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b', '', NULL, NULL),
(2938107, '0.000000', '1550723449.095590', UNHEX('00000000000000000000FFFF9D372733'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b', '', NULL, NULL),
(2938108, '0.000000', '1550723516.780893', UNHEX('00000000000000000000FFFF0EC0D654'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938109, '0.000000', '1550723518.551130', UNHEX('00000000000000000000FFFF0EC0D654'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938110, '0.000000', '1550723519.789541', UNHEX('00000000000000000000FFFF0EC0D654'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938111, '0.000000', '1550723568.489350', UNHEX('00000000000000000000FFFF0EC0D654'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938112, '0.000000', '1550723569.847157', UNHEX('00000000000000000000FFFF0EC0D654'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938113, '0.000000', '1550723571.129989', UNHEX('00000000000000000000FFFF0EC0D654'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938114, '0.000000', '1550723650.633121', UNHEX('00000000000000000000FFFF788A50CE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938115, '0.000000', '1550723654.041996', UNHEX('00000000000000000000FFFF788A50CE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938116, '0.000000', '1550723660.439906', UNHEX('00000000000000000000FFFF788A50CE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938117, '0.000000', '1550723662.588301', UNHEX('00000000000000000000FFFF788A50CE'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938118, '0.000000', '1550723668.721637', UNHEX('00000000000000000000FFFF788A50CE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938119, '0.000000', '1550723668.815748', UNHEX('00000000000000000000FFFF788A50CE'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 7.1.1; SM-J250F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938120, '0.000000', '1550723696.822747', UNHEX('00000000000000000000FFFF01204385'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938121, '0.000000', '1550723699.173782', UNHEX('00000000000000000000FFFF01204385'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938122, '0.000000', '1550723710.369590', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938123, '0.000000', '1550723711.764114', UNHEX('00000000000000000000FFFF0EC0D654'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938124, '0.000000', '1550723723.900152', UNHEX('00000000000000000000FFFF0EC0D654'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938125, '0.000000', '1550723824.580720', UNHEX('00000000000000000000FFFFD318643B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938126, '0.000000', '1550723855.813329', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938127, '0.000000', '1550723862.403695', UNHEX('00000000000000000000FFFF012044E2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938128, '0.000000', '1550723948.486211', UNHEX('00000000000000000000FFFFD21307A1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938129, '0.000000', '1550723999.371677', UNHEX('00000000000000000000FFFF797A5326'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938130, '0.000000', '1550724002.051794', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/press-release/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938131, '0.000000', '1550724004.324345', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938132, '0.000000', '1550724006.197189', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938133, '0.000000', '1550724007.822537', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-helps-preserving-the-environment-by-cleaning-up-likas-bay/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938134, '0.000000', '1550724010.367226', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-declares-dividend-of-7-8-sen-for-fy2016/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938135, '0.000000', '1550724011.721608', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-welcomes-us-ambassador-to-its-clean-energy-power-plant-in-sabah/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938136, '0.000000', '1550724013.286581', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-signs-mou-with-iwk/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938137, '0.000000', '1550724015.323634', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-is-on-track-to-expand-its-business-in-china/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938138, '0.000000', '1550724017.614054', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-signs-term-sheet-to-divest-60-of-its-water-treatment-operations-to-siic-environment-an-sgx-st-mainboard-listed-company/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938139, '0.000000', '1550724019.148722', UNHEX('00000000000000000000FFFFCA419E32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-awarded-nrw-contract-worth-rm15-9-million/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938140, '0.000000', '1550724021.052393', UNHEX('00000000000000000000FFFF0E8F0F32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-bullish-on-growth-prospects/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938141, '0.000000', '1550724023.498686', UNHEX('00000000000000000000FFFF0E8F0F32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill%e6%88%90%e9%95%bf%e5%89%8d%e6%99%af%e7%9c%8b%e6%b6%a8/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938142, '0.000000', '1550724025.272934', UNHEX('00000000000000000000FFFF0E8F0F32'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-yakin-dengan-prospek-perkembangan/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938143, '0.000000', '1550724027.077557', UNHEX('00000000000000000000FFFFB6490D76'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-adopts-new-technology-for-water-leak-detection/', '', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.11', '', NULL, NULL),
(2938144, '0.000000', '1550724086.534656', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938145, '0.000000', '1550724088.175455', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2938146, '0.000000', '1550724089.111211', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938147, '0.000000', '1550724093.753872', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938148, '0.000000', '1550724095.289599', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938149, '0.000000', '1550724096.909996', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938150, '0.000000', '1550724096.917411', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938151, '0.000000', '1550724144.112443', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938152, '0.000000', '1550724145.741464', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2938153, '0.000000', '1550724147.445653', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938154, '0.000000', '1550724149.117046', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938155, '0.000000', '1550724149.218600', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938156, '0.000000', '1550724187.617637', UNHEX('00000000000000000000FFFF73A4BFB1'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938157, '0.000000', '1550724187.814335', UNHEX('00000000000000000000FFFF73A4BFB1'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938158, '0.000000', '1550724200.506809', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938159, '0.000000', '1550724202.886465', UNHEX('00000000000000000000FFFFAF8DEC4D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938160, '0.000000', '1550724207.999839', UNHEX('00000000000000000000FFFF2AEC65EA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36; 360Spider', '', NULL, NULL),
(2938161, '0.000000', '1550724210.537231', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938162, '0.000000', '1550724212.343613', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938163, '0.000000', '1550724214.215012', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938164, '0.000000', '1550724214.348511', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938165, '0.000000', '1550724216.024660', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938166, '0.000000', '1550724218.107010', UNHEX('00000000000000000000FFFFD3186991'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938167, '0.000000', '1550724220.827263', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938168, '0.000000', '1550724222.516922', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938169, '0.000000', '1550724224.667219', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938170, '0.000000', '1550724226.003121', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938171, '0.000000', '1550724226.682005', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938172, '0.000000', '1550724228.070688', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938173, '0.000000', '1550724230.326261', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938174, '0.000000', '1550724230.489438', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938175, '0.000000', '1550724233.668263', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938176, '0.000000', '1550724235.732583', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938177, '0.000000', '1550724236.087042', UNHEX('00000000000000000000FFFFCA4B04AD'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938178, '0.000000', '1550724248.426910', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938179, '0.000000', '1550724250.608593', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938180, '0.000000', '1550724261.460032', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938181, '0.000000', '1550724262.820124', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938182, '0.000000', '1550724345.284901', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938183, '0.000000', '1550724348.831541', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938184, '0.000000', '1550724368.995779', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938185, '0.000000', '1550724370.456383', UNHEX('00000000000000000000FFFF797A5949'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'https://www.investors-watch.com/wp-staging/ranhill/sharing-our-expertise/', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938186, '0.000000', '1550724386.869850', UNHEX('00000000000000000000FFFFD3185E22'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36', '', NULL, NULL),
(2938187, '0.000000', '1550724388.150254', UNHEX('00000000000000000000FFFFD3185E22'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36', '', NULL, NULL),
(2938188, '0.000000', '1550724400.602651', UNHEX('00000000000000000000FFFFD3185E22'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36', '', NULL, NULL),
(2938189, '0.000000', '1550724401.779470', UNHEX('00000000000000000000FFFFD3185E22'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36', '', NULL, NULL),
(2938190, '0.000000', '1550724444.814020', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938191, '0.000000', '1550724446.318358', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938192, '0.000000', '1550724447.766460', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938193, '0.000000', '1550724449.319343', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938194, '0.000000', '1550724451.178129', UNHEX('00000000000000000000FFFF771FA811'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938195, '0.000000', '1550724455.098251', UNHEX('00000000000000000000FFFF771FA811'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938196, '0.000000', '1550724458.881630', UNHEX('00000000000000000000FFFF771FA811'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938197, '0.000000', '1550724458.906185', UNHEX('00000000000000000000FFFF771FA811'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938198, '0.000000', '1550724462.622901', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938199, '0.000000', '1550724464.097080', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938200, '0.000000', '1550724472.201212', UNHEX('00000000000000000000FFFF771FA811'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938201, '0.000000', '1550724473.785796', UNHEX('00000000000000000000FFFF771FA811'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938202, '0.000000', '1550724475.710059', UNHEX('00000000000000000000FFFF771FA811'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938203, '0.000000', '1550724475.737520', UNHEX('00000000000000000000FFFF771FA811'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938204, '0.000000', '1550724486.885283', UNHEX('00000000000000000000FFFFCF2E0D14'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/dissolved-air-floatation-daf/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2938205, '0.000000', '1550724500.369279', UNHEX('00000000000000000000FFFF01093FC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938206, '0.000000', '1550724501.370320', UNHEX('00000000000000000000FFFF71D2C3E8'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938207, '0.000000', '1550724503.617478', UNHEX('00000000000000000000FFFF01093FC2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938208, '0.000000', '1550724504.934338', UNHEX('00000000000000000000FFFF71D2C3E8'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938209, '0.000000', '1550724508.039359', UNHEX('00000000000000000000FFFF01093FC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938210, '0.000000', '1550724509.455195', UNHEX('00000000000000000000FFFF01093FC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938211, '0.000000', '1550724516.320108', UNHEX('00000000000000000000FFFF01093FC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938212, '0.000000', '1550724517.820533', UNHEX('00000000000000000000FFFF01093FC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938213, '0.000000', '1550724526.559102', UNHEX('00000000000000000000FFFF71D2C3E8'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938214, '0.000000', '1550724528.016405', UNHEX('00000000000000000000FFFF71D2C3E8'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938215, '0.000000', '1550724529.616798', UNHEX('00000000000000000000FFFF71D2C3E8'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938216, '0.000000', '1550724533.072488', UNHEX('00000000000000000000FFFF01093FC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938217, '0.000000', '1550724534.344195', UNHEX('00000000000000000000FFFF01093FC2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', '', NULL, NULL),
(2938218, '0.000000', '1550724576.711122', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938219, '0.000000', '1550724660.725120', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938220, '0.000000', '1550724662.268904', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938221, '0.000000', '1550724663.669413', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938222, '0.000000', '1550724663.610539', UNHEX('00000000000000000000FFFF3C3298A5'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A605G Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938223, '0.000000', '1550724707.744637', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938224, '0.000000', '1550724709.167964', UNHEX('00000000000000000000FFFFAF8DEC4D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0', '', NULL, NULL),
(2938225, '0.000000', '1550724729.728421', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938226, '0.000000', '1550724731.157609', UNHEX('00000000000000000000FFFF012044E2'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938227, '0.000000', '1550724749.740495', UNHEX('00000000000000000000FFFFADCD211C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938228, '0.000000', '1550724860.896120', UNHEX('00000000000000000000FFFF23C05407'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'ltx71 - (http://ltx71.com/)', '', NULL, NULL),
(2938229, '0.000000', '1550724923.161867', UNHEX('00000000000000000000FFFF7B88760A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938230, '0.000000', '1550724924.811299', UNHEX('00000000000000000000FFFF7B88760A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938231, '0.000000', '1550724932.038529', UNHEX('00000000000000000000FFFF7B88760A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938232, '0.000000', '1550724933.296513', UNHEX('00000000000000000000FFFF7B88760A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938233, '0.000000', '1550724934.558304', UNHEX('00000000000000000000FFFF7B88760A'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938234, '0.000000', '1550724987.299395', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2938235, '0.000000', '1550724996.695965', UNHEX('00000000000000000000FFFFAF8BFCAA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938236, '0.000000', '1550724999.234411', UNHEX('00000000000000000000FFFFAF8BFCAA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938237, '0.000000', '1550725000.691998', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938238, '0.000000', '1550725018.030139', UNHEX('00000000000000000000FFFFAF8BFCAA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938239, '0.000000', '1550725019.132420', UNHEX('00000000000000000000FFFFAF8BFCAA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938240, '0.000000', '1550725059.853632', UNHEX('00000000000000000000FFFFAF8BFCAA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938241, '0.000000', '1550725061.220285', UNHEX('00000000000000000000FFFFAF8BFCAA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938242, '0.000000', '1550725069.517370', UNHEX('00000000000000000000FFFFAF8BFCAA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938243, '0.000000', '1550725070.779511', UNHEX('00000000000000000000FFFFAF8BFCAA'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938244, '0.000000', '1550725082.948480', UNHEX('00000000000000000000FFFF53F6411C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/41.1', '', NULL, NULL),
(2938245, '0.000000', '1550725103.823423', UNHEX('00000000000000000000FFFFD3187574'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Microsoft Office/16.0 (Windows NT 6.1; Microsoft Word 16.0.11231; Pro)', '', NULL, NULL),
(2938246, '0.000000', '1550725105.044261', UNHEX('00000000000000000000FFFFD3187574'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HCTE; ms-office; MSOffice 16)', '', NULL, NULL),
(2938247, '0.000000', '1550725106.105243', UNHEX('00000000000000000000FFFFD3187574'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Microsoft Office/16.0 (Windows NT 6.1; Microsoft Word 16.0.11231; Pro)', '', NULL, NULL),
(2938248, '0.000000', '1550725107.232415', UNHEX('00000000000000000000FFFFD3187574'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HCTE; ms-office; MSOffice 16)', '', NULL, NULL),
(2938249, '0.000000', '1550725182.550189', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938250, '0.000000', '1550725183.781577', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938251, '0.000000', '1550725190.357858', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938252, '0.000000', '1550725191.440489', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2938253, '0.000000', '1550725192.774837', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938254, '0.000000', '1550725201.017626', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'https://www.investors-watch.com/wp-staging/ranhill/staging/media/press-release/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938255, '0.000000', '1550725203.031431', UNHEX('00000000000000000000FFFFD3186991'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'https://www.investors-watch.com/wp-staging/ranhill/ranhills-new-thailand-reclamation-water-treatment-plant-to-begin-operations/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36', '', NULL, NULL),
(2938256, '0.000000', '1550725280.863921', UNHEX('00000000000000000000FFFF01203A19'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938257, '0.000000', '1550725282.718819', UNHEX('00000000000000000000FFFF01203A19'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938258, '0.000000', '1550725292.628292', UNHEX('00000000000000000000FFFF7B88756C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A530F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938259, '0.000000', '1550725300.878376', UNHEX('00000000000000000000FFFF7B88756C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A530F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938260, '0.000000', '1550725311.507312', UNHEX('00000000000000000000FFFF01203A19'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938261, '0.000000', '1550725312.553590', UNHEX('00000000000000000000FFFF01203A19'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938262, '0.000000', '1550725334.697581', UNHEX('00000000000000000000FFFF7B88756C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A530F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938263, '0.000000', '1550725336.649780', UNHEX('00000000000000000000FFFF7B88756C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A530F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938264, '0.000000', '1550725338.830117', UNHEX('00000000000000000000FFFF7B88756C'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A530F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938265, '0.000000', '1550725338.912988', UNHEX('00000000000000000000FFFF7B88756C'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A530F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938266, '0.000000', '1550725351.938668', UNHEX('00000000000000000000FFFFAF8F3169'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938267, '0.000000', '1550725363.963962', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938268, '0.000000', '1550725366.681787', UNHEX('00000000000000000000FFFFB7AB560D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938269, '0.000000', '1550725368.716982', UNHEX('00000000000000000000FFFFB7AB560D'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938270, '0.000000', '1550725368.785954', UNHEX('00000000000000000000FFFFB7AB560D'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938271, '0.000000', '1550725389.913565', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938272, '0.000000', '1550725392.366202', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938273, '0.000000', '1550725395.205238', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938274, '0.000000', '1550725395.474482', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938275, '0.000000', '1550725399.770208', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938276, '0.000000', '1550725402.226827', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938277, '0.000000', '1550725403.919162', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938278, '0.000000', '1550725403.913537', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938279, '0.000000', '1550725415.546227', UNHEX('00000000000000000000FFFFB7AB560D'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 6.0; ZTE BLADE A510 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36', '', NULL, NULL),
(2938280, '0.000000', '1550725436.914988', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938281, '0.000000', '1550725446.164294', UNHEX('00000000000000000000FFFFB955EF6E'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', '', NULL, NULL),
(2938282, '0.000000', '1550725447.322770', UNHEX('00000000000000000000FFFFB955EF6E'), 0, 503, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2938283, '0.000000', '1550725461.716469', UNHEX('00000000000000000000FFFF7B88756C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938284, '0.000000', '1550725468.744175', UNHEX('00000000000000000000FFFF7B88756C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938285, '0.000000', '1550725474.115586', UNHEX('00000000000000000000FFFF71D26577'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938286, '0.000000', '1550725474.434241', UNHEX('00000000000000000000FFFF71D26577'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938287, '0.000000', '1550725488.999690', UNHEX('00000000000000000000FFFF42F94217'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/video/video/feed/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938288, '0.000000', '1550725617.669989', UNHEX('00000000000000000000FFFF71D26577'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938289, '0.000000', '1550725619.085533', UNHEX('00000000000000000000FFFF71D26577'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938290, '0.000000', '1550725619.599847', UNHEX('00000000000000000000FFFF71D26577'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938291, '0.000000', '1550725641.375421', UNHEX('00000000000000000000FFFF71D26577'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/our-history/our-vision-mission-values/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938292, '0.000000', '1550725641.469538', UNHEX('00000000000000000000FFFFAF915CB2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938293, '0.000000', '1550725680.612143', UNHEX('00000000000000000000FFFF71D26577'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938294, '0.000000', '1550725695.020011', UNHEX('00000000000000000000FFFF71D26577'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938295, '0.000000', '1550725703.470006', UNHEX('00000000000000000000FFFF71D26577'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938296, '0.000000', '1550725703.487345', UNHEX('00000000000000000000FFFF71D26577'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938297, '0.000000', '1550725738.787529', UNHEX('00000000000000000000FFFF42F94219'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/water-supply-services/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938298, '0.000000', '1550725775.984382', UNHEX('00000000000000000000FFFF71D26577'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938299, '0.000000', '1550725776.321081', UNHEX('00000000000000000000FFFF71D26577'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938300, '0.000000', '1550725776.860044', UNHEX('00000000000000000000FFFF7B8870F8'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938301, '0.000000', '1550725779.610618', UNHEX('00000000000000000000FFFF7B8870F8'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938302, '0.000000', '1550725781.240291', UNHEX('00000000000000000000FFFF7B8870F8'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938303, '0.000000', '1550725868.357786', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938304, '0.000000', '1550725887.504877', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2938305, '0.000000', '1550725905.445749', UNHEX('00000000000000000000FFFFB7AB51F0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938306, '0.000000', '1550725910.917851', UNHEX('00000000000000000000FFFFB7AB51F0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938307, '0.000000', '1550725919.616365', UNHEX('00000000000000000000FFFFB7AB51F0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938308, '0.000000', '1550725921.158411', UNHEX('00000000000000000000FFFFB7AB51F0'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938309, '0.000000', '1550725923.664996', UNHEX('00000000000000000000FFFFB7AB51F0'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938310, '0.000000', '1550725924.313712', UNHEX('00000000000000000000FFFFB7AB51F0'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36', '', NULL, NULL),
(2938311, '0.000000', '1550726022.847822', UNHEX('00000000000000000000FFFFC0192A83'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938312, '0.000000', '1550726027.305217', UNHEX('00000000000000000000FFFF42F94217'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938313, '0.000000', '1550726027.488037', UNHEX('00000000000000000000FFFF42F94218'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/our-technology/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938314, '0.000000', '1550726031.601158', UNHEX('00000000000000000000FFFF42F94217'), 0, 404, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938315, '0.000000', '1550726043.057450', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.google.com.my/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938316, '0.000000', '1550726045.713111', UNHEX('00000000000000000000FFFFB7ABB905'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938317, '0.000000', '1550726048.337755', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938318, '0.000000', '1550726050.617752', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938319, '0.000000', '1550726052.038419', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938320, '0.000000', '1550726053.462409', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938321, '0.000000', '1550726119.087920', UNHEX('00000000000000000000FFFF71D2C2E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938322, '0.000000', '1550726121.669958', UNHEX('00000000000000000000FFFF71D2C2E9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938323, '0.000000', '1550726123.426593', UNHEX('00000000000000000000FFFF71D2C2E9'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938324, '0.000000', '1550726123.411554', UNHEX('00000000000000000000FFFF71D2C2E9'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938325, '0.000000', '1550726142.474586', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938326, '0.000000', '1550726143.928397', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938327, '0.000000', '1550726145.326897', UNHEX('00000000000000000000FFFFB7ABB905'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/corporate-governance/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938328, '0.000000', '1550726236.862238', UNHEX('00000000000000000000FFFF9D372733'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/downloads/RWP.pdf', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2938329, '0.000000', '1550726298.960382', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938330, '0.000000', '1550726314.344530', UNHEX('00000000000000000000FFFF42F94218'), 0, 200, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938331, '0.000000', '1550726326.848014', UNHEX('00000000000000000000FFFF42F94217'), 0, 404, 1, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', '', NULL, NULL),
(2938332, '0.000000', '1550726486.155636', UNHEX('00000000000000000000FFFF7B8876F3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.0.0; VTR-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938333, '0.000000', '1550726488.294555', UNHEX('00000000000000000000FFFF7B8876F3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; VTR-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938334, '0.000000', '1550726489.882467', UNHEX('00000000000000000000FFFF7B8876F3'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; VTR-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938335, '0.000000', '1550726489.986346', UNHEX('00000000000000000000FFFF7B8876F3'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.0.0; VTR-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36', '', NULL, NULL),
(2938336, '0.000000', '1550726495.595567', UNHEX('00000000000000000000FFFF7A6CF46E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938337, '0.000000', '1550726499.352011', UNHEX('00000000000000000000FFFF7A6CF46E'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938338, '0.000000', '1550726521.725104', UNHEX('00000000000000000000FFFF7A6CF46E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938339, '0.000000', '1550726523.044854', UNHEX('00000000000000000000FFFF7A6CF46E'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938340, '0.000000', '1550726524.657857', UNHEX('00000000000000000000FFFF7A6CF46E'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938341, '0.000000', '1550726593.520541', UNHEX('00000000000000000000FFFF71D2C2E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938342, '0.000000', '1550726595.151155', UNHEX('00000000000000000000FFFF71D2C2E9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938343, '0.000000', '1550726596.830482', UNHEX('00000000000000000000FFFF71D2C2E9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938344, '0.000000', '1550726596.870107', UNHEX('00000000000000000000FFFF71D2C2E9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 8.0.0; LDN-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938345, '0.000000', '1550726680.534585', UNHEX('00000000000000000000FFFFD8F442EC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)', '', NULL, NULL),
(2938346, '0.000000', '1550726690.042900', UNHEX('00000000000000000000FFFF9D3727F5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/assistant-manager-corporate-finance/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2938347, '0.000000', '1550726720.448015', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938348, '0.000000', '1550726721.674934', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938349, '0.000000', '1550726737.638235', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938350, '0.000000', '1550726783.394909', UNHEX('00000000000000000000FFFF5C60546C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938351, '0.000000', '1550726785.262690', UNHEX('00000000000000000000FFFF5C60546C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938352, '0.000000', '1550726786.985282', UNHEX('00000000000000000000FFFF5C60546C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2938353, '0.000000', '1550726788.106258', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2938354, '0.000000', '1550726807.910701', UNHEX('00000000000000000000FFFF73862A84'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938355, '0.000000', '1550726810.207305', UNHEX('00000000000000000000FFFF73862A84'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938356, '0.000000', '1550727162.429621', UNHEX('00000000000000000000FFFF73EFD487'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0', '', NULL, NULL),
(2938357, '0.000000', '1550727168.544926', UNHEX('00000000000000000000FFFF73EFD489'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0', '', NULL, NULL),
(2938358, '0.000000', '1550727181.379113', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938359, '0.000000', '1550727312.517759', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938360, '0.000000', '1550727313.566844', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938361, '0.000000', '1550727355.794424', UNHEX('00000000000000000000FFFF284DA738'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/ranhill-extends-public-offer-period/feed/', '', 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)', '', NULL, NULL),
(2938362, '0.000000', '1550727377.713640', UNHEX('00000000000000000000FFFFAF8BCFAC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2938363, '0.000000', '1550727379.625287', UNHEX('00000000000000000000FFFFAF8BCFAC'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2938364, '0.000000', '1550727388.000649', UNHEX('00000000000000000000FFFFB28CAFA9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://yandex.ru/clck/jsredir?from=yandex.ru%3Bsearch%3Bweb%3B%3B&text=&etext=2063.--KxyntP1pcKdxdn1ObDvETbR0ZCM0vlvFWRVXjBBddro94vLxJcpME6E_oiW0c2.75b7b5b392e3afdd59b0751c683c5d762d73d789&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXmeppkgUc0YKCJkrjchpDstTwxTkjwGrA&data=UlNrNmk5WktYejY4cHFySjRXSWhXQWhFRXNqSzBzYVlnWW5TRGpXd05mLXAxZlJBMVlsV3BZTHZHcjFRaWhQYUpBNzZORDdxbExpckVUdWdqeUVvVV82V3hOR0l1ZDE3UVZHOXBRVDBqVFk&b64e=2&sign=ad398844e5fceebdff43e923c1e76b9b&keyno=0&cst=AiuY0DBWFJ7IXge4WdYJQaYgAYq7JarroS8Yw9vQbf3buUERIR2oe3-g9EsvyClMedWJAMOsCLricnYkwCl5qlCZKxKAjH46-wJ9KZOFbh_GEwEWi4rDMrRpBVYum9E-Ey3cIfPBjuDVj3PeOzEQrQxMh0aDLaw4&ref=orjY4mGPRjk5boDnW0uvlrrd71vZw9kp5uQozpMtKCVwjJVQHb9Cs6ndW0_EcgaZSq8gTpbni0arZX9MTYCe6MIUz2F0bJ4egN38DJN_Qyv9CSu68C4XWS0cmMB7JxEX&l10n=ru&cts=1550727385744&mc=7.25933470619', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2938365, '0.000000', '1550727390.764246', UNHEX('00000000000000000000FFFFB28CAFA9'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36', '', NULL, NULL),
(2938366, '0.000000', '1550727421.518513', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938367, '0.000000', '1550727422.907890', UNHEX('00000000000000000000FFFF73A4BFB1'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938368, '0.000000', '1550727425.774975', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938369, '0.000000', '1550727425.808834', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938370, '0.000000', '1550727429.432686', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938371, '0.000000', '1550727431.234639', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938372, '0.000000', '1550727434.179470', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938373, '0.000000', '1550727434.120231', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938374, '0.000000', '1550727509.584706', UNHEX('00000000000000000000FFFFD3487CEF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938375, '0.000000', '1550727514.738384', UNHEX('00000000000000000000FFFFD3487CEF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938376, '0.000000', '1550727526.962960', UNHEX('00000000000000000000FFFFD34BED07'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938377, '0.000000', '1550727528.597461', UNHEX('00000000000000000000FFFFD34BED07'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938378, '0.000000', '1550727595.579293', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938379, '0.000000', '1550727596.333196', UNHEX('00000000000000000000FFFF36249421'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/category/press-release/page/2/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2938380, '0.000000', '1550727603.594196', UNHEX('00000000000000000000FFFF7664A48C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938381, '0.000000', '1550727610.285097', UNHEX('00000000000000000000FFFF081DC61A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938382, '0.000000', '1550727626.587817', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938383, '0.000000', '1550727634.959505', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938384, '0.000000', '1550727638.442796', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938385, '0.000000', '1550727638.547439', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938386, '0.000000', '1550727639.435469', UNHEX('00000000000000000000FFFF71D233DC'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1', '', NULL, NULL),
(2938387, '0.000000', '1550727642.184971', UNHEX('00000000000000000000FFFFD3186516'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/robots.txt', '', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938388, '0.000000', '1550727643.930247', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938389, '0.000000', '1550727645.903254', UNHEX('00000000000000000000FFFFD3186516'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', '', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938390, '0.000000', '1550727646.729148', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938391, '0.000000', '1550727653.102237', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938392, '0.000000', '1550727653.176248', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938393, '0.000000', '1550727658.231092', UNHEX('00000000000000000000FFFFD3186516'), 1, 200, 0, 1, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php?redirect_to=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Fwp-admin%2F&reauth=1', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', 'loginOK', NULL, NULL),
(2938394, '0.000000', '1550727674.517235', UNHEX('00000000000000000000FFFF7086BDB2'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938395, '0.000000', '1550727684.071942', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938396, '0.000000', '1550727685.364341', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938397, '0.000000', '1550727687.200042', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938398, '0.000000', '1550727687.671904', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938399, '0.000000', '1550727688.271489', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2938400, '0.000000', '1550727710.604503', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938401, '0.000000', '1550727711.980694', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938402, '0.000000', '1550727714.303969', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938403, '0.000000', '1550727713.918750', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938404, '0.000000', '1550727714.232032', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938405, '0.000000', '1550727716.000306', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938406, '0.000000', '1550727719.067999', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938407, '0.000000', '1550727719.137942', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938408, '0.000000', '1550727724.378785', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938409, '0.000000', '1550727725.582815', UNHEX('00000000000000000000FFFF7664A48C'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938410, '0.000000', '1550727728.029938', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938411, '0.000000', '1550727728.082190', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938412, '0.000000', '1550727728.916210', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', '', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938413, '0.000000', '1550727730.464635', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938414, '0.000000', '1550727733.715125', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938415, '0.000000', '1550727734.080842', UNHEX('00000000000000000000FFFF73A4BFB1'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938416, '0.000000', '1550727744.479087', UNHEX('00000000000000000000FFFFDAD0086D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938417, '0.000000', '1550727746.080839', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938418, '0.000000', '1550727747.405621', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938419, '0.000000', '1550727747.907093', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938420, '0.000000', '1550727749.405483', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938421, '0.000000', '1550727749.714400', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938422, '0.000000', '1550727749.624844', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938423, '0.000000', '1550727750.136797', UNHEX('00000000000000000000FFFF7664A48C'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Linux; Android 9; COL-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36', '', NULL, NULL),
(2938424, '0.000000', '1550727757.979409', UNHEX('00000000000000000000FFFFDAD0086D'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938425, '0.000000', '1550727830.108324', UNHEX('00000000000000000000FFFF73A45FFF'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1724) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.83 Mobile Safari/537.36', '', NULL, NULL),
(2938426, '0.000000', '1550727832.310645', UNHEX('00000000000000000000FFFF73A45FFF'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1724) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.83 Mobile Safari/537.36', '', NULL, NULL),
(2938427, '0.000000', '1550727833.673680', UNHEX('00000000000000000000FFFF73A45FFF'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1724) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.83 Mobile Safari/537.36', '', NULL, NULL),
(2938428, '0.000000', '1550727833.699963', UNHEX('00000000000000000000FFFF73A45FFF'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Linux; Android 8.1.0; vivo 1724) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.83 Mobile Safari/537.36', '', NULL, NULL),
(2938429, '0.000000', '1550727876.930174', UNHEX('00000000000000000000FFFF36249507'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/staging/our-business/clean-energy/', '', 'Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)', '', NULL, NULL),
(2938430, '0.000000', '1550727894.967571', UNHEX('00000000000000000000FFFFDAD0086D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938431, '0.000000', '1550727897.195443', UNHEX('00000000000000000000FFFFDAD0086D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938432, '0.000000', '1550727954.627181', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938433, '0.000000', '1550727956.601148', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938434, '0.000000', '1550728002.736553', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938435, '0.000000', '1550728004.399391', UNHEX('00000000000000000000FFFF7C523C1A'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/images/logo.png', '', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; HRTS; ms-office; MSOffice 15)', '', NULL, NULL),
(2938436, '0.000000', '1550728024.025415', UNHEX('00000000000000000000FFFFDAD0086D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938437, '0.000000', '1550728026.709583', UNHEX('00000000000000000000FFFFDAD0086D'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938438, '0.000000', '1550728035.427268', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938439, '0.000000', '1550728322.492275', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.google.com.my/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=2ahUKEwjpwamSkczgAhWzL6YKHcYOBRsQFjADegQIBxAB&url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Finvestor-relations%2F&usg=AOvVaw07lszkkCb4x7g1k5Wr9xCM', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938440, '0.000000', '1550728323.896254', UNHEX('00000000000000000000FFFFCAA21282'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/4.0 (compatible;)', '', NULL, NULL),
(2938441, '0.000000', '1550728324.584315', UNHEX('00000000000000000000FFFFCAA21282'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938442, '0.000000', '1550728330.213069', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.google.com.my/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=2ahUKEwjpwamSkczgAhWzL6YKHcYOBRsQFjADegQIBxAB&url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2Finvestor-relations%2F&usg=AOvVaw07lszkkCb4x7g1k5Wr9xCM', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938443, '0.000000', '1550728331.315861', UNHEX('00000000000000000000FFFFCAA21282'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938444, '0.000000', '1550728335.613276', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.my/url?sa=t&rct=j&q=&esrc=s&source=web&cd=3&ved=2ahUKEwjpwamSkczgAhWzL6YKHcYOBRsQFjACegQICBAB&url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2F&usg=AOvVaw1M_OFUeLEV-yGJklgLbcNz', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938445, '0.000000', '1550728336.371385', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36', '', NULL, NULL),
(2938446, '0.000000', '1550728337.097228', UNHEX('00000000000000000000FFFFCAA21282'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938447, '0.000000', '1550728338.001544', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36', '', NULL, NULL),
(2938448, '0.000000', '1550728343.731785', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938449, '0.000000', '1550728344.592071', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938450, '0.000000', '1550728345.605896', UNHEX('00000000000000000000FFFFCAA21282'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938451, '0.000000', '1550728346.254026', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/tan-sri-hamdan-mohamad/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36', '', NULL, NULL),
(2938452, '0.000000', '1550728347.617920', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2938453, '0.000000', '1550728360.882613', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938454, '0.000000', '1550728361.921366', UNHEX('00000000000000000000FFFFCAA21282'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938455, '0.000000', '1550728366.075580', UNHEX('00000000000000000000FFFFCAA21282'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938456, '0.000000', '1550728367.377017', UNHEX('00000000000000000000FFFFCAA21282'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938457, '0.000000', '1550728388.465198', UNHEX('00000000000000000000FFFFCAA21282'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938458, '0.000000', '1550728397.086650', UNHEX('00000000000000000000FFFFCAA21282'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938459, '0.000000', '1550728463.452227', UNHEX('00000000000000000000FFFFCAA21282'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/board-of-directors/', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938460, '0.000000', '1550728464.645856', UNHEX('00000000000000000000FFFFCAA21282'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938461, '0.000000', '1550728477.192754', UNHEX('00000000000000000000FFFFCB6AB40A'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', '', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938462, '0.000000', '1550728478.858896', UNHEX('00000000000000000000FFFF081DC619'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938463, '0.000000', '1550728480.410429', UNHEX('00000000000000000000FFFFCB6AB40A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938464, '0.000000', '1550728524.704652', UNHEX('00000000000000000000FFFF6882887C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2938465, '0.000000', '1550728527.540871', UNHEX('00000000000000000000FFFF6882887C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2938466, '0.000000', '1550728530.393686', UNHEX('00000000000000000000FFFF6882887C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', '', NULL, NULL),
(2938467, '0.000000', '1550728532.504800', UNHEX('00000000000000000000FFFF6882887C'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-login.php', '', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0', 'loginFailInvalidUsername', NULL, NULL),
(2938468, '0.000000', '1550728535.781124', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=2ahUKEwj-t8b4kczgAhVJp48KHXcFAA4QFjAAegQIABAC&url=https%3A%2F%2Fwww.investors-watch.com/wp-staging/ranhill%2F&usg=AOvVaw1M_OFUeLEV-yGJklgLbcNz', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938469, '0.000000', '1550728537.734001', UNHEX('00000000000000000000FFFF3D5B38D6'), 0, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938470, '0.000000', '1550728542.426543', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938471, '0.000000', '1550728543.577463', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938472, '0.000000', '1550728552.492997', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938473, '0.000000', '1550728553.599080', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938474, '0.000000', '1550728561.716820', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938475, '0.000000', '1550728562.836517', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938476, '0.000000', '1550728571.568623', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-supply-services/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938477, '0.000000', '1550728572.679215', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938478, '0.000000', '1550728587.240142', UNHEX('00000000000000000000FFFF45A27CEA'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'http://www.investors-watch.com/wp-staging/ranhill', 'Mozilla/5.0+(compatible; UptimeRobot/2.0; http://www.uptimerobot.com/)', '', NULL, NULL),
(2938479, '0.000000', '1550728628.237758', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938480, '0.000000', '1550728629.460659', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938481, '0.000000', '1550728632.271254', UNHEX('00000000000000000000FFFF6FE0CB20'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36', '', NULL, NULL),
(2938482, '0.000000', '1550728634.023390', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938483, '0.000000', '1550728636.385372', UNHEX('00000000000000000000FFFF010975B9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938484, '0.000000', '1550728639.403561', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938485, '0.000000', '1550728640.569899', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938486, '0.000000', '1550728642.195553', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938487, '0.000000', '1550728642.315545', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938488, '0.000000', '1550728644.139105', UNHEX('00000000000000000000FFFFB4A3DC44'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36', '', NULL, NULL),
(2938489, '0.000000', '1550728652.855365', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938490, '0.000000', '1550728654.227559', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938491, '0.000000', '1550728661.582383', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938492, '0.000000', '1550728662.728062', UNHEX('00000000000000000000FFFFAF88CAF5'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938493, '0.000000', '1550728662.989330', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938494, '0.000000', '1550728664.271679', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938495, '0.000000', '1550728664.886442', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938496, '0.000000', '1550728665.024246', UNHEX('00000000000000000000FFFFAF88CAF5'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938497, '0.000000', '1550728667.437601', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938498, '0.000000', '1550728668.325742', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938499, '0.000000', '1550728669.524848', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938500, '0.000000', '1550728671.108475', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938501, '0.000000', '1550728672.274460', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938502, '0.000000', '1550728672.394471', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938503, '0.000000', '1550728673.394900', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938504, '0.000000', '1550728674.470998', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938505, '0.000000', '1550728676.023327', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938506, '0.000000', '1550728676.061964', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938507, '0.000000', '1550728684.884155', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938508, '0.000000', '1550728686.042813', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938509, '0.000000', '1550728687.694803', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938510, '0.000000', '1550728687.826876', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938511, '0.000000', '1550728690.703216', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/sustainability/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938512, '0.000000', '1550728691.649689', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938513, '0.000000', '1550728692.733064', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/investor-relations/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938514, '0.000000', '1550728693.875784', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/media/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938515, '0.000000', '1550728695.401319', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938516, '0.000000', '1550728695.065066', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/non-revenue-water/', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938517, '0.000000', '1550728696.821438', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938518, '0.000000', '1550728696.581922', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938519, '0.000000', '1550728698.365156', UNHEX('00000000000000000000FFFF3D5B38D6'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938520, '0.000000', '1550728698.859237', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938521, '0.000000', '1550728700.466095', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938522, '0.000000', '1550728700.578372', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938523, '0.000000', '1550728702.575469', UNHEX('00000000000000000000FFFF010975B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938524, '0.000000', '1550728707.921978', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938525, '0.000000', '1550728707.935334', UNHEX('00000000000000000000FFFF010975B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/about-us/', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938526, '0.000000', '1550728751.479469', UNHEX('00000000000000000000FFFF6FE0CB20'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36', '', NULL, NULL),
(2938527, '0.000000', '1550728861.439945', UNHEX('00000000000000000000FFFF3C32A1A9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2938528, '0.000000', '1550728863.187306', UNHEX('00000000000000000000FFFF3C32A1A9'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134', '', NULL, NULL),
(2938529, '0.000000', '1550728910.927916', UNHEX('00000000000000000000FFFF081DC61B'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/feed/', '', 'Feedly/1.0 (+http://www.feedly.com/fetcher.html; 1 subscribers; like FeedFetcher-Google)', '', NULL, NULL),
(2938530, '0.000000', '1550729007.964369', UNHEX('00000000000000000000FFFFB4BEA79A'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938531, '0.000000', '1550729030.393248', UNHEX('00000000000000000000FFFF6FE0CB20'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/water-and-waste-water-treatment/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36', '', NULL, NULL),
(2938532, '0.000000', '1550729033.127440', UNHEX('00000000000000000000FFFF6FE0CB20'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'https://www.investors-watch.com/wp-staging/ranhill/contact/', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36', '', NULL, NULL),
(2938533, '0.000000', '1550729073.712882', UNHEX('00000000000000000000FFFFB4A3DC05'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/contact/', '', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36', '', NULL, NULL),
(2938534, '0.000000', '1550729088.203001', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'https://www.investors-watch.com/wp-staging/ranhill/career/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938535, '0.000000', '1550729089.919832', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/font/stylesheet.css', '', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938536, '0.000000', '1550729091.403386', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938537, '0.000000', '1550729091.592505', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938538, '0.000000', '1550729093.277233', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938539, '0.000000', '1550729094.181773', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938540, '0.000000', '1550729095.083114', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938541, '0.000000', '1550729096.584922', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938542, '0.000000', '1550729097.006535', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938543, '0.000000', '1550729099.601605', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938544, '0.000000', '1550729100.021198', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938545, '0.000000', '1550729102.645497', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938546, '0.000000', '1550729103.393931', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938547, '0.000000', '1550729105.065918', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938548, '0.000000', '1550729105.835488', UNHEX('00000000000000000000FFFFDA6F80B9'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/clean-energy/', 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko', '', NULL, NULL),
(2938549, '0.000000', '1550729139.774491', UNHEX('00000000000000000000FFFFD2138C89'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com/', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36', '', NULL, NULL),
(2938550, '0.000000', '1550729196.685437', UNHEX('00000000000000000000FFFF7B886FC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.google.com.sg/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1', '', NULL, NULL),
(2938551, '0.000000', '1550729204.524423', UNHEX('00000000000000000000FFFF7B886FC3'), 0, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1', '', NULL, NULL),
(2938552, '0.000000', '1550729244.018091', UNHEX('00000000000000000000FFFF7B886FC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1', '', NULL, NULL) ;
INSERT INTO `wp2o_wfHits` ( `id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES
(2938553, '0.000000', '1550729246.175979', UNHEX('00000000000000000000FFFF7B886FC3'), 1, 200, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1', '', NULL, NULL),
(2938554, '0.000000', '1550729248.077874', UNHEX('00000000000000000000FFFF7B886FC3'), 1, 404, 0, 0, 0, 'https://www.investors-watch.com/wp-staging/ranhill/wp-content/uploads/2017/04/logo_ranhill@2x.png', 'https://www.investors-watch.com/wp-staging/ranhill/our-business/', 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1', '', NULL, NULL) ;

#
# End of data contents of table `wp2o_wfHits`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfHoover`
#

DROP TABLE IF EXISTS `wp2o_wfHoover`;


#
# Table structure of table `wp2o_wfHoover`
#

CREATE TABLE `wp2o_wfHoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` binary(4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfHoover`
#

#
# End of data contents of table `wp2o_wfHoover`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfIssues`
#

DROP TABLE IF EXISTS `wp2o_wfIssues`;


#
# Table structure of table `wp2o_wfIssues`
#

CREATE TABLE `wp2o_wfIssues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=23007 DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfIssues`
#
INSERT INTO `wp2o_wfIssues` ( `id`, `time`, `status`, `type`, `severity`, `ignoreP`, `ignoreC`, `shortMsg`, `longMsg`, `data`) VALUES
(22989, 1550729020, 'new', 'heartbleed', 1, '9cc241ad23332e598db0f9d52ced5850', '6f0d55d9ee9a913a110711cf187b99d7', 'The HeartBleed openssl vulnerability scan has been deprecated', 'This scan is no longer necessary and has been removed from Wordfence. Please update to a current version of Wordfence.', 'a:0:{}'),
(22990, 1550729031, 'new', 'knownfile', 2, '9dc7c2e489553511c39af231e4624cfb', 'cf10cda229101400891d29fbed29baca', 'Unknown file in WordPress core: wp-admin/_plugin-install.php', 'This file is in a WordPress core location but is not distributed with this version of WordPress. This is usually due to it being left over from a previous WordPress update, but it may also have been added by another plugin or a malicious file added by an attacker.', 'a:5:{s:4:"file";s:28:"wp-admin/_plugin-install.php";s:5:"cType";s:4:"core";s:7:"canDiff";b:0;s:6:"canFix";b:0;s:9:"canDelete";b:1;}'),
(22991, 1550729031, 'new', 'knownfile', 2, '1d66db1707127797c6c82848371fae04', '0d3ca43e868b05b67b684afb68ef965d', 'Unknown file in WordPress core: wp-admin/_plugins.php', 'This file is in a WordPress core location but is not distributed with this version of WordPress. This is usually due to it being left over from a previous WordPress update, but it may also have been added by another plugin or a malicious file added by an attacker.', 'a:5:{s:4:"file";s:21:"wp-admin/_plugins.php";s:5:"cType";s:4:"core";s:7:"canDiff";b:0;s:6:"canFix";b:0;s:9:"canDelete";b:1;}'),
(22992, 1550729219, 'new', 'wfUpgrade', 1, 'a3ac687e5d01f6dfa4ec1829aebfd8ee', 'a3ac687e5d01f6dfa4ec1829aebfd8ee', 'Your WordPress version is out of date', 'WordPress version 5.0.3 is now available. Please upgrade immediately to get the latest security updates from WordPress.', 'a:2:{s:14:"currentVersion";s:6:"4.7.12";s:10:"newVersion";s:5:"5.0.3";}'),
(22993, 1550729219, 'new', 'wfPluginUpgrade', 2, 'e88d0126d8260a039648416d7c2e472d', 'e88d0126d8260a039648416d7c2e472d', 'The Plugin "AG Custom Admin" needs an upgrade (5.7.1 -> 6.4.1).', 'You need to upgrade "AG Custom Admin" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:15:"AG Custom Admin";s:9:"PluginURI";s:47:"http://wordpressadminpanel.com/ag-custom-admin/";s:7:"Version";s:5:"5.7.1";s:11:"Description";s:219:"All-in-one tool for admin panel customization. Change almost everything: admin menu, dashboard, login page, admin bar etc. Apply admin panel themes. <cite>By <a href="http://www.wordpressadminpanel.com/">WAP</a>.</cite>";s:6:"Author";s:53:"<a href="http://www.wordpressadminpanel.com/">WAP</a>";s:9:"AuthorURI";s:35:"http://www.wordpressadminpanel.com/";s:10:"TextDomain";s:15:"ag-custom-admin";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:77:"<a href="http://wordpressadminpanel.com/ag-custom-admin/">AG Custom Admin</a>";s:10:"AuthorName";s:3:"WAP";s:10:"pluginFile";s:72:"/home/vicenzol/public_html/wp-content/plugins/ag-custom-admin/plugin.php";s:10:"newVersion";s:5:"6.4.1";s:4:"slug";s:15:"ag-custom-admin";s:5:"wpURL";s:45:"https://wordpress.org/plugins/ag-custom-admin";s:20:"vulnerabilityPatched";b:0;}'),
(22994, 1550729219, 'new', 'wfPluginUpgrade', 2, 'cf7e2650406c524faa1f1799e6850486', 'cf7e2650406c524faa1f1799e6850486', 'The Plugin "Akismet Anti-Spam" needs an upgrade (3.3 -> 4.1.1).', 'You need to upgrade "Akismet Anti-Spam" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:17:"Akismet Anti-Spam";s:9:"PluginURI";s:20:"https://akismet.com/";s:7:"Version";s:3:"3.3";s:11:"Description";s:363:"Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key. <cite>By <a href="https://automattic.com/wordpress-plugins/">Automattic</a>.</cite>";s:6:"Author";s:66:"<a href="https://automattic.com/wordpress-plugins/">Automattic</a>";s:9:"AuthorURI";s:41:"https://automattic.com/wordpress-plugins/";s:10:"TextDomain";s:7:"akismet";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:52:"<a href="https://akismet.com/">Akismet Anti-Spam</a>";s:10:"AuthorName";s:10:"Automattic";s:10:"pluginFile";s:65:"/home/vicenzol/public_html/wp-content/plugins/akismet/akismet.php";s:10:"newVersion";s:5:"4.1.1";s:4:"slug";s:7:"akismet";s:5:"wpURL";s:37:"https://wordpress.org/plugins/akismet";s:20:"vulnerabilityPatched";b:0;}'),
(22995, 1550729219, 'new', 'wfPluginUpgrade', 2, '621045c2a176c325aeb0172081474722', '621045c2a176c325aeb0172081474722', 'The Plugin "Coming Soon Page &amp; Maintenance Mode by SeedProd" needs an upgrade (5.0.9 -> 5.0.23).', 'You need to upgrade "Coming Soon Page &amp; Maintenance Mode by SeedProd" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:51:"Coming Soon Page &amp; Maintenance Mode by SeedProd";s:9:"PluginURI";s:23:"http://www.seedprod.com";s:7:"Version";s:5:"5.0.9";s:11:"Description";s:152:"The #1 Coming Soon Page, Under Construction &amp; Maintenance Mode plugin for WordPress. <cite>By <a href="http://www.seedprod.com">SeedProd</a>.</cite>";s:6:"Author";s:46:"<a href="http://www.seedprod.com">SeedProd</a>";s:9:"AuthorURI";s:23:"http://www.seedprod.com";s:10:"TextDomain";s:11:"coming-soon";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:89:"<a href="http://www.seedprod.com">Coming Soon Page &amp; Maintenance Mode by SeedProd</a>";s:10:"AuthorName";s:8:"SeedProd";s:10:"pluginFile";s:73:"/home/vicenzol/public_html/wp-content/plugins/coming-soon/coming-soon.php";s:10:"newVersion";s:6:"5.0.23";s:4:"slug";s:11:"coming-soon";s:5:"wpURL";s:41:"https://wordpress.org/plugins/coming-soon";s:20:"vulnerabilityPatched";b:0;}'),
(22996, 1550729219, 'new', 'wfPluginUpgrade', 2, '46d7f448050213f320f1ad26c4de27df', '46d7f448050213f320f1ad26c4de27df', 'The Plugin "Duplicate Post" needs an upgrade (3.1.2 -> 3.2.2).', 'You need to upgrade "Duplicate Post" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:14:"Duplicate Post";s:9:"PluginURI";s:37:"http://lopo.it/duplicate-post-plugin/";s:7:"Version";s:5:"3.1.2";s:11:"Description";s:85:"Clone posts and pages. <cite>By <a href="http://lopo.it">Enrico Battocchi</a>.</cite>";s:6:"Author";s:45:"<a href="http://lopo.it">Enrico Battocchi</a>";s:9:"AuthorURI";s:14:"http://lopo.it";s:10:"TextDomain";s:14:"duplicate-post";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:66:"<a href="http://lopo.it/duplicate-post-plugin/">Duplicate Post</a>";s:10:"AuthorName";s:16:"Enrico Battocchi";s:10:"pluginFile";s:79:"/home/vicenzol/public_html/wp-content/plugins/duplicate-post/duplicate-post.php";s:10:"newVersion";s:5:"3.2.2";s:4:"slug";s:14:"duplicate-post";s:5:"wpURL";s:44:"https://wordpress.org/plugins/duplicate-post";s:20:"vulnerabilityPatched";b:0;}'),
(22997, 1550729219, 'new', 'wfPluginUpgrade', 2, 'd0e73c69713a3b404a8992bf73e241da', 'd0e73c69713a3b404a8992bf73e241da', 'The Plugin "Fancy Admin UI" needs an upgrade (2.0 -> 2.1).', 'You need to upgrade "Fancy Admin UI" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:14:"Fancy Admin UI";s:9:"PluginURI";s:45:"http://boborchard.com/plugins/fancy-admin-ui/";s:7:"Version";s:3:"2.0";s:11:"Description";s:162:"Super clean, blue admin panel theme with the ability to change the color in General &gt; Settings <cite>By <a href="http://boborchard.com">Bob Orchard</a>.</cite>";s:6:"Author";s:47:"<a href="http://boborchard.com">Bob Orchard</a>";s:9:"AuthorURI";s:21:"http://boborchard.com";s:10:"TextDomain";s:14:"fancy-admin-ui";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:74:"<a href="http://boborchard.com/plugins/fancy-admin-ui/">Fancy Admin UI</a>";s:10:"AuthorName";s:11:"Bob Orchard";s:10:"pluginFile";s:79:"/home/vicenzol/public_html/wp-content/plugins/fancy-admin-ui/fancy-admin-ui.php";s:10:"newVersion";s:3:"2.1";s:4:"slug";s:14:"fancy-admin-ui";s:5:"wpURL";s:44:"https://wordpress.org/plugins/fancy-admin-ui";s:20:"vulnerabilityPatched";b:0;}'),
(22998, 1550729219, 'new', 'wfPluginUpgrade', 2, 'f6009d4276583e323b9137543e8a8911', 'f6009d4276583e323b9137543e8a8911', 'The Plugin "Hustle" needs an upgrade (5.0.0 -> 6.0.7).', 'You need to upgrade "Hustle" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:6:"Hustle";s:9:"PluginURI";s:43:"https://premium.wpmudev.org/project/hustle/";s:7:"Version";s:5:"5.0.0";s:11:"Description";s:203:"Start collecting email addresses and quickly grow your mailing list with big bold pop-ups, slide-ins, widgets, or in post opt-in forms. <cite>By <a href="https://premium.wpmudev.org">WPMU DEV</a>.</cite>";s:6:"Author";s:50:"<a href="https://premium.wpmudev.org">WPMU DEV</a>";s:9:"AuthorURI";s:27:"https://premium.wpmudev.org";s:10:"TextDomain";s:15:"wordpress-popup";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:64:"<a href="https://premium.wpmudev.org/project/hustle/">Hustle</a>";s:10:"AuthorName";s:8:"WPMU DEV";s:10:"pluginFile";s:73:"/home/vicenzol/public_html/wp-content/plugins/wordpress-popup/popover.php";s:10:"newVersion";s:5:"6.0.7";s:4:"slug";s:15:"wordpress-popup";s:5:"wpURL";s:45:"https://wordpress.org/plugins/wordpress-popup";s:20:"vulnerabilityPatched";b:0;}'),
(22999, 1550729219, 'new', 'wfPluginUpgrade', 2, '3d4d6285d6ffc9008bedcff6e77603c2', '3d4d6285d6ffc9008bedcff6e77603c2', 'The Plugin "PDF Embedder" needs an upgrade (2.8 -> 4.0).', 'You need to upgrade "PDF Embedder" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:12:"PDF Embedder";s:9:"PluginURI";s:18:"http://wp-pdf.com/";s:7:"Version";s:3:"2.8";s:11:"Description";s:173:"Embed PDFs straight into your posts and pages, with flexible width and height. No third-party services required. <cite>By <a href="http://wp-pdf.com/">Dan Lester</a>.</cite>";s:6:"Author";s:43:"<a href="http://wp-pdf.com/">Dan Lester</a>";s:9:"AuthorURI";s:18:"http://wp-pdf.com/";s:10:"TextDomain";s:12:"pdf-embedder";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:45:"<a href="http://wp-pdf.com/">PDF Embedder</a>";s:10:"AuthorName";s:10:"Dan Lester";s:10:"pluginFile";s:75:"/home/vicenzol/public_html/wp-content/plugins/pdf-embedder/pdf_embedder.php";s:10:"newVersion";s:3:"4.0";s:4:"slug";s:12:"pdf-embedder";s:5:"wpURL";s:42:"https://wordpress.org/plugins/pdf-embedder";s:20:"vulnerabilityPatched";b:0;}'),
(23000, 1550729219, 'new', 'wfPluginUpgrade', 2, '5c5b7bbf318752bc6b177b15a480daed', '5c5b7bbf318752bc6b177b15a480daed', 'The Plugin "Popup with fancybox" needs an upgrade (2.4 -> 2.7).', 'You need to upgrade "Popup with fancybox" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:19:"Popup with fancybox";s:9:"PluginURI";s:77:"http://www.gopiplus.com/work/2013/08/08/popup-with-fancybox-wordpress-plugin/";s:7:"Version";s:3:"2.4";s:11:"Description";s:394:"This plugin allows you to create lightweight JQuery fancy box popup window in your blog with custom content. In the admin interface we can easily configure popup size and timeout. In this popup we can display any content such as Video, Image, Advertisement and much more. <cite>By <a href="http://www.gopiplus.com/work/2013/08/08/popup-with-fancybox-wordpress-plugin/">Gopi Ramasamy</a>.</cite>";s:6:"Author";s:105:"<a href="http://www.gopiplus.com/work/2013/08/08/popup-with-fancybox-wordpress-plugin/">Gopi Ramasamy</a>";s:9:"AuthorURI";s:77:"http://www.gopiplus.com/work/2013/08/08/popup-with-fancybox-wordpress-plugin/";s:10:"TextDomain";s:19:"popup-with-fancybox";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:5:"Title";s:111:"<a href="http://www.gopiplus.com/work/2013/08/08/popup-with-fancybox-wordpress-plugin/">Popup with fancybox</a>";s:10:"AuthorName";s:13:"Gopi Ramasamy";s:10:"pluginFile";s:89:"/home/vicenzol/public_html/wp-content/plugins/popup-with-fancybox/popup-with-fancybox.php";s:10:"newVersion";s:3:"2.7";s:4:"slug";s:19:"popup-with-fancybox";s:5:"wpURL";s:49:"https://wordpress.org/plugins/popup-with-fancybox";s:20:"vulnerabilityPatched";b:0;}'),
(23001, 1550729219, 'new', 'wfPluginUpgrade', 2, '3f019334a80a395a3067659dc6086ff2', '3f019334a80a395a3067659dc6086ff2', 'The Plugin "Wordfence Security" needs an upgrade (6.3.2 -> 7.2.2).', 'You need to upgrade "Wordfence Security" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:18:"Wordfence Security";s:9:"PluginURI";s:25:"http://www.wordfence.com/";s:7:"Version";s:5:"6.3.2";s:11:"Description";s:131:"Wordfence Security &#8211; Anti-virus, Firewall and Malware Scan <cite>By <a href="http://www.wordfence.com/">Wordfence</a>.</cite>";s:6:"Author";s:49:"<a href="http://www.wordfence.com/">Wordfence</a>";s:9:"AuthorURI";s:25:"http://www.wordfence.com/";s:10:"TextDomain";s:9:"wordfence";s:10:"DomainPath";s:0:"";s:7:"Network";b:1;s:5:"Title";s:58:"<a href="http://www.wordfence.com/">Wordfence Security</a>";s:10:"AuthorName";s:9:"Wordfence";s:10:"pluginFile";s:69:"/home/vicenzol/public_html/wp-content/plugins/wordfence/wordfence.php";s:10:"newVersion";s:5:"7.2.2";s:4:"slug";s:9:"wordfence";s:5:"wpURL";s:39:"https://wordpress.org/plugins/wordfence";s:20:"vulnerabilityPatched";b:0;}'),
(23002, 1550729219, 'new', 'wfPluginUpgrade', 2, 'de7d1e2600f27c77192d1f5e04ab28e4', 'de7d1e2600f27c77192d1f5e04ab28e4', 'The Plugin "WordPress Importer" needs an upgrade (0.6.3 -> 0.6.4).', 'You need to upgrade "WordPress Importer" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:18:"WordPress Importer";s:9:"PluginURI";s:55:"http://wordpress.org/extend/plugins/wordpress-importer/";s:7:"Version";s:5:"0.6.3";s:11:"Description";s:170:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file. <cite>By <a href="http://wordpress.org/">wordpressdotorg</a>.</cite>";s:6:"Author";s:51:"<a href="http://wordpress.org/">wordpressdotorg</a>";s:9:"AuthorURI";s:21:"http://wordpress.org/";s:10:"TextDomain";s:18:"wordpress-importer";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:5:"Title";s:88:"<a href="http://wordpress.org/extend/plugins/wordpress-importer/">WordPress Importer</a>";s:10:"AuthorName";s:15:"wordpressdotorg";s:10:"pluginFile";s:87:"/home/vicenzol/public_html/wp-content/plugins/wordpress-importer/wordpress-importer.php";s:10:"newVersion";s:5:"0.6.4";s:4:"slug";s:18:"wordpress-importer";s:5:"wpURL";s:48:"https://wordpress.org/plugins/wordpress-importer";s:20:"vulnerabilityPatched";b:0;}'),
(23003, 1550729219, 'new', 'wfPluginUpgrade', 2, '313c35597b7237d529932523bd07bdd4', '313c35597b7237d529932523bd07bdd4', 'The Plugin "WP Migrate DB" needs an upgrade (0.9.2 -> 1.0.10).', 'You need to upgrade "WP Migrate DB" to the newest version to ensure you have any security fixes the developer has released.', 'a:16:{s:4:"Name";s:13:"WP Migrate DB";s:9:"PluginURI";s:43:"http://wordpress.org/plugins/wp-migrate-db/";s:7:"Version";s:5:"0.9.2";s:11:"Description";s:234:"Exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer. <cite>By <a href="http://deliciousbrains.com">Delicious Brains</a>.</cite>";s:6:"Author";s:57:"<a href="http://deliciousbrains.com">Delicious Brains</a>";s:9:"AuthorURI";s:26:"http://deliciousbrains.com";s:10:"TextDomain";s:13:"wp-migrate-db";s:10:"DomainPath";s:11:"/languages/";s:7:"Network";b:1;s:5:"Title";s:71:"<a href="http://wordpress.org/plugins/wp-migrate-db/">WP Migrate DB</a>";s:10:"AuthorName";s:16:"Delicious Brains";s:10:"pluginFile";s:77:"/home/vicenzol/public_html/wp-content/plugins/wp-migrate-db/wp-migrate-db.php";s:10:"newVersion";s:6:"1.0.10";s:4:"slug";s:13:"wp-migrate-db";s:5:"wpURL";s:43:"https://wordpress.org/plugins/wp-migrate-db";s:20:"vulnerabilityPatched";b:0;}'),
(23004, 1550729219, 'new', 'wfThemeUpgrade', 2, 'c9e8fa273010398f6962ad344600ed18', 'c9e8fa273010398f6962ad344600ed18', 'The Theme "Twenty Fifteen" needs an upgrade (1.5 -> 2.3).', 'You need to upgrade "Twenty Fifteen" to the newest version to ensure you have any security fixes the developer has released.', 'a:7:{s:10:"newVersion";s:3:"2.3";s:7:"package";s:59:"https://downloads.wordpress.org/theme/twentyfifteen.2.3.zip";s:3:"URL";s:43:"https://wordpress.org/themes/twentyfifteen/";s:4:"Name";s:14:"Twenty Fifteen";s:4:"name";s:14:"Twenty Fifteen";s:7:"version";s:3:"1.5";s:20:"vulnerabilityPatched";b:0;}'),
(23005, 1550729219, 'new', 'wfThemeUpgrade', 2, '24cd14eaa4c0c66a7fdf0c25c33e8f82', '24cd14eaa4c0c66a7fdf0c25c33e8f82', 'The Theme "Twenty Fourteen" needs an upgrade (1.7 -> 2.5).', 'You need to upgrade "Twenty Fourteen" to the newest version to ensure you have any security fixes the developer has released.', 'a:7:{s:10:"newVersion";s:3:"2.5";s:7:"package";s:60:"https://downloads.wordpress.org/theme/twentyfourteen.2.5.zip";s:3:"URL";s:44:"https://wordpress.org/themes/twentyfourteen/";s:4:"Name";s:15:"Twenty Fourteen";s:4:"name";s:15:"Twenty Fourteen";s:7:"version";s:3:"1.7";s:20:"vulnerabilityPatched";b:0;}'),
(23006, 1550729219, 'new', 'wfThemeUpgrade', 2, '4ccc432324a7b6034bbae63454605e60', '4ccc432324a7b6034bbae63454605e60', 'The Theme "Twenty Sixteen" needs an upgrade (1.2 -> 1.8).', 'You need to upgrade "Twenty Sixteen" to the newest version to ensure you have any security fixes the developer has released.', 'a:7:{s:10:"newVersion";s:3:"1.8";s:7:"package";s:59:"https://downloads.wordpress.org/theme/twentysixteen.1.8.zip";s:3:"URL";s:43:"https://wordpress.org/themes/twentysixteen/";s:4:"Name";s:14:"Twenty Sixteen";s:4:"name";s:14:"Twenty Sixteen";s:7:"version";s:3:"1.2";s:20:"vulnerabilityPatched";b:0;}') ;

#
# End of data contents of table `wp2o_wfIssues`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfKnownFileList`
#

DROP TABLE IF EXISTS `wp2o_wfKnownFileList`;


#
# Table structure of table `wp2o_wfKnownFileList`
#

CREATE TABLE `wp2o_wfKnownFileList` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5765 DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfKnownFileList`
#
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1, 'index.php'),
(2, 'license.txt'),
(3, 'wp-activate.php'),
(4, 'wp-admin/_plugin-install.php'),
(5, 'wp-admin/_plugins.php'),
(6, 'wp-admin/about.php'),
(7, 'wp-admin/admin-ajax.php'),
(8, 'wp-admin/admin-footer.php'),
(9, 'wp-admin/admin-functions.php'),
(10, 'wp-admin/admin-header.php'),
(11, 'wp-admin/admin-post.php'),
(12, 'wp-admin/admin.php'),
(13, 'wp-admin/async-upload.php'),
(14, 'wp-admin/comment.php'),
(15, 'wp-admin/credits.php'),
(16, 'wp-admin/css/about-rtl.css'),
(17, 'wp-admin/css/about-rtl.min.css'),
(18, 'wp-admin/css/about.css'),
(19, 'wp-admin/css/about.min.css'),
(20, 'wp-admin/css/admin-menu-rtl.css'),
(21, 'wp-admin/css/admin-menu-rtl.min.css'),
(22, 'wp-admin/css/admin-menu.css'),
(23, 'wp-admin/css/admin-menu.min.css'),
(24, 'wp-admin/css/color-picker-rtl.css'),
(25, 'wp-admin/css/color-picker-rtl.min.css'),
(26, 'wp-admin/css/color-picker.css'),
(27, 'wp-admin/css/color-picker.min.css'),
(28, 'wp-admin/css/colors/_admin.scss'),
(29, 'wp-admin/css/colors/_mixins.scss'),
(30, 'wp-admin/css/colors/_variables.scss'),
(31, 'wp-admin/css/colors/blue/colors-rtl.css'),
(32, 'wp-admin/css/colors/blue/colors-rtl.min.css'),
(33, 'wp-admin/css/colors/blue/colors.css'),
(34, 'wp-admin/css/colors/blue/colors.min.css'),
(35, 'wp-admin/css/colors/blue/colors.scss'),
(36, 'wp-admin/css/colors/coffee/colors-rtl.css'),
(37, 'wp-admin/css/colors/coffee/colors-rtl.min.css'),
(38, 'wp-admin/css/colors/coffee/colors.css'),
(39, 'wp-admin/css/colors/coffee/colors.min.css'),
(40, 'wp-admin/css/colors/coffee/colors.scss'),
(41, 'wp-admin/css/colors/ectoplasm/colors-rtl.css'),
(42, 'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),
(43, 'wp-admin/css/colors/ectoplasm/colors.css'),
(44, 'wp-admin/css/colors/ectoplasm/colors.min.css'),
(45, 'wp-admin/css/colors/ectoplasm/colors.scss'),
(46, 'wp-admin/css/colors/light/colors-rtl.css'),
(47, 'wp-admin/css/colors/light/colors-rtl.min.css'),
(48, 'wp-admin/css/colors/light/colors.css'),
(49, 'wp-admin/css/colors/light/colors.min.css'),
(50, 'wp-admin/css/colors/light/colors.scss'),
(51, 'wp-admin/css/colors/midnight/colors-rtl.css'),
(52, 'wp-admin/css/colors/midnight/colors-rtl.min.css'),
(53, 'wp-admin/css/colors/midnight/colors.css'),
(54, 'wp-admin/css/colors/midnight/colors.min.css'),
(55, 'wp-admin/css/colors/midnight/colors.scss'),
(56, 'wp-admin/css/colors/ocean/colors-rtl.css'),
(57, 'wp-admin/css/colors/ocean/colors-rtl.min.css'),
(58, 'wp-admin/css/colors/ocean/colors.css'),
(59, 'wp-admin/css/colors/ocean/colors.min.css'),
(60, 'wp-admin/css/colors/ocean/colors.scss'),
(61, 'wp-admin/css/colors/sunrise/colors-rtl.css'),
(62, 'wp-admin/css/colors/sunrise/colors-rtl.min.css'),
(63, 'wp-admin/css/colors/sunrise/colors.css'),
(64, 'wp-admin/css/colors/sunrise/colors.min.css'),
(65, 'wp-admin/css/colors/sunrise/colors.scss'),
(66, 'wp-admin/css/common-rtl.css'),
(67, 'wp-admin/css/common-rtl.min.css'),
(68, 'wp-admin/css/common.css'),
(69, 'wp-admin/css/common.min.css'),
(70, 'wp-admin/css/customize-controls-rtl.css'),
(71, 'wp-admin/css/customize-controls-rtl.min.css'),
(72, 'wp-admin/css/customize-controls.css'),
(73, 'wp-admin/css/customize-controls.min.css'),
(74, 'wp-admin/css/customize-nav-menus-rtl.css'),
(75, 'wp-admin/css/customize-nav-menus-rtl.min.css'),
(76, 'wp-admin/css/customize-nav-menus.css'),
(77, 'wp-admin/css/customize-nav-menus.min.css'),
(78, 'wp-admin/css/customize-widgets-rtl.css'),
(79, 'wp-admin/css/customize-widgets-rtl.min.css'),
(80, 'wp-admin/css/customize-widgets.css'),
(81, 'wp-admin/css/customize-widgets.min.css'),
(82, 'wp-admin/css/dashboard-rtl.css'),
(83, 'wp-admin/css/dashboard-rtl.min.css'),
(84, 'wp-admin/css/dashboard.css'),
(85, 'wp-admin/css/dashboard.min.css'),
(86, 'wp-admin/css/deprecated-media-rtl.css'),
(87, 'wp-admin/css/deprecated-media-rtl.min.css'),
(88, 'wp-admin/css/deprecated-media.css'),
(89, 'wp-admin/css/deprecated-media.min.css'),
(90, 'wp-admin/css/edit-rtl.css'),
(91, 'wp-admin/css/edit-rtl.min.css'),
(92, 'wp-admin/css/edit.css'),
(93, 'wp-admin/css/edit.min.css'),
(94, 'wp-admin/css/farbtastic-rtl.css'),
(95, 'wp-admin/css/farbtastic-rtl.min.css'),
(96, 'wp-admin/css/farbtastic.css'),
(97, 'wp-admin/css/farbtastic.min.css'),
(98, 'wp-admin/css/forms-rtl.css'),
(99, 'wp-admin/css/forms-rtl.min.css'),
(100, 'wp-admin/css/forms.css') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(101, 'wp-admin/css/forms.min.css'),
(102, 'wp-admin/css/ie-rtl.css'),
(103, 'wp-admin/css/ie-rtl.min.css'),
(104, 'wp-admin/css/ie.css'),
(105, 'wp-admin/css/ie.min.css'),
(106, 'wp-admin/css/install-rtl.css'),
(107, 'wp-admin/css/install-rtl.min.css'),
(108, 'wp-admin/css/install.css'),
(109, 'wp-admin/css/install.min.css'),
(110, 'wp-admin/css/l10n-rtl.css'),
(111, 'wp-admin/css/l10n-rtl.min.css'),
(112, 'wp-admin/css/l10n.css'),
(113, 'wp-admin/css/l10n.min.css'),
(114, 'wp-admin/css/list-tables-rtl.css'),
(115, 'wp-admin/css/list-tables-rtl.min.css'),
(116, 'wp-admin/css/list-tables.css'),
(117, 'wp-admin/css/list-tables.min.css'),
(118, 'wp-admin/css/login-rtl.css'),
(119, 'wp-admin/css/login-rtl.min.css'),
(120, 'wp-admin/css/login.css'),
(121, 'wp-admin/css/login.min.css'),
(122, 'wp-admin/css/media-rtl.css'),
(123, 'wp-admin/css/media-rtl.min.css'),
(124, 'wp-admin/css/media.css'),
(125, 'wp-admin/css/media.min.css'),
(126, 'wp-admin/css/nav-menus-rtl.css'),
(127, 'wp-admin/css/nav-menus-rtl.min.css'),
(128, 'wp-admin/css/nav-menus.css'),
(129, 'wp-admin/css/nav-menus.min.css'),
(130, 'wp-admin/css/press-this-editor-rtl.css'),
(131, 'wp-admin/css/press-this-editor-rtl.min.css'),
(132, 'wp-admin/css/press-this-editor.css'),
(133, 'wp-admin/css/press-this-editor.min.css'),
(134, 'wp-admin/css/press-this-rtl.css'),
(135, 'wp-admin/css/press-this-rtl.min.css'),
(136, 'wp-admin/css/press-this.css'),
(137, 'wp-admin/css/press-this.min.css'),
(138, 'wp-admin/css/revisions-rtl.css'),
(139, 'wp-admin/css/revisions-rtl.min.css'),
(140, 'wp-admin/css/revisions.css'),
(141, 'wp-admin/css/revisions.min.css'),
(142, 'wp-admin/css/site-icon-rtl.css'),
(143, 'wp-admin/css/site-icon-rtl.min.css'),
(144, 'wp-admin/css/site-icon.css'),
(145, 'wp-admin/css/site-icon.min.css'),
(146, 'wp-admin/css/themes-rtl.css'),
(147, 'wp-admin/css/themes-rtl.min.css'),
(148, 'wp-admin/css/themes.css'),
(149, 'wp-admin/css/themes.min.css'),
(150, 'wp-admin/css/widgets-rtl.css'),
(151, 'wp-admin/css/widgets-rtl.min.css'),
(152, 'wp-admin/css/widgets.css'),
(153, 'wp-admin/css/widgets.min.css'),
(154, 'wp-admin/css/wp-admin-rtl.css'),
(155, 'wp-admin/css/wp-admin-rtl.min.css'),
(156, 'wp-admin/css/wp-admin.css'),
(157, 'wp-admin/css/wp-admin.min.css'),
(158, 'wp-admin/custom-background.php'),
(159, 'wp-admin/custom-header.php'),
(160, 'wp-admin/customize.php'),
(161, 'wp-admin/edit-comments.php'),
(162, 'wp-admin/edit-form-advanced.php'),
(163, 'wp-admin/edit-form-comment.php'),
(164, 'wp-admin/edit-link-form.php'),
(165, 'wp-admin/edit-tag-form.php'),
(166, 'wp-admin/edit-tags.php'),
(167, 'wp-admin/edit.php'),
(168, 'wp-admin/export.php'),
(169, 'wp-admin/freedoms.php'),
(170, 'wp-admin/images/align-center-2x.png'),
(171, 'wp-admin/images/align-center.png'),
(172, 'wp-admin/images/align-left-2x.png'),
(173, 'wp-admin/images/align-left.png'),
(174, 'wp-admin/images/align-none-2x.png'),
(175, 'wp-admin/images/align-none.png'),
(176, 'wp-admin/images/align-right-2x.png'),
(177, 'wp-admin/images/align-right.png'),
(178, 'wp-admin/images/arrows-2x.png'),
(179, 'wp-admin/images/arrows.png'),
(180, 'wp-admin/images/browser-rtl.png'),
(181, 'wp-admin/images/browser.png'),
(182, 'wp-admin/images/bubble_bg-2x.gif'),
(183, 'wp-admin/images/bubble_bg.gif'),
(184, 'wp-admin/images/comment-grey-bubble-2x.png'),
(185, 'wp-admin/images/comment-grey-bubble.png'),
(186, 'wp-admin/images/date-button-2x.gif'),
(187, 'wp-admin/images/date-button.gif'),
(188, 'wp-admin/images/generic.png'),
(189, 'wp-admin/images/icons32-2x.png'),
(190, 'wp-admin/images/icons32-vs-2x.png'),
(191, 'wp-admin/images/icons32-vs.png'),
(192, 'wp-admin/images/icons32.png'),
(193, 'wp-admin/images/imgedit-icons-2x.png'),
(194, 'wp-admin/images/imgedit-icons.png'),
(195, 'wp-admin/images/list-2x.png'),
(196, 'wp-admin/images/list.png'),
(197, 'wp-admin/images/loading.gif'),
(198, 'wp-admin/images/marker.png'),
(199, 'wp-admin/images/mask.png'),
(200, 'wp-admin/images/media-button-2x.png') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(201, 'wp-admin/images/media-button-image.gif'),
(202, 'wp-admin/images/media-button-music.gif'),
(203, 'wp-admin/images/media-button-other.gif'),
(204, 'wp-admin/images/media-button-video.gif'),
(205, 'wp-admin/images/media-button.png'),
(206, 'wp-admin/images/menu-2x.png'),
(207, 'wp-admin/images/menu-vs-2x.png'),
(208, 'wp-admin/images/menu-vs.png'),
(209, 'wp-admin/images/menu.png'),
(210, 'wp-admin/images/no.png'),
(211, 'wp-admin/images/post-formats-vs.png'),
(212, 'wp-admin/images/post-formats.png'),
(213, 'wp-admin/images/post-formats32-vs.png'),
(214, 'wp-admin/images/post-formats32.png'),
(215, 'wp-admin/images/resize-2x.gif'),
(216, 'wp-admin/images/resize-rtl-2x.gif'),
(217, 'wp-admin/images/resize-rtl.gif'),
(218, 'wp-admin/images/resize.gif'),
(219, 'wp-admin/images/se.png'),
(220, 'wp-admin/images/sort-2x.gif'),
(221, 'wp-admin/images/sort.gif'),
(222, 'wp-admin/images/spinner-2x.gif'),
(223, 'wp-admin/images/spinner.gif'),
(224, 'wp-admin/images/stars-2x.png'),
(225, 'wp-admin/images/stars.png'),
(226, 'wp-admin/images/w-logo-blue.png'),
(227, 'wp-admin/images/w-logo-white.png'),
(228, 'wp-admin/images/wheel.png'),
(229, 'wp-admin/images/wordpress-logo-white.svg'),
(230, 'wp-admin/images/wordpress-logo.png'),
(231, 'wp-admin/images/wordpress-logo.svg'),
(232, 'wp-admin/images/wpspin_light-2x.gif'),
(233, 'wp-admin/images/wpspin_light.gif'),
(234, 'wp-admin/images/xit-2x.gif'),
(235, 'wp-admin/images/xit.gif'),
(236, 'wp-admin/images/yes.png'),
(237, 'wp-admin/import.php'),
(238, 'wp-admin/includes/admin-filters.php'),
(239, 'wp-admin/includes/admin.php'),
(240, 'wp-admin/includes/ajax-actions.php'),
(241, 'wp-admin/includes/bookmark.php'),
(242, 'wp-admin/includes/class-automatic-upgrader-skin.php'),
(243, 'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),
(244, 'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),
(245, 'wp-admin/includes/class-bulk-upgrader-skin.php'),
(246, 'wp-admin/includes/class-core-upgrader.php'),
(247, 'wp-admin/includes/class-file-upload-upgrader.php'),
(248, 'wp-admin/includes/class-ftp-pure.php'),
(249, 'wp-admin/includes/class-ftp-sockets.php'),
(250, 'wp-admin/includes/class-ftp.php'),
(251, 'wp-admin/includes/class-language-pack-upgrader-skin.php'),
(252, 'wp-admin/includes/class-language-pack-upgrader.php'),
(253, 'wp-admin/includes/class-pclzip.php'),
(254, 'wp-admin/includes/class-plugin-installer-skin.php'),
(255, 'wp-admin/includes/class-plugin-upgrader-skin.php'),
(256, 'wp-admin/includes/class-plugin-upgrader.php'),
(257, 'wp-admin/includes/class-theme-installer-skin.php'),
(258, 'wp-admin/includes/class-theme-upgrader-skin.php'),
(259, 'wp-admin/includes/class-theme-upgrader.php'),
(260, 'wp-admin/includes/class-walker-category-checklist.php'),
(261, 'wp-admin/includes/class-walker-nav-menu-checklist.php'),
(262, 'wp-admin/includes/class-walker-nav-menu-edit.php'),
(263, 'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),
(264, 'wp-admin/includes/class-wp-automatic-updater.php'),
(265, 'wp-admin/includes/class-wp-comments-list-table.php'),
(266, 'wp-admin/includes/class-wp-filesystem-base.php'),
(267, 'wp-admin/includes/class-wp-filesystem-direct.php'),
(268, 'wp-admin/includes/class-wp-filesystem-ftpext.php'),
(269, 'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),
(270, 'wp-admin/includes/class-wp-filesystem-ssh2.php'),
(271, 'wp-admin/includes/class-wp-importer.php'),
(272, 'wp-admin/includes/class-wp-internal-pointers.php'),
(273, 'wp-admin/includes/class-wp-links-list-table.php'),
(274, 'wp-admin/includes/class-wp-list-table-compat.php'),
(275, 'wp-admin/includes/class-wp-list-table.php'),
(276, 'wp-admin/includes/class-wp-media-list-table.php'),
(277, 'wp-admin/includes/class-wp-ms-sites-list-table.php'),
(278, 'wp-admin/includes/class-wp-ms-themes-list-table.php'),
(279, 'wp-admin/includes/class-wp-ms-users-list-table.php'),
(280, 'wp-admin/includes/class-wp-plugin-install-list-table.php'),
(281, 'wp-admin/includes/class-wp-plugins-list-table.php'),
(282, 'wp-admin/includes/class-wp-post-comments-list-table.php'),
(283, 'wp-admin/includes/class-wp-posts-list-table.php'),
(284, 'wp-admin/includes/class-wp-press-this.php'),
(285, 'wp-admin/includes/class-wp-screen.php'),
(286, 'wp-admin/includes/class-wp-site-icon.php'),
(287, 'wp-admin/includes/class-wp-terms-list-table.php'),
(288, 'wp-admin/includes/class-wp-theme-install-list-table.php'),
(289, 'wp-admin/includes/class-wp-themes-list-table.php'),
(290, 'wp-admin/includes/class-wp-upgrader-skin.php'),
(291, 'wp-admin/includes/class-wp-upgrader-skins.php'),
(292, 'wp-admin/includes/class-wp-upgrader.php'),
(293, 'wp-admin/includes/class-wp-users-list-table.php'),
(294, 'wp-admin/includes/comment.php'),
(295, 'wp-admin/includes/continents-cities.php'),
(296, 'wp-admin/includes/credits.php'),
(297, 'wp-admin/includes/dashboard.php'),
(298, 'wp-admin/includes/deprecated.php'),
(299, 'wp-admin/includes/edit-tag-messages.php'),
(300, 'wp-admin/includes/export.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(301, 'wp-admin/includes/file.php'),
(302, 'wp-admin/includes/image-edit.php'),
(303, 'wp-admin/includes/image.php'),
(304, 'wp-admin/includes/import.php'),
(305, 'wp-admin/includes/list-table.php'),
(306, 'wp-admin/includes/media.php'),
(307, 'wp-admin/includes/menu.php'),
(308, 'wp-admin/includes/meta-boxes.php'),
(309, 'wp-admin/includes/misc.php'),
(310, 'wp-admin/includes/ms-admin-filters.php'),
(311, 'wp-admin/includes/ms-deprecated.php'),
(312, 'wp-admin/includes/ms.php'),
(313, 'wp-admin/includes/nav-menu.php'),
(314, 'wp-admin/includes/network.php'),
(315, 'wp-admin/includes/noop.php'),
(316, 'wp-admin/includes/options.php'),
(317, 'wp-admin/includes/plugin-install.php'),
(318, 'wp-admin/includes/plugin.php'),
(319, 'wp-admin/includes/post.php'),
(320, 'wp-admin/includes/revision.php'),
(321, 'wp-admin/includes/schema.php'),
(322, 'wp-admin/includes/screen.php'),
(323, 'wp-admin/includes/taxonomy.php'),
(324, 'wp-admin/includes/template.php'),
(325, 'wp-admin/includes/theme-install.php'),
(326, 'wp-admin/includes/theme.php'),
(327, 'wp-admin/includes/translation-install.php'),
(328, 'wp-admin/includes/update-core.php'),
(329, 'wp-admin/includes/update.php'),
(330, 'wp-admin/includes/upgrade.php'),
(331, 'wp-admin/includes/user.php'),
(332, 'wp-admin/includes/widgets.php'),
(333, 'wp-admin/index.php'),
(334, 'wp-admin/install-helper.php'),
(335, 'wp-admin/install.php'),
(336, 'wp-admin/js/accordion.js'),
(337, 'wp-admin/js/accordion.min.js'),
(338, 'wp-admin/js/bookmarklet.js'),
(339, 'wp-admin/js/bookmarklet.min.js'),
(340, 'wp-admin/js/color-picker.js'),
(341, 'wp-admin/js/color-picker.min.js'),
(342, 'wp-admin/js/comment.js'),
(343, 'wp-admin/js/comment.min.js'),
(344, 'wp-admin/js/common.js'),
(345, 'wp-admin/js/common.min.js'),
(346, 'wp-admin/js/custom-background.js'),
(347, 'wp-admin/js/custom-background.min.js'),
(348, 'wp-admin/js/custom-header.js'),
(349, 'wp-admin/js/customize-controls.js'),
(350, 'wp-admin/js/customize-controls.min.js'),
(351, 'wp-admin/js/customize-nav-menus.js'),
(352, 'wp-admin/js/customize-nav-menus.min.js'),
(353, 'wp-admin/js/customize-widgets.js'),
(354, 'wp-admin/js/customize-widgets.min.js'),
(355, 'wp-admin/js/dashboard.js'),
(356, 'wp-admin/js/dashboard.min.js'),
(357, 'wp-admin/js/edit-comments.js'),
(358, 'wp-admin/js/edit-comments.min.js'),
(359, 'wp-admin/js/editor-expand.js'),
(360, 'wp-admin/js/editor-expand.min.js'),
(361, 'wp-admin/js/editor.js'),
(362, 'wp-admin/js/editor.min.js'),
(363, 'wp-admin/js/farbtastic.js'),
(364, 'wp-admin/js/gallery.js'),
(365, 'wp-admin/js/gallery.min.js'),
(366, 'wp-admin/js/image-edit.js'),
(367, 'wp-admin/js/image-edit.min.js'),
(368, 'wp-admin/js/inline-edit-post.js'),
(369, 'wp-admin/js/inline-edit-post.min.js'),
(370, 'wp-admin/js/inline-edit-tax.js'),
(371, 'wp-admin/js/inline-edit-tax.min.js'),
(372, 'wp-admin/js/iris.min.js'),
(373, 'wp-admin/js/language-chooser.js'),
(374, 'wp-admin/js/language-chooser.min.js'),
(375, 'wp-admin/js/link.js'),
(376, 'wp-admin/js/link.min.js'),
(377, 'wp-admin/js/media-gallery.js'),
(378, 'wp-admin/js/media-gallery.min.js'),
(379, 'wp-admin/js/media-upload.js'),
(380, 'wp-admin/js/media-upload.min.js'),
(381, 'wp-admin/js/media.js'),
(382, 'wp-admin/js/media.min.js'),
(383, 'wp-admin/js/nav-menu.js'),
(384, 'wp-admin/js/nav-menu.min.js'),
(385, 'wp-admin/js/password-strength-meter.js'),
(386, 'wp-admin/js/password-strength-meter.min.js'),
(387, 'wp-admin/js/plugin-install.js'),
(388, 'wp-admin/js/plugin-install.min.js'),
(389, 'wp-admin/js/post.js'),
(390, 'wp-admin/js/post.min.js'),
(391, 'wp-admin/js/postbox.js'),
(392, 'wp-admin/js/postbox.min.js'),
(393, 'wp-admin/js/press-this.js'),
(394, 'wp-admin/js/press-this.min.js'),
(395, 'wp-admin/js/revisions.js'),
(396, 'wp-admin/js/revisions.min.js'),
(397, 'wp-admin/js/set-post-thumbnail.js'),
(398, 'wp-admin/js/set-post-thumbnail.min.js'),
(399, 'wp-admin/js/svg-painter.js'),
(400, 'wp-admin/js/svg-painter.min.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(401, 'wp-admin/js/tags-box.js'),
(402, 'wp-admin/js/tags-box.min.js'),
(403, 'wp-admin/js/tags-suggest.js'),
(404, 'wp-admin/js/tags-suggest.min.js'),
(405, 'wp-admin/js/tags.js'),
(406, 'wp-admin/js/tags.min.js'),
(407, 'wp-admin/js/theme.js'),
(408, 'wp-admin/js/theme.min.js'),
(409, 'wp-admin/js/updates.js'),
(410, 'wp-admin/js/updates.min.js'),
(411, 'wp-admin/js/user-profile.js'),
(412, 'wp-admin/js/user-profile.min.js'),
(413, 'wp-admin/js/user-suggest.js'),
(414, 'wp-admin/js/user-suggest.min.js'),
(415, 'wp-admin/js/widgets.js'),
(416, 'wp-admin/js/widgets.min.js'),
(417, 'wp-admin/js/word-count.js'),
(418, 'wp-admin/js/word-count.min.js'),
(419, 'wp-admin/js/wp-fullscreen-stub.js'),
(420, 'wp-admin/js/wp-fullscreen-stub.min.js'),
(421, 'wp-admin/js/xfn.js'),
(422, 'wp-admin/js/xfn.min.js'),
(423, 'wp-admin/link-add.php'),
(424, 'wp-admin/link-manager.php'),
(425, 'wp-admin/link-parse-opml.php'),
(426, 'wp-admin/link.php'),
(427, 'wp-admin/load-scripts.php'),
(428, 'wp-admin/load-styles.php'),
(429, 'wp-admin/maint/repair.php'),
(430, 'wp-admin/media-new.php'),
(431, 'wp-admin/media-upload.php'),
(432, 'wp-admin/media.php'),
(433, 'wp-admin/menu-header.php'),
(434, 'wp-admin/menu.php'),
(435, 'wp-admin/moderation.php'),
(436, 'wp-admin/ms-admin.php'),
(437, 'wp-admin/ms-delete-site.php'),
(438, 'wp-admin/ms-edit.php'),
(439, 'wp-admin/ms-options.php'),
(440, 'wp-admin/ms-sites.php'),
(441, 'wp-admin/ms-themes.php'),
(442, 'wp-admin/ms-upgrade-network.php'),
(443, 'wp-admin/ms-users.php'),
(444, 'wp-admin/my-sites.php'),
(445, 'wp-admin/nav-menus.php'),
(446, 'wp-admin/network/about.php'),
(447, 'wp-admin/network/admin.php'),
(448, 'wp-admin/network/credits.php'),
(449, 'wp-admin/network/edit.php'),
(450, 'wp-admin/network/freedoms.php'),
(451, 'wp-admin/network/index.php'),
(452, 'wp-admin/network/menu.php'),
(453, 'wp-admin/network/plugin-editor.php'),
(454, 'wp-admin/network/plugin-install.php'),
(455, 'wp-admin/network/plugins.php'),
(456, 'wp-admin/network/profile.php'),
(457, 'wp-admin/network/settings.php'),
(458, 'wp-admin/network/setup.php'),
(459, 'wp-admin/network/site-info.php'),
(460, 'wp-admin/network/site-new.php'),
(461, 'wp-admin/network/site-settings.php'),
(462, 'wp-admin/network/site-themes.php'),
(463, 'wp-admin/network/site-users.php'),
(464, 'wp-admin/network/sites.php'),
(465, 'wp-admin/network/theme-editor.php'),
(466, 'wp-admin/network/theme-install.php'),
(467, 'wp-admin/network/themes.php'),
(468, 'wp-admin/network/update-core.php'),
(469, 'wp-admin/network/update.php'),
(470, 'wp-admin/network/upgrade.php'),
(471, 'wp-admin/network/user-edit.php'),
(472, 'wp-admin/network/user-new.php'),
(473, 'wp-admin/network/users.php'),
(474, 'wp-admin/network.php'),
(475, 'wp-admin/options-discussion.php'),
(476, 'wp-admin/options-general.php'),
(477, 'wp-admin/options-head.php'),
(478, 'wp-admin/options-media.php'),
(479, 'wp-admin/options-permalink.php'),
(480, 'wp-admin/options-reading.php'),
(481, 'wp-admin/options-writing.php'),
(482, 'wp-admin/options.php'),
(483, 'wp-admin/plugin-editor.php'),
(484, 'wp-admin/plugin-install.php'),
(485, 'wp-admin/plugins.php'),
(486, 'wp-admin/post-new.php'),
(487, 'wp-admin/post.php'),
(488, 'wp-admin/press-this.php'),
(489, 'wp-admin/profile.php'),
(490, 'wp-admin/revision.php'),
(491, 'wp-admin/setup-config.php'),
(492, 'wp-admin/term.php'),
(493, 'wp-admin/theme-editor.php'),
(494, 'wp-admin/theme-install.php'),
(495, 'wp-admin/themes.php'),
(496, 'wp-admin/tools.php'),
(497, 'wp-admin/update-core.php'),
(498, 'wp-admin/update.php'),
(499, 'wp-admin/upgrade-functions.php'),
(500, 'wp-admin/upgrade.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(501, 'wp-admin/upload.php'),
(502, 'wp-admin/user/about.php'),
(503, 'wp-admin/user/admin.php'),
(504, 'wp-admin/user/credits.php'),
(505, 'wp-admin/user/freedoms.php'),
(506, 'wp-admin/user/index.php'),
(507, 'wp-admin/user/menu.php'),
(508, 'wp-admin/user/profile.php'),
(509, 'wp-admin/user/user-edit.php'),
(510, 'wp-admin/user-edit.php'),
(511, 'wp-admin/user-new.php'),
(512, 'wp-admin/users.php'),
(513, 'wp-admin/widgets.php'),
(514, 'wp-blog-header.php'),
(515, 'wp-comments-post.php'),
(516, 'wp-config-sample.php'),
(517, 'wp-config.php'),
(518, 'wp-configbk.php'),
(519, 'wp-content/index.php'),
(520, 'wp-content/plugins/LayerSlider/classes/class.km.autoupdate.plugins.v3.php'),
(521, 'wp-content/plugins/LayerSlider/classes/class.km.autoupdate.themes.v3.php'),
(522, 'wp-content/plugins/LayerSlider/classes/class.km.autoupdate.v3.php'),
(523, 'wp-content/plugins/LayerSlider/classes/class.ls.exportutil.php'),
(524, 'wp-content/plugins/LayerSlider/classes/class.ls.importutil.php'),
(525, 'wp-content/plugins/LayerSlider/classes/class.ls.posts.php'),
(526, 'wp-content/plugins/LayerSlider/classes/class.ls.sliders.php'),
(527, 'wp-content/plugins/LayerSlider/classes/class.ls.sources.php'),
(528, 'wp-content/plugins/LayerSlider/classes/index.php'),
(529, 'wp-content/plugins/LayerSlider/config/index.php'),
(530, 'wp-content/plugins/LayerSlider/config/layer.defaults.php'),
(531, 'wp-content/plugins/LayerSlider/config/plugin.defaults.php'),
(532, 'wp-content/plugins/LayerSlider/config/slide.defaults.php'),
(533, 'wp-content/plugins/LayerSlider/config/slider.defaults.php'),
(534, 'wp-content/plugins/LayerSlider/demos/index.php'),
(535, 'wp-content/plugins/LayerSlider/demos/transitions.js'),
(536, 'wp-content/plugins/LayerSlider/helpers/admin.ui.tools.php'),
(537, 'wp-content/plugins/LayerSlider/helpers/index.php'),
(538, 'wp-content/plugins/LayerSlider/includes/index.php'),
(539, 'wp-content/plugins/LayerSlider/includes/slider_markup_html.php'),
(540, 'wp-content/plugins/LayerSlider/includes/slider_markup_init.php'),
(541, 'wp-content/plugins/LayerSlider/index.php'),
(542, 'wp-content/plugins/LayerSlider/locales/index.php'),
(543, 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/brace-fold.js'),
(544, 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/foldcode.js'),
(545, 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/foldgutter.js'),
(546, 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/indent-fold.js'),
(547, 'wp-content/plugins/LayerSlider/static/codemirror/addon/fold/xml-fold.js'),
(548, 'wp-content/plugins/LayerSlider/static/codemirror/addon/selection/active-line.js'),
(549, 'wp-content/plugins/LayerSlider/static/codemirror/addon/selection/mark-selection.js'),
(550, 'wp-content/plugins/LayerSlider/static/codemirror/lib/codemirror.js'),
(551, 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/css.js'),
(552, 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/index.html'),
(553, 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/scss.html'),
(554, 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/scss_test.js'),
(555, 'wp-content/plugins/LayerSlider/static/codemirror/mode/css/test.js'),
(556, 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlembedded/htmlembedded.js'),
(557, 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlembedded/index.html'),
(558, 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlmixed/htmlmixed.js'),
(559, 'wp-content/plugins/LayerSlider/static/codemirror/mode/htmlmixed/index.html'),
(560, 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/index.html'),
(561, 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/javascript.js'),
(562, 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/test.js'),
(563, 'wp-content/plugins/LayerSlider/static/codemirror/mode/javascript/typescript.html'),
(564, 'wp-content/plugins/LayerSlider/static/codemirror/mode/meta.js'),
(565, 'wp-content/plugins/LayerSlider/static/codemirror/mode/php/index.html'),
(566, 'wp-content/plugins/LayerSlider/static/codemirror/mode/php/php.js'),
(567, 'wp-content/plugins/LayerSlider/static/codemirror/mode/xml/index.html'),
(568, 'wp-content/plugins/LayerSlider/static/codemirror/mode/xml/xml.js'),
(569, 'wp-content/plugins/LayerSlider/static/js/greensock.js'),
(570, 'wp-content/plugins/LayerSlider/static/js/layerslider.transition.gallery.js'),
(571, 'wp-content/plugins/LayerSlider/static/js/ls-admin-global.js'),
(572, 'wp-content/plugins/LayerSlider/static/js/ls-admin-slider-builder.js'),
(573, 'wp-content/plugins/LayerSlider/static/js/ls-admin-sliders.js'),
(574, 'wp-content/plugins/LayerSlider/static/js/ls-admin-tinymce.js'),
(575, 'wp-content/plugins/LayerSlider/static/js/ls-admin-transition-builder.js'),
(576, 'wp-content/plugins/LayerSlider/static/js/minicolors/jquery.minicolors.js'),
(577, 'wp-content/plugins/LayerSlider/static/js/minicolors/jquery.minicolors.min.js'),
(578, 'wp-content/plugins/LayerSlider/templates/index.php'),
(579, 'wp-content/plugins/LayerSlider/templates/tmpl-add-slider.php'),
(580, 'wp-content/plugins/LayerSlider/templates/tmpl-beta-feedback.php'),
(581, 'wp-content/plugins/LayerSlider/templates/tmpl-demo-sliders.php'),
(582, 'wp-content/plugins/LayerSlider/templates/tmpl-layer-item.php'),
(583, 'wp-content/plugins/LayerSlider/templates/tmpl-layer.php'),
(584, 'wp-content/plugins/LayerSlider/templates/tmpl-post-options.php'),
(585, 'wp-content/plugins/LayerSlider/templates/tmpl-share-sheet.php'),
(586, 'wp-content/plugins/LayerSlider/templates/tmpl-slide.php'),
(587, 'wp-content/plugins/LayerSlider/templates/tmpl-slider-settings.php'),
(588, 'wp-content/plugins/LayerSlider/templates/tmpl-transition-window.php'),
(589, 'wp-content/plugins/LayerSlider/templates/tmpl-updates-revalidation.php'),
(590, 'wp-content/plugins/LayerSlider/tmp/cache/index.php'),
(591, 'wp-content/plugins/LayerSlider/tmp/index.php'),
(592, 'wp-content/plugins/LayerSlider/tmp/uploads/index.php'),
(593, 'wp-content/plugins/LayerSlider/views/index.php'),
(594, 'wp-content/plugins/LayerSlider/views/skin_editor.php'),
(595, 'wp-content/plugins/LayerSlider/views/slider_list.php'),
(596, 'wp-content/plugins/LayerSlider/views/style_editor.php'),
(597, 'wp-content/plugins/LayerSlider/views/transition_builder.php'),
(598, 'wp-content/plugins/LayerSlider/wp/actions.php'),
(599, 'wp-content/plugins/LayerSlider/wp/activation.php'),
(600, 'wp-content/plugins/LayerSlider/wp/compatibility.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(601, 'wp-content/plugins/LayerSlider/wp/hooks.php'),
(602, 'wp-content/plugins/LayerSlider/wp/index.php'),
(603, 'wp-content/plugins/LayerSlider/wp/menus.php'),
(604, 'wp-content/plugins/LayerSlider/wp/notices.php'),
(605, 'wp-content/plugins/LayerSlider/wp/scripts.php'),
(606, 'wp-content/plugins/LayerSlider/wp/shortcodes.php'),
(607, 'wp-content/plugins/LayerSlider/wp/tinymce.php'),
(608, 'wp-content/plugins/LayerSlider/wp/widgets.php'),
(609, 'wp-content/plugins/advanced-iframe/advanced-iframe-admin-page.php'),
(610, 'wp-content/plugins/advanced-iframe/advanced-iframe.php'),
(611, 'wp-content/plugins/advanced-iframe/css/index.html'),
(612, 'wp-content/plugins/advanced-iframe/documentation/Advanced iFrame Pro attribute help.htm'),
(613, 'wp-content/plugins/advanced-iframe/documentation/css/index.html'),
(614, 'wp-content/plugins/advanced-iframe/documentation/img/index.html'),
(615, 'wp-content/plugins/advanced-iframe/documentation/index.html'),
(616, 'wp-content/plugins/advanced-iframe/example/example.html'),
(617, 'wp-content/plugins/advanced-iframe/example/example_detail1.html'),
(618, 'wp-content/plugins/advanced-iframe/example/example_detail2.html'),
(619, 'wp-content/plugins/advanced-iframe/example/example_standalone.html'),
(620, 'wp-content/plugins/advanced-iframe/example/index.html'),
(621, 'wp-content/plugins/advanced-iframe/example/layer_footer.html'),
(622, 'wp-content/plugins/advanced-iframe/example/layer_xxx.html'),
(623, 'wp-content/plugins/advanced-iframe/img/index.html'),
(624, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-add-files.php'),
(625, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-advanced.php'),
(626, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-browser.php'),
(627, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-default.php'),
(628, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-external-workaround.php'),
(629, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-functions.php'),
(630, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-include-directly.php'),
(631, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-jquery.php'),
(632, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-lazy-load.php'),
(633, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-modify-iframe.php'),
(634, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-modify-parent.php'),
(635, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-parameters.php'),
(636, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-quickstart.php'),
(637, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-resize.php'),
(638, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-support.php'),
(639, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-twg.php'),
(640, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-video.php'),
(641, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-admin-zoom.php'),
(642, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-area-selector.html'),
(643, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-browser-detection.php'),
(644, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-css.php'),
(645, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-iframe.php'),
(646, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-include-directly.php'),
(647, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-prepare.php'),
(648, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-main-read-config.php'),
(649, 'wp-content/plugins/advanced-iframe/includes/advanced-iframe-widget.php'),
(650, 'wp-content/plugins/advanced-iframe/includes/class-cw-envato-api.php'),
(651, 'wp-content/plugins/advanced-iframe/includes/css/index.html'),
(652, 'wp-content/plugins/advanced-iframe/includes/index.html'),
(653, 'wp-content/plugins/advanced-iframe/includes/scripts/advanced-iframe-area-selector.js'),
(654, 'wp-content/plugins/advanced-iframe/includes/scripts/index.html'),
(655, 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.ba-resize.min.js'),
(656, 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.imgareaselect.pack.js'),
(657, 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.lazyload-any.min.js'),
(658, 'wp-content/plugins/advanced-iframe/includes/scripts/jquery.min.js'),
(659, 'wp-content/plugins/advanced-iframe/index.html'),
(660, 'wp-content/plugins/advanced-iframe/js/ai.js'),
(661, 'wp-content/plugins/advanced-iframe/js/ai_external.js'),
(662, 'wp-content/plugins/advanced-iframe/js/ai_external.template.js'),
(663, 'wp-content/plugins/advanced-iframe/js/findAndReplaceDOMText.js'),
(664, 'wp-content/plugins/advanced-iframe/js/iframe_height.html'),
(665, 'wp-content/plugins/advanced-iframe/js/iframe_show.html'),
(666, 'wp-content/plugins/advanced-iframe/js/index.html'),
(667, 'wp-content/plugins/advanced-iframe/languages/index.html'),
(668, 'wp-content/plugins/advanced-iframe/standalone/index.html'),
(669, 'wp-content/plugins/advanced-iframe/standalone/readme.html'),
(670, 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings.php'),
(671, 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings2.php'),
(672, 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings3.php'),
(673, 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe-settings4.php'),
(674, 'wp-content/plugins/advanced-iframe/standalone/standalone-advanced-iframe.php'),
(675, 'wp-content/plugins/advanced-iframe/standalone/standalone-ai_external.js'),
(676, 'wp-content/plugins/advanced-iframe/standalone/standalone-ai_external_config_4.js'),
(677, 'wp-content/plugins/advanced-iframe/standalone/standalone-example.php'),
(678, 'wp-content/plugins/ag-custom-admin/.gitignore'),
(679, 'wp-content/plugins/ag-custom-admin/ag-custom-admin.html'),
(680, 'wp-content/plugins/ag-custom-admin/codeception.yml'),
(681, 'wp-content/plugins/ag-custom-admin/composer.json'),
(682, 'wp-content/plugins/ag-custom-admin/composer.lock'),
(683, 'wp-content/plugins/ag-custom-admin/images/agca.png'),
(684, 'wp-content/plugins/ag-custom-admin/images/btn_donate_LG.gif'),
(685, 'wp-content/plugins/ag-custom-admin/images/cusminlogo.png'),
(686, 'wp-content/plugins/ag-custom-admin/languages/ag-custom-admin-hr.mo'),
(687, 'wp-content/plugins/ag-custom-admin/languages/ag-custom-admin-hr.po'),
(688, 'wp-content/plugins/ag-custom-admin/licence.txt'),
(689, 'wp-content/plugins/ag-custom-admin/plugin.php'),
(690, 'wp-content/plugins/ag-custom-admin/readme.txt'),
(691, 'wp-content/plugins/ag-custom-admin/require/dynamic.php'),
(692, 'wp-content/plugins/ag-custom-admin/script/ag_script.js'),
(693, 'wp-content/plugins/ag-custom-admin/script/agca_farbtastic.js'),
(694, 'wp-content/plugins/ag-custom-admin/script/agca_tmpl.js'),
(695, 'wp-content/plugins/ag-custom-admin/script/farbtastic.js'),
(696, 'wp-content/plugins/ag-custom-admin/script/xd.js'),
(697, 'wp-content/plugins/ag-custom-admin/style/admin.min.css'),
(698, 'wp-content/plugins/ag-custom-admin/style/ag_style.css'),
(699, 'wp-content/plugins/ag-custom-admin/style/agca_farbtastic.css'),
(700, 'wp-content/plugins/ag-custom-admin/style/farbtastic.css') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(701, 'wp-content/plugins/ag-custom-admin/style/login.min.css'),
(702, 'wp-content/plugins/ag-custom-admin/style/marker.png'),
(703, 'wp-content/plugins/ag-custom-admin/style/mask.png'),
(704, 'wp-content/plugins/ag-custom-admin/style/wheel.png'),
(705, 'wp-content/plugins/ag-custom-admin/tests/_bootstrap.php'),
(706, 'wp-content/plugins/ag-custom-admin/tests/_data/dump.sql'),
(707, 'wp-content/plugins/ag-custom-admin/tests/_output/.gitignore'),
(708, 'wp-content/plugins/ag-custom-admin/tests/_support/AcceptanceTester.php'),
(709, 'wp-content/plugins/ag-custom-admin/tests/_support/FunctionalTester.php'),
(710, 'wp-content/plugins/ag-custom-admin/tests/_support/Helper/Acceptance.php'),
(711, 'wp-content/plugins/ag-custom-admin/tests/_support/Helper/Functional.php'),
(712, 'wp-content/plugins/ag-custom-admin/tests/_support/Helper/Unit.php'),
(713, 'wp-content/plugins/ag-custom-admin/tests/_support/Page/AGCAPage.php'),
(714, 'wp-content/plugins/ag-custom-admin/tests/_support/Page/GeneralPage.php'),
(715, 'wp-content/plugins/ag-custom-admin/tests/_support/Page/WPDashboardPage.php'),
(716, 'wp-content/plugins/ag-custom-admin/tests/_support/UnitTester.php'),
(717, 'wp-content/plugins/ag-custom-admin/tests/_support/_generated/AcceptanceTesterActions.php'),
(718, 'wp-content/plugins/ag-custom-admin/tests/_support/_generated/FunctionalTesterActions.php'),
(719, 'wp-content/plugins/ag-custom-admin/tests/_support/_generated/UnitTesterActions.php'),
(720, 'wp-content/plugins/ag-custom-admin/tests/acceptance/AGCAInstalledCept.php'),
(721, 'wp-content/plugins/ag-custom-admin/tests/acceptance/GeneralSettingsCest.php'),
(722, 'wp-content/plugins/ag-custom-admin/tests/acceptance/_bootstrap.php'),
(723, 'wp-content/plugins/ag-custom-admin/tests/acceptance.suite.yml'),
(724, 'wp-content/plugins/ag-custom-admin/tests/functional/_bootstrap.php'),
(725, 'wp-content/plugins/ag-custom-admin/tests/functional.suite.yml'),
(726, 'wp-content/plugins/ag-custom-admin/tests/unit/_bootstrap.php'),
(727, 'wp-content/plugins/ag-custom-admin/tests/unit.suite.yml'),
(728, 'wp-content/plugins/ag-custom-admin/uninstall.php'),
(729, 'wp-content/plugins/akismet/.htaccess'),
(730, 'wp-content/plugins/akismet/LICENSE.txt'),
(731, 'wp-content/plugins/akismet/_inc/akismet.css'),
(732, 'wp-content/plugins/akismet/_inc/akismet.js'),
(733, 'wp-content/plugins/akismet/_inc/form.js'),
(734, 'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),
(735, 'wp-content/plugins/akismet/akismet.php'),
(736, 'wp-content/plugins/akismet/class.akismet-admin.php'),
(737, 'wp-content/plugins/akismet/class.akismet-cli.php'),
(738, 'wp-content/plugins/akismet/class.akismet-widget.php'),
(739, 'wp-content/plugins/akismet/class.akismet.php'),
(740, 'wp-content/plugins/akismet/index.php'),
(741, 'wp-content/plugins/akismet/readme.txt'),
(742, 'wp-content/plugins/akismet/views/config.php'),
(743, 'wp-content/plugins/akismet/views/get.php'),
(744, 'wp-content/plugins/akismet/views/notice.php'),
(745, 'wp-content/plugins/akismet/views/start.php'),
(746, 'wp-content/plugins/akismet/views/stats.php'),
(747, 'wp-content/plugins/akismet/wrapper.php'),
(748, 'wp-content/plugins/coming-soon/LICENSE.txt'),
(749, 'wp-content/plugins/coming-soon/README.txt'),
(750, 'wp-content/plugins/coming-soon/coming-soon.php'),
(751, 'wp-content/plugins/coming-soon/framework/coming-soon-pro-sidebar.png'),
(752, 'wp-content/plugins/coming-soon/framework/css/font-awesome.css'),
(753, 'wp-content/plugins/coming-soon/framework/field-types/checkbox.php'),
(754, 'wp-content/plugins/coming-soon/framework/field-types/color.php'),
(755, 'wp-content/plugins/coming-soon/framework/field-types/customsocialfollow.php'),
(756, 'wp-content/plugins/coming-soon/framework/field-types/date.php'),
(757, 'wp-content/plugins/coming-soon/framework/field-types/daterange.php'),
(758, 'wp-content/plugins/coming-soon/framework/field-types/export.php'),
(759, 'wp-content/plugins/coming-soon/framework/field-types/import.php'),
(760, 'wp-content/plugins/coming-soon/framework/field-types/js/color.js'),
(761, 'wp-content/plugins/coming-soon/framework/field-types/js/upload.js'),
(762, 'wp-content/plugins/coming-soon/framework/field-types/multiselect.php'),
(763, 'wp-content/plugins/coming-soon/framework/field-types/password.php'),
(764, 'wp-content/plugins/coming-soon/framework/field-types/radio.php'),
(765, 'wp-content/plugins/coming-soon/framework/field-types/select.php'),
(766, 'wp-content/plugins/coming-soon/framework/field-types/text.php'),
(767, 'wp-content/plugins/coming-soon/framework/field-types/textarea.php'),
(768, 'wp-content/plugins/coming-soon/framework/field-types/textbox.php'),
(769, 'wp-content/plugins/coming-soon/framework/field-types/upload.php'),
(770, 'wp-content/plugins/coming-soon/framework/field-types/wpeditor.php'),
(771, 'wp-content/plugins/coming-soon/framework/fonts/FontAwesome.otf'),
(772, 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.eot'),
(773, 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.svg'),
(774, 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.ttf'),
(775, 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.woff'),
(776, 'wp-content/plugins/coming-soon/framework/fonts/fontawesome-webfont.woff2'),
(777, 'wp-content/plugins/coming-soon/framework/framework.php'),
(778, 'wp-content/plugins/coming-soon/framework/get-settings.php'),
(779, 'wp-content/plugins/coming-soon/framework/review.php'),
(780, 'wp-content/plugins/coming-soon/framework/settings-scripts.js'),
(781, 'wp-content/plugins/coming-soon/framework/settings-style.css'),
(782, 'wp-content/plugins/coming-soon/framework/validations/color.php'),
(783, 'wp-content/plugins/coming-soon/framework/validations/email.php'),
(784, 'wp-content/plugins/coming-soon/framework/validations/escurlraw.php'),
(785, 'wp-content/plugins/coming-soon/framework/validations/number.php'),
(786, 'wp-content/plugins/coming-soon/framework/validations/required.php'),
(787, 'wp-content/plugins/coming-soon/inc/adminbar-style.css'),
(788, 'wp-content/plugins/coming-soon/inc/class-seed-csp4.php'),
(789, 'wp-content/plugins/coming-soon/inc/config-settings.php'),
(790, 'wp-content/plugins/coming-soon/inc/default-settings.php'),
(791, 'wp-content/plugins/coming-soon/languages/coming-soon-da_DK.mo'),
(792, 'wp-content/plugins/coming-soon/languages/coming-soon-da_DK.po'),
(793, 'wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.mo'),
(794, 'wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.po'),
(795, 'wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.mo'),
(796, 'wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.po'),
(797, 'wp-content/plugins/coming-soon/languages/coming-soon.pot'),
(798, 'wp-content/plugins/coming-soon/lib/seed_csp4_lessc.inc.php'),
(799, 'wp-content/plugins/coming-soon/themes/default/bootstrap/css/bootstrap.css'),
(800, 'wp-content/plugins/coming-soon/themes/default/bootstrap/css/bootstrap.min.css') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(801, 'wp-content/plugins/coming-soon/themes/default/bootstrap/js/bootstrap.js'),
(802, 'wp-content/plugins/coming-soon/themes/default/bootstrap/js/bootstrap.min.js'),
(803, 'wp-content/plugins/coming-soon/themes/default/functions.php'),
(804, 'wp-content/plugins/coming-soon/themes/default/images/ajax-loader.gif'),
(805, 'wp-content/plugins/coming-soon/themes/default/images/seedprod-credit.png'),
(806, 'wp-content/plugins/coming-soon/themes/default/index.php'),
(807, 'wp-content/plugins/coming-soon/themes/default/js/jquery.fitvids.js'),
(808, 'wp-content/plugins/coming-soon/themes/default/js/modernizr.min.js'),
(809, 'wp-content/plugins/coming-soon/themes/default/js/script.js'),
(810, 'wp-content/plugins/coming-soon/themes/default/rtl.css'),
(811, 'wp-content/plugins/coming-soon/themes/default/style.css'),
(812, 'wp-content/plugins/coming-soon/themes/index.php'),
(813, 'wp-content/plugins/contact-form-7/admin/admin.php'),
(814, 'wp-content/plugins/contact-form-7/admin/css/styles-rtl.css'),
(815, 'wp-content/plugins/contact-form-7/admin/css/styles.css'),
(816, 'wp-content/plugins/contact-form-7/admin/edit-contact-form.php'),
(817, 'wp-content/plugins/contact-form-7/admin/includes/admin-functions.php'),
(818, 'wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php'),
(819, 'wp-content/plugins/contact-form-7/admin/includes/editor.php'),
(820, 'wp-content/plugins/contact-form-7/admin/includes/help-tabs.php'),
(821, 'wp-content/plugins/contact-form-7/admin/includes/tag-generator.php'),
(822, 'wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php'),
(823, 'wp-content/plugins/contact-form-7/admin/js/scripts.js'),
(824, 'wp-content/plugins/contact-form-7/admin/js/tag-generator.js'),
(825, 'wp-content/plugins/contact-form-7/images/ajax-loader.gif'),
(826, 'wp-content/plugins/contact-form-7/includes/capabilities.php'),
(827, 'wp-content/plugins/contact-form-7/includes/config-validator.php'),
(828, 'wp-content/plugins/contact-form-7/includes/contact-form-functions.php'),
(829, 'wp-content/plugins/contact-form-7/includes/contact-form-template.php'),
(830, 'wp-content/plugins/contact-form-7/includes/contact-form.php'),
(831, 'wp-content/plugins/contact-form-7/includes/controller.php'),
(832, 'wp-content/plugins/contact-form-7/includes/css/styles-rtl.css'),
(833, 'wp-content/plugins/contact-form-7/includes/css/styles.css'),
(834, 'wp-content/plugins/contact-form-7/includes/form-tag.php'),
(835, 'wp-content/plugins/contact-form-7/includes/form-tags-manager.php'),
(836, 'wp-content/plugins/contact-form-7/includes/formatting.php'),
(837, 'wp-content/plugins/contact-form-7/includes/functions.php'),
(838, 'wp-content/plugins/contact-form-7/includes/integration.php'),
(839, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/animated-overlay.gif'),
(840, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png'),
(841, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png'),
(842, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png'),
(843, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png'),
(844, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png'),
(845, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png'),
(846, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png'),
(847, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),
(848, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png'),
(849, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png'),
(850, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png'),
(851, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png'),
(852, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png'),
(853, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css'),
(854, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css'),
(855, 'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery.ui.theme.css'),
(856, 'wp-content/plugins/contact-form-7/includes/js/jquery.form.js'),
(857, 'wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js'),
(858, 'wp-content/plugins/contact-form-7/includes/js/scripts.js'),
(859, 'wp-content/plugins/contact-form-7/includes/l10n.php'),
(860, 'wp-content/plugins/contact-form-7/includes/mail.php'),
(861, 'wp-content/plugins/contact-form-7/includes/pipe.php'),
(862, 'wp-content/plugins/contact-form-7/includes/rest-api.php'),
(863, 'wp-content/plugins/contact-form-7/includes/shortcodes.php'),
(864, 'wp-content/plugins/contact-form-7/includes/submission.php'),
(865, 'wp-content/plugins/contact-form-7/includes/upgrade.php'),
(866, 'wp-content/plugins/contact-form-7/includes/validation.php'),
(867, 'wp-content/plugins/contact-form-7/languages/readme.txt'),
(868, 'wp-content/plugins/contact-form-7/license.txt'),
(869, 'wp-content/plugins/contact-form-7/modules/acceptance.php'),
(870, 'wp-content/plugins/contact-form-7/modules/akismet.php'),
(871, 'wp-content/plugins/contact-form-7/modules/checkbox.php'),
(872, 'wp-content/plugins/contact-form-7/modules/count.php'),
(873, 'wp-content/plugins/contact-form-7/modules/date.php'),
(874, 'wp-content/plugins/contact-form-7/modules/file.php'),
(875, 'wp-content/plugins/contact-form-7/modules/flamingo.php'),
(876, 'wp-content/plugins/contact-form-7/modules/hidden.php'),
(877, 'wp-content/plugins/contact-form-7/modules/listo.php'),
(878, 'wp-content/plugins/contact-form-7/modules/number.php'),
(879, 'wp-content/plugins/contact-form-7/modules/quiz.php'),
(880, 'wp-content/plugins/contact-form-7/modules/really-simple-captcha.php'),
(881, 'wp-content/plugins/contact-form-7/modules/recaptcha.php'),
(882, 'wp-content/plugins/contact-form-7/modules/response.php'),
(883, 'wp-content/plugins/contact-form-7/modules/select.php'),
(884, 'wp-content/plugins/contact-form-7/modules/submit.php'),
(885, 'wp-content/plugins/contact-form-7/modules/text.php'),
(886, 'wp-content/plugins/contact-form-7/modules/textarea.php'),
(887, 'wp-content/plugins/contact-form-7/readme.txt'),
(888, 'wp-content/plugins/contact-form-7/settings.php'),
(889, 'wp-content/plugins/contact-form-7/uninstall.php'),
(890, 'wp-content/plugins/contact-form-7/wp-contact-form-7.php'),
(891, 'wp-content/plugins/contact-form-7-to-database-extension/AddRowNumberField.php'),
(892, 'wp-content/plugins/contact-form-7-to-database-extension/AverageField.php'),
(893, 'wp-content/plugins/contact-form-7-to-database-extension/BaseTransform.php'),
(894, 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBInstallIndicator.php'),
(895, 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBOptionsManager.php'),
(896, 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPlugin.php'),
(897, 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPluginExporter.php'),
(898, 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPluginLifeCycle.php'),
(899, 'wp-content/plugins/contact-form-7-to-database-extension/CF7DBPlugin_init.php'),
(900, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBAbstractQueryResultsIterator.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(901, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBCheckZendFramework.php'),
(902, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBCleanupData.php'),
(903, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBCompositeEvaluator.php'),
(904, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDataIterator.php'),
(905, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDataIteratorDecorator.php'),
(906, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDateFormatter.php'),
(907, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDeobfuscate.php'),
(908, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBDie.php'),
(909, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBErrorLog.php'),
(910, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBEvaluator.php'),
(911, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBExport.php'),
(912, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFilterParser.php'),
(913, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFormIterator.php'),
(914, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFunctionEvaluator.php'),
(915, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBGoogleSSLiveData.js'),
(916, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBGoogleSSLiveData.php'),
(917, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationCFormsII.php'),
(918, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationCalderaForms.php'),
(919, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationContactForm7.php'),
(920, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationEnfoldTheme.php'),
(921, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFMS.php'),
(922, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFSCF.php'),
(923, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFormidableForms.php'),
(924, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationFromCraft.php'),
(925, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationGravityForms.php'),
(926, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationJetPack.php'),
(927, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationNinjaForms.php'),
(928, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationQuform.php'),
(929, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationVerySimpleContactForm.php'),
(930, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBIntegrationWRContactForm.php'),
(931, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBMimeTypeExtensions.php'),
(932, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBParserBase.php'),
(933, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBPermittedFunctions.php'),
(934, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBPostDataConverter.php'),
(935, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBQueryResultIterator.php'),
(936, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBQueryResultIteratorFactory.php'),
(937, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBSearchEvaluator.php'),
(938, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortCodeContentParser.php'),
(939, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortCodeSaveFormMakerSubmission.php'),
(940, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortCodeSavePostData.php'),
(941, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeCount.php'),
(942, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeDataTable.php'),
(943, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeExportUrl.php'),
(944, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeHtml.php'),
(945, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeJson.php'),
(946, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeTable.php'),
(947, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBShortcodeValue.php'),
(948, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransform.php'),
(949, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformByClassIterator.php'),
(950, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformByFunctionIterator.php'),
(951, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformEndpoint.php'),
(952, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBTransformParser.php'),
(953, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBValueConverter.php'),
(954, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBView.php'),
(955, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewImportCsv.php'),
(956, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewOptions.php'),
(957, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewShortCodeBuilder.php'),
(958, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBViewWhatsInDB.php'),
(959, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBWpdbResultIterator.php'),
(960, 'wp-content/plugins/contact-form-7-to-database-extension/CFDBWpdbUnbufferedResultIterator.php'),
(961, 'wp-content/plugins/contact-form-7-to-database-extension/CountField.php'),
(962, 'wp-content/plugins/contact-form-7-to-database-extension/CountInField.php'),
(963, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/Readme.txt'),
(964, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/license-bsd.txt'),
(965, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/license-gpl2.txt'),
(966, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/demo_page.css'),
(967, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/demo_table.css'),
(968, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/demo_table_jui.css'),
(969, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/jquery.dataTables.css'),
(970, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/css/jquery.dataTables_themeroller.css'),
(971, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/back_disabled.png'),
(972, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/back_enabled.png'),
(973, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/back_enabled_hover.png'),
(974, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/favicon.ico'),
(975, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/forward_disabled.png'),
(976, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/forward_enabled.png'),
(977, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/forward_enabled_hover.png'),
(978, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_asc.png'),
(979, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_asc_disabled.png'),
(980, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_both.png'),
(981, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_desc.png'),
(982, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/images/sort_desc_disabled.png'),
(983, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/js/jquery.dataTables.js'),
(984, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/js/jquery.dataTables.min.js'),
(985, 'wp-content/plugins/contact-form-7-to-database-extension/DataTables/media/js/jquery.js'),
(986, 'wp-content/plugins/contact-form-7-to-database-extension/DefaultField.php'),
(987, 'wp-content/plugins/contact-form-7-to-database-extension/DereferenceShortcodeVars.php'),
(988, 'wp-content/plugins/contact-form-7-to-database-extension/ExportBase.php'),
(989, 'wp-content/plugins/contact-form-7-to-database-extension/ExportEntry.php'),
(990, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToCsvUtf16le.php'),
(991, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToCsvUtf8.php'),
(992, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToExcel.php'),
(993, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToGoogleLiveData.php'),
(994, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToGoogleSS.php'),
(995, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToHtmlTable.php'),
(996, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToHtmlTemplate.php'),
(997, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToIqy.php'),
(998, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToJson.php'),
(999, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToRSS.php'),
(1000, 'wp-content/plugins/contact-form-7-to-database-extension/ExportToValue.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1001, 'wp-content/plugins/contact-form-7-to-database-extension/HistogramTransform.php'),
(1002, 'wp-content/plugins/contact-form-7-to-database-extension/MaxField.php'),
(1003, 'wp-content/plugins/contact-form-7-to-database-extension/MinField.php'),
(1004, 'wp-content/plugins/contact-form-7-to-database-extension/NaturalSortByField.php'),
(1005, 'wp-content/plugins/contact-form-7-to-database-extension/NaturalSortByMultiField.php'),
(1006, 'wp-content/plugins/contact-form-7-to-database-extension/ShiftJisConverter.php'),
(1007, 'wp-content/plugins/contact-form-7-to-database-extension/ShortCodeLoader.php'),
(1008, 'wp-content/plugins/contact-form-7-to-database-extension/ShortCodeScriptLoader.php'),
(1009, 'wp-content/plugins/contact-form-7-to-database-extension/SortByDateField.php'),
(1010, 'wp-content/plugins/contact-form-7-to-database-extension/SortByField.php'),
(1011, 'wp-content/plugins/contact-form-7-to-database-extension/SortByFunctionAndField.php'),
(1012, 'wp-content/plugins/contact-form-7-to-database-extension/SortByMultiField.php'),
(1013, 'wp-content/plugins/contact-form-7-to-database-extension/SortTransform.php'),
(1014, 'wp-content/plugins/contact-form-7-to-database-extension/SplitField.php'),
(1015, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Autoloader/Psr4Autoloader.php'),
(1016, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Autoloader/autoload.php'),
(1017, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/CSV.php'),
(1018, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/EscaperInterface.php'),
(1019, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/ODS.php'),
(1020, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Escaper/XLSX.php'),
(1021, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/EncodingConversionException.php'),
(1022, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/IOException.php'),
(1023, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/InvalidArgumentException.php'),
(1024, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/SpoutException.php'),
(1025, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Exception/UnsupportedTypeException.php'),
(1026, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/EncodingHelper.php'),
(1027, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/FileSystemHelper.php'),
(1028, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/GlobalFunctionsHelper.php'),
(1029, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Helper/StringHelper.php'),
(1030, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Singleton.php'),
(1031, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Common/Type.php'),
(1032, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/AbstractReader.php'),
(1033, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/Reader.php'),
(1034, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/ReaderOptions.php'),
(1035, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/RowIterator.php'),
(1036, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/Sheet.php'),
(1037, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/CSV/SheetIterator.php'),
(1038, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Common/ReaderOptions.php'),
(1039, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Common/XMLProcessor.php'),
(1040, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/IteratorNotRewindableException.php'),
(1041, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/NoSheetsFoundException.php'),
(1042, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/ReaderException.php'),
(1043, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/ReaderNotOpenedException.php'),
(1044, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/SharedStringNotFoundException.php'),
(1045, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Exception/XMLProcessingException.php'),
(1046, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/IteratorInterface.php'),
(1047, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/Helper/CellValueFormatter.php'),
(1048, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/Reader.php'),
(1049, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/ReaderOptions.php'),
(1050, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/RowIterator.php'),
(1051, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/Sheet.php'),
(1052, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ODS/SheetIterator.php'),
(1053, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ReaderFactory.php'),
(1054, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/ReaderInterface.php'),
(1055, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/SheetInterface.php'),
(1056, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Wrapper/SimpleXMLElement.php'),
(1057, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Wrapper/XMLInternalErrorsHelper.php'),
(1058, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/Wrapper/XMLReader.php'),
(1059, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/CellHelper.php'),
(1060, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/CellValueFormatter.php'),
(1061, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/DateFormatHelper.php'),
(1062, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyFactory.php'),
(1063, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyInterface.php'),
(1064, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/FileBasedStrategy.php'),
(1065, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsCaching/InMemoryStrategy.php'),
(1066, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SharedStringsHelper.php'),
(1067, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/SheetHelper.php'),
(1068, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Helper/StyleHelper.php'),
(1069, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Reader.php'),
(1070, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/ReaderOptions.php'),
(1071, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/RowIterator.php'),
(1072, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/Sheet.php'),
(1073, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Reader/XLSX/SheetIterator.php'),
(1074, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/AbstractMultiSheetsWriter.php'),
(1075, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/AbstractWriter.php'),
(1076, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/CSV/Writer.php'),
(1077, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Helper/AbstractStyleHelper.php'),
(1078, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Helper/CellHelper.php'),
(1079, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Helper/ZipHelper.php'),
(1080, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Internal/AbstractWorkbook.php'),
(1081, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Internal/WorkbookInterface.php'),
(1082, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Internal/WorksheetInterface.php'),
(1083, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Common/Sheet.php'),
(1084, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/Border/InvalidNameException.php'),
(1085, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/Border/InvalidStyleException.php'),
(1086, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/Border/InvalidWidthException.php'),
(1087, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/InvalidColorException.php'),
(1088, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/InvalidSheetNameException.php'),
(1089, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/SheetNotFoundException.php'),
(1090, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/WriterAlreadyOpenedException.php'),
(1091, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/WriterException.php'),
(1092, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Exception/WriterNotOpenedException.php'),
(1093, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Helper/BorderHelper.php'),
(1094, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Helper/FileSystemHelper.php'),
(1095, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Helper/StyleHelper.php'),
(1096, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Internal/Workbook.php'),
(1097, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Internal/Worksheet.php'),
(1098, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/ODS/Writer.php'),
(1099, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/Border.php'),
(1100, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/BorderBuilder.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1101, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/BorderPart.php'),
(1102, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/Color.php'),
(1103, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/Style.php'),
(1104, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/Style/StyleBuilder.php'),
(1105, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/WriterFactory.php'),
(1106, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/WriterInterface.php'),
(1107, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/BorderHelper.php'),
(1108, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/FileSystemHelper.php'),
(1109, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/SharedStringsHelper.php'),
(1110, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Helper/StyleHelper.php'),
(1111, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Internal/HyperlinkFormula.php'),
(1112, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Internal/Workbook.php'),
(1113, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Internal/Worksheet.php'),
(1114, 'wp-content/plugins/contact-form-7-to-database-extension/Spout-2.7.1/Writer/XLSX/Writer.php'),
(1115, 'wp-content/plugins/contact-form-7-to-database-extension/SumField.php'),
(1116, 'wp-content/plugins/contact-form-7-to-database-extension/SummationRow.php'),
(1117, 'wp-content/plugins/contact-form-7-to-database-extension/TotalField.php'),
(1118, 'wp-content/plugins/contact-form-7-to-database-extension/cfdb-transform-functions.php'),
(1119, 'wp-content/plugins/contact-form-7-to-database-extension/contact-form-7-db.php'),
(1120, 'wp-content/plugins/contact-form-7-to-database-extension/css/jquery-ui.css'),
(1121, 'wp-content/plugins/contact-form-7-to-database-extension/css/misctable.css'),
(1122, 'wp-content/plugins/contact-form-7-to-database-extension/css/paginate.css'),
(1123, 'wp-content/plugins/contact-form-7-to-database-extension/des.js'),
(1124, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/_README.txt'),
(1125, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ar.json'),
(1126, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/bg.json'),
(1127, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ca.json'),
(1128, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/cs.json'),
(1129, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/da.json'),
(1130, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/de.json'),
(1131, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/el.json'),
(1132, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/es.json'),
(1133, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/et.json'),
(1134, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/fa.json'),
(1135, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/fi.json'),
(1136, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/fr.json'),
(1137, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/gl_ES.json'),
(1138, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/he.json'),
(1139, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/hi.json'),
(1140, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/hr.json'),
(1141, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/hu.json'),
(1142, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/id.json'),
(1143, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/it.json'),
(1144, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ka.json'),
(1145, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/lt.json'),
(1146, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/lv.json'),
(1147, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/nb.json'),
(1148, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/nl.json'),
(1149, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/pl.json'),
(1150, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/pt.json'),
(1151, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/pt_BR.json'),
(1152, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ro.json'),
(1153, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ru.json'),
(1154, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sk.json'),
(1155, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sl.json'),
(1156, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sr.json'),
(1157, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sr_RS@latin.json'),
(1158, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/sv.json'),
(1159, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/th.json'),
(1160, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/tr.json'),
(1161, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/uk.json'),
(1162, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/ur.json'),
(1163, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/vi.json'),
(1164, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/zh.json'),
(1165, 'wp-content/plugins/contact-form-7-to-database-extension/dt_i18n/zh_TW.json'),
(1166, 'wp-content/plugins/contact-form-7-to-database-extension/export.php'),
(1167, 'wp-content/plugins/contact-form-7-to-database-extension/exportCSV.php'),
(1168, 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleChooseSpreadsheet.png'),
(1169, 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleEnterFormula.png'),
(1170, 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleNewSS.png'),
(1171, 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleOpenScriptEditor.png'),
(1172, 'wp-content/plugins/contact-form-7-to-database-extension/help/GooglePasteScriptEditor.png'),
(1173, 'wp-content/plugins/contact-form-7-to-database-extension/help/GoogleSaveScriptEditor.png'),
(1174, 'wp-content/plugins/contact-form-7-to-database-extension/img/icon-20x20.png'),
(1175, 'wp-content/plugins/contact-form-7-to-database-extension/img/icon-50x50.png'),
(1176, 'wp-content/plugins/contact-form-7-to-database-extension/img/icon-bw-20x20.png'),
(1177, 'wp-content/plugins/contact-form-7-to-database-extension/img/info.jpg'),
(1178, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png'),
(1179, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png'),
(1180, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png'),
(1181, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png'),
(1182, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png'),
(1183, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png'),
(1184, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png'),
(1185, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),
(1186, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_222222_256x240.png'),
(1187, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_2e83ff_256x240.png'),
(1188, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_454545_256x240.png'),
(1189, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_888888_256x240.png'),
(1190, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/images/ui-icons_cd0a0a_256x240.png'),
(1191, 'wp-content/plugins/contact-form-7-to-database-extension/jquery-ui/jquery-ui-1.8.21.custom.css'),
(1192, 'wp-content/plugins/contact-form-7-to-database-extension/languages/_README.txt'),
(1193, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ar_SA.mo'),
(1194, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ar_SA.po'),
(1195, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-cs_CZ.mo'),
(1196, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-cs_CZ.po'),
(1197, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-de_DE.mo'),
(1198, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-de_DE.po'),
(1199, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-el_GR.mo'),
(1200, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-el_GR.po') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1201, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fa_IR.mo'),
(1202, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fa_IR.po'),
(1203, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi.mo'),
(1204, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi.po'),
(1205, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi_FI.mo'),
(1206, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fi_FI.po'),
(1207, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fr_FR.mo'),
(1208, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-fr_FR.po'),
(1209, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-gl_ES.mo'),
(1210, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-gl_ES.po'),
(1211, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-he_IL.mo'),
(1212, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-he_IL.po'),
(1213, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-hu_HU.mo'),
(1214, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-hu_HU.po'),
(1215, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-it_IT.mo'),
(1216, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-it_IT.po'),
(1217, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja.mo'),
(1218, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja.po'),
(1219, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja_JP.mo'),
(1220, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ja_JP.po'),
(1221, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nb_NO.mo'),
(1222, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nb_NO.po'),
(1223, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nl_NL.mo'),
(1224, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-nl_NL.po'),
(1225, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pl_PL.mo'),
(1226, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pl_PL.po'),
(1227, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pt_BR.mo'),
(1228, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-pt_BR.po'),
(1229, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ro_RO.mo'),
(1230, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ro_RO.po'),
(1231, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ru_RU.mo'),
(1232, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-ru_RU.po'),
(1233, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sk_sk.mo'),
(1234, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sk_sk.po'),
(1235, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sr_RS.mo'),
(1236, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sr_RS.po'),
(1237, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sv_SE.mo'),
(1238, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-sv_SE.po'),
(1239, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-tr_TR.mo'),
(1240, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-tr_TR.po'),
(1241, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_CN.mo'),
(1242, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_CN.po'),
(1243, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_TW.mo'),
(1244, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension-zh_TW.po'),
(1245, 'wp-content/plugins/contact-form-7-to-database-extension/languages/contact-form-7-to-database-extension.pot'),
(1246, 'wp-content/plugins/contact-form-7-to-database-extension/license.txt'),
(1247, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/BuildInStats_Test.php'),
(1248, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CF7DBOptionsManagerTest.php'),
(1249, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBErrorLogTest.php'),
(1250, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBFilterParserTest.php'),
(1251, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationCalderaFormsTest/form.dat'),
(1252, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationCalderaFormsTest.php'),
(1253, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/dataContentEmail.dat'),
(1254, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/dataForms.dat'),
(1255, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/nameFileByIdentifier.dat'),
(1256, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/post.dat'),
(1257, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/requiredField.dat'),
(1258, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest/submissionsData.dat'),
(1259, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBIntegrationWRContactFormTest.php'),
(1260, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBPermittedFunctionsTest.php'),
(1261, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBShortCodeContentParserTest.php'),
(1262, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CFDBTransformParserTest.php'),
(1263, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/CountInField_Test.php'),
(1264, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/DefaultFieldTest.php'),
(1265, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/DereferenceShortcodeVarsTest.php'),
(1266, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/DereferenceShortcodeVars_ExportTest.php'),
(1267, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateMissingFieldTest.json'),
(1268, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateMissingFieldTest.php'),
(1269, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateTransformTest.json'),
(1270, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/HtmlTemplateTransformTest.php'),
(1271, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/MockQueryResultIterator.php'),
(1272, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/NaturalSortByMultiFieldTest.php'),
(1273, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/ParseFieldMatchesTest.php'),
(1274, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/ShiftJisConverterTest.php'),
(1275, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/ShortCodeBeforeAfterTest.php'),
(1276, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SortByDateFieldTest.php'),
(1277, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SortByDateField_TransformTest.php'),
(1278, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SplitFieldDefaultDelimiterTest.php'),
(1279, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SplitFieldTest.php'),
(1280, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SquashOutputUnitTest.php'),
(1281, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/SummationRowTest.php'),
(1282, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformEntryFunctionTest.json'),
(1283, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformEntryFunctionTest.php'),
(1284, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformsTest.json'),
(1285, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/TransformsTest.php'),
(1286, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/UnCurlyQuoteTest.php'),
(1287, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/WPDB_Mock.php'),
(1288, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/WP_Mock_Functions.php'),
(1289, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/compoundfieldsComma.json'),
(1290, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/compoundfieldsPipe.json'),
(1291, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/phpunit.xml'),
(1292, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/scores.json'),
(1293, 'wp-content/plugins/contact-form-7-to-database-extension/phpunit/votes.json'),
(1294, 'wp-content/plugins/contact-form-7-to-database-extension/readme.txt'),
(1295, 'wp-content/plugins/contact-form-7-to-database-extension/screenshot-1.png'),
(1296, 'wp-content/plugins/contact-form-7-to-database-extension/uninstall.php'),
(1297, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/dialog/dialog.css'),
(1298, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/dialog/dialog.js'),
(1299, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/edit/matchbrackets.js'),
(1300, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/scroll/annotatescrollbar.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1301, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/match-highlighter.js'),
(1302, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/matchesonscrollbar.css'),
(1303, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/matchesonscrollbar.js'),
(1304, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/search.js'),
(1305, 'wp-content/plugins/custom-css-and-javascript/codemirror/addon/search/searchcursor.js'),
(1306, 'wp-content/plugins/custom-css-and-javascript/codemirror/codemirror.css'),
(1307, 'wp-content/plugins/custom-css-and-javascript/codemirror/codemirror.js'),
(1308, 'wp-content/plugins/custom-css-and-javascript/codemirror/mode/css.js'),
(1309, 'wp-content/plugins/custom-css-and-javascript/codemirror/mode/javascript.js'),
(1310, 'wp-content/plugins/custom-css-and-javascript/css/custom-css-and-javascript.css'),
(1311, 'wp-content/plugins/custom-css-and-javascript/custom-css-and-javascript.php'),
(1312, 'wp-content/plugins/custom-css-and-javascript/images/potent-logo.png'),
(1313, 'wp-content/plugins/custom-css-and-javascript/js/custom-css-and-javascript.js'),
(1314, 'wp-content/plugins/custom-css-and-javascript/minify/LICENSE'),
(1315, 'wp-content/plugins/custom-css-and-javascript/minify/data/js/keywords_after.txt'),
(1316, 'wp-content/plugins/custom-css-and-javascript/minify/data/js/keywords_before.txt'),
(1317, 'wp-content/plugins/custom-css-and-javascript/minify/data/js/keywords_reserved.txt'),
(1318, 'wp-content/plugins/custom-css-and-javascript/minify/data/js/operators_after.txt'),
(1319, 'wp-content/plugins/custom-css-and-javascript/minify/data/js/operators_before.txt'),
(1320, 'wp-content/plugins/custom-css-and-javascript/minify/src/CSS.php'),
(1321, 'wp-content/plugins/custom-css-and-javascript/minify/src/Converter.php'),
(1322, 'wp-content/plugins/custom-css-and-javascript/minify/src/Exception.php'),
(1323, 'wp-content/plugins/custom-css-and-javascript/minify/src/JS.php'),
(1324, 'wp-content/plugins/custom-css-and-javascript/minify/src/Minify.php'),
(1325, 'wp-content/plugins/custom-css-and-javascript/plugin-credit.php'),
(1326, 'wp-content/plugins/custom-css-and-javascript/readme.txt'),
(1327, 'wp-content/plugins/duplicate-post/donate.png'),
(1328, 'wp-content/plugins/duplicate-post/duplicate-post-admin.php'),
(1329, 'wp-content/plugins/duplicate-post/duplicate-post-common.php'),
(1330, 'wp-content/plugins/duplicate-post/duplicate-post-options.php'),
(1331, 'wp-content/plugins/duplicate-post/duplicate-post.css'),
(1332, 'wp-content/plugins/duplicate-post/duplicate-post.php'),
(1333, 'wp-content/plugins/duplicate-post/gpl-2.0.txt'),
(1334, 'wp-content/plugins/duplicate-post/readme.txt'),
(1335, 'wp-content/plugins/fancy-admin-ui/css/fau_styles_admin.css'),
(1336, 'wp-content/plugins/fancy-admin-ui/css/fau_styles_adminbar.css'),
(1337, 'wp-content/plugins/fancy-admin-ui/css/fau_styles_login.css'),
(1338, 'wp-content/plugins/fancy-admin-ui/fancy-admin-ui.php'),
(1339, 'wp-content/plugins/fancy-admin-ui/inc/fau-colorpicker.js'),
(1340, 'wp-content/plugins/fancy-admin-ui/inc/fau_settings.php'),
(1341, 'wp-content/plugins/fancy-admin-ui/readme.txt'),
(1342, 'wp-content/plugins/fancy-admin-ui/screenshot-1.png'),
(1343, 'wp-content/plugins/force-regenerate-thumbnails/force-regenerate-thumbnails.php'),
(1344, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/jquery.ui.progressbar.min.1.7.2.js'),
(1345, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/jquery.ui.progressbar.min.js'),
(1346, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png'),
(1347, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_flat_55_fbec88_40x100.png'),
(1348, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png'),
(1349, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_glass_85_dfeffc_1x400.png'),
(1350, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_glass_95_fef1ec_1x400.png'),
(1351, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png'),
(1352, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png'),
(1353, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png'),
(1354, 'wp-content/plugins/force-regenerate-thumbnails/jquery-ui/redmond/jquery-ui-1.7.2.custom.css'),
(1355, 'wp-content/plugins/force-regenerate-thumbnails/readme.txt'),
(1356, 'wp-content/plugins/force-regenerate-thumbnails/screenshot-1.png'),
(1357, 'wp-content/plugins/force-regenerate-thumbnails/screenshot-2.png'),
(1358, 'wp-content/plugins/force-regenerate-thumbnails/style.css'),
(1359, 'wp-content/plugins/hello.php'),
(1360, 'wp-content/plugins/index.php'),
(1361, 'wp-content/plugins/jetpack/.svnignore'),
(1362, 'wp-content/plugins/jetpack/3rd-party/3rd-party.php'),
(1363, 'wp-content/plugins/jetpack/3rd-party/bbpress.php'),
(1364, 'wp-content/plugins/jetpack/3rd-party/bitly.php'),
(1365, 'wp-content/plugins/jetpack/3rd-party/buddypress.php'),
(1366, 'wp-content/plugins/jetpack/3rd-party/polldaddy.php'),
(1367, 'wp-content/plugins/jetpack/3rd-party/woocommerce-services.php'),
(1368, 'wp-content/plugins/jetpack/3rd-party/woocommerce.php'),
(1369, 'wp-content/plugins/jetpack/3rd-party/wpml.php'),
(1370, 'wp-content/plugins/jetpack/_inc/build/admin.dops-style.css'),
(1371, 'wp-content/plugins/jetpack/_inc/build/admin.dops-style.rtl.css'),
(1372, 'wp-content/plugins/jetpack/_inc/build/admin.js'),
(1373, 'wp-content/plugins/jetpack/_inc/build/static-ie-notice.html'),
(1374, 'wp-content/plugins/jetpack/_inc/build/static-noscript-notice.html'),
(1375, 'wp-content/plugins/jetpack/_inc/build/static-version-notice.html'),
(1376, 'wp-content/plugins/jetpack/_inc/build/static.html'),
(1377, 'wp-content/plugins/jetpack/_inc/build/style.min.css'),
(1378, 'wp-content/plugins/jetpack/_inc/build/style.min.rtl.css'),
(1379, 'wp-content/plugins/jetpack/_inc/facebook-embed.js'),
(1380, 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.eot'),
(1381, 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.svg'),
(1382, 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.ttf'),
(1383, 'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.woff'),
(1384, 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.eot'),
(1385, 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.svg'),
(1386, 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.ttf'),
(1387, 'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.woff'),
(1388, 'wp-content/plugins/jetpack/_inc/footer.php'),
(1389, 'wp-content/plugins/jetpack/_inc/gallery-settings.js'),
(1390, 'wp-content/plugins/jetpack/_inc/genericons/COPYING.txt'),
(1391, 'wp-content/plugins/jetpack/_inc/genericons/LICENSE.txt'),
(1392, 'wp-content/plugins/jetpack/_inc/genericons/README.md'),
(1393, 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot'),
(1394, 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg'),
(1395, 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf'),
(1396, 'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.woff'),
(1397, 'wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css'),
(1398, 'wp-content/plugins/jetpack/_inc/genericons/genericons/rtl/genericons-rtl.css'),
(1399, 'wp-content/plugins/jetpack/_inc/genericons/genericons.css'),
(1400, 'wp-content/plugins/jetpack/_inc/genericons.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1401, 'wp-content/plugins/jetpack/_inc/header.php'),
(1402, 'wp-content/plugins/jetpack/_inc/idc-notice.js'),
(1403, 'wp-content/plugins/jetpack/_inc/jetpack-admin.js'),
(1404, 'wp-content/plugins/jetpack/_inc/jetpack-connection-banner.js'),
(1405, 'wp-content/plugins/jetpack/_inc/jetpack-jitm.js'),
(1406, 'wp-content/plugins/jetpack/_inc/jetpack-modules.js'),
(1407, 'wp-content/plugins/jetpack/_inc/jetpack-modules.models.js'),
(1408, 'wp-content/plugins/jetpack/_inc/jetpack-modules.views.js'),
(1409, 'wp-content/plugins/jetpack/_inc/jetpack-strings.php'),
(1410, 'wp-content/plugins/jetpack/_inc/jp-my-jetpack.js'),
(1411, 'wp-content/plugins/jetpack/_inc/jquery.inview.js'),
(1412, 'wp-content/plugins/jetpack/_inc/jquery.jetpack-resize.js'),
(1413, 'wp-content/plugins/jetpack/_inc/jquery.spin.js'),
(1414, 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php'),
(1415, 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-landing-page.php'),
(1416, 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-my-jetpack-page.php'),
(1417, 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php'),
(1418, 'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-settings-page.php'),
(1419, 'wp-content/plugins/jetpack/_inc/lib/class.color.php'),
(1420, 'wp-content/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php'),
(1421, 'wp-content/plugins/jetpack/_inc/lib/class.media-extractor.php'),
(1422, 'wp-content/plugins/jetpack/_inc/lib/class.media-summary.php'),
(1423, 'wp-content/plugins/jetpack/_inc/lib/class.media.php'),
(1424, 'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php'),
(1425, 'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php'),
(1426, 'wp-content/plugins/jetpack/_inc/lib/icalendar-reader.php'),
(1427, 'wp-content/plugins/jetpack/_inc/lib/markdown/0-load.php'),
(1428, 'wp-content/plugins/jetpack/_inc/lib/markdown/README.md'),
(1429, 'wp-content/plugins/jetpack/_inc/lib/markdown/extra.php'),
(1430, 'wp-content/plugins/jetpack/_inc/lib/markdown/gfm.php'),
(1431, 'wp-content/plugins/jetpack/_inc/lib/tonesque.php'),
(1432, 'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-client.php'),
(1433, 'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-event.php'),
(1434, 'wp-content/plugins/jetpack/_inc/lib/tracks/client.php'),
(1435, 'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js'),
(1436, 'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-callables.js'),
(1437, 'wp-content/plugins/jetpack/_inc/postmessage.js'),
(1438, 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.css'),
(1439, 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.eot'),
(1440, 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.html'),
(1441, 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css'),
(1442, 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.ttf'),
(1443, 'wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff2'),
(1444, 'wp-content/plugins/jetpack/_inc/social-logos.php'),
(1445, 'wp-content/plugins/jetpack/_inc/spin.js'),
(1446, 'wp-content/plugins/jetpack/_inc/twitter-timeline.js'),
(1447, 'wp-content/plugins/jetpack/bin/travis_install.sh'),
(1448, 'wp-content/plugins/jetpack/changelog.txt'),
(1449, 'wp-content/plugins/jetpack/class.frame-nonce-preview.php'),
(1450, 'wp-content/plugins/jetpack/class.jetpack-admin.php'),
(1451, 'wp-content/plugins/jetpack/class.jetpack-autoupdate.php'),
(1452, 'wp-content/plugins/jetpack/class.jetpack-bbpress-json-api-compat.php'),
(1453, 'wp-content/plugins/jetpack/class.jetpack-cli.php'),
(1454, 'wp-content/plugins/jetpack/class.jetpack-client-server.php'),
(1455, 'wp-content/plugins/jetpack/class.jetpack-client.php'),
(1456, 'wp-content/plugins/jetpack/class.jetpack-connection-banner.php'),
(1457, 'wp-content/plugins/jetpack/class.jetpack-constants.php'),
(1458, 'wp-content/plugins/jetpack/class.jetpack-data.php'),
(1459, 'wp-content/plugins/jetpack/class.jetpack-debugger.php'),
(1460, 'wp-content/plugins/jetpack/class.jetpack-error.php'),
(1461, 'wp-content/plugins/jetpack/class.jetpack-heartbeat.php'),
(1462, 'wp-content/plugins/jetpack/class.jetpack-idc.php'),
(1463, 'wp-content/plugins/jetpack/class.jetpack-ixr-client.php'),
(1464, 'wp-content/plugins/jetpack/class.jetpack-jitm.php'),
(1465, 'wp-content/plugins/jetpack/class.jetpack-modules-list-table.php'),
(1466, 'wp-content/plugins/jetpack/class.jetpack-network-sites-list-table.php'),
(1467, 'wp-content/plugins/jetpack/class.jetpack-network.php'),
(1468, 'wp-content/plugins/jetpack/class.jetpack-options.php'),
(1469, 'wp-content/plugins/jetpack/class.jetpack-post-images.php'),
(1470, 'wp-content/plugins/jetpack/class.jetpack-signature.php'),
(1471, 'wp-content/plugins/jetpack/class.jetpack-tracks.php'),
(1472, 'wp-content/plugins/jetpack/class.jetpack-twitter-cards.php'),
(1473, 'wp-content/plugins/jetpack/class.jetpack-user-agent.php'),
(1474, 'wp-content/plugins/jetpack/class.jetpack-xmlrpc-server.php'),
(1475, 'wp-content/plugins/jetpack/class.jetpack.php'),
(1476, 'wp-content/plugins/jetpack/class.json-api-endpoints.php'),
(1477, 'wp-content/plugins/jetpack/class.json-api.php'),
(1478, 'wp-content/plugins/jetpack/class.photon.php'),
(1479, 'wp-content/plugins/jetpack/composer.json'),
(1480, 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css'),
(1481, 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.map'),
(1482, 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.min.map'),
(1483, 'wp-content/plugins/jetpack/css/dashboard-widget-rtl.min.css'),
(1484, 'wp-content/plugins/jetpack/css/dashboard-widget.css'),
(1485, 'wp-content/plugins/jetpack/css/dashboard-widget.css.map'),
(1486, 'wp-content/plugins/jetpack/css/dashboard-widget.css.min.map'),
(1487, 'wp-content/plugins/jetpack/css/dashboard-widget.min.css'),
(1488, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css'),
(1489, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.map'),
(1490, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.css.min.map'),
(1491, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm-rtl.min.css'),
(1492, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css'),
(1493, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.map'),
(1494, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.css.min.map'),
(1495, 'wp-content/plugins/jetpack/css/jetpack-admin-jitm.min.css'),
(1496, 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css'),
(1497, 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.map'),
(1498, 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.min.map'),
(1499, 'wp-content/plugins/jetpack/css/jetpack-admin-rtl.min.css'),
(1500, 'wp-content/plugins/jetpack/css/jetpack-admin.css') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1501, 'wp-content/plugins/jetpack/css/jetpack-admin.css.map'),
(1502, 'wp-content/plugins/jetpack/css/jetpack-admin.css.min.map'),
(1503, 'wp-content/plugins/jetpack/css/jetpack-admin.min.css'),
(1504, 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css'),
(1505, 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.map'),
(1506, 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.min.map'),
(1507, 'wp-content/plugins/jetpack/css/jetpack-banners-rtl.min.css'),
(1508, 'wp-content/plugins/jetpack/css/jetpack-banners.css'),
(1509, 'wp-content/plugins/jetpack/css/jetpack-banners.css.map'),
(1510, 'wp-content/plugins/jetpack/css/jetpack-banners.css.min.map'),
(1511, 'wp-content/plugins/jetpack/css/jetpack-banners.min.css'),
(1512, 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css'),
(1513, 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.map'),
(1514, 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.min.map'),
(1515, 'wp-content/plugins/jetpack/css/jetpack-icons-rtl.min.css'),
(1516, 'wp-content/plugins/jetpack/css/jetpack-icons.css'),
(1517, 'wp-content/plugins/jetpack/css/jetpack-icons.css.map'),
(1518, 'wp-content/plugins/jetpack/css/jetpack-icons.css.min.map'),
(1519, 'wp-content/plugins/jetpack/css/jetpack-icons.min.css'),
(1520, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css'),
(1521, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.map'),
(1522, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.min.map'),
(1523, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.min.css'),
(1524, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css'),
(1525, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.map'),
(1526, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.min.map'),
(1527, 'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.min.css'),
(1528, 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css'),
(1529, 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.map'),
(1530, 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.min.map'),
(1531, 'wp-content/plugins/jetpack/css/jetpack-idc-rtl.min.css'),
(1532, 'wp-content/plugins/jetpack/css/jetpack-idc.css'),
(1533, 'wp-content/plugins/jetpack/css/jetpack-idc.css.map'),
(1534, 'wp-content/plugins/jetpack/css/jetpack-idc.css.min.map'),
(1535, 'wp-content/plugins/jetpack/css/jetpack-idc.min.css'),
(1536, 'wp-content/plugins/jetpack/css/jetpack-rtl.css'),
(1537, 'wp-content/plugins/jetpack/css/jetpack.css'),
(1538, 'wp-content/plugins/jetpack/functions.compat.php'),
(1539, 'wp-content/plugins/jetpack/functions.gallery.php'),
(1540, 'wp-content/plugins/jetpack/functions.global.php'),
(1541, 'wp-content/plugins/jetpack/functions.opengraph.php'),
(1542, 'wp-content/plugins/jetpack/functions.photon.php'),
(1543, 'wp-content/plugins/jetpack/images/apps/triple-devices.svg'),
(1544, 'wp-content/plugins/jetpack/images/aurora-lrg.jpg'),
(1545, 'wp-content/plugins/jetpack/images/aurora-med.jpg'),
(1546, 'wp-content/plugins/jetpack/images/aurora-sm.jpg'),
(1547, 'wp-content/plugins/jetpack/images/connect-plug.svg'),
(1548, 'wp-content/plugins/jetpack/images/feature-photon-lrg.jpg'),
(1549, 'wp-content/plugins/jetpack/images/feature-photon-med.jpg'),
(1550, 'wp-content/plugins/jetpack/images/feature-photon-sm.jpg'),
(1551, 'wp-content/plugins/jetpack/images/jetpack-icon.jpg'),
(1552, 'wp-content/plugins/jetpack/images/jetpack-logo.png'),
(1553, 'wp-content/plugins/jetpack/images/jetpack-logo.svg'),
(1554, 'wp-content/plugins/jetpack/images/long-clouds.svg'),
(1555, 'wp-content/plugins/jetpack/images/plans/plan-jetpack-free.svg'),
(1556, 'wp-content/plugins/jetpack/images/plans/plan-jetpack-premium.svg'),
(1557, 'wp-content/plugins/jetpack/images/plans/plan-jetpack-pro.svg'),
(1558, 'wp-content/plugins/jetpack/images/rss/blue-large.png'),
(1559, 'wp-content/plugins/jetpack/images/rss/blue-medium.png'),
(1560, 'wp-content/plugins/jetpack/images/rss/blue-small.png'),
(1561, 'wp-content/plugins/jetpack/images/rss/green-large.png'),
(1562, 'wp-content/plugins/jetpack/images/rss/green-medium.png'),
(1563, 'wp-content/plugins/jetpack/images/rss/green-small.png'),
(1564, 'wp-content/plugins/jetpack/images/rss/orange-large.png'),
(1565, 'wp-content/plugins/jetpack/images/rss/orange-medium.png'),
(1566, 'wp-content/plugins/jetpack/images/rss/orange-small.png'),
(1567, 'wp-content/plugins/jetpack/images/rss/pink-large.png'),
(1568, 'wp-content/plugins/jetpack/images/rss/pink-medium.png'),
(1569, 'wp-content/plugins/jetpack/images/rss/pink-small.png'),
(1570, 'wp-content/plugins/jetpack/images/rss/purple-large.png'),
(1571, 'wp-content/plugins/jetpack/images/rss/purple-medium.png'),
(1572, 'wp-content/plugins/jetpack/images/rss/purple-small.png'),
(1573, 'wp-content/plugins/jetpack/images/rss/red-large.png'),
(1574, 'wp-content/plugins/jetpack/images/rss/red-medium.png'),
(1575, 'wp-content/plugins/jetpack/images/rss/red-small.png'),
(1576, 'wp-content/plugins/jetpack/images/rss/silver-large.png'),
(1577, 'wp-content/plugins/jetpack/images/rss/silver-medium.png'),
(1578, 'wp-content/plugins/jetpack/images/rss/silver-small.png'),
(1579, 'wp-content/plugins/jetpack/images/stars-left.svg'),
(1580, 'wp-content/plugins/jetpack/images/stars-right.svg'),
(1581, 'wp-content/plugins/jetpack/images/stat-bars.svg'),
(1582, 'wp-content/plugins/jetpack/images/stats-example-lrg.png'),
(1583, 'wp-content/plugins/jetpack/images/stats-example-med.png'),
(1584, 'wp-content/plugins/jetpack/images/stats-example-sm.png'),
(1585, 'wp-content/plugins/jetpack/images/stats-smiley.gif'),
(1586, 'wp-content/plugins/jetpack/images/stats.svg'),
(1587, 'wp-content/plugins/jetpack/images/white-clouds-reverse.svg'),
(1588, 'wp-content/plugins/jetpack/images/white-clouds.svg'),
(1589, 'wp-content/plugins/jetpack/jetpack.php'),
(1590, 'wp-content/plugins/jetpack/json-api-config.php'),
(1591, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-autosave-post-v1-1-endpoint.php'),
(1592, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-comment-endpoint.php'),
(1593, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-endpoint.php'),
(1594, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-v1-1-endpoint.php'),
(1595, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php'),
(1596, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-autosave-v1-1-endpoint.php'),
(1597, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-endpoint.php'),
(1598, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-customcss.php'),
(1599, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-endpoint.php'),
(1600, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-1-endpoint.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1601, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-2-endpoint.php'),
(1602, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php'),
(1603, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-endpoint.php'),
(1604, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php'),
(1605, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-endpoint.php'),
(1606, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-v1-2-endpoint.php'),
(1607, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomies-endpoint.php'),
(1608, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php'),
(1609, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-term-endpoint.php'),
(1610, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-comments-endpoint.php'),
(1611, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-embeds-endpoint.php'),
(1612, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-invites-endpoint.php'),
(1613, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-endpoint.php'),
(1614, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-1-endpoint.php'),
(1615, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php'),
(1616, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php'),
(1617, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-endpoint.php'),
(1618, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php'),
(1619, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-roles-endpoint.php'),
(1620, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-shortcodes-endpoint.php'),
(1621, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-terms-endpoint.php'),
(1622, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-users-endpoint.php'),
(1623, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-menus-v1-1-endpoint.php'),
(1624, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-endpoint.php'),
(1625, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php'),
(1626, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-publicize-endpoint.php'),
(1627, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php'),
(1628, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-reversal-endpoint.php'),
(1629, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-endpoint.php'),
(1630, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-shortcode-endpoint.php'),
(1631, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-sharing-buttons-endpoint.php'),
(1632, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-endpoint.php'),
(1633, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-2-endpoint.php'),
(1634, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-user-endpoint.php'),
(1635, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-taxonomy-endpoint.php'),
(1636, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-comment-endpoint.php'),
(1637, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-customcss.php'),
(1638, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-invites-endpoint.php'),
(1639, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-endpoint.php'),
(1640, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-v1-1-endpoint.php'),
(1641, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-endpoint.php'),
(1642, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php'),
(1643, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php'),
(1644, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php'),
(1645, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php'),
(1646, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-user-endpoint.php'),
(1647, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-endpoint.php'),
(1648, 'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-v1-1-endpoint.php'),
(1649, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-check-capabilities-endpoint.php'),
(1650, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-endpoint.php'),
(1651, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-modify-endpoint.php'),
(1652, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php'),
(1653, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-endpoint.php'),
(1654, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-post-backup-endpoint.php'),
(1655, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-log-endpoint.php'),
(1656, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-maybe-auto-update-endpoint.php'),
(1657, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-endpoint.php'),
(1658, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-get-endpoint.php'),
(1659, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-list-endpoint.php'),
(1660, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-modify-endpoint.php'),
(1661, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-delete-endpoint.php'),
(1662, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php'),
(1663, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php'),
(1664, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-install-endpoint.php'),
(1665, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-list-endpoint.php'),
(1666, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php'),
(1667, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-new-endpoint.php'),
(1668, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php'),
(1669, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-active-endpoint.php'),
(1670, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-delete-endpoint.php'),
(1671, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-endpoint.php'),
(1672, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php'),
(1673, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php'),
(1674, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php'),
(1675, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php'),
(1676, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-new-endpoint.php'),
(1677, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-endpoint.php'),
(1678, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-modify-endpoint.php'),
(1679, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-updates-status-endpoint.php'),
(1680, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php'),
(1681, 'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-update-option-endpoint.php'),
(1682, 'wp-content/plugins/jetpack/json-endpoints/jetpack/json-api-jetpack-endpoints.php'),
(1683, 'wp-content/plugins/jetpack/json-endpoints.php'),
(1684, 'wp-content/plugins/jetpack/languages/jetpack-af.mo'),
(1685, 'wp-content/plugins/jetpack/languages/jetpack-ary.mo'),
(1686, 'wp-content/plugins/jetpack/languages/jetpack-az.mo'),
(1687, 'wp-content/plugins/jetpack/languages/jetpack-bg_BG.mo'),
(1688, 'wp-content/plugins/jetpack/languages/jetpack-bs_BA.mo'),
(1689, 'wp-content/plugins/jetpack/languages/jetpack-ca.mo'),
(1690, 'wp-content/plugins/jetpack/languages/jetpack-ckb.mo'),
(1691, 'wp-content/plugins/jetpack/languages/jetpack-cs_CZ.mo'),
(1692, 'wp-content/plugins/jetpack/languages/jetpack-cy.mo'),
(1693, 'wp-content/plugins/jetpack/languages/jetpack-da_DK.mo'),
(1694, 'wp-content/plugins/jetpack/languages/jetpack-gd.mo'),
(1695, 'wp-content/plugins/jetpack/languages/jetpack-gl_ES.mo'),
(1696, 'wp-content/plugins/jetpack/languages/jetpack-hu_HU.mo'),
(1697, 'wp-content/plugins/jetpack/languages/jetpack-is_IS.mo'),
(1698, 'wp-content/plugins/jetpack/languages/jetpack-ka_GE.mo'),
(1699, 'wp-content/plugins/jetpack/languages/jetpack-lt_LT.mo'),
(1700, 'wp-content/plugins/jetpack/languages/jetpack-lv.mo') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1701, 'wp-content/plugins/jetpack/languages/jetpack-mk_MK.mo'),
(1702, 'wp-content/plugins/jetpack/languages/jetpack-ms_MY.mo'),
(1703, 'wp-content/plugins/jetpack/languages/jetpack-my_MM.mo'),
(1704, 'wp-content/plugins/jetpack/languages/jetpack-nb_NO.mo'),
(1705, 'wp-content/plugins/jetpack/languages/jetpack-nn_NO.mo'),
(1706, 'wp-content/plugins/jetpack/languages/jetpack-pl_PL.mo'),
(1707, 'wp-content/plugins/jetpack/languages/jetpack-pt_PT.mo'),
(1708, 'wp-content/plugins/jetpack/languages/jetpack-sa_IN.mo'),
(1709, 'wp-content/plugins/jetpack/languages/jetpack-si_LK.mo'),
(1710, 'wp-content/plugins/jetpack/languages/jetpack-sk_SK.mo'),
(1711, 'wp-content/plugins/jetpack/languages/jetpack-sl_SI.mo'),
(1712, 'wp-content/plugins/jetpack/languages/jetpack-sr_RS.mo'),
(1713, 'wp-content/plugins/jetpack/languages/jetpack-te.mo'),
(1714, 'wp-content/plugins/jetpack/languages/jetpack-th.mo'),
(1715, 'wp-content/plugins/jetpack/languages/jetpack-uk.mo'),
(1716, 'wp-content/plugins/jetpack/languages/jetpack-ur.mo'),
(1717, 'wp-content/plugins/jetpack/languages/jetpack-vi.mo'),
(1718, 'wp-content/plugins/jetpack/languages/json/jetpack-af.json'),
(1719, 'wp-content/plugins/jetpack/languages/json/jetpack-ar.json'),
(1720, 'wp-content/plugins/jetpack/languages/json/jetpack-ary.json'),
(1721, 'wp-content/plugins/jetpack/languages/json/jetpack-az.json'),
(1722, 'wp-content/plugins/jetpack/languages/json/jetpack-bg_BG.json'),
(1723, 'wp-content/plugins/jetpack/languages/json/jetpack-bs_BA.json'),
(1724, 'wp-content/plugins/jetpack/languages/json/jetpack-ca.json'),
(1725, 'wp-content/plugins/jetpack/languages/json/jetpack-ckb.json'),
(1726, 'wp-content/plugins/jetpack/languages/json/jetpack-cs_CZ.json'),
(1727, 'wp-content/plugins/jetpack/languages/json/jetpack-cy.json'),
(1728, 'wp-content/plugins/jetpack/languages/json/jetpack-da_DK.json'),
(1729, 'wp-content/plugins/jetpack/languages/json/jetpack-de_DE.json'),
(1730, 'wp-content/plugins/jetpack/languages/json/jetpack-el.json'),
(1731, 'wp-content/plugins/jetpack/languages/json/jetpack-en_AU.json'),
(1732, 'wp-content/plugins/jetpack/languages/json/jetpack-en_CA.json'),
(1733, 'wp-content/plugins/jetpack/languages/json/jetpack-en_NZ.json'),
(1734, 'wp-content/plugins/jetpack/languages/json/jetpack-eo.json'),
(1735, 'wp-content/plugins/jetpack/languages/json/jetpack-es_AR.json'),
(1736, 'wp-content/plugins/jetpack/languages/json/jetpack-es_CL.json'),
(1737, 'wp-content/plugins/jetpack/languages/json/jetpack-es_ES.json'),
(1738, 'wp-content/plugins/jetpack/languages/json/jetpack-es_VE.json'),
(1739, 'wp-content/plugins/jetpack/languages/json/jetpack-fa_IR.json'),
(1740, 'wp-content/plugins/jetpack/languages/json/jetpack-fi.json'),
(1741, 'wp-content/plugins/jetpack/languages/json/jetpack-fr_BE.json'),
(1742, 'wp-content/plugins/jetpack/languages/json/jetpack-fr_FR.json'),
(1743, 'wp-content/plugins/jetpack/languages/json/jetpack-gd.json'),
(1744, 'wp-content/plugins/jetpack/languages/json/jetpack-gl_ES.json'),
(1745, 'wp-content/plugins/jetpack/languages/json/jetpack-he_IL.json'),
(1746, 'wp-content/plugins/jetpack/languages/json/jetpack-hr.json'),
(1747, 'wp-content/plugins/jetpack/languages/json/jetpack-hu_HU.json'),
(1748, 'wp-content/plugins/jetpack/languages/json/jetpack-id_ID.json'),
(1749, 'wp-content/plugins/jetpack/languages/json/jetpack-is_IS.json'),
(1750, 'wp-content/plugins/jetpack/languages/json/jetpack-it_IT.json'),
(1751, 'wp-content/plugins/jetpack/languages/json/jetpack-ja.json'),
(1752, 'wp-content/plugins/jetpack/languages/json/jetpack-ka_GE.json'),
(1753, 'wp-content/plugins/jetpack/languages/json/jetpack-ko_KR.json'),
(1754, 'wp-content/plugins/jetpack/languages/json/jetpack-lt_LT.json'),
(1755, 'wp-content/plugins/jetpack/languages/json/jetpack-lv.json'),
(1756, 'wp-content/plugins/jetpack/languages/json/jetpack-mk_MK.json'),
(1757, 'wp-content/plugins/jetpack/languages/json/jetpack-ms_MY.json'),
(1758, 'wp-content/plugins/jetpack/languages/json/jetpack-my_MM.json'),
(1759, 'wp-content/plugins/jetpack/languages/json/jetpack-nb_NO.json'),
(1760, 'wp-content/plugins/jetpack/languages/json/jetpack-nl_NL.json'),
(1761, 'wp-content/plugins/jetpack/languages/json/jetpack-nn_NO.json'),
(1762, 'wp-content/plugins/jetpack/languages/json/jetpack-pl_PL.json'),
(1763, 'wp-content/plugins/jetpack/languages/json/jetpack-pt_BR.json'),
(1764, 'wp-content/plugins/jetpack/languages/json/jetpack-pt_PT.json'),
(1765, 'wp-content/plugins/jetpack/languages/json/jetpack-ro_RO.json'),
(1766, 'wp-content/plugins/jetpack/languages/json/jetpack-ru_RU.json'),
(1767, 'wp-content/plugins/jetpack/languages/json/jetpack-sa_IN.json'),
(1768, 'wp-content/plugins/jetpack/languages/json/jetpack-si_LK.json'),
(1769, 'wp-content/plugins/jetpack/languages/json/jetpack-sk_SK.json'),
(1770, 'wp-content/plugins/jetpack/languages/json/jetpack-sl_SI.json'),
(1771, 'wp-content/plugins/jetpack/languages/json/jetpack-sq.json'),
(1772, 'wp-content/plugins/jetpack/languages/json/jetpack-sr_RS.json'),
(1773, 'wp-content/plugins/jetpack/languages/json/jetpack-sv_SE.json'),
(1774, 'wp-content/plugins/jetpack/languages/json/jetpack-te.json'),
(1775, 'wp-content/plugins/jetpack/languages/json/jetpack-th.json'),
(1776, 'wp-content/plugins/jetpack/languages/json/jetpack-tr_TR.json'),
(1777, 'wp-content/plugins/jetpack/languages/json/jetpack-uk.json'),
(1778, 'wp-content/plugins/jetpack/languages/json/jetpack-ur.json'),
(1779, 'wp-content/plugins/jetpack/languages/json/jetpack-vi.json'),
(1780, 'wp-content/plugins/jetpack/languages/json/jetpack-zh_CN.json'),
(1781, 'wp-content/plugins/jetpack/languages/json/jetpack-zh_TW.json'),
(1782, 'wp-content/plugins/jetpack/languages/readme.txt'),
(1783, 'wp-content/plugins/jetpack/locales.php'),
(1784, 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-autoproofread.js'),
(1785, 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-nonvis-editor-plugin.js'),
(1786, 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.css'),
(1787, 'wp-content/plugins/jetpack/modules/after-the-deadline/atd-rtl.min.css'),
(1788, 'wp-content/plugins/jetpack/modules/after-the-deadline/atd.core.js'),
(1789, 'wp-content/plugins/jetpack/modules/after-the-deadline/atd.css'),
(1790, 'wp-content/plugins/jetpack/modules/after-the-deadline/atd.min.css'),
(1791, 'wp-content/plugins/jetpack/modules/after-the-deadline/button.gif'),
(1792, 'wp-content/plugins/jetpack/modules/after-the-deadline/config-options.php'),
(1793, 'wp-content/plugins/jetpack/modules/after-the-deadline/config-unignore.php'),
(1794, 'wp-content/plugins/jetpack/modules/after-the-deadline/jquery.atd.js'),
(1795, 'wp-content/plugins/jetpack/modules/after-the-deadline/proxy.php'),
(1796, 'wp-content/plugins/jetpack/modules/after-the-deadline/rtl/atd-rtl.css'),
(1797, 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/atdbuttontr.gif'),
(1798, 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.css'),
(1799, 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content-rtl.min.css'),
(1800, 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.css') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1801, 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/css/content.min.css'),
(1802, 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js'),
(1803, 'wp-content/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js'),
(1804, 'wp-content/plugins/jetpack/modules/after-the-deadline.php'),
(1805, 'wp-content/plugins/jetpack/modules/carousel/images/arrows-2x.png'),
(1806, 'wp-content/plugins/jetpack/modules/carousel/images/arrows.png'),
(1807, 'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog-2x.png'),
(1808, 'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog.png'),
(1809, 'wp-content/plugins/jetpack/modules/carousel/images/carousel-link-2x.png'),
(1810, 'wp-content/plugins/jetpack/modules/carousel/images/carousel-link.png'),
(1811, 'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite-2x.png'),
(1812, 'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite.png'),
(1813, 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-ie8fix.css'),
(1814, 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.css'),
(1815, 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.js'),
(1816, 'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.php'),
(1817, 'wp-content/plugins/jetpack/modules/carousel/rtl/jetpack-carousel-rtl.css'),
(1818, 'wp-content/plugins/jetpack/modules/carousel.php'),
(1819, 'wp-content/plugins/jetpack/modules/comments/admin.php'),
(1820, 'wp-content/plugins/jetpack/modules/comments/base.php'),
(1821, 'wp-content/plugins/jetpack/modules/comments/comments.php'),
(1822, 'wp-content/plugins/jetpack/modules/comments.php'),
(1823, 'wp-content/plugins/jetpack/modules/contact-form/admin.php'),
(1824, 'wp-content/plugins/jetpack/modules/contact-form/class-grunion-contact-form-endpoint.php'),
(1825, 'wp-content/plugins/jetpack/modules/contact-form/css/grunion.css'),
(1826, 'wp-content/plugins/jetpack/modules/contact-form/grunion-contact-form.php'),
(1827, 'wp-content/plugins/jetpack/modules/contact-form/grunion-form-view.php'),
(1828, 'wp-content/plugins/jetpack/modules/contact-form/grunion-omnisearch.php'),
(1829, 'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-akismet.png'),
(1830, 'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-button.png'),
(1831, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form-2x.png'),
(1832, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form.png'),
(1833, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-2x.png'),
(1834, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover-2x.png'),
(1835, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover.gif'),
(1836, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field.gif'),
(1837, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-2x.png'),
(1838, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover-2x.png'),
(1839, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover.gif'),
(1840, 'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option.gif'),
(1841, 'wp-content/plugins/jetpack/modules/contact-form/js/grunion-admin.js'),
(1842, 'wp-content/plugins/jetpack/modules/contact-form/js/grunion-frontend.js'),
(1843, 'wp-content/plugins/jetpack/modules/contact-form/js/grunion.js'),
(1844, 'wp-content/plugins/jetpack/modules/contact-form.php'),
(1845, 'wp-content/plugins/jetpack/modules/custom-content-types.php'),
(1846, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php'),
(1847, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php'),
(1848, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_optimise.php'),
(1849, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_print.php'),
(1850, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.css'),
(1851, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.min.css'),
(1852, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.css'),
(1853, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.min.css'),
(1854, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.css'),
(1855, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.min.css'),
(1856, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.css'),
(1857, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.min.css'),
(1858, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/data-wp.inc.php'),
(1859, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/data.inc.php'),
(1860, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/lang.inc.php'),
(1861, 'wp-content/plugins/jetpack/modules/custom-css/csstidy/wordpress-standard.tpl'),
(1862, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/blank.css'),
(1863, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.css'),
(1864, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.min.css'),
(1865, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.css'),
(1866, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.min.css'),
(1867, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.css'),
(1868, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.min.css'),
(1869, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.css'),
(1870, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.min.css'),
(1871, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/customizer-control.css'),
(1872, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl/codemirror-rtl.css'),
(1873, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.css'),
(1874, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.min.css'),
(1875, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css'),
(1876, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css'),
(1877, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/codemirror.min.js'),
(1878, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css-preview.js'),
(1879, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.js'),
(1880, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/css-editor.js'),
(1881, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/use-codemirror.js'),
(1882, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php'),
(1883, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php'),
(1884, 'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors.php'),
(1885, 'wp-content/plugins/jetpack/modules/custom-css/custom-css-4.7.php'),
(1886, 'wp-content/plugins/jetpack/modules/custom-css/custom-css.php'),
(1887, 'wp-content/plugins/jetpack/modules/custom-css/migrate-to-core.php'),
(1888, 'wp-content/plugins/jetpack/modules/custom-css.php'),
(1889, 'wp-content/plugins/jetpack/modules/custom-post-types/comics/admin.css'),
(1890, 'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.css'),
(1891, 'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.js'),
(1892, 'wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css'),
(1893, 'wp-content/plugins/jetpack/modules/custom-post-types/comics.php'),
(1894, 'wp-content/plugins/jetpack/modules/custom-post-types/css/edit-items.css'),
(1895, 'wp-content/plugins/jetpack/modules/custom-post-types/css/many-items.css'),
(1896, 'wp-content/plugins/jetpack/modules/custom-post-types/css/nova-font.css'),
(1897, 'wp-content/plugins/jetpack/modules/custom-post-types/css/nova.css'),
(1898, 'wp-content/plugins/jetpack/modules/custom-post-types/css/portfolio-shortcode.css'),
(1899, 'wp-content/plugins/jetpack/modules/custom-post-types/css/testimonial-shortcode.css'),
(1900, 'wp-content/plugins/jetpack/modules/custom-post-types/js/many-items.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(1901, 'wp-content/plugins/jetpack/modules/custom-post-types/js/menu-checkboxes.js'),
(1902, 'wp-content/plugins/jetpack/modules/custom-post-types/js/nova-drag-drop.js'),
(1903, 'wp-content/plugins/jetpack/modules/custom-post-types/nova.php'),
(1904, 'wp-content/plugins/jetpack/modules/custom-post-types/portfolios.php'),
(1905, 'wp-content/plugins/jetpack/modules/custom-post-types/testimonial.php'),
(1906, 'wp-content/plugins/jetpack/modules/debug.php'),
(1907, 'wp-content/plugins/jetpack/modules/enhanced-distribution.php'),
(1908, 'wp-content/plugins/jetpack/modules/google-analytics/wp-google-analytics.php'),
(1909, 'wp-content/plugins/jetpack/modules/google-analytics.php'),
(1910, 'wp-content/plugins/jetpack/modules/gplus-authorship.php'),
(1911, 'wp-content/plugins/jetpack/modules/gravatar-hovercards.php'),
(1912, 'wp-content/plugins/jetpack/modules/holiday-snow/snowstorm.js'),
(1913, 'wp-content/plugins/jetpack/modules/holiday-snow.php'),
(1914, 'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.css'),
(1915, 'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.js'),
(1916, 'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.php'),
(1917, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.css'),
(1918, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.php'),
(1919, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen-rtl.css'),
(1920, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.css'),
(1921, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.php'),
(1922, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.css'),
(1923, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.php'),
(1924, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen-rtl.css'),
(1925, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.css'),
(1926, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.php'),
(1927, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen-rtl.css'),
(1928, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.css'),
(1929, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.php'),
(1930, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.css'),
(1931, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.php'),
(1932, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.css'),
(1933, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.php'),
(1934, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.css'),
(1935, 'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.php'),
(1936, 'wp-content/plugins/jetpack/modules/infinite-scroll.php'),
(1937, 'wp-content/plugins/jetpack/modules/json-api.php'),
(1938, 'wp-content/plugins/jetpack/modules/latex.php'),
(1939, 'wp-content/plugins/jetpack/modules/likes/post-count-jetpack.js'),
(1940, 'wp-content/plugins/jetpack/modules/likes/post-count.js'),
(1941, 'wp-content/plugins/jetpack/modules/likes/queuehandler.js'),
(1942, 'wp-content/plugins/jetpack/modules/likes/style.css'),
(1943, 'wp-content/plugins/jetpack/modules/likes.php'),
(1944, 'wp-content/plugins/jetpack/modules/manage/activate-admin.php'),
(1945, 'wp-content/plugins/jetpack/modules/manage/confirm-admin.php'),
(1946, 'wp-content/plugins/jetpack/modules/manage.php'),
(1947, 'wp-content/plugins/jetpack/modules/markdown/easy-markdown.php'),
(1948, 'wp-content/plugins/jetpack/modules/markdown.php'),
(1949, 'wp-content/plugins/jetpack/modules/minileven/images/wp-app-devices.png'),
(1950, 'wp-content/plugins/jetpack/modules/minileven/minileven.php'),
(1951, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/comments.php'),
(1952, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content-gallery.php'),
(1953, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content.php'),
(1954, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/footer.php'),
(1955, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php'),
(1956, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/header.php'),
(1957, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/image.php'),
(1958, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header.php'),
(1959, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.eot'),
(1960, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.svg'),
(1961, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.ttf'),
(1962, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.woff'),
(1963, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/template-tags.php'),
(1964, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/tweaks.php'),
(1965, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/index.php'),
(1966, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/js/small-menu.js'),
(1967, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/page.php'),
(1968, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/rtl.css'),
(1969, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/screenshot.png'),
(1970, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/searchform.php'),
(1971, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/sidebar.php'),
(1972, 'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/style.css'),
(1973, 'wp-content/plugins/jetpack/modules/minileven.php'),
(1974, 'wp-content/plugins/jetpack/modules/mobile-push.php'),
(1975, 'wp-content/plugins/jetpack/modules/module-extras.php'),
(1976, 'wp-content/plugins/jetpack/modules/module-headings.php'),
(1977, 'wp-content/plugins/jetpack/modules/module-info.php'),
(1978, 'wp-content/plugins/jetpack/modules/monitor.php'),
(1979, 'wp-content/plugins/jetpack/modules/notes.php'),
(1980, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-comments.php'),
(1981, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-core.php'),
(1982, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack-rtl.css'),
(1983, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack-rtl.min.css'),
(1984, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack.css'),
(1985, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-jetpack.min.css'),
(1986, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-media.php'),
(1987, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-plugins.php'),
(1988, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-posts.php'),
(1989, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-rtl.css'),
(1990, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch-rtl.min.css'),
(1991, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch.css'),
(1992, 'wp-content/plugins/jetpack/modules/omnisearch/omnisearch.min.css'),
(1993, 'wp-content/plugins/jetpack/modules/omnisearch/rtl/omnisearch-jetpack-rtl.css'),
(1994, 'wp-content/plugins/jetpack/modules/omnisearch/rtl/omnisearch-rtl.css'),
(1995, 'wp-content/plugins/jetpack/modules/omnisearch.php'),
(1996, 'wp-content/plugins/jetpack/modules/photon/photon.js'),
(1997, 'wp-content/plugins/jetpack/modules/photon.php'),
(1998, 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.css'),
(1999, 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.min.css'),
(2000, 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.css') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2001, 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.js'),
(2002, 'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.min.css'),
(2003, 'wp-content/plugins/jetpack/modules/post-by-email.php'),
(2004, 'wp-content/plugins/jetpack/modules/protect/config-ui.php'),
(2005, 'wp-content/plugins/jetpack/modules/protect/math-fallback.php'),
(2006, 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.css'),
(2007, 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.min.css'),
(2008, 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.css'),
(2009, 'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.min.css'),
(2010, 'wp-content/plugins/jetpack/modules/protect/shared-functions.php'),
(2011, 'wp-content/plugins/jetpack/modules/protect/transient-cleanup.php'),
(2012, 'wp-content/plugins/jetpack/modules/protect.php'),
(2013, 'wp-content/plugins/jetpack/modules/publicize/assets/connected.gif'),
(2014, 'wp-content/plugins/jetpack/modules/publicize/assets/facebook-logo.png'),
(2015, 'wp-content/plugins/jetpack/modules/publicize/assets/linkedin-logo.png'),
(2016, 'wp-content/plugins/jetpack/modules/publicize/assets/path-logo.png'),
(2017, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-fb-2x.png'),
(2018, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-google-2x.png'),
(2019, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-linkedin-2x.png'),
(2020, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-path-2x.png'),
(2021, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.css'),
(2022, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-rtl.min.css'),
(2023, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-tumblr-2x.png'),
(2024, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize-twitter-2x.png'),
(2025, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize.css'),
(2026, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize.js'),
(2027, 'wp-content/plugins/jetpack/modules/publicize/assets/publicize.min.css'),
(2028, 'wp-content/plugins/jetpack/modules/publicize/assets/rtl/publicize-rtl.css'),
(2029, 'wp-content/plugins/jetpack/modules/publicize/assets/spinner.gif'),
(2030, 'wp-content/plugins/jetpack/modules/publicize/assets/tumblr-logo.png'),
(2031, 'wp-content/plugins/jetpack/modules/publicize/assets/twitter-logo.png'),
(2032, 'wp-content/plugins/jetpack/modules/publicize/enhanced-open-graph.php'),
(2033, 'wp-content/plugins/jetpack/modules/publicize/publicize-jetpack.php'),
(2034, 'wp-content/plugins/jetpack/modules/publicize/publicize.php'),
(2035, 'wp-content/plugins/jetpack/modules/publicize/ui.php'),
(2036, 'wp-content/plugins/jetpack/modules/publicize.php'),
(2037, 'wp-content/plugins/jetpack/modules/random-redirect.php'),
(2038, 'wp-content/plugins/jetpack/modules/related-posts/class.related-posts-customize.php'),
(2039, 'wp-content/plugins/jetpack/modules/related-posts/jetpack-related-posts.php'),
(2040, 'wp-content/plugins/jetpack/modules/related-posts/related-posts-customizer.js'),
(2041, 'wp-content/plugins/jetpack/modules/related-posts/related-posts.css'),
(2042, 'wp-content/plugins/jetpack/modules/related-posts/related-posts.js'),
(2043, 'wp-content/plugins/jetpack/modules/related-posts/rtl/related-posts-rtl.css'),
(2044, 'wp-content/plugins/jetpack/modules/related-posts.php'),
(2045, 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-posts.php'),
(2046, 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-titles.php'),
(2047, 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-utils.php'),
(2048, 'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo.php'),
(2049, 'wp-content/plugins/jetpack/modules/seo-tools.php'),
(2050, 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.css'),
(2051, 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.min.css'),
(2052, 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.css'),
(2053, 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.js'),
(2054, 'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.min.css'),
(2055, 'wp-content/plugins/jetpack/modules/sharedaddy/images/after-the-deadline@2x.png'),
(2056, 'wp-content/plugins/jetpack/modules/sharedaddy/images/comments@2x.png'),
(2057, 'wp-content/plugins/jetpack/modules/sharedaddy/images/contact-form@2x.png'),
(2058, 'wp-content/plugins/jetpack/modules/sharedaddy/images/custom.png'),
(2059, 'wp-content/plugins/jetpack/modules/sharedaddy/images/custom@2x.png'),
(2060, 'wp-content/plugins/jetpack/modules/sharedaddy/images/designfloat.png'),
(2061, 'wp-content/plugins/jetpack/modules/sharedaddy/images/digg.png'),
(2062, 'wp-content/plugins/jetpack/modules/sharedaddy/images/digg@2x.png'),
(2063, 'wp-content/plugins/jetpack/modules/sharedaddy/images/divider.png'),
(2064, 'wp-content/plugins/jetpack/modules/sharedaddy/images/divider@2x.png'),
(2065, 'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy.png'),
(2066, 'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy@2x.png'),
(2067, 'wp-content/plugins/jetpack/modules/sharedaddy/images/email.png'),
(2068, 'wp-content/plugins/jetpack/modules/sharedaddy/images/email@2x.png'),
(2069, 'wp-content/plugins/jetpack/modules/sharedaddy/images/ember.png'),
(2070, 'wp-content/plugins/jetpack/modules/sharedaddy/images/enhanced-distribution@2x.png'),
(2071, 'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook.png'),
(2072, 'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook@2x.png'),
(2073, 'wp-content/plugins/jetpack/modules/sharedaddy/images/feed.png'),
(2074, 'wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1.png'),
(2075, 'wp-content/plugins/jetpack/modules/sharedaddy/images/googleplus1@2x.png'),
(2076, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook-2x.png'),
(2077, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook.png'),
(2078, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus-2x.png'),
(2079, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-googleplus.png'),
(2080, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter-2x.png'),
(2081, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter.png'),
(2082, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress-2x.png'),
(2083, 'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress.png'),
(2084, 'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle.png'),
(2085, 'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle@2x.png'),
(2086, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal.png'),
(2087, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal@2x.png'),
(2088, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount.png'),
(2089, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount@2x.png'),
(2090, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart.png'),
(2091, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart@2x.png'),
(2092, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical.png'),
(2093, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical@2x.png'),
(2094, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin.png'),
(2095, 'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin@2x.png'),
(2096, 'wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif'),
(2097, 'wp-content/plugins/jetpack/modules/sharedaddy/images/more.png'),
(2098, 'wp-content/plugins/jetpack/modules/sharedaddy/images/more@2x.png'),
(2099, 'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest.png'),
(2100, 'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest@2x.png') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2101, 'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket.png'),
(2102, 'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket@2x.png'),
(2103, 'wp-content/plugins/jetpack/modules/sharedaddy/images/print.png'),
(2104, 'wp-content/plugins/jetpack/modules/sharedaddy/images/print@2x.png'),
(2105, 'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit.png'),
(2106, 'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit@2x.png'),
(2107, 'wp-content/plugins/jetpack/modules/sharedaddy/images/rss.png'),
(2108, 'wp-content/plugins/jetpack/modules/sharedaddy/images/rss@2x.png'),
(2109, 'wp-content/plugins/jetpack/modules/sharedaddy/images/share-bg.png'),
(2110, 'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden.png'),
(2111, 'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden@2x.png'),
(2112, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg.png'),
(2113, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg@2x.png'),
(2114, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook.png'),
(2115, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook@2x.png'),
(2116, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1.png'),
(2117, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-googleplus1@2x.png'),
(2118, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like.png'),
(2119, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like@2x.png'),
(2120, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest.png'),
(2121, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest@2x.png'),
(2122, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket.png'),
(2123, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket@2x.png'),
(2124, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit.png'),
(2125, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit@2x.png'),
(2126, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype.png'),
(2127, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype@2x.png'),
(2128, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon.png'),
(2129, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon@2x.png'),
(2130, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr.png'),
(2131, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr@2x.png'),
(2132, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter.png'),
(2133, 'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter@2x.png'),
(2134, 'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr.png'),
(2135, 'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr@2x.png'),
(2136, 'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter.png'),
(2137, 'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter@2x.png'),
(2138, 'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress.png'),
(2139, 'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress@2x.png'),
(2140, 'wp-content/plugins/jetpack/modules/sharedaddy/recaptcha.php'),
(2141, 'wp-content/plugins/jetpack/modules/sharedaddy/sharedaddy.php'),
(2142, 'wp-content/plugins/jetpack/modules/sharedaddy/sharing-service.php'),
(2143, 'wp-content/plugins/jetpack/modules/sharedaddy/sharing-sources.php'),
(2144, 'wp-content/plugins/jetpack/modules/sharedaddy/sharing.css'),
(2145, 'wp-content/plugins/jetpack/modules/sharedaddy/sharing.js'),
(2146, 'wp-content/plugins/jetpack/modules/sharedaddy/sharing.php'),
(2147, 'wp-content/plugins/jetpack/modules/sharedaddy.php'),
(2148, 'wp-content/plugins/jetpack/modules/shortcodes/archiveorg-book.php'),
(2149, 'wp-content/plugins/jetpack/modules/shortcodes/archiveorg.php'),
(2150, 'wp-content/plugins/jetpack/modules/shortcodes/archives.php'),
(2151, 'wp-content/plugins/jetpack/modules/shortcodes/audio.php'),
(2152, 'wp-content/plugins/jetpack/modules/shortcodes/bandcamp.php'),
(2153, 'wp-content/plugins/jetpack/modules/shortcodes/brightcove.php'),
(2154, 'wp-content/plugins/jetpack/modules/shortcodes/cartodb.php'),
(2155, 'wp-content/plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php'),
(2156, 'wp-content/plugins/jetpack/modules/shortcodes/codepen.php'),
(2157, 'wp-content/plugins/jetpack/modules/shortcodes/css/quiz.css'),
(2158, 'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.css'),
(2159, 'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.css'),
(2160, 'wp-content/plugins/jetpack/modules/shortcodes/css/rtl/recipes-rtl.css'),
(2161, 'wp-content/plugins/jetpack/modules/shortcodes/css/rtl/slideshow-shortcode-rtl.css'),
(2162, 'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.css'),
(2163, 'wp-content/plugins/jetpack/modules/shortcodes/css/style.css'),
(2164, 'wp-content/plugins/jetpack/modules/shortcodes/dailymotion.php'),
(2165, 'wp-content/plugins/jetpack/modules/shortcodes/diggthis.php'),
(2166, 'wp-content/plugins/jetpack/modules/shortcodes/facebook.php'),
(2167, 'wp-content/plugins/jetpack/modules/shortcodes/flickr.php'),
(2168, 'wp-content/plugins/jetpack/modules/shortcodes/getty.php'),
(2169, 'wp-content/plugins/jetpack/modules/shortcodes/gist.php'),
(2170, 'wp-content/plugins/jetpack/modules/shortcodes/googleapps.php'),
(2171, 'wp-content/plugins/jetpack/modules/shortcodes/googlemaps.php'),
(2172, 'wp-content/plugins/jetpack/modules/shortcodes/googleplus.php'),
(2173, 'wp-content/plugins/jetpack/modules/shortcodes/googlevideo.php'),
(2174, 'wp-content/plugins/jetpack/modules/shortcodes/gravatar.php'),
(2175, 'wp-content/plugins/jetpack/modules/shortcodes/houzz.php'),
(2176, 'wp-content/plugins/jetpack/modules/shortcodes/hulu.php'),
(2177, 'wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png'),
(2178, 'wp-content/plugins/jetpack/modules/shortcodes/images/expand.png'),
(2179, 'wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png'),
(2180, 'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png'),
(2181, 'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png'),
(2182, 'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-loader.gif'),
(2183, 'wp-content/plugins/jetpack/modules/shortcodes/instagram.php'),
(2184, 'wp-content/plugins/jetpack/modules/shortcodes/js/brightcove.js'),
(2185, 'wp-content/plugins/jetpack/modules/shortcodes/js/gist.js'),
(2186, 'wp-content/plugins/jetpack/modules/shortcodes/js/instagram.js'),
(2187, 'wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.js'),
(2188, 'wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.min.js'),
(2189, 'wp-content/plugins/jetpack/modules/shortcodes/js/jquery.cycle.min.js'),
(2190, 'wp-content/plugins/jetpack/modules/shortcodes/js/main.js'),
(2191, 'wp-content/plugins/jetpack/modules/shortcodes/js/quiz.js'),
(2192, 'wp-content/plugins/jetpack/modules/shortcodes/js/recipes-printthis.js'),
(2193, 'wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js'),
(2194, 'wp-content/plugins/jetpack/modules/shortcodes/js/slideshow-shortcode.js'),
(2195, 'wp-content/plugins/jetpack/modules/shortcodes/kickstarter.php'),
(2196, 'wp-content/plugins/jetpack/modules/shortcodes/lytro.php'),
(2197, 'wp-content/plugins/jetpack/modules/shortcodes/mailchimp.php'),
(2198, 'wp-content/plugins/jetpack/modules/shortcodes/medium.php'),
(2199, 'wp-content/plugins/jetpack/modules/shortcodes/mixcloud.php'),
(2200, 'wp-content/plugins/jetpack/modules/shortcodes/pinterest.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2201, 'wp-content/plugins/jetpack/modules/shortcodes/polldaddy.php'),
(2202, 'wp-content/plugins/jetpack/modules/shortcodes/presentations.php'),
(2203, 'wp-content/plugins/jetpack/modules/shortcodes/quiz.php'),
(2204, 'wp-content/plugins/jetpack/modules/shortcodes/recipe.php'),
(2205, 'wp-content/plugins/jetpack/modules/shortcodes/scribd.php'),
(2206, 'wp-content/plugins/jetpack/modules/shortcodes/sitemap.php'),
(2207, 'wp-content/plugins/jetpack/modules/shortcodes/slideshare.php'),
(2208, 'wp-content/plugins/jetpack/modules/shortcodes/slideshow.php'),
(2209, 'wp-content/plugins/jetpack/modules/shortcodes/soundcloud.php'),
(2210, 'wp-content/plugins/jetpack/modules/shortcodes/spotify.php'),
(2211, 'wp-content/plugins/jetpack/modules/shortcodes/ted.php'),
(2212, 'wp-content/plugins/jetpack/modules/shortcodes/tweet.php'),
(2213, 'wp-content/plugins/jetpack/modules/shortcodes/twitchtv.php'),
(2214, 'wp-content/plugins/jetpack/modules/shortcodes/twitter-timeline.php'),
(2215, 'wp-content/plugins/jetpack/modules/shortcodes/unavailable.php'),
(2216, 'wp-content/plugins/jetpack/modules/shortcodes/untappd-menu.php'),
(2217, 'wp-content/plugins/jetpack/modules/shortcodes/upcoming-events.php'),
(2218, 'wp-content/plugins/jetpack/modules/shortcodes/ustream.php'),
(2219, 'wp-content/plugins/jetpack/modules/shortcodes/videopress.php'),
(2220, 'wp-content/plugins/jetpack/modules/shortcodes/vimeo.php'),
(2221, 'wp-content/plugins/jetpack/modules/shortcodes/vine.php'),
(2222, 'wp-content/plugins/jetpack/modules/shortcodes/vr.php'),
(2223, 'wp-content/plugins/jetpack/modules/shortcodes/wufoo.php'),
(2224, 'wp-content/plugins/jetpack/modules/shortcodes/youtube.php'),
(2225, 'wp-content/plugins/jetpack/modules/shortcodes.php'),
(2226, 'wp-content/plugins/jetpack/modules/shortlinks.php'),
(2227, 'wp-content/plugins/jetpack/modules/site-icon/site-icon-functions.php'),
(2228, 'wp-content/plugins/jetpack/modules/site-icon.php'),
(2229, 'wp-content/plugins/jetpack/modules/sitemaps/sitemap-xsl.php'),
(2230, 'wp-content/plugins/jetpack/modules/sitemaps/sitemaps.php'),
(2231, 'wp-content/plugins/jetpack/modules/sitemaps.php'),
(2232, 'wp-content/plugins/jetpack/modules/social-links.php'),
(2233, 'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-helpers.php'),
(2234, 'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-notices.php'),
(2235, 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css'),
(2236, 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.min.css'),
(2237, 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.css'),
(2238, 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.js'),
(2239, 'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.min.css'),
(2240, 'wp-content/plugins/jetpack/modules/sso.php'),
(2241, 'wp-content/plugins/jetpack/modules/stats.php'),
(2242, 'wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css'),
(2243, 'wp-content/plugins/jetpack/modules/subscriptions.php'),
(2244, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen-rtl.css'),
(2245, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.css'),
(2246, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.php'),
(2247, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen-rtl.css'),
(2248, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.css'),
(2249, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.php'),
(2250, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen-rtl.css'),
(2251, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.css'),
(2252, 'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.php'),
(2253, 'wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php'),
(2254, 'wp-content/plugins/jetpack/modules/theme-tools/content-options/blog-display.php'),
(2255, 'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.js'),
(2256, 'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.php'),
(2257, 'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images.php'),
(2258, 'wp-content/plugins/jetpack/modules/theme-tools/content-options/post-details.php'),
(2259, 'wp-content/plugins/jetpack/modules/theme-tools/content-options.php'),
(2260, 'wp-content/plugins/jetpack/modules/theme-tools/featured-content.php'),
(2261, 'wp-content/plugins/jetpack/modules/theme-tools/infinite-scroll.php'),
(2262, 'wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js'),
(2263, 'wp-content/plugins/jetpack/modules/theme-tools/random-redirect.php'),
(2264, 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.css'),
(2265, 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.js'),
(2266, 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.min.js'),
(2267, 'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos.php'),
(2268, 'wp-content/plugins/jetpack/modules/theme-tools/site-breadcrumbs.php'),
(2269, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.css'),
(2270, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.min.css'),
(2271, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.css'),
(2272, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.min.css'),
(2273, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo-control.php'),
(2274, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo.php'),
(2275, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/compat.php'),
(2276, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/functions.php'),
(2277, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.js'),
(2278, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.min.js'),
(2279, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js'),
(2280, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.min.js'),
(2281, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.js'),
(2282, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.min.js'),
(2283, 'wp-content/plugins/jetpack/modules/theme-tools/site-logo.php'),
(2284, 'wp-content/plugins/jetpack/modules/theme-tools/social-links.php'),
(2285, 'wp-content/plugins/jetpack/modules/theme-tools/social-menu/icon-functions.php'),
(2286, 'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.css'),
(2287, 'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.svg'),
(2288, 'wp-content/plugins/jetpack/modules/theme-tools/social-menu.php'),
(2289, 'wp-content/plugins/jetpack/modules/theme-tools.php'),
(2290, 'wp-content/plugins/jetpack/modules/tiled-gallery/math/class-constrained-array-rounding.php'),
(2291, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl/tiled-gallery-rtl.css'),
(2292, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/carousel-container.php'),
(2293, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/circle-layout.php'),
(2294, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/carousel-image-args.php'),
(2295, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/item.php'),
(2296, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php'),
(2297, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/square-layout.php'),
(2298, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php'),
(2299, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php'),
(2300, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2301, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rectangular.php'),
(2302, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-shape.php'),
(2303, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-square.php'),
(2304, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.css'),
(2305, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.js'),
(2306, 'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery.php'),
(2307, 'wp-content/plugins/jetpack/modules/tiled-gallery.php'),
(2308, 'wp-content/plugins/jetpack/modules/tonesque.php'),
(2309, 'wp-content/plugins/jetpack/modules/vaultpress.php'),
(2310, 'wp-content/plugins/jetpack/modules/verification-tools/blog-verification-tools.php'),
(2311, 'wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php'),
(2312, 'wp-content/plugins/jetpack/modules/verification-tools.php'),
(2313, 'wp-content/plugins/jetpack/modules/videopress/class.jetpack-videopress.php'),
(2314, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-ajax.php'),
(2315, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-cli.php'),
(2316, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-edit-attachment.php'),
(2317, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-options.php'),
(2318, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-player.php'),
(2319, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-scheduler.php'),
(2320, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-video.php'),
(2321, 'wp-content/plugins/jetpack/modules/videopress/class.videopress-xmlrpc.php'),
(2322, 'wp-content/plugins/jetpack/modules/videopress/css/editor.css'),
(2323, 'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.css'),
(2324, 'wp-content/plugins/jetpack/modules/videopress/editor-media-view.php'),
(2325, 'wp-content/plugins/jetpack/modules/videopress/js/editor-view.js'),
(2326, 'wp-content/plugins/jetpack/modules/videopress/js/videopress-plupload.js'),
(2327, 'wp-content/plugins/jetpack/modules/videopress/js/videopress-uploader.js'),
(2328, 'wp-content/plugins/jetpack/modules/videopress/shortcode.php'),
(2329, 'wp-content/plugins/jetpack/modules/videopress/utility-functions.php'),
(2330, 'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.css'),
(2331, 'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.min.css'),
(2332, 'wp-content/plugins/jetpack/modules/videopress/videopress-admin.css'),
(2333, 'wp-content/plugins/jetpack/modules/videopress/videopress-admin.min.css'),
(2334, 'wp-content/plugins/jetpack/modules/videopress.php'),
(2335, 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl/widget-conditions-rtl.css'),
(2336, 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.css'),
(2337, 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.min.css'),
(2338, 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.css'),
(2339, 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.js'),
(2340, 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.min.css'),
(2341, 'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions.php'),
(2342, 'wp-content/plugins/jetpack/modules/widget-visibility.php'),
(2343, 'wp-content/plugins/jetpack/modules/widgets/authors/style.css'),
(2344, 'wp-content/plugins/jetpack/modules/widgets/authors.php'),
(2345, 'wp-content/plugins/jetpack/modules/widgets/blog-stats.php'),
(2346, 'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-admin.js'),
(2347, 'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-map.css'),
(2348, 'wp-content/plugins/jetpack/modules/widgets/contact-info.php'),
(2349, 'wp-content/plugins/jetpack/modules/widgets/customizer-controls.css'),
(2350, 'wp-content/plugins/jetpack/modules/widgets/customizer-utils.js'),
(2351, 'wp-content/plugins/jetpack/modules/widgets/facebook-likebox/style.css'),
(2352, 'wp-content/plugins/jetpack/modules/widgets/facebook-likebox.php'),
(2353, 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.css'),
(2354, 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.min.css'),
(2355, 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.css'),
(2356, 'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.min.css'),
(2357, 'wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl/admin-rtl.css'),
(2358, 'wp-content/plugins/jetpack/modules/widgets/gallery/js/admin.js'),
(2359, 'wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js'),
(2360, 'wp-content/plugins/jetpack/modules/widgets/gallery/templates/form.php'),
(2361, 'wp-content/plugins/jetpack/modules/widgets/gallery.php'),
(2362, 'wp-content/plugins/jetpack/modules/widgets/goodreads/css/goodreads.css'),
(2363, 'wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl/goodreads-rtl.css'),
(2364, 'wp-content/plugins/jetpack/modules/widgets/goodreads.php'),
(2365, 'wp-content/plugins/jetpack/modules/widgets/google-plus/js/admin.js'),
(2366, 'wp-content/plugins/jetpack/modules/widgets/google-translate/google-translate.js'),
(2367, 'wp-content/plugins/jetpack/modules/widgets/google-translate.php'),
(2368, 'wp-content/plugins/jetpack/modules/widgets/googleplus-badge.php'),
(2369, 'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.css'),
(2370, 'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.php'),
(2371, 'wp-content/plugins/jetpack/modules/widgets/image-widget/style.css'),
(2372, 'wp-content/plugins/jetpack/modules/widgets/image-widget.php'),
(2373, 'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.js'),
(2374, 'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.php'),
(2375, 'wp-content/plugins/jetpack/modules/widgets/milestone/style-admin.css'),
(2376, 'wp-content/plugins/jetpack/modules/widgets/milestone.php'),
(2377, 'wp-content/plugins/jetpack/modules/widgets/my-community/style.css'),
(2378, 'wp-content/plugins/jetpack/modules/widgets/my-community.php'),
(2379, 'wp-content/plugins/jetpack/modules/widgets/rsslinks-widget.php'),
(2380, 'wp-content/plugins/jetpack/modules/widgets/social-media-icons/style.css'),
(2381, 'wp-content/plugins/jetpack/modules/widgets/social-media-icons.php'),
(2382, 'wp-content/plugins/jetpack/modules/widgets/top-posts/style.css'),
(2383, 'wp-content/plugins/jetpack/modules/widgets/top-posts.php'),
(2384, 'wp-content/plugins/jetpack/modules/widgets/twitter-timeline-admin.js'),
(2385, 'wp-content/plugins/jetpack/modules/widgets/twitter-timeline.php'),
(2386, 'wp-content/plugins/jetpack/modules/widgets/upcoming-events.php'),
(2387, 'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/style.css'),
(2388, 'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget.php'),
(2389, 'wp-content/plugins/jetpack/modules/widgets.php'),
(2390, 'wp-content/plugins/jetpack/modules/wordads/css/style.css'),
(2391, 'wp-content/plugins/jetpack/modules/wordads/php/admin.php'),
(2392, 'wp-content/plugins/jetpack/modules/wordads/php/api.php'),
(2393, 'wp-content/plugins/jetpack/modules/wordads/php/cron.php'),
(2394, 'wp-content/plugins/jetpack/modules/wordads/php/networks/amazon.php'),
(2395, 'wp-content/plugins/jetpack/modules/wordads/php/params.php'),
(2396, 'wp-content/plugins/jetpack/modules/wordads/php/widgets.php'),
(2397, 'wp-content/plugins/jetpack/modules/wordads/wordads.php'),
(2398, 'wp-content/plugins/jetpack/modules/wordads.php'),
(2399, 'wp-content/plugins/jetpack/modules/wpcc.php'),
(2400, 'wp-content/plugins/jetpack/modules/wpgroho.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2401, 'wp-content/plugins/jetpack/readme.txt'),
(2402, 'wp-content/plugins/jetpack/require-lib.php'),
(2403, 'wp-content/plugins/jetpack/rest-api.md'),
(2404, 'wp-content/plugins/jetpack/sal/class.json-api-date.php'),
(2405, 'wp-content/plugins/jetpack/sal/class.json-api-links.php'),
(2406, 'wp-content/plugins/jetpack/sal/class.json-api-metadata.php'),
(2407, 'wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php'),
(2408, 'wp-content/plugins/jetpack/sal/class.json-api-platform.php'),
(2409, 'wp-content/plugins/jetpack/sal/class.json-api-post-base.php'),
(2410, 'wp-content/plugins/jetpack/sal/class.json-api-post-jetpack.php'),
(2411, 'wp-content/plugins/jetpack/sal/class.json-api-site-base.php'),
(2412, 'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack-base.php'),
(2413, 'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack.php'),
(2414, 'wp-content/plugins/jetpack/sal/class.json-api-token.php'),
(2415, 'wp-content/plugins/jetpack/scss/_utilities/_accessibility.scss'),
(2416, 'wp-content/plugins/jetpack/scss/_utilities/_grid.scss'),
(2417, 'wp-content/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss'),
(2418, 'wp-content/plugins/jetpack/scss/atoms/_animations.scss'),
(2419, 'wp-content/plugins/jetpack/scss/atoms/_buttons.scss'),
(2420, 'wp-content/plugins/jetpack/scss/atoms/colors/_colors.scss'),
(2421, 'wp-content/plugins/jetpack/scss/atoms/icons/_automatticons.scss'),
(2422, 'wp-content/plugins/jetpack/scss/atoms/typography/_functions.scss'),
(2423, 'wp-content/plugins/jetpack/scss/atoms/typography/_variables.scss'),
(2424, 'wp-content/plugins/jetpack/scss/dashboard-widget.scss'),
(2425, 'wp-content/plugins/jetpack/scss/jetpack-admin-jitm.css'),
(2426, 'wp-content/plugins/jetpack/scss/jetpack-admin-jitm.scss'),
(2427, 'wp-content/plugins/jetpack/scss/jetpack-admin.scss'),
(2428, 'wp-content/plugins/jetpack/scss/jetpack-banners.scss'),
(2429, 'wp-content/plugins/jetpack/scss/jetpack-icons.scss'),
(2430, 'wp-content/plugins/jetpack/scss/jetpack-idc-admin-bar.scss'),
(2431, 'wp-content/plugins/jetpack/scss/jetpack-idc.scss'),
(2432, 'wp-content/plugins/jetpack/scss/molecules/_nav-horizontal.scss'),
(2433, 'wp-content/plugins/jetpack/scss/organisms/_banners.scss'),
(2434, 'wp-content/plugins/jetpack/scss/pages/_connection-settings.scss'),
(2435, 'wp-content/plugins/jetpack/scss/pages/_manage.scss'),
(2436, 'wp-content/plugins/jetpack/scss/pages/_protect.scss'),
(2437, 'wp-content/plugins/jetpack/scss/templates/_connection-landing.scss'),
(2438, 'wp-content/plugins/jetpack/scss/templates/_main.scss'),
(2439, 'wp-content/plugins/jetpack/scss/templates/_settings.scss'),
(2440, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-actions.php'),
(2441, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-defaults.php'),
(2442, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-functions.php'),
(2443, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-json-deflate-array-codec.php'),
(2444, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-listener.php'),
(2445, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-attachments.php'),
(2446, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-callables.php'),
(2447, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-comments.php'),
(2448, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-constants.php'),
(2449, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-full-sync.php'),
(2450, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-meta.php'),
(2451, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-network-options.php'),
(2452, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-options.php'),
(2453, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-plugins.php'),
(2454, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-posts.php'),
(2455, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-protect.php'),
(2456, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-stats.php'),
(2457, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-terms.php'),
(2458, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-themes.php'),
(2459, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-updates.php'),
(2460, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-users.php'),
(2461, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-woocommerce.php'),
(2462, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-module.php'),
(2463, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-modules.php'),
(2464, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-options.php'),
(2465, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-queue.php'),
(2466, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-sender.php'),
(2467, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-server.php'),
(2468, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-settings.php'),
(2469, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-users.php'),
(2470, 'wp-content/plugins/jetpack/sync/class.jetpack-sync-wp-replicastore.php'),
(2471, 'wp-content/plugins/jetpack/sync/interface.jetpack-sync-codec.php'),
(2472, 'wp-content/plugins/jetpack/sync/interface.jetpack-sync-replicastore.php'),
(2473, 'wp-content/plugins/jetpack/uninstall.php'),
(2474, 'wp-content/plugins/jetpack/views/admin/must-connect-main-blog.php'),
(2475, 'wp-content/plugins/jetpack/views/admin/my-jetpack-page.php'),
(2476, 'wp-content/plugins/jetpack/views/admin/network-activated-notice.php'),
(2477, 'wp-content/plugins/jetpack/views/admin/network-admin-alert.php'),
(2478, 'wp-content/plugins/jetpack/views/admin/network-admin-footer.php'),
(2479, 'wp-content/plugins/jetpack/views/admin/network-admin-header.php'),
(2480, 'wp-content/plugins/jetpack/views/admin/network-settings.php'),
(2481, 'wp-content/plugins/jetpack/webpack.config.js'),
(2482, 'wp-content/plugins/jetpack/wpml-config.xml'),
(2483, 'wp-content/plugins/js_composer/assets/js/dist/backend-actions.min.js'),
(2484, 'wp-content/plugins/js_composer/assets/js/dist/edit-form.min.js'),
(2485, 'wp-content/plugins/js_composer/assets/js/dist/frontend-editor.min.js'),
(2486, 'wp-content/plugins/js_composer/assets/js/dist/grid-builder.min.js'),
(2487, 'wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js'),
(2488, 'wp-content/plugins/js_composer/assets/js/dist/page_editable.min.js'),
(2489, 'wp-content/plugins/js_composer/assets/js/dist/vc_grid.min.js'),
(2490, 'wp-content/plugins/js_composer/assets/js/editors/templates-preview.js'),
(2491, 'wp-content/plugins/js_composer/assets/js/frontend_editor/vendors/plugins/jwplayer.js'),
(2492, 'wp-content/plugins/js_composer/assets/js/vendors/advanced_custom_fields.js'),
(2493, 'wp-content/plugins/js_composer/assets/js/vendors/qtranslate_backend.js'),
(2494, 'wp-content/plugins/js_composer/assets/js/vendors/qtranslate_frontend.js'),
(2495, 'wp-content/plugins/js_composer/assets/js/vendors/qtranslatex_backend.js'),
(2496, 'wp-content/plugins/js_composer/assets/js/vendors/qtranslatex_frontend.js'),
(2497, 'wp-content/plugins/js_composer/assets/js/vendors/woocommerce-add-to-cart.js'),
(2498, 'wp-content/plugins/js_composer/assets/js/vendors/woocommerce.js'),
(2499, 'wp-content/plugins/js_composer/assets/js/vendors/yoast.js'),
(2500, 'wp-content/plugins/js_composer/assets/lib/bower/ace-builds/src-min-noconflict/mode-css.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2501, 'wp-content/plugins/js_composer/assets/lib/bower/ace-builds/src-min-noconflict/theme-chrome.js'),
(2502, 'wp-content/plugins/js_composer/assets/lib/bower/ace-builds/src-min-noconflict/worker-css.js'),
(2503, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/dist/js/bootstrap.min.js'),
(2504, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/affix.min.js'),
(2505, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/alert.min.js'),
(2506, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/button.min.js'),
(2507, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/carousel.min.js'),
(2508, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/collapse.min.js'),
(2509, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/dropdown.min.js'),
(2510, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/modal.min.js'),
(2511, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/popover.min.js'),
(2512, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/scrollspy.min.js'),
(2513, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/tab.min.js'),
(2514, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/tooltip.min.js'),
(2515, 'wp-content/plugins/js_composer/assets/lib/bower/bootstrap3/js/transition.min.js'),
(2516, 'wp-content/plugins/js_composer/assets/lib/bower/chartjs/Chart.min.js'),
(2517, 'wp-content/plugins/js_composer/assets/lib/bower/flexslider/jquery.flexslider-min.js'),
(2518, 'wp-content/plugins/js_composer/assets/lib/bower/imagesloaded/imagesloaded.pkgd.min.js'),
(2519, 'wp-content/plugins/js_composer/assets/lib/bower/jquery-ui-tabs-rotate/jquery-ui-tabs-rotate.min.js'),
(2520, 'wp-content/plugins/js_composer/assets/lib/bower/json-js/json2.min.js'),
(2521, 'wp-content/plugins/js_composer/assets/lib/bower/lessjs/dist/less.min.js'),
(2522, 'wp-content/plugins/js_composer/assets/lib/bower/masonry/dist/masonry.pkgd.min.js'),
(2523, 'wp-content/plugins/js_composer/assets/lib/bower/nivoslider/jquery.nivo.slider.pack.js'),
(2524, 'wp-content/plugins/js_composer/assets/lib/bower/progress-circle/ProgressCircle.min.js'),
(2525, 'wp-content/plugins/js_composer/assets/lib/bower/scrollTo/jquery.scrollTo.min.js'),
(2526, 'wp-content/plugins/js_composer/assets/lib/bower/skrollr/dist/skrollr.min.js'),
(2527, 'wp-content/plugins/js_composer/assets/lib/bower/twbs-pagination/jquery.twbsPagination.min.js'),
(2528, 'wp-content/plugins/js_composer/assets/lib/bower/vcIconPicker/jquery.fonticonpicker.min.js'),
(2529, 'wp-content/plugins/js_composer/assets/lib/bower/zoom/jquery.zoom.min.js'),
(2530, 'wp-content/plugins/js_composer/assets/lib/owl-carousel2-dist/owl.carousel.min.js'),
(2531, 'wp-content/plugins/js_composer/assets/lib/php.default/php.default.min.js'),
(2532, 'wp-content/plugins/js_composer/assets/lib/prettyphoto/js/jquery.prettyPhoto.min.js'),
(2533, 'wp-content/plugins/js_composer/assets/lib/vc-tta-autoplay/vc-tta-autoplay.min.js'),
(2534, 'wp-content/plugins/js_composer/assets/lib/vc_accordion/vc-accordion.min.js'),
(2535, 'wp-content/plugins/js_composer/assets/lib/vc_carousel/js/transition.min.js'),
(2536, 'wp-content/plugins/js_composer/assets/lib/vc_chart/jquery.vc_chart.min.js'),
(2537, 'wp-content/plugins/js_composer/assets/lib/vc_image_zoom/vc_image_zoom.min.js'),
(2538, 'wp-content/plugins/js_composer/assets/lib/vc_line_chart/vc_line_chart.min.js'),
(2539, 'wp-content/plugins/js_composer/assets/lib/vc_round_chart/vc_round_chart.min.js'),
(2540, 'wp-content/plugins/js_composer/assets/lib/vc_tabs/vc-tabs.min.js'),
(2541, 'wp-content/plugins/js_composer/assets/lib/waypoints/waypoints.min.js'),
(2542, 'wp-content/plugins/js_composer/config/buttons/shortcode-vc-btn.php'),
(2543, 'wp-content/plugins/js_composer/config/buttons/shortcode-vc-cta.php'),
(2544, 'wp-content/plugins/js_composer/config/containers/shortcode-vc-column-inner.php'),
(2545, 'wp-content/plugins/js_composer/config/containers/shortcode-vc-column.php'),
(2546, 'wp-content/plugins/js_composer/config/containers/shortcode-vc-row-inner.php'),
(2547, 'wp-content/plugins/js_composer/config/containers/shortcode-vc-row.php'),
(2548, 'wp-content/plugins/js_composer/config/content/shortcode-vc-column-text.php'),
(2549, 'wp-content/plugins/js_composer/config/content/shortcode-vc-custom-heading.php'),
(2550, 'wp-content/plugins/js_composer/config/content/shortcode-vc-empty-space.php'),
(2551, 'wp-content/plugins/js_composer/config/content/shortcode-vc-flickr.php'),
(2552, 'wp-content/plugins/js_composer/config/content/shortcode-vc-gallery.php'),
(2553, 'wp-content/plugins/js_composer/config/content/shortcode-vc-gmaps.php'),
(2554, 'wp-content/plugins/js_composer/config/content/shortcode-vc-icon.php'),
(2555, 'wp-content/plugins/js_composer/config/content/shortcode-vc-images-carousel.php'),
(2556, 'wp-content/plugins/js_composer/config/content/shortcode-vc-line-chart.php'),
(2557, 'wp-content/plugins/js_composer/config/content/shortcode-vc-message.php'),
(2558, 'wp-content/plugins/js_composer/config/content/shortcode-vc-pie.php'),
(2559, 'wp-content/plugins/js_composer/config/content/shortcode-vc-posts-slider.php'),
(2560, 'wp-content/plugins/js_composer/config/content/shortcode-vc-progress-bar.php'),
(2561, 'wp-content/plugins/js_composer/config/content/shortcode-vc-separator.php'),
(2562, 'wp-content/plugins/js_composer/config/content/shortcode-vc-single-image.php'),
(2563, 'wp-content/plugins/js_composer/config/content/shortcode-vc-text-separator.php'),
(2564, 'wp-content/plugins/js_composer/config/content/shortcode-vc-toggle.php'),
(2565, 'wp-content/plugins/js_composer/config/content/shortcode-vc-video.php'),
(2566, 'wp-content/plugins/js_composer/config/content/vc-custom-heading-element.php'),
(2567, 'wp-content/plugins/js_composer/config/content/vc-icon-element.php'),
(2568, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-accordion-tab.php'),
(2569, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-accordion.php'),
(2570, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-button.php'),
(2571, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-button2.php'),
(2572, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-carousel.php'),
(2573, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-cta-button.php'),
(2574, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-cta-button2.php'),
(2575, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-posts-grid.php'),
(2576, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-tab.php'),
(2577, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-tabs.php'),
(2578, 'wp-content/plugins/js_composer/config/deprecated/shortcode-vc-tour.php'),
(2579, 'wp-content/plugins/js_composer/config/grids/class-vc-grids-common.php'),
(2580, 'wp-content/plugins/js_composer/config/grids/shortcode-vc-basic-grid.php'),
(2581, 'wp-content/plugins/js_composer/config/grids/shortcode-vc-masonry-grid.php'),
(2582, 'wp-content/plugins/js_composer/config/grids/shortcode-vc-masonry-media-grid.php'),
(2583, 'wp-content/plugins/js_composer/config/grids/shortcode-vc-media-grid.php'),
(2584, 'wp-content/plugins/js_composer/config/grids/vc-grids-functions.php'),
(2585, 'wp-content/plugins/js_composer/config/lean-map.php'),
(2586, 'wp-content/plugins/js_composer/config/social/shortcode-vc-facebook.php'),
(2587, 'wp-content/plugins/js_composer/config/social/shortcode-vc-googleplus.php'),
(2588, 'wp-content/plugins/js_composer/config/social/shortcode-vc-pinterest.php'),
(2589, 'wp-content/plugins/js_composer/config/social/shortcode-vc-tweetmeme.php'),
(2590, 'wp-content/plugins/js_composer/config/structure/shortcode-vc-raw-html.php'),
(2591, 'wp-content/plugins/js_composer/config/structure/shortcode-vc-raw-js.php'),
(2592, 'wp-content/plugins/js_composer/config/structure/shortcode-vc-widget-sidebar.php'),
(2593, 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-accordion.php'),
(2594, 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-pageable.php'),
(2595, 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-tabs.php'),
(2596, 'wp-content/plugins/js_composer/config/tta/shortcode-vc-tta-tour.php'),
(2597, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-calendar.php'),
(2598, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-categories.php'),
(2599, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-custommenu.php'),
(2600, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-links.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2601, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-meta.php'),
(2602, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-pages.php'),
(2603, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-posts.php'),
(2604, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-recentcomments.php'),
(2605, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-rss.php'),
(2606, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-search.php'),
(2607, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-tagcloud.php'),
(2608, 'wp-content/plugins/js_composer/config/wp/shortcode-vc-wp-text.php'),
(2609, 'wp-content/plugins/js_composer/include/autoload/backend-editor-ie.php'),
(2610, 'wp-content/plugins/js_composer/include/autoload/bc-access-rules-4.8.php'),
(2611, 'wp-content/plugins/js_composer/include/autoload/class-vc-settings-presets.php'),
(2612, 'wp-content/plugins/js_composer/include/autoload/class-vc-vendor-presets.php'),
(2613, 'wp-content/plugins/js_composer/include/autoload/frontend-editor-ie.php'),
(2614, 'wp-content/plugins/js_composer/include/autoload/hook-vc-iconpicker-param.php'),
(2615, 'wp-content/plugins/js_composer/include/autoload/hook-vc-message.php'),
(2616, 'wp-content/plugins/js_composer/include/autoload/hook-vc-pie.php'),
(2617, 'wp-content/plugins/js_composer/include/autoload/hook-vc-progress-bar.php'),
(2618, 'wp-content/plugins/js_composer/include/autoload/hook-vc-wp-text.php'),
(2619, 'wp-content/plugins/js_composer/include/autoload/params/hidden.php'),
(2620, 'wp-content/plugins/js_composer/include/autoload/params/vc_grid_item.php'),
(2621, 'wp-content/plugins/js_composer/include/autoload/params-to-init.php'),
(2622, 'wp-content/plugins/js_composer/include/autoload/post-type-default-template.php'),
(2623, 'wp-content/plugins/js_composer/include/autoload/ui-vc-pointers.php'),
(2624, 'wp-content/plugins/js_composer/include/autoload/vc-grid-item-editor.php'),
(2625, 'wp-content/plugins/js_composer/include/autoload/vc-image-filters.php'),
(2626, 'wp-content/plugins/js_composer/include/autoload/vc-pages/page-custom-css.php'),
(2627, 'wp-content/plugins/js_composer/include/autoload/vc-pages/page-design-options.php'),
(2628, 'wp-content/plugins/js_composer/include/autoload/vc-pages/page-role-manager.php'),
(2629, 'wp-content/plugins/js_composer/include/autoload/vc-pages/pages.php'),
(2630, 'wp-content/plugins/js_composer/include/autoload/vc-pages/settings-tabs.php'),
(2631, 'wp-content/plugins/js_composer/include/autoload/vc-pointers-backend-editor.php'),
(2632, 'wp-content/plugins/js_composer/include/autoload/vc-pointers-frontend-editor.php'),
(2633, 'wp-content/plugins/js_composer/include/autoload/vc-settings-presets.php'),
(2634, 'wp-content/plugins/js_composer/include/autoload/vc-shortcode-autoloader.php'),
(2635, 'wp-content/plugins/js_composer/include/autoload/vc-single-image.php'),
(2636, 'wp-content/plugins/js_composer/include/autoload/vendors/cf7.php'),
(2637, 'wp-content/plugins/js_composer/include/autoload/vendors/jwplayer.php'),
(2638, 'wp-content/plugins/js_composer/include/autoload/vendors/layerslider.php'),
(2639, 'wp-content/plugins/js_composer/include/autoload/vendors/mqtranslate.php'),
(2640, 'wp-content/plugins/js_composer/include/autoload/vendors/ninja_forms.php'),
(2641, 'wp-content/plugins/js_composer/include/autoload/vendors/qtranslate-x.php'),
(2642, 'wp-content/plugins/js_composer/include/autoload/vendors/qtranslate.php'),
(2643, 'wp-content/plugins/js_composer/include/autoload/vendors/revslider.php'),
(2644, 'wp-content/plugins/js_composer/include/autoload/vendors/woocommerce.php'),
(2645, 'wp-content/plugins/js_composer/include/autoload/vendors/wp_customize.php'),
(2646, 'wp-content/plugins/js_composer/include/autoload/vendors/wpml.php'),
(2647, 'wp-content/plugins/js_composer/include/autoload/vendors/yoast_seo.php'),
(2648, 'wp-content/plugins/js_composer/include/classes/core/access/abstract-class-vc-access.php'),
(2649, 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-current-user-access-controller.php'),
(2650, 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-current-user-access.php'),
(2651, 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-role-access-controller.php'),
(2652, 'wp-content/plugins/js_composer/include/classes/core/access/class-vc-role-access.php'),
(2653, 'wp-content/plugins/js_composer/include/classes/core/class-vc-base.php'),
(2654, 'wp-content/plugins/js_composer/include/classes/core/class-vc-mapper.php'),
(2655, 'wp-content/plugins/js_composer/include/classes/core/class-vc-page.php'),
(2656, 'wp-content/plugins/js_composer/include/classes/core/class-vc-pages-group.php'),
(2657, 'wp-content/plugins/js_composer/include/classes/core/class-vc-post-admin.php'),
(2658, 'wp-content/plugins/js_composer/include/classes/core/class-vc-shared-library.php'),
(2659, 'wp-content/plugins/js_composer/include/classes/core/class-vc-sort.php'),
(2660, 'wp-content/plugins/js_composer/include/classes/core/class-wpb-map.php'),
(2661, 'wp-content/plugins/js_composer/include/classes/core/interfaces.php'),
(2662, 'wp-content/plugins/js_composer/include/classes/editors/class-vc-backend-editor.php'),
(2663, 'wp-content/plugins/js_composer/include/classes/editors/class-vc-edit-form-fields.php'),
(2664, 'wp-content/plugins/js_composer/include/classes/editors/navbar/class-vc-navbar-frontend.php'),
(2665, 'wp-content/plugins/js_composer/include/classes/editors/navbar/class-vc-navbar.php'),
(2666, 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-add-element-box.php'),
(2667, 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-edit-layout.php'),
(2668, 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-post-settings.php'),
(2669, 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-shortcode-edit-form.php'),
(2670, 'wp-content/plugins/js_composer/include/classes/editors/popups/class-vc-templates-panel-editor.php'),
(2671, 'wp-content/plugins/js_composer/include/classes/settings/class-vc-automapper.php'),
(2672, 'wp-content/plugins/js_composer/include/classes/settings/class-vc-license.php'),
(2673, 'wp-content/plugins/js_composer/include/classes/settings/class-vc-roles.php'),
(2674, 'wp-content/plugins/js_composer/include/classes/shortcodes/example.php'),
(2675, 'wp-content/plugins/js_composer/include/classes/shortcodes/layerslider-vc.php'),
(2676, 'wp-content/plugins/js_composer/include/classes/shortcodes/paginator/class-vc-pageable.php'),
(2677, 'wp-content/plugins/js_composer/include/classes/shortcodes/rev-slider-vc.php'),
(2678, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-accordion-tab.php'),
(2679, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-accordion.php'),
(2680, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-basic-grid.php'),
(2681, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-btn.php'),
(2682, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-button.php'),
(2683, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-button2.php'),
(2684, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-carousel.php'),
(2685, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-column-inner.php'),
(2686, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-column-text.php'),
(2687, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-cta-button.php'),
(2688, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-cta-button2.php'),
(2689, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-custom-heading.php'),
(2690, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-empty-space.php'),
(2691, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-facebook.php'),
(2692, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-flickr.php'),
(2693, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gallery.php'),
(2694, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-col.php'),
(2695, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-image.php'),
(2696, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-author.php'),
(2697, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-categories.php'),
(2698, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-data.php'),
(2699, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-date.php'),
(2700, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-excerpt.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2701, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-meta.php'),
(2702, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-post-title.php'),
(2703, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-row.php'),
(2704, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone-a.php'),
(2705, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone-b.php'),
(2706, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone-c.php'),
(2707, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gitem-zone.php'),
(2708, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-gmaps.php'),
(2709, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-googleplus.php'),
(2710, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-icon.php'),
(2711, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-images-carousel.php'),
(2712, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-line-chart.php'),
(2713, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-masonry-grid.php'),
(2714, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-media-grid.php'),
(2715, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-message.php'),
(2716, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-pie.php'),
(2717, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-pinterest.php'),
(2718, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-posts-grid.php'),
(2719, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-posts-slider.php'),
(2720, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-progress-bar.php'),
(2721, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-raw-html.php'),
(2722, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-raw-js.php'),
(2723, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-round-chart.php'),
(2724, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-row-inner.php'),
(2725, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-row.php'),
(2726, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-separator.php'),
(2727, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-single-image.php'),
(2728, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tab.php'),
(2729, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tabs.php'),
(2730, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-text-separator.php'),
(2731, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-toggle.php'),
(2732, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tour.php'),
(2733, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-accordion.php'),
(2734, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-pageable.php'),
(2735, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-section.php'),
(2736, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tta-tour.php'),
(2737, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-tweetmeme.php'),
(2738, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-video.php'),
(2739, 'wp-content/plugins/js_composer/include/classes/shortcodes/vc-widget-sidebar.php'),
(2740, 'wp-content/plugins/js_composer/include/classes/shortcodes/wordpress-widgets.php'),
(2741, 'wp-content/plugins/js_composer/include/classes/updaters/class-vc-updater.php'),
(2742, 'wp-content/plugins/js_composer/include/classes/updaters/class-vc-updating-manager.php'),
(2743, 'wp-content/plugins/js_composer/include/classes/vendors/class-vc-vendors-manager.php'),
(2744, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/class-vc-acf-shortcode.php'),
(2745, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/class-vc-gitem-acf-shortcode.php'),
(2746, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/grid-item-attributes.php'),
(2747, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/grid-item-shortcodes.php'),
(2748, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/acf/shortcode.php'),
(2749, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-advanced-custom-fields.php'),
(2750, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-contact-form7.php'),
(2751, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-jwplayer.php'),
(2752, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-layerslider.php'),
(2753, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-mqtranslate.php'),
(2754, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-ninja-forms.php'),
(2755, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-qtranslate-x.php'),
(2756, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-qtranslate.php'),
(2757, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-revslider.php'),
(2758, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-woocommerce.php'),
(2759, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-wpml.php'),
(2760, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/class-vc-vendor-yoast_seo.php'),
(2761, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/woocommerce/class-vc-gitem-woocommerce-shortcode.php'),
(2762, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/woocommerce/grid-item-attributes.php'),
(2763, 'wp-content/plugins/js_composer/include/classes/vendors/plugins/woocommerce/grid-item-shortcodes.php'),
(2764, 'wp-content/plugins/js_composer/include/helpers/filters.php'),
(2765, 'wp-content/plugins/js_composer/include/helpers/helpers.php'),
(2766, 'wp-content/plugins/js_composer/include/helpers/helpers_api.php'),
(2767, 'wp-content/plugins/js_composer/include/helpers/helpers_factory.php'),
(2768, 'wp-content/plugins/js_composer/include/params/animation_style/animation_style.php'),
(2769, 'wp-content/plugins/js_composer/include/params/autocomplete/autocomplete.php'),
(2770, 'wp-content/plugins/js_composer/include/params/colorpicker/colorpicker.php'),
(2771, 'wp-content/plugins/js_composer/include/params/column_offset/column_offset.php'),
(2772, 'wp-content/plugins/js_composer/include/params/css_editor/css_editor.php'),
(2773, 'wp-content/plugins/js_composer/include/params/custom_markup/custom_markup.php'),
(2774, 'wp-content/plugins/js_composer/include/params/default_params.php'),
(2775, 'wp-content/plugins/js_composer/include/params/el_id/el_id.php'),
(2776, 'wp-content/plugins/js_composer/include/params/google_fonts/google_fonts.php'),
(2777, 'wp-content/plugins/js_composer/include/params/hidden/hidden.php'),
(2778, 'wp-content/plugins/js_composer/include/params/href/href.php'),
(2779, 'wp-content/plugins/js_composer/include/params/iconpicker/iconpicker.php'),
(2780, 'wp-content/plugins/js_composer/include/params/load.php'),
(2781, 'wp-content/plugins/js_composer/include/params/loop/loop.php'),
(2782, 'wp-content/plugins/js_composer/include/params/options/options.php'),
(2783, 'wp-content/plugins/js_composer/include/params/param_group/param_group.php'),
(2784, 'wp-content/plugins/js_composer/include/params/params.php'),
(2785, 'wp-content/plugins/js_composer/include/params/params_preset/params_preset.php'),
(2786, 'wp-content/plugins/js_composer/include/params/sorted_list/sorted_list.php'),
(2787, 'wp-content/plugins/js_composer/include/params/tab_id/tab_id.php'),
(2788, 'wp-content/plugins/js_composer/include/params/textarea_html/textarea_html.php'),
(2789, 'wp-content/plugins/js_composer/include/params/vc_grid_element/vc_grid_element.php'),
(2790, 'wp-content/plugins/js_composer/include/params/vc_grid_element/vc_grid_id/vc_grid_id.php'),
(2791, 'wp-content/plugins/js_composer/include/params/vc_grid_item/attributes.php'),
(2792, 'wp-content/plugins/js_composer/include/params/vc_grid_item/class-vc-grid-item.php'),
(2793, 'wp-content/plugins/js_composer/include/params/vc_grid_item/class-wpb-map-grid-item.php'),
(2794, 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/class-vc-grid-item-preview.php'),
(2795, 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/navbar/class-vc-navbar-grid-item.php'),
(2796, 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/popups/class-vc-add-element-box-grid-item.php'),
(2797, 'wp-content/plugins/js_composer/include/params/vc_grid_item/editor/popups/class-vc-templates-editor-grid-item.php'),
(2798, 'wp-content/plugins/js_composer/include/params/vc_grid_item/shortcodes.php'),
(2799, 'wp-content/plugins/js_composer/include/params/vc_link/vc_link.php'),
(2800, 'wp-content/plugins/js_composer/include/templates/editors/backend_editor.tpl.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2801, 'wp-content/plugins/js_composer/include/templates/editors/frontend_template.tpl.php'),
(2802, 'wp-content/plugins/js_composer/include/templates/editors/navbar/navbar.tpl.php'),
(2803, 'wp-content/plugins/js_composer/include/templates/editors/partials/add_element_tabs.tpl.php'),
(2804, 'wp-content/plugins/js_composer/include/templates/editors/partials/backend-shortcodes-templates.tpl.php'),
(2805, 'wp-content/plugins/js_composer/include/templates/editors/partials/backend_controls.tpl.php'),
(2806, 'wp-content/plugins/js_composer/include/templates/editors/partials/backend_controls_tab.tpl.php'),
(2807, 'wp-content/plugins/js_composer/include/templates/editors/partials/backend_editor_footer.tpl.php'),
(2808, 'wp-content/plugins/js_composer/include/templates/editors/partials/frontend_controls.tpl.php'),
(2809, 'wp-content/plugins/js_composer/include/templates/editors/partials/post_shortcodes.tpl.php'),
(2810, 'wp-content/plugins/js_composer/include/templates/editors/partials/prompt.tpl.php'),
(2811, 'wp-content/plugins/js_composer/include/templates/editors/partials/settings_presets_popup.tpl.php'),
(2812, 'wp-content/plugins/js_composer/include/templates/editors/partials/templates_search.tpl.php'),
(2813, 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_settings-image-block.tpl.php'),
(2814, 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_ui-presets-dropdown.tpl.php'),
(2815, 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_ui-templates-tabs.tpl.php'),
(2816, 'wp-content/plugins/js_composer/include/templates/editors/partials/vc_welcome_block.tpl.php'),
(2817, 'wp-content/plugins/js_composer/include/templates/editors/popups/modal_edit_element.tpl.php'),
(2818, 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_edit_layout.tpl.php'),
(2819, 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_multi_shortcode_edit_form.tpl.php'),
(2820, 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_post_settings.tpl.php'),
(2821, 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_shortcode_edit_form.tpl.php'),
(2822, 'wp-content/plugins/js_composer/include/templates/editors/popups/panel_templates.tpl.php'),
(2823, 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-footer.tpl.php'),
(2824, 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-header.tpl.php'),
(2825, 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-add-element.tpl.php'),
(2826, 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-edit-element.tpl.php'),
(2827, 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-post-settings.tpl.php'),
(2828, 'wp-content/plugins/js_composer/include/templates/editors/popups/vc_ui-panel-templates.tpl.php'),
(2829, 'wp-content/plugins/js_composer/include/templates/editors/vc_ui-template-preview.tpl.php'),
(2830, 'wp-content/plugins/js_composer/include/templates/pages/partials/_settings_tabs.php'),
(2831, 'wp-content/plugins/js_composer/include/templates/pages/partials/_tabs.php'),
(2832, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_backend_editor.tpl.php'),
(2833, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_frontend_editor.tpl.php'),
(2834, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_grid_builder.tpl.php'),
(2835, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_part.tpl.php'),
(2836, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_post_types.tpl.php'),
(2837, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_presets.tpl.php'),
(2838, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_settings.tpl.php'),
(2839, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_shortcodes.tpl.php'),
(2840, 'wp-content/plugins/js_composer/include/templates/pages/partials/vc-roles-parts/_templates.tpl.php'),
(2841, 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/default-template-post-type.tpl.php'),
(2842, 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/index.php'),
(2843, 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/tab-vc-roles.php'),
(2844, 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/tab.php'),
(2845, 'wp-content/plugins/js_composer/include/templates/pages/vc-settings/vc-automapper.php'),
(2846, 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/index.php'),
(2847, 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/vc-faq.php'),
(2848, 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/vc-resources.php'),
(2849, 'wp-content/plugins/js_composer/include/templates/pages/vc-welcome/vc-welcome.php'),
(2850, 'wp-content/plugins/js_composer/include/templates/params/column_offset/template.tpl.php'),
(2851, 'wp-content/plugins/js_composer/include/templates/params/google_fonts/template.php'),
(2852, 'wp-content/plugins/js_composer/include/templates/params/loop/templates.html'),
(2853, 'wp-content/plugins/js_composer/include/templates/params/options/templates.html'),
(2854, 'wp-content/plugins/js_composer/include/templates/params/param_group/add.tpl.php'),
(2855, 'wp-content/plugins/js_composer/include/templates/params/param_group/content.tpl.php'),
(2856, 'wp-content/plugins/js_composer/include/templates/params/param_group/inner_content.tpl.php'),
(2857, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/attributes/featured_image.php'),
(2858, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/attributes/post_categories.php'),
(2859, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/attributes/vc_btn.php'),
(2860, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/editor/partials/vc_grid_item_editor_footer.tpl.php'),
(2861, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/editor/vc_grid_item_editor.tpl.php'),
(2862, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/editor/vc_ui-template-preview.tpl.php'),
(2863, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/preview.tpl.php'),
(2864, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_btn.php'),
(2865, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_button2.php'),
(2866, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_custom_heading.php'),
(2867, 'wp-content/plugins/js_composer/include/templates/params/vc_grid_item/shortcodes/vc_icon.php'),
(2868, 'wp-content/plugins/js_composer/include/templates/shortcodes/layerslider_vc.php'),
(2869, 'wp-content/plugins/js_composer/include/templates/shortcodes/post_block/_item.php'),
(2870, 'wp-content/plugins/js_composer/include/templates/shortcodes/rev_slider_vc.php'),
(2871, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_accordion.php'),
(2872, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_accordion_tab.php'),
(2873, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_basic_grid.php'),
(2874, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_basic_grid_filter.php'),
(2875, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_button.php'),
(2876, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_button2.php'),
(2877, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_carousel.php'),
(2878, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_column.php'),
(2879, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_column_inner.php'),
(2880, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_column_text.php'),
(2881, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_cta.php'),
(2882, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_cta_button.php'),
(2883, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_cta_button2.php'),
(2884, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_custom_field.php'),
(2885, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_custom_heading.php'),
(2886, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_empty_space.php'),
(2887, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_facebook.php'),
(2888, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_flickr.php'),
(2889, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gallery.php'),
(2890, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem.php'),
(2891, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_animated_block.php'),
(2892, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_block.php'),
(2893, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_col.php'),
(2894, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_image.php'),
(2895, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_author.php'),
(2896, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_categories.php'),
(2897, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_data.php'),
(2898, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_post_meta.php'),
(2899, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_row.php'),
(2900, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_zone.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(2901, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gitem_zone_c.php'),
(2902, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_gmaps.php'),
(2903, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_googleplus.php'),
(2904, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_icon.php'),
(2905, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_images_carousel.php'),
(2906, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_item.php'),
(2907, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_items.php'),
(2908, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_line_chart.php'),
(2909, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_message.php'),
(2910, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_pie.php'),
(2911, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_pinterest.php'),
(2912, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_posts_grid.php'),
(2913, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_raw_html.php'),
(2914, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_round_chart.php'),
(2915, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_row.php'),
(2916, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_row_inner.php'),
(2917, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_separator.php'),
(2918, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tab.php'),
(2919, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tabs.php'),
(2920, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_text_separator.php'),
(2921, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_toggle.php'),
(2922, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tta_global.php'),
(2923, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tta_pageable_section.php'),
(2924, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_tweetmeme.php'),
(2925, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_video.php'),
(2926, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_widget_sidebar.php'),
(2927, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_archives.php'),
(2928, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_calendar.php'),
(2929, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_categories.php'),
(2930, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_custommenu.php'),
(2931, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_links.php'),
(2932, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_meta.php'),
(2933, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_pages.php'),
(2934, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_posts.php'),
(2935, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_rss.php'),
(2936, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_search.php'),
(2937, 'wp-content/plugins/js_composer/include/templates/shortcodes/vc_wp_text.php'),
(2938, 'wp-content/plugins/js_composer/include/templates/teaser.html.php'),
(2939, 'wp-content/plugins/js_composer/index.php'),
(2940, 'wp-content/plugins/js_composer/js_composer.php'),
(2941, 'wp-content/plugins/js_composer/vc_classmap.json.php'),
(2942, 'wp-content/plugins/js_composer/vendor/mmihey/PHP-Instagram-effects/src/Image/Filter.php'),
(2943, 'wp-content/plugins/pdf-embedder/core/core_pdf_embedder.php'),
(2944, 'wp-content/plugins/pdf-embedder/css/pdfemb-admin-other.css'),
(2945, 'wp-content/plugins/pdf-embedder/css/pdfemb-admin.css'),
(2946, 'wp-content/plugins/pdf-embedder/css/pdfemb-embed-pdf.css'),
(2947, 'wp-content/plugins/pdf-embedder/img/ptleftarrow.png'),
(2948, 'wp-content/plugins/pdf-embedder/img/ptrightarrow.png'),
(2949, 'wp-content/plugins/pdf-embedder/img/toolbarButton-download.png'),
(2950, 'wp-content/plugins/pdf-embedder/img/toolbarButton-pageDown.png'),
(2951, 'wp-content/plugins/pdf-embedder/img/toolbarButton-pageUp.png'),
(2952, 'wp-content/plugins/pdf-embedder/img/toolbarButton-presentationMode.png'),
(2953, 'wp-content/plugins/pdf-embedder/img/toolbarButton-zoomIn.png'),
(2954, 'wp-content/plugins/pdf-embedder/img/toolbarButton-zoomOut.png'),
(2955, 'wp-content/plugins/pdf-embedder/js/admin/pdfemb-admin.js'),
(2956, 'wp-content/plugins/pdf-embedder/js/all-pdfemb-basic.min.js'),
(2957, 'wp-content/plugins/pdf-embedder/js/grabtopan-basic.js'),
(2958, 'wp-content/plugins/pdf-embedder/js/pdfemb-basic.js'),
(2959, 'wp-content/plugins/pdf-embedder/js/pdfemb-embed-pdf.js'),
(2960, 'wp-content/plugins/pdf-embedder/js/pdfjs/LICENSE'),
(2961, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-EUC-H.bcmap'),
(2962, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-EUC-V.bcmap'),
(2963, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-H.bcmap'),
(2964, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-RKSJ-H.bcmap'),
(2965, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-RKSJ-V.bcmap'),
(2966, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78-V.bcmap'),
(2967, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78ms-RKSJ-H.bcmap'),
(2968, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/78ms-RKSJ-V.bcmap'),
(2969, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/83pv-RKSJ-H.bcmap'),
(2970, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90ms-RKSJ-H.bcmap'),
(2971, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90ms-RKSJ-V.bcmap'),
(2972, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90msp-RKSJ-H.bcmap'),
(2973, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90msp-RKSJ-V.bcmap'),
(2974, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90pv-RKSJ-H.bcmap'),
(2975, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/90pv-RKSJ-V.bcmap'),
(2976, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-H.bcmap'),
(2977, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-RKSJ-H.bcmap'),
(2978, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-RKSJ-V.bcmap'),
(2979, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Add-V.bcmap'),
(2980, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-0.bcmap'),
(2981, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-1.bcmap'),
(2982, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-2.bcmap'),
(2983, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-3.bcmap'),
(2984, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-4.bcmap'),
(2985, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-5.bcmap'),
(2986, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-6.bcmap'),
(2987, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-CNS1-UCS2.bcmap'),
(2988, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-0.bcmap'),
(2989, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-1.bcmap'),
(2990, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-2.bcmap'),
(2991, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-3.bcmap'),
(2992, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-4.bcmap'),
(2993, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-5.bcmap'),
(2994, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-GB1-UCS2.bcmap'),
(2995, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-0.bcmap'),
(2996, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-1.bcmap'),
(2997, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-2.bcmap'),
(2998, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-3.bcmap'),
(2999, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-4.bcmap'),
(3000, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-5.bcmap') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3001, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-6.bcmap'),
(3002, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Japan1-UCS2.bcmap'),
(3003, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-0.bcmap'),
(3004, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-1.bcmap'),
(3005, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-2.bcmap'),
(3006, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Adobe-Korea1-UCS2.bcmap'),
(3007, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5-H.bcmap'),
(3008, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5-V.bcmap'),
(3009, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5pc-H.bcmap'),
(3010, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/B5pc-V.bcmap'),
(3011, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS-EUC-H.bcmap'),
(3012, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS-EUC-V.bcmap'),
(3013, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS1-H.bcmap'),
(3014, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS1-V.bcmap'),
(3015, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS2-H.bcmap'),
(3016, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/CNS2-V.bcmap'),
(3017, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETHK-B5-H.bcmap'),
(3018, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETHK-B5-V.bcmap'),
(3019, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETen-B5-H.bcmap'),
(3020, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETen-B5-V.bcmap'),
(3021, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETenms-B5-H.bcmap'),
(3022, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/ETenms-B5-V.bcmap'),
(3023, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/EUC-H.bcmap'),
(3024, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/EUC-V.bcmap'),
(3025, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-H.bcmap'),
(3026, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-RKSJ-H.bcmap'),
(3027, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-RKSJ-V.bcmap'),
(3028, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Ext-V.bcmap'),
(3029, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-EUC-H.bcmap'),
(3030, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-EUC-V.bcmap'),
(3031, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-H.bcmap'),
(3032, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GB-V.bcmap'),
(3033, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK-EUC-H.bcmap'),
(3034, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK-EUC-V.bcmap'),
(3035, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK2K-H.bcmap'),
(3036, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBK2K-V.bcmap'),
(3037, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBKp-EUC-H.bcmap'),
(3038, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBKp-EUC-V.bcmap'),
(3039, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-EUC-H.bcmap'),
(3040, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-EUC-V.bcmap'),
(3041, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-H.bcmap'),
(3042, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBT-V.bcmap'),
(3043, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBTpc-EUC-H.bcmap'),
(3044, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBTpc-EUC-V.bcmap'),
(3045, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBpc-EUC-H.bcmap'),
(3046, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/GBpc-EUC-V.bcmap'),
(3047, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/H.bcmap'),
(3048, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdla-B5-H.bcmap'),
(3049, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdla-B5-V.bcmap'),
(3050, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdlb-B5-H.bcmap'),
(3051, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKdlb-B5-V.bcmap'),
(3052, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKgccs-B5-H.bcmap'),
(3053, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKgccs-B5-V.bcmap'),
(3054, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm314-B5-H.bcmap'),
(3055, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm314-B5-V.bcmap'),
(3056, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm471-B5-H.bcmap'),
(3057, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKm471-B5-V.bcmap'),
(3058, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKscs-B5-H.bcmap'),
(3059, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/HKscs-B5-V.bcmap'),
(3060, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Hankaku.bcmap'),
(3061, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Hiragana.bcmap'),
(3062, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-EUC-H.bcmap'),
(3063, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-EUC-V.bcmap'),
(3064, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-H.bcmap'),
(3065, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-Johab-H.bcmap'),
(3066, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-Johab-V.bcmap'),
(3067, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSC-V.bcmap'),
(3068, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-H.bcmap'),
(3069, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-HW-H.bcmap'),
(3070, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-HW-V.bcmap'),
(3071, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCms-UHC-V.bcmap'),
(3072, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCpc-EUC-H.bcmap'),
(3073, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/KSCpc-EUC-V.bcmap'),
(3074, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Katakana.bcmap'),
(3075, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/LICENSE'),
(3076, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/NWP-H.bcmap'),
(3077, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/NWP-V.bcmap'),
(3078, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/RKSJ-H.bcmap'),
(3079, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/RKSJ-V.bcmap'),
(3080, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/Roman.bcmap'),
(3081, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UCS2-H.bcmap'),
(3082, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UCS2-V.bcmap'),
(3083, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF16-H.bcmap'),
(3084, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF16-V.bcmap'),
(3085, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF32-H.bcmap'),
(3086, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF32-V.bcmap'),
(3087, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF8-H.bcmap'),
(3088, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniCNS-UTF8-V.bcmap'),
(3089, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UCS2-H.bcmap'),
(3090, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UCS2-V.bcmap'),
(3091, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF16-H.bcmap'),
(3092, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF16-V.bcmap'),
(3093, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF32-H.bcmap'),
(3094, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF32-V.bcmap'),
(3095, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF8-H.bcmap'),
(3096, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniGB-UTF8-V.bcmap'),
(3097, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-H.bcmap'),
(3098, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-HW-H.bcmap'),
(3099, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-HW-V.bcmap'),
(3100, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UCS2-V.bcmap') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3101, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF16-H.bcmap'),
(3102, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF16-V.bcmap'),
(3103, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF32-H.bcmap'),
(3104, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF32-V.bcmap'),
(3105, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF8-H.bcmap'),
(3106, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS-UTF8-V.bcmap'),
(3107, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF16-H.bcmap'),
(3108, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF16-V.bcmap'),
(3109, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF32-H.bcmap'),
(3110, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF32-V.bcmap'),
(3111, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF8-H.bcmap'),
(3112, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJIS2004-UTF8-V.bcmap'),
(3113, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISPro-UCS2-HW-V.bcmap'),
(3114, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISPro-UCS2-V.bcmap'),
(3115, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISPro-UTF8-V.bcmap'),
(3116, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX0213-UTF32-H.bcmap'),
(3117, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX0213-UTF32-V.bcmap'),
(3118, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX02132004-UTF32-H.bcmap'),
(3119, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniJISX02132004-UTF32-V.bcmap'),
(3120, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UCS2-H.bcmap'),
(3121, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UCS2-V.bcmap'),
(3122, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF16-H.bcmap'),
(3123, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF16-V.bcmap'),
(3124, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF32-H.bcmap'),
(3125, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF32-V.bcmap'),
(3126, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF8-H.bcmap'),
(3127, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/UniKS-UTF8-V.bcmap'),
(3128, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/V.bcmap'),
(3129, 'wp-content/plugins/pdf-embedder/js/pdfjs/cmaps/WP-Symbol.bcmap'),
(3130, 'wp-content/plugins/pdf-embedder/js/pdfjs/compatibility.js'),
(3131, 'wp-content/plugins/pdf-embedder/js/pdfjs/compatibility.min.js'),
(3132, 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.js'),
(3133, 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.min.js'),
(3134, 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.worker.js'),
(3135, 'wp-content/plugins/pdf-embedder/js/pdfjs/pdf.worker.min.js'),
(3136, 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-de_DE.mo'),
(3137, 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-de_DE.po'),
(3138, 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-es_ES.mo'),
(3139, 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-es_ES.po'),
(3140, 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-fr_FR.mo'),
(3141, 'wp-content/plugins/pdf-embedder/lang/pdf-embedder-fr_FR.po'),
(3142, 'wp-content/plugins/pdf-embedder/lang/pdf-embedder.pot'),
(3143, 'wp-content/plugins/pdf-embedder/pdf_embedder.php'),
(3144, 'wp-content/plugins/pdf-embedder/readme.txt'),
(3145, 'wp-content/plugins/popup-with-fancybox/inc/jquery.fancybox.js'),
(3146, 'wp-content/plugins/popup-with-fancybox/pages/content-management-add.php'),
(3147, 'wp-content/plugins/popup-with-fancybox/pages/content-management-edit.php'),
(3148, 'wp-content/plugins/popup-with-fancybox/pages/content-management-show.php'),
(3149, 'wp-content/plugins/popup-with-fancybox/pages/content-setting.php'),
(3150, 'wp-content/plugins/popup-with-fancybox/pages/setting.js'),
(3151, 'wp-content/plugins/popup-with-fancybox/popup-with-fancybox.php'),
(3152, 'wp-content/plugins/revslider/admin/assets/css/font/index.php'),
(3153, 'wp-content/plugins/revslider/admin/assets/css/index.php'),
(3154, 'wp-content/plugins/revslider/admin/assets/images/index.php'),
(3155, 'wp-content/plugins/revslider/admin/assets/images/mainoptions/index.php'),
(3156, 'wp-content/plugins/revslider/admin/assets/images/navigationeditor/index.php'),
(3157, 'wp-content/plugins/revslider/admin/assets/images/sliderpresets/index.php'),
(3158, 'wp-content/plugins/revslider/admin/assets/images/sliderselector/index.php'),
(3159, 'wp-content/plugins/revslider/admin/assets/images/slidersources/index.php'),
(3160, 'wp-content/plugins/revslider/admin/assets/images/sources/index.php'),
(3161, 'wp-content/plugins/revslider/admin/assets/images/toolbar/index.php'),
(3162, 'wp-content/plugins/revslider/admin/assets/images/tooltips/index.php'),
(3163, 'wp-content/plugins/revslider/admin/assets/imports/agency-intro/index.php'),
(3164, 'wp-content/plugins/revslider/admin/assets/imports/classic-carousel/index.php'),
(3165, 'wp-content/plugins/revslider/admin/assets/imports/classicslider/index.php'),
(3166, 'wp-content/plugins/revslider/admin/assets/imports/concept/index.php'),
(3167, 'wp-content/plugins/revslider/admin/assets/imports/contenttabs/index.php'),
(3168, 'wp-content/plugins/revslider/admin/assets/imports/creativefreedom/index.php'),
(3169, 'wp-content/plugins/revslider/admin/assets/imports/facebook-feed/index.php'),
(3170, 'wp-content/plugins/revslider/admin/assets/imports/fashion/index.php'),
(3171, 'wp-content/plugins/revslider/admin/assets/imports/finedining/index.php'),
(3172, 'wp-content/plugins/revslider/admin/assets/imports/flickr-gallery/index.php'),
(3173, 'wp-content/plugins/revslider/admin/assets/imports/foodcarousel/index.php'),
(3174, 'wp-content/plugins/revslider/admin/assets/imports/fullscreen-button/index.php'),
(3175, 'wp-content/plugins/revslider/admin/assets/imports/gym/index.php'),
(3176, 'wp-content/plugins/revslider/admin/assets/imports/highlight-carousel/index.php'),
(3177, 'wp-content/plugins/revslider/admin/assets/imports/highlight-showcase/index.php'),
(3178, 'wp-content/plugins/revslider/admin/assets/imports/imagehero/index.php'),
(3179, 'wp-content/plugins/revslider/admin/assets/imports/index.php'),
(3180, 'wp-content/plugins/revslider/admin/assets/imports/insta-gallery/index.php'),
(3181, 'wp-content/plugins/revslider/admin/assets/imports/levanorestaurantbar/index.php'),
(3182, 'wp-content/plugins/revslider/admin/assets/imports/mainfeature/index.php'),
(3183, 'wp-content/plugins/revslider/admin/assets/imports/media-carousel-autoplay/index.php'),
(3184, 'wp-content/plugins/revslider/admin/assets/imports/media-gallery-two/index.php'),
(3185, 'wp-content/plugins/revslider/admin/assets/imports/news-bg-video/index.php'),
(3186, 'wp-content/plugins/revslider/admin/assets/imports/news-gallery/index.php'),
(3187, 'wp-content/plugins/revslider/admin/assets/imports/news-gallery-post-based/index.php'),
(3188, 'wp-content/plugins/revslider/admin/assets/imports/news-hero/index.php'),
(3189, 'wp-content/plugins/revslider/admin/assets/imports/news-video/index.php'),
(3190, 'wp-content/plugins/revslider/admin/assets/imports/newsletter-hero/index.php'),
(3191, 'wp-content/plugins/revslider/admin/assets/imports/notgeneric/index.php'),
(3192, 'wp-content/plugins/revslider/admin/assets/imports/parallaxscene/index.php'),
(3193, 'wp-content/plugins/revslider/admin/assets/imports/photography/index.php'),
(3194, 'wp-content/plugins/revslider/admin/assets/imports/photography-carousel/index.php'),
(3195, 'wp-content/plugins/revslider/admin/assets/imports/search-form-hero/index.php'),
(3196, 'wp-content/plugins/revslider/admin/assets/imports/showcasecarousel/index.php'),
(3197, 'wp-content/plugins/revslider/admin/assets/imports/slidingoverlays/index.php'),
(3198, 'wp-content/plugins/revslider/admin/assets/imports/sportshero/index.php'),
(3199, 'wp-content/plugins/revslider/admin/assets/imports/travel-static-captions/index.php'),
(3200, 'wp-content/plugins/revslider/admin/assets/imports/twitter-feed/index.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3201, 'wp-content/plugins/revslider/admin/assets/imports/vimeo-gallery/index.php'),
(3202, 'wp-content/plugins/revslider/admin/assets/imports/vimeohero/index.php'),
(3203, 'wp-content/plugins/revslider/admin/assets/imports/web-product-dark/index.php'),
(3204, 'wp-content/plugins/revslider/admin/assets/imports/web-product-dark-hero/index.php'),
(3205, 'wp-content/plugins/revslider/admin/assets/imports/web-product-light-hero/index.php'),
(3206, 'wp-content/plugins/revslider/admin/assets/imports/web-product-light-hero-3d/index.php'),
(3207, 'wp-content/plugins/revslider/admin/assets/imports/webproductlight/index.php'),
(3208, 'wp-content/plugins/revslider/admin/assets/imports/woobig/index.php'),
(3209, 'wp-content/plugins/revslider/admin/assets/imports/woocommercesmall/index.php'),
(3210, 'wp-content/plugins/revslider/admin/assets/imports/youtube-gallery/index.php'),
(3211, 'wp-content/plugins/revslider/admin/assets/imports/youtubehero/index.php'),
(3212, 'wp-content/plugins/revslider/admin/assets/index.php'),
(3213, 'wp-content/plugins/revslider/admin/assets/js/admin.js'),
(3214, 'wp-content/plugins/revslider/admin/assets/js/alpha-color-picker.js'),
(3215, 'wp-content/plugins/revslider/admin/assets/js/codemirror/css.js'),
(3216, 'wp-content/plugins/revslider/admin/assets/js/codemirror/index.php'),
(3217, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/closetag.js'),
(3218, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/dialog.js'),
(3219, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/foldcode.js'),
(3220, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/formatting.js'),
(3221, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/index.php'),
(3222, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/javascript-hint.js'),
(3223, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/loadmode.js'),
(3224, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/match-highlighter.js'),
(3225, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/multiplex.js'),
(3226, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/overlay.js'),
(3227, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/pig-hint.js'),
(3228, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/runmode-standalone.js'),
(3229, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/runmode.js'),
(3230, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/search.js'),
(3231, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/searchcursor.js'),
(3232, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/simple-hint.js'),
(3233, 'wp-content/plugins/revslider/admin/assets/js/codemirror/util/xml-hint.js'),
(3234, 'wp-content/plugins/revslider/admin/assets/js/codemirror/xml.js'),
(3235, 'wp-content/plugins/revslider/admin/assets/js/css_editor.js'),
(3236, 'wp-content/plugins/revslider/admin/assets/js/edit_layers_timeline.js'),
(3237, 'wp-content/plugins/revslider/admin/assets/js/index.php'),
(3238, 'wp-content/plugins/revslider/admin/assets/js/jquery.tipsy.js'),
(3239, 'wp-content/plugins/revslider/admin/assets/js/newvideo.js'),
(3240, 'wp-content/plugins/revslider/admin/assets/js/oldvideo.js'),
(3241, 'wp-content/plugins/revslider/admin/assets/js/rev_addon-admin.js'),
(3242, 'wp-content/plugins/revslider/admin/assets/js/rev_admin.js'),
(3243, 'wp-content/plugins/revslider/admin/assets/js/settings.js'),
(3244, 'wp-content/plugins/revslider/admin/assets/js/tinymce-shortcode-script.js'),
(3245, 'wp-content/plugins/revslider/admin/assets/js/vc.js'),
(3246, 'wp-content/plugins/revslider/admin/index.php'),
(3247, 'wp-content/plugins/revslider/admin/revslider-admin.class.php'),
(3248, 'wp-content/plugins/revslider/admin/views/index.php'),
(3249, 'wp-content/plugins/revslider/admin/views/master-view.php'),
(3250, 'wp-content/plugins/revslider/admin/views/rev_addon-admin-display.php'),
(3251, 'wp-content/plugins/revslider/admin/views/slide-editor.php'),
(3252, 'wp-content/plugins/revslider/admin/views/slide-overview.php'),
(3253, 'wp-content/plugins/revslider/admin/views/slider-editor.php'),
(3254, 'wp-content/plugins/revslider/admin/views/slider-overview.php'),
(3255, 'wp-content/plugins/revslider/admin/views/system/dialog-copy-move.php'),
(3256, 'wp-content/plugins/revslider/admin/views/system/dialog-global-settings.php'),
(3257, 'wp-content/plugins/revslider/admin/views/system/index.php'),
(3258, 'wp-content/plugins/revslider/admin/views/system/validation.php'),
(3259, 'wp-content/plugins/revslider/admin/views/templates/create-slider.php'),
(3260, 'wp-content/plugins/revslider/admin/views/templates/edit-slider.php'),
(3261, 'wp-content/plugins/revslider/admin/views/templates/index.php'),
(3262, 'wp-content/plugins/revslider/admin/views/templates/slide-general-settings.php'),
(3263, 'wp-content/plugins/revslider/admin/views/templates/sliders-list.php'),
(3264, 'wp-content/plugins/revslider/admin/views/templates/slides-list.php'),
(3265, 'wp-content/plugins/revslider/admin/views/templates/slides.php'),
(3266, 'wp-content/plugins/revslider/admin/views/templates/template-selector.php'),
(3267, 'wp-content/plugins/revslider/admin/views/templates/template-slider-selector.php'),
(3268, 'wp-content/plugins/revslider/admin/views/templates/wpml-selector.php'),
(3269, 'wp-content/plugins/revslider/backup/index.php'),
(3270, 'wp-content/plugins/revslider/includes/extension.class.php'),
(3271, 'wp-content/plugins/revslider/includes/framework/addon-admin.class.php'),
(3272, 'wp-content/plugins/revslider/includes/framework/aq-resizer.class.php'),
(3273, 'wp-content/plugins/revslider/includes/framework/base-front.class.php'),
(3274, 'wp-content/plugins/revslider/includes/framework/base.class.php'),
(3275, 'wp-content/plugins/revslider/includes/framework/db.class.php'),
(3276, 'wp-content/plugins/revslider/includes/framework/elements-base.class.php'),
(3277, 'wp-content/plugins/revslider/includes/framework/functions-wordpress.class.php'),
(3278, 'wp-content/plugins/revslider/includes/framework/functions.class.php'),
(3279, 'wp-content/plugins/revslider/includes/framework/include-framework.php'),
(3280, 'wp-content/plugins/revslider/includes/framework/index.php'),
(3281, 'wp-content/plugins/revslider/includes/framework/newsletter.class.php'),
(3282, 'wp-content/plugins/revslider/includes/framework/woocommerce.class.php'),
(3283, 'wp-content/plugins/revslider/includes/framework/wpml.class.php'),
(3284, 'wp-content/plugins/revslider/includes/globals.class.php'),
(3285, 'wp-content/plugins/revslider/includes/googlefonts.php'),
(3286, 'wp-content/plugins/revslider/includes/index.php'),
(3287, 'wp-content/plugins/revslider/includes/template.class.php'),
(3288, 'wp-content/plugins/revslider/includes/widget.class.php'),
(3289, 'wp-content/plugins/revslider/index.php'),
(3290, 'wp-content/plugins/revslider/languages/index.php'),
(3291, 'wp-content/plugins/revslider/public/assets/assets/index.php'),
(3292, 'wp-content/plugins/revslider/public/assets/assets/sources/index.php'),
(3293, 'wp-content/plugins/revslider/public/assets/assets/svg/index.php'),
(3294, 'wp-content/plugins/revslider/public/assets/css/index.php'),
(3295, 'wp-content/plugins/revslider/public/assets/fonts/font-awesome/index.php'),
(3296, 'wp-content/plugins/revslider/public/assets/fonts/index.php'),
(3297, 'wp-content/plugins/revslider/public/assets/fonts/pe-icon-7-stroke/css/index.php'),
(3298, 'wp-content/plugins/revslider/public/assets/fonts/pe-icon-7-stroke/fonts/index.php'),
(3299, 'wp-content/plugins/revslider/public/assets/fonts/pe-icon-7-stroke/index.php'),
(3300, 'wp-content/plugins/revslider/public/assets/fonts/revicons/index.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3301, 'wp-content/plugins/revslider/public/assets/index.php'),
(3302, 'wp-content/plugins/revslider/public/assets/js/extensions/index.php'),
(3303, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.actions.min.js'),
(3304, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.carousel.min.js'),
(3305, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.kenburn.min.js'),
(3306, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.layeranimation.min.js'),
(3307, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.migration.min.js'),
(3308, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.navigation.min.js'),
(3309, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.parallax.min.js'),
(3310, 'wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension.slideanims.min.js'),
(3311, 'wp-content/plugins/revslider/public/assets/js/extensions/source/index.php'),
(3312, 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.actions.js'),
(3313, 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.carousel.js'),
(3314, 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.kenburn.js'),
(3315, 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.migration.js'),
(3316, 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.navigation.js'),
(3317, 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.parallax.js'),
(3318, 'wp-content/plugins/revslider/public/assets/js/extensions/source/revolution.extension.video.js'),
(3319, 'wp-content/plugins/revslider/public/assets/js/index.php'),
(3320, 'wp-content/plugins/revslider/public/assets/js/jquery.themepunch.enablelog.js'),
(3321, 'wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min.js'),
(3322, 'wp-content/plugins/revslider/public/assets/js/source/index.php'),
(3323, 'wp-content/plugins/revslider/public/assets/js/source/jquery.themepunch.enablelog.js'),
(3324, 'wp-content/plugins/revslider/public/index.php'),
(3325, 'wp-content/plugins/revslider/revslider.php'),
(3326, 'wp-content/plugins/revslider/uninstall.php'),
(3327, 'wp-content/plugins/wordfence/css/activity-report-widget.css'),
(3328, 'wp-content/plugins/wordfence/css/colorbox.css'),
(3329, 'wp-content/plugins/wordfence/css/diff.css'),
(3330, 'wp-content/plugins/wordfence/css/dt_table.css'),
(3331, 'wp-content/plugins/wordfence/css/fullLog.css'),
(3332, 'wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png'),
(3333, 'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png'),
(3334, 'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png'),
(3335, 'wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png'),
(3336, 'wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png'),
(3337, 'wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png'),
(3338, 'wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png'),
(3339, 'wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png'),
(3340, 'wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png'),
(3341, 'wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png'),
(3342, 'wp-content/plugins/wordfence/css/iptraf.css'),
(3343, 'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css'),
(3344, 'wp-content/plugins/wordfence/css/jquery-ui.min.css'),
(3345, 'wp-content/plugins/wordfence/css/jquery-ui.structure.min.css'),
(3346, 'wp-content/plugins/wordfence/css/jquery-ui.theme.min.css'),
(3347, 'wp-content/plugins/wordfence/css/main.css'),
(3348, 'wp-content/plugins/wordfence/css/phpinfo.css'),
(3349, 'wp-content/plugins/wordfence/css/select2.min.css'),
(3350, 'wp-content/plugins/wordfence/css/wf-adminbar.css'),
(3351, 'wp-content/plugins/wordfence/css/wordfenceBox.css'),
(3352, 'wp-content/plugins/wordfence/images/back_disabled.jpg'),
(3353, 'wp-content/plugins/wordfence/images/back_enabled.jpg'),
(3354, 'wp-content/plugins/wordfence/images/button-grad-grey.png'),
(3355, 'wp-content/plugins/wordfence/images/checkbox.png'),
(3356, 'wp-content/plugins/wordfence/images/flags/.png'),
(3357, 'wp-content/plugins/wordfence/images/flags/a1.png'),
(3358, 'wp-content/plugins/wordfence/images/flags/a2.png'),
(3359, 'wp-content/plugins/wordfence/images/flags/ad.png'),
(3360, 'wp-content/plugins/wordfence/images/flags/ae.png'),
(3361, 'wp-content/plugins/wordfence/images/flags/af.png'),
(3362, 'wp-content/plugins/wordfence/images/flags/ag.png'),
(3363, 'wp-content/plugins/wordfence/images/flags/ai.png'),
(3364, 'wp-content/plugins/wordfence/images/flags/al.png'),
(3365, 'wp-content/plugins/wordfence/images/flags/am.png'),
(3366, 'wp-content/plugins/wordfence/images/flags/an.png'),
(3367, 'wp-content/plugins/wordfence/images/flags/ao.png'),
(3368, 'wp-content/plugins/wordfence/images/flags/ap.png'),
(3369, 'wp-content/plugins/wordfence/images/flags/aq.png'),
(3370, 'wp-content/plugins/wordfence/images/flags/ar.png'),
(3371, 'wp-content/plugins/wordfence/images/flags/as.png'),
(3372, 'wp-content/plugins/wordfence/images/flags/at.png'),
(3373, 'wp-content/plugins/wordfence/images/flags/au.png'),
(3374, 'wp-content/plugins/wordfence/images/flags/aw.png'),
(3375, 'wp-content/plugins/wordfence/images/flags/ax.png'),
(3376, 'wp-content/plugins/wordfence/images/flags/az.png'),
(3377, 'wp-content/plugins/wordfence/images/flags/ba.png'),
(3378, 'wp-content/plugins/wordfence/images/flags/bb.png'),
(3379, 'wp-content/plugins/wordfence/images/flags/bd.png'),
(3380, 'wp-content/plugins/wordfence/images/flags/be.png'),
(3381, 'wp-content/plugins/wordfence/images/flags/bf.png'),
(3382, 'wp-content/plugins/wordfence/images/flags/bg.png'),
(3383, 'wp-content/plugins/wordfence/images/flags/bh.png'),
(3384, 'wp-content/plugins/wordfence/images/flags/bi.png'),
(3385, 'wp-content/plugins/wordfence/images/flags/bj.png'),
(3386, 'wp-content/plugins/wordfence/images/flags/bm.png'),
(3387, 'wp-content/plugins/wordfence/images/flags/bn.png'),
(3388, 'wp-content/plugins/wordfence/images/flags/bo.png'),
(3389, 'wp-content/plugins/wordfence/images/flags/br.png'),
(3390, 'wp-content/plugins/wordfence/images/flags/bs.png'),
(3391, 'wp-content/plugins/wordfence/images/flags/bt.png'),
(3392, 'wp-content/plugins/wordfence/images/flags/bv.png'),
(3393, 'wp-content/plugins/wordfence/images/flags/bw.png'),
(3394, 'wp-content/plugins/wordfence/images/flags/by.png'),
(3395, 'wp-content/plugins/wordfence/images/flags/bz.png'),
(3396, 'wp-content/plugins/wordfence/images/flags/ca.png'),
(3397, 'wp-content/plugins/wordfence/images/flags/cc.png'),
(3398, 'wp-content/plugins/wordfence/images/flags/cd.png'),
(3399, 'wp-content/plugins/wordfence/images/flags/cf.png'),
(3400, 'wp-content/plugins/wordfence/images/flags/cg.png') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3401, 'wp-content/plugins/wordfence/images/flags/ch.png'),
(3402, 'wp-content/plugins/wordfence/images/flags/ci.png'),
(3403, 'wp-content/plugins/wordfence/images/flags/ck.png'),
(3404, 'wp-content/plugins/wordfence/images/flags/cl.png'),
(3405, 'wp-content/plugins/wordfence/images/flags/cm.png'),
(3406, 'wp-content/plugins/wordfence/images/flags/cn.png'),
(3407, 'wp-content/plugins/wordfence/images/flags/co.png'),
(3408, 'wp-content/plugins/wordfence/images/flags/cr.png'),
(3409, 'wp-content/plugins/wordfence/images/flags/cs.png'),
(3410, 'wp-content/plugins/wordfence/images/flags/cu.png'),
(3411, 'wp-content/plugins/wordfence/images/flags/cv.png'),
(3412, 'wp-content/plugins/wordfence/images/flags/cw.png'),
(3413, 'wp-content/plugins/wordfence/images/flags/cx.png'),
(3414, 'wp-content/plugins/wordfence/images/flags/cy.png'),
(3415, 'wp-content/plugins/wordfence/images/flags/cz.png'),
(3416, 'wp-content/plugins/wordfence/images/flags/de.png'),
(3417, 'wp-content/plugins/wordfence/images/flags/dj.png'),
(3418, 'wp-content/plugins/wordfence/images/flags/dk.png'),
(3419, 'wp-content/plugins/wordfence/images/flags/dm.png'),
(3420, 'wp-content/plugins/wordfence/images/flags/do.png'),
(3421, 'wp-content/plugins/wordfence/images/flags/dz.png'),
(3422, 'wp-content/plugins/wordfence/images/flags/ec.png'),
(3423, 'wp-content/plugins/wordfence/images/flags/ee.png'),
(3424, 'wp-content/plugins/wordfence/images/flags/eg.png'),
(3425, 'wp-content/plugins/wordfence/images/flags/eh.png'),
(3426, 'wp-content/plugins/wordfence/images/flags/england.png'),
(3427, 'wp-content/plugins/wordfence/images/flags/er.png'),
(3428, 'wp-content/plugins/wordfence/images/flags/es.png'),
(3429, 'wp-content/plugins/wordfence/images/flags/et.png'),
(3430, 'wp-content/plugins/wordfence/images/flags/eu.png'),
(3431, 'wp-content/plugins/wordfence/images/flags/fam.png'),
(3432, 'wp-content/plugins/wordfence/images/flags/fi.png'),
(3433, 'wp-content/plugins/wordfence/images/flags/fj.png'),
(3434, 'wp-content/plugins/wordfence/images/flags/fk.png'),
(3435, 'wp-content/plugins/wordfence/images/flags/fm.png'),
(3436, 'wp-content/plugins/wordfence/images/flags/fo.png'),
(3437, 'wp-content/plugins/wordfence/images/flags/fr.png'),
(3438, 'wp-content/plugins/wordfence/images/flags/ga.png'),
(3439, 'wp-content/plugins/wordfence/images/flags/gb.png'),
(3440, 'wp-content/plugins/wordfence/images/flags/gd.png'),
(3441, 'wp-content/plugins/wordfence/images/flags/ge.png'),
(3442, 'wp-content/plugins/wordfence/images/flags/gf.png'),
(3443, 'wp-content/plugins/wordfence/images/flags/gg.png'),
(3444, 'wp-content/plugins/wordfence/images/flags/gh.png'),
(3445, 'wp-content/plugins/wordfence/images/flags/gi.png'),
(3446, 'wp-content/plugins/wordfence/images/flags/gl.png'),
(3447, 'wp-content/plugins/wordfence/images/flags/gm.png'),
(3448, 'wp-content/plugins/wordfence/images/flags/gn.png'),
(3449, 'wp-content/plugins/wordfence/images/flags/gp.png'),
(3450, 'wp-content/plugins/wordfence/images/flags/gq.png'),
(3451, 'wp-content/plugins/wordfence/images/flags/gr.png'),
(3452, 'wp-content/plugins/wordfence/images/flags/gs.png'),
(3453, 'wp-content/plugins/wordfence/images/flags/gt.png'),
(3454, 'wp-content/plugins/wordfence/images/flags/gu.png'),
(3455, 'wp-content/plugins/wordfence/images/flags/gw.png'),
(3456, 'wp-content/plugins/wordfence/images/flags/gy.png'),
(3457, 'wp-content/plugins/wordfence/images/flags/hk.png'),
(3458, 'wp-content/plugins/wordfence/images/flags/hn.png'),
(3459, 'wp-content/plugins/wordfence/images/flags/hr.png'),
(3460, 'wp-content/plugins/wordfence/images/flags/ht.png'),
(3461, 'wp-content/plugins/wordfence/images/flags/hu.png'),
(3462, 'wp-content/plugins/wordfence/images/flags/id.png'),
(3463, 'wp-content/plugins/wordfence/images/flags/ie.png'),
(3464, 'wp-content/plugins/wordfence/images/flags/il.png'),
(3465, 'wp-content/plugins/wordfence/images/flags/im.png'),
(3466, 'wp-content/plugins/wordfence/images/flags/in.png'),
(3467, 'wp-content/plugins/wordfence/images/flags/io.png'),
(3468, 'wp-content/plugins/wordfence/images/flags/iq.png'),
(3469, 'wp-content/plugins/wordfence/images/flags/ir.png'),
(3470, 'wp-content/plugins/wordfence/images/flags/is.png'),
(3471, 'wp-content/plugins/wordfence/images/flags/it.png'),
(3472, 'wp-content/plugins/wordfence/images/flags/je.png'),
(3473, 'wp-content/plugins/wordfence/images/flags/jm.png'),
(3474, 'wp-content/plugins/wordfence/images/flags/jo.png'),
(3475, 'wp-content/plugins/wordfence/images/flags/jp.png'),
(3476, 'wp-content/plugins/wordfence/images/flags/ke.png'),
(3477, 'wp-content/plugins/wordfence/images/flags/kg.png'),
(3478, 'wp-content/plugins/wordfence/images/flags/kh.png'),
(3479, 'wp-content/plugins/wordfence/images/flags/ki.png'),
(3480, 'wp-content/plugins/wordfence/images/flags/km.png'),
(3481, 'wp-content/plugins/wordfence/images/flags/kn.png'),
(3482, 'wp-content/plugins/wordfence/images/flags/kp.png'),
(3483, 'wp-content/plugins/wordfence/images/flags/kr.png'),
(3484, 'wp-content/plugins/wordfence/images/flags/kw.png'),
(3485, 'wp-content/plugins/wordfence/images/flags/ky.png'),
(3486, 'wp-content/plugins/wordfence/images/flags/kz.png'),
(3487, 'wp-content/plugins/wordfence/images/flags/la.png'),
(3488, 'wp-content/plugins/wordfence/images/flags/lb.png'),
(3489, 'wp-content/plugins/wordfence/images/flags/lc.png'),
(3490, 'wp-content/plugins/wordfence/images/flags/li.png'),
(3491, 'wp-content/plugins/wordfence/images/flags/lk.png'),
(3492, 'wp-content/plugins/wordfence/images/flags/lr.png'),
(3493, 'wp-content/plugins/wordfence/images/flags/ls.png'),
(3494, 'wp-content/plugins/wordfence/images/flags/lt.png'),
(3495, 'wp-content/plugins/wordfence/images/flags/lu.png'),
(3496, 'wp-content/plugins/wordfence/images/flags/lv.png'),
(3497, 'wp-content/plugins/wordfence/images/flags/ly.png'),
(3498, 'wp-content/plugins/wordfence/images/flags/ma.png'),
(3499, 'wp-content/plugins/wordfence/images/flags/mc.png'),
(3500, 'wp-content/plugins/wordfence/images/flags/md.png') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3501, 'wp-content/plugins/wordfence/images/flags/me.png'),
(3502, 'wp-content/plugins/wordfence/images/flags/mg.png'),
(3503, 'wp-content/plugins/wordfence/images/flags/mh.png'),
(3504, 'wp-content/plugins/wordfence/images/flags/mk.png'),
(3505, 'wp-content/plugins/wordfence/images/flags/ml.png'),
(3506, 'wp-content/plugins/wordfence/images/flags/mm.png'),
(3507, 'wp-content/plugins/wordfence/images/flags/mn.png'),
(3508, 'wp-content/plugins/wordfence/images/flags/mo.png'),
(3509, 'wp-content/plugins/wordfence/images/flags/mp.png'),
(3510, 'wp-content/plugins/wordfence/images/flags/mq.png'),
(3511, 'wp-content/plugins/wordfence/images/flags/mr.png'),
(3512, 'wp-content/plugins/wordfence/images/flags/ms.png'),
(3513, 'wp-content/plugins/wordfence/images/flags/mt.png'),
(3514, 'wp-content/plugins/wordfence/images/flags/mu.png'),
(3515, 'wp-content/plugins/wordfence/images/flags/mv.png'),
(3516, 'wp-content/plugins/wordfence/images/flags/mw.png'),
(3517, 'wp-content/plugins/wordfence/images/flags/mx.png'),
(3518, 'wp-content/plugins/wordfence/images/flags/my.png'),
(3519, 'wp-content/plugins/wordfence/images/flags/mz.png'),
(3520, 'wp-content/plugins/wordfence/images/flags/na.png'),
(3521, 'wp-content/plugins/wordfence/images/flags/nc.png'),
(3522, 'wp-content/plugins/wordfence/images/flags/ne.png'),
(3523, 'wp-content/plugins/wordfence/images/flags/nf.png'),
(3524, 'wp-content/plugins/wordfence/images/flags/ng.png'),
(3525, 'wp-content/plugins/wordfence/images/flags/ni.png'),
(3526, 'wp-content/plugins/wordfence/images/flags/nl.png'),
(3527, 'wp-content/plugins/wordfence/images/flags/no.png'),
(3528, 'wp-content/plugins/wordfence/images/flags/np.png'),
(3529, 'wp-content/plugins/wordfence/images/flags/nr.png'),
(3530, 'wp-content/plugins/wordfence/images/flags/nu.png'),
(3531, 'wp-content/plugins/wordfence/images/flags/nz.png'),
(3532, 'wp-content/plugins/wordfence/images/flags/om.png'),
(3533, 'wp-content/plugins/wordfence/images/flags/pa.png'),
(3534, 'wp-content/plugins/wordfence/images/flags/pe.png'),
(3535, 'wp-content/plugins/wordfence/images/flags/pf.png'),
(3536, 'wp-content/plugins/wordfence/images/flags/pg.png'),
(3537, 'wp-content/plugins/wordfence/images/flags/ph.png'),
(3538, 'wp-content/plugins/wordfence/images/flags/pk.png'),
(3539, 'wp-content/plugins/wordfence/images/flags/pl.png'),
(3540, 'wp-content/plugins/wordfence/images/flags/pm.png'),
(3541, 'wp-content/plugins/wordfence/images/flags/pn.png'),
(3542, 'wp-content/plugins/wordfence/images/flags/pr.png'),
(3543, 'wp-content/plugins/wordfence/images/flags/ps.png'),
(3544, 'wp-content/plugins/wordfence/images/flags/pt.png'),
(3545, 'wp-content/plugins/wordfence/images/flags/pw.png'),
(3546, 'wp-content/plugins/wordfence/images/flags/py.png'),
(3547, 'wp-content/plugins/wordfence/images/flags/qa.png'),
(3548, 'wp-content/plugins/wordfence/images/flags/re.png'),
(3549, 'wp-content/plugins/wordfence/images/flags/ro.png'),
(3550, 'wp-content/plugins/wordfence/images/flags/rs.png'),
(3551, 'wp-content/plugins/wordfence/images/flags/ru.png'),
(3552, 'wp-content/plugins/wordfence/images/flags/rw.png'),
(3553, 'wp-content/plugins/wordfence/images/flags/sa.png'),
(3554, 'wp-content/plugins/wordfence/images/flags/sb.png'),
(3555, 'wp-content/plugins/wordfence/images/flags/sc.png'),
(3556, 'wp-content/plugins/wordfence/images/flags/scotland.png'),
(3557, 'wp-content/plugins/wordfence/images/flags/sd.png'),
(3558, 'wp-content/plugins/wordfence/images/flags/se.png'),
(3559, 'wp-content/plugins/wordfence/images/flags/sg.png'),
(3560, 'wp-content/plugins/wordfence/images/flags/sh.png'),
(3561, 'wp-content/plugins/wordfence/images/flags/si.png'),
(3562, 'wp-content/plugins/wordfence/images/flags/sk.png'),
(3563, 'wp-content/plugins/wordfence/images/flags/sl.png'),
(3564, 'wp-content/plugins/wordfence/images/flags/sm.png'),
(3565, 'wp-content/plugins/wordfence/images/flags/sn.png'),
(3566, 'wp-content/plugins/wordfence/images/flags/so.png'),
(3567, 'wp-content/plugins/wordfence/images/flags/sprite-des-128.png'),
(3568, 'wp-content/plugins/wordfence/images/flags/sprite-des-16.png'),
(3569, 'wp-content/plugins/wordfence/images/flags/sprite-des-256.png'),
(3570, 'wp-content/plugins/wordfence/images/flags/sprite-des-32.png'),
(3571, 'wp-content/plugins/wordfence/images/flags/sprite-des-64.png'),
(3572, 'wp-content/plugins/wordfence/images/flags/sprite-des.png'),
(3573, 'wp-content/plugins/wordfence/images/flags/sprite-des2.png'),
(3574, 'wp-content/plugins/wordfence/images/flags/sprite2.css'),
(3575, 'wp-content/plugins/wordfence/images/flags/sprite2.png'),
(3576, 'wp-content/plugins/wordfence/images/flags/sr.png'),
(3577, 'wp-content/plugins/wordfence/images/flags/st.png'),
(3578, 'wp-content/plugins/wordfence/images/flags/sv.png'),
(3579, 'wp-content/plugins/wordfence/images/flags/sy.png'),
(3580, 'wp-content/plugins/wordfence/images/flags/sz.png'),
(3581, 'wp-content/plugins/wordfence/images/flags/tc.png'),
(3582, 'wp-content/plugins/wordfence/images/flags/td.png'),
(3583, 'wp-content/plugins/wordfence/images/flags/tf.png'),
(3584, 'wp-content/plugins/wordfence/images/flags/tg.png'),
(3585, 'wp-content/plugins/wordfence/images/flags/th.png'),
(3586, 'wp-content/plugins/wordfence/images/flags/tj.png'),
(3587, 'wp-content/plugins/wordfence/images/flags/tk.png'),
(3588, 'wp-content/plugins/wordfence/images/flags/tl.png'),
(3589, 'wp-content/plugins/wordfence/images/flags/tm.png'),
(3590, 'wp-content/plugins/wordfence/images/flags/tn.png'),
(3591, 'wp-content/plugins/wordfence/images/flags/to.png'),
(3592, 'wp-content/plugins/wordfence/images/flags/tr.png'),
(3593, 'wp-content/plugins/wordfence/images/flags/tt.png'),
(3594, 'wp-content/plugins/wordfence/images/flags/tv.png'),
(3595, 'wp-content/plugins/wordfence/images/flags/tw.png'),
(3596, 'wp-content/plugins/wordfence/images/flags/tz.png'),
(3597, 'wp-content/plugins/wordfence/images/flags/ua.png'),
(3598, 'wp-content/plugins/wordfence/images/flags/ug.png'),
(3599, 'wp-content/plugins/wordfence/images/flags/uk.png'),
(3600, 'wp-content/plugins/wordfence/images/flags/um.png') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3601, 'wp-content/plugins/wordfence/images/flags/us.png'),
(3602, 'wp-content/plugins/wordfence/images/flags/uy.png'),
(3603, 'wp-content/plugins/wordfence/images/flags/uz.png'),
(3604, 'wp-content/plugins/wordfence/images/flags/va.png'),
(3605, 'wp-content/plugins/wordfence/images/flags/vc.png'),
(3606, 'wp-content/plugins/wordfence/images/flags/ve.png'),
(3607, 'wp-content/plugins/wordfence/images/flags/vg.png'),
(3608, 'wp-content/plugins/wordfence/images/flags/vi.png'),
(3609, 'wp-content/plugins/wordfence/images/flags/vn.png'),
(3610, 'wp-content/plugins/wordfence/images/flags/vu.png'),
(3611, 'wp-content/plugins/wordfence/images/flags/wales.png'),
(3612, 'wp-content/plugins/wordfence/images/flags/wf.png'),
(3613, 'wp-content/plugins/wordfence/images/flags/ws.png'),
(3614, 'wp-content/plugins/wordfence/images/flags/xk.png'),
(3615, 'wp-content/plugins/wordfence/images/flags/ye.png'),
(3616, 'wp-content/plugins/wordfence/images/flags/yt.png'),
(3617, 'wp-content/plugins/wordfence/images/flags/za.png'),
(3618, 'wp-content/plugins/wordfence/images/flags/zm.png'),
(3619, 'wp-content/plugins/wordfence/images/flags/zw.png'),
(3620, 'wp-content/plugins/wordfence/images/forward_disabled.jpg'),
(3621, 'wp-content/plugins/wordfence/images/forward_enabled.jpg'),
(3622, 'wp-content/plugins/wordfence/images/help.png'),
(3623, 'wp-content/plugins/wordfence/images/icons/ajax24.gif'),
(3624, 'wp-content/plugins/wordfence/images/icons/ajax3.gif'),
(3625, 'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),
(3626, 'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),
(3627, 'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),
(3628, 'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),
(3629, 'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),
(3630, 'wp-content/plugins/wordfence/images/icons/email_go.png'),
(3631, 'wp-content/plugins/wordfence/images/icons/error128.png'),
(3632, 'wp-content/plugins/wordfence/images/icons/magnifier.png'),
(3633, 'wp-content/plugins/wordfence/images/icons/tick128.png'),
(3634, 'wp-content/plugins/wordfence/images/icons/warning128.png'),
(3635, 'wp-content/plugins/wordfence/images/lightbox-controls.png'),
(3636, 'wp-content/plugins/wordfence/images/loading.gif'),
(3637, 'wp-content/plugins/wordfence/images/loading_background.png'),
(3638, 'wp-content/plugins/wordfence/images/loading_large.gif'),
(3639, 'wp-content/plugins/wordfence/images/logo.png'),
(3640, 'wp-content/plugins/wordfence/images/rr_premium.png'),
(3641, 'wp-content/plugins/wordfence/images/rr_sitecleaning.jpg'),
(3642, 'wp-content/plugins/wordfence/images/sort_asc.gif'),
(3643, 'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),
(3644, 'wp-content/plugins/wordfence/images/sort_both.gif'),
(3645, 'wp-content/plugins/wordfence/images/sort_desc.gif'),
(3646, 'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),
(3647, 'wp-content/plugins/wordfence/images/wordfence-logo-16x16.png'),
(3648, 'wp-content/plugins/wordfence/images/wordfence-logo-32x32.png'),
(3649, 'wp-content/plugins/wordfence/images/wordfence-logo-64x64.png'),
(3650, 'wp-content/plugins/wordfence/index.php'),
(3651, 'wp-content/plugins/wordfence/js/Chart.bundle.min.js'),
(3652, 'wp-content/plugins/wordfence/js/admin.ajaxWatcher.js'),
(3653, 'wp-content/plugins/wordfence/js/admin.js'),
(3654, 'wp-content/plugins/wordfence/js/admin.liveTraffic.js'),
(3655, 'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js'),
(3656, 'wp-content/plugins/wordfence/js/jquery.colorbox-min.js'),
(3657, 'wp-content/plugins/wordfence/js/jquery.dataTables.min.js'),
(3658, 'wp-content/plugins/wordfence/js/jquery.qrcode.min.js'),
(3659, 'wp-content/plugins/wordfence/js/jquery.tmpl.min.js'),
(3660, 'wp-content/plugins/wordfence/js/jquery.tools.min.js'),
(3661, 'wp-content/plugins/wordfence/js/knockout-3.3.0.js'),
(3662, 'wp-content/plugins/wordfence/js/perf.js'),
(3663, 'wp-content/plugins/wordfence/js/select2.min.js'),
(3664, 'wp-content/plugins/wordfence/js/tourTip.js'),
(3665, 'wp-content/plugins/wordfence/js/wfdashboard.js'),
(3666, 'wp-content/plugins/wordfence/js/wfpopover.js'),
(3667, 'wp-content/plugins/wordfence/lib/.htaccess'),
(3668, 'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),
(3669, 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),
(3670, 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),
(3671, 'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),
(3672, 'wp-content/plugins/wordfence/lib/Diff.php'),
(3673, 'wp-content/plugins/wordfence/lib/GeoIP.dat'),
(3674, 'wp-content/plugins/wordfence/lib/GeoIPv6.dat'),
(3675, 'wp-content/plugins/wordfence/lib/IPTraf.php'),
(3676, 'wp-content/plugins/wordfence/lib/compat.php'),
(3677, 'wp-content/plugins/wordfence/lib/conntest.php'),
(3678, 'wp-content/plugins/wordfence/lib/cronview.php'),
(3679, 'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),
(3680, 'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),
(3681, 'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),
(3682, 'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),
(3683, 'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),
(3684, 'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),
(3685, 'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),
(3686, 'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),
(3687, 'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),
(3688, 'wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php'),
(3689, 'wp-content/plugins/wordfence/lib/dashboard.php'),
(3690, 'wp-content/plugins/wordfence/lib/dbview.php'),
(3691, 'wp-content/plugins/wordfence/lib/diffResult.php'),
(3692, 'wp-content/plugins/wordfence/lib/email_genericAlert.php'),
(3693, 'wp-content/plugins/wordfence/lib/email_newIssues.php'),
(3694, 'wp-content/plugins/wordfence/lib/email_passwdChanged.php'),
(3695, 'wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php'),
(3696, 'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),
(3697, 'wp-content/plugins/wordfence/lib/live_activity.php'),
(3698, 'wp-content/plugins/wordfence/lib/menu_activity.php'),
(3699, 'wp-content/plugins/wordfence/lib/menu_blocking.php'),
(3700, 'wp-content/plugins/wordfence/lib/menu_blocking_advancedBlocking.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3701, 'wp-content/plugins/wordfence/lib/menu_blocking_blockedIPs.php'),
(3702, 'wp-content/plugins/wordfence/lib/menu_blocking_countryBlocking.php'),
(3703, 'wp-content/plugins/wordfence/lib/menu_dashboard.php'),
(3704, 'wp-content/plugins/wordfence/lib/menu_firewall.php'),
(3705, 'wp-content/plugins/wordfence/lib/menu_firewall_bruteForce.php'),
(3706, 'wp-content/plugins/wordfence/lib/menu_firewall_rateLimiting.php'),
(3707, 'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),
(3708, 'wp-content/plugins/wordfence/lib/menu_options.php'),
(3709, 'wp-content/plugins/wordfence/lib/menu_scan.php'),
(3710, 'wp-content/plugins/wordfence/lib/menu_scan_options.php'),
(3711, 'wp-content/plugins/wordfence/lib/menu_scan_scan.php'),
(3712, 'wp-content/plugins/wordfence/lib/menu_scan_schedule.php'),
(3713, 'wp-content/plugins/wordfence/lib/menu_tools.php'),
(3714, 'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),
(3715, 'wp-content/plugins/wordfence/lib/menu_tools_passwd.php'),
(3716, 'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),
(3717, 'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),
(3718, 'wp-content/plugins/wordfence/lib/pageTitle.php'),
(3719, 'wp-content/plugins/wordfence/lib/schedWeekEntry.php'),
(3720, 'wp-content/plugins/wordfence/lib/sysinfo.php'),
(3721, 'wp-content/plugins/wordfence/lib/unknownFiles.php'),
(3722, 'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),
(3723, 'wp-content/plugins/wordfence/lib/wf503.php'),
(3724, 'wp-content/plugins/wordfence/lib/wfAPI.php'),
(3725, 'wp-content/plugins/wordfence/lib/wfAction.php'),
(3726, 'wp-content/plugins/wordfence/lib/wfActivityReport.php'),
(3727, 'wp-content/plugins/wordfence/lib/wfArray.php'),
(3728, 'wp-content/plugins/wordfence/lib/wfBrowscap.php'),
(3729, 'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),
(3730, 'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),
(3731, 'wp-content/plugins/wordfence/lib/wfCache.php'),
(3732, 'wp-content/plugins/wordfence/lib/wfConfig.php'),
(3733, 'wp-content/plugins/wordfence/lib/wfCountryMap.php'),
(3734, 'wp-content/plugins/wordfence/lib/wfCrawl.php'),
(3735, 'wp-content/plugins/wordfence/lib/wfCrypt.php'),
(3736, 'wp-content/plugins/wordfence/lib/wfDB.php'),
(3737, 'wp-content/plugins/wordfence/lib/wfDashboard.php'),
(3738, 'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),
(3739, 'wp-content/plugins/wordfence/lib/wfDict.php'),
(3740, 'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),
(3741, 'wp-content/plugins/wordfence/lib/wfGeoIP.php'),
(3742, 'wp-content/plugins/wordfence/lib/wfHelperBin.php'),
(3743, 'wp-content/plugins/wordfence/lib/wfHelperString.php'),
(3744, 'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),
(3745, 'wp-content/plugins/wordfence/lib/wfIssues.php'),
(3746, 'wp-content/plugins/wordfence/lib/wfLockedOut.php'),
(3747, 'wp-content/plugins/wordfence/lib/wfLog.php'),
(3748, 'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),
(3749, 'wp-content/plugins/wordfence/lib/wfNotification.php'),
(3750, 'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),
(3751, 'wp-content/plugins/wordfence/lib/wfRate.php'),
(3752, 'wp-content/plugins/wordfence/lib/wfScan.php'),
(3753, 'wp-content/plugins/wordfence/lib/wfScanEngine.php'),
(3754, 'wp-content/plugins/wordfence/lib/wfSchema.php'),
(3755, 'wp-content/plugins/wordfence/lib/wfStyle.php'),
(3756, 'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),
(3757, 'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),
(3758, 'wp-content/plugins/wordfence/lib/wfUtils.php'),
(3759, 'wp-content/plugins/wordfence/lib/wfView.php'),
(3760, 'wp-content/plugins/wordfence/lib/wfViewResult.php'),
(3761, 'wp-content/plugins/wordfence/lib/wordfenceClass.php'),
(3762, 'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),
(3763, 'wp-content/plugins/wordfence/lib/wordfenceHash.php'),
(3764, 'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),
(3765, 'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),
(3766, 'wp-content/plugins/wordfence/readme.txt'),
(3767, 'wp-content/plugins/wordfence/tmp/.htaccess'),
(3768, 'wp-content/plugins/wordfence/vendor/autoload.php'),
(3769, 'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),
(3770, 'wp-content/plugins/wordfence/vendor/composer/LICENSE'),
(3771, 'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),
(3772, 'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),
(3773, 'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),
(3774, 'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),
(3775, 'wp-content/plugins/wordfence/vendor/composer/installed.json'),
(3776, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php'),
(3777, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),
(3778, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),
(3779, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),
(3780, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),
(3781, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),
(3782, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),
(3783, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),
(3784, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),
(3785, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),
(3786, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),
(3787, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),
(3788, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),
(3789, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),
(3790, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),
(3791, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),
(3792, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),
(3793, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),
(3794, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),
(3795, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),
(3796, 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),
(3797, 'wp-content/plugins/wordfence/views/marketing/rightrail.php'),
(3798, 'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),
(3799, 'wp-content/plugins/wordfence/views/reports/activity-report-email.php'),
(3800, 'wp-content/plugins/wordfence/views/reports/activity-report.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3801, 'wp-content/plugins/wordfence/views/waf/debug.php'),
(3802, 'wp-content/plugins/wordfence/waf/bootstrap.php'),
(3803, 'wp-content/plugins/wordfence/waf/wfWAFGeoIP.php'),
(3804, 'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),
(3805, 'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),
(3806, 'wp-content/plugins/wordfence/wordfence.php'),
(3807, 'wp-content/plugins/wordpress-importer/languages/wordpress-importer.pot'),
(3808, 'wp-content/plugins/wordpress-importer/parsers.php'),
(3809, 'wp-content/plugins/wordpress-importer/readme.txt'),
(3810, 'wp-content/plugins/wordpress-importer/wordpress-importer.php'),
(3811, 'wp-content/plugins/wordpress-popup/assets/css/admin.css'),
(3812, 'wp-content/plugins/wordpress-popup/assets/css/front/ie.css'),
(3813, 'wp-content/plugins/wordpress-popup/assets/css/front.css'),
(3814, 'wp-content/plugins/wordpress-popup/assets/css/maps/admin.css.map'),
(3815, 'wp-content/plugins/wordpress-popup/assets/css/maps/front/ie.css.map'),
(3816, 'wp-content/plugins/wordpress-popup/assets/css/maps/front.css.map'),
(3817, 'wp-content/plugins/wordpress-popup/assets/css/maps/modals.css.map'),
(3818, 'wp-content/plugins/wordpress-popup/assets/css/maps/optins.css.map'),
(3819, 'wp-content/plugins/wordpress-popup/assets/css/modals.css'),
(3820, 'wp-content/plugins/wordpress-popup/assets/css/optins.css'),
(3821, 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.eot'),
(3822, 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.svg'),
(3823, 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.ttf'),
(3824, 'wp-content/plugins/wordpress-popup/assets/fonts/hustle.woff'),
(3825, 'wp-content/plugins/wordpress-popup/assets/icons/add.svg'),
(3826, 'wp-content/plugins/wordpress-popup/assets/icons/arrow-down.svg'),
(3827, 'wp-content/plugins/wordpress-popup/assets/icons/arrow-up.svg'),
(3828, 'wp-content/plugins/wordpress-popup/assets/icons/arrow.svg'),
(3829, 'wp-content/plugins/wordpress-popup/assets/icons/burger.svg'),
(3830, 'wp-content/plugins/wordpress-popup/assets/icons/check.svg'),
(3831, 'wp-content/plugins/wordpress-popup/assets/icons/close.svg'),
(3832, 'wp-content/plugins/wordpress-popup/assets/icons/edit.svg'),
(3833, 'wp-content/plugins/wordpress-popup/assets/icons/eye.svg'),
(3834, 'wp-content/plugins/wordpress-popup/assets/icons/hustle-icon.svg'),
(3835, 'wp-content/plugins/wordpress-popup/assets/icons/hustle.eot'),
(3836, 'wp-content/plugins/wordpress-popup/assets/icons/hustle.json'),
(3837, 'wp-content/plugins/wordpress-popup/assets/icons/hustle.svg'),
(3838, 'wp-content/plugins/wordpress-popup/assets/icons/hustle.ttf'),
(3839, 'wp-content/plugins/wordpress-popup/assets/icons/hustle.woff'),
(3840, 'wp-content/plugins/wordpress-popup/assets/icons/image.svg'),
(3841, 'wp-content/plugins/wordpress-popup/assets/icons/magic.svg'),
(3842, 'wp-content/plugins/wordpress-popup/assets/icons/mail.svg'),
(3843, 'wp-content/plugins/wordpress-popup/assets/icons/optin.svg'),
(3844, 'wp-content/plugins/wordpress-popup/assets/icons/plus.svg'),
(3845, 'wp-content/plugins/wordpress-popup/assets/icons/remove.svg'),
(3846, 'wp-content/plugins/wordpress-popup/assets/icons/rewards.svg'),
(3847, 'wp-content/plugins/wordpress-popup/assets/icons/sharing.svg'),
(3848, 'wp-content/plugins/wordpress-popup/assets/icons/text.svg'),
(3849, 'wp-content/plugins/wordpress-popup/assets/icons/trash.svg'),
(3850, 'wp-content/plugins/wordpress-popup/assets/icons/updating-font-icon.txt'),
(3851, 'wp-content/plugins/wordpress-popup/assets/icons/warning.svg'),
(3852, 'wp-content/plugins/wordpress-popup/assets/img/icon.svg'),
(3853, 'wp-content/plugins/wordpress-popup/assets/img/sprite.png'),
(3854, 'wp-content/plugins/wordpress-popup/assets/img/sprite.svg'),
(3855, 'wp-content/plugins/wordpress-popup/assets/js/_common/hustle.js'),
(3856, 'wp-content/plugins/wordpress-popup/assets/js/_common/utils.js'),
(3857, 'wp-content/plugins/wordpress-popup/assets/js/admin/admin_utils.js'),
(3858, 'wp-content/plugins/wordpress-popup/assets/js/admin/common/commons.js'),
(3859, 'wp-content/plugins/wordpress-popup/assets/js/admin/common/delete-confirmation.js'),
(3860, 'wp-content/plugins/wordpress-popup/assets/js/admin/common/media-holder.js'),
(3861, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/content-view.js'),
(3862, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/design-view.js'),
(3863, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/listing.js'),
(3864, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/models.js'),
(3865, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/popup-view.js'),
(3866, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/preview.js'),
(3867, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/slide_in-view.js'),
(3868, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content/view.js'),
(3869, 'wp-content/plugins/wordpress-popup/assets/js/admin/custom-content.js'),
(3870, 'wp-content/plugins/wordpress-popup/assets/js/admin/dashboard.js'),
(3871, 'wp-content/plugins/wordpress-popup/assets/js/admin/legacy-popups/listing.js'),
(3872, 'wp-content/plugins/wordpress-popup/assets/js/admin/mixins/model-updater.js'),
(3873, 'wp-content/plugins/wordpress-popup/assets/js/admin/models.js'),
(3874, 'wp-content/plugins/wordpress-popup/assets/js/admin/optin/listing.js'),
(3875, 'wp-content/plugins/wordpress-popup/assets/js/admin/optin/preview.js'),
(3876, 'wp-content/plugins/wordpress-popup/assets/js/admin/optin/subscription-list-modal.js'),
(3877, 'wp-content/plugins/wordpress-popup/assets/js/admin/optin.js'),
(3878, 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/activecampaign.js'),
(3879, 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/infusion_soft.js'),
(3880, 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/mad_mimi.js'),
(3881, 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/mailchimp.js'),
(3882, 'wp-content/plugins/wordpress-popup/assets/js/admin/providers/sendy.js'),
(3883, 'wp-content/plugins/wordpress-popup/assets/js/admin/pure-jquery.js'),
(3884, 'wp-content/plugins/wordpress-popup/assets/js/admin/router.js'),
(3885, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings/conditions-view.js'),
(3886, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings/conditions.js'),
(3887, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings/display-triggers.js'),
(3888, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/e-newsletter.js'),
(3889, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/modules-activity.js'),
(3890, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/services-edit-modal.js'),
(3891, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings-page/services.js'),
(3892, 'wp-content/plugins/wordpress-popup/assets/js/admin/settings.js'),
(3893, 'wp-content/plugins/wordpress-popup/assets/js/admin/views.js'),
(3894, 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/design-tab.js'),
(3895, 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/display-tab.js'),
(3896, 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/display-triggers.js'),
(3897, 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/services-tab.js'),
(3898, 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/settings/_conditions.js'),
(3899, 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/settings/conditions-view.js'),
(3900, 'wp-content/plugins/wordpress-popup/assets/js/admin/wizard-views/wizard.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(3901, 'wp-content/plugins/wordpress-popup/assets/js/admin.min.js'),
(3902, 'wp-content/plugins/wordpress-popup/assets/js/ads.js'),
(3903, 'wp-content/plugins/wordpress-popup/assets/js/common/modal.js'),
(3904, 'wp-content/plugins/wordpress-popup/assets/js/front/_common/backbone-view-model-min.js'),
(3905, 'wp-content/plugins/wordpress-popup/assets/js/front/after_content.js'),
(3906, 'wp-content/plugins/wordpress-popup/assets/js/front/common/cc_display_triggers.js'),
(3907, 'wp-content/plugins/wordpress-popup/assets/js/front/common/display_triggers.js'),
(3908, 'wp-content/plugins/wordpress-popup/assets/js/front/common/log.js'),
(3909, 'wp-content/plugins/wordpress-popup/assets/js/front/common/scroll.js'),
(3910, 'wp-content/plugins/wordpress-popup/assets/js/front/common/submit.js'),
(3911, 'wp-content/plugins/wordpress-popup/assets/js/front/custome_content.js'),
(3912, 'wp-content/plugins/wordpress-popup/assets/js/front/front_utils.js'),
(3913, 'wp-content/plugins/wordpress-popup/assets/js/front/popup.js'),
(3914, 'wp-content/plugins/wordpress-popup/assets/js/front/slide-in.js'),
(3915, 'wp-content/plugins/wordpress-popup/assets/js/front/widgets.js'),
(3916, 'wp-content/plugins/wordpress-popup/assets/js/front.min.js'),
(3917, 'wp-content/plugins/wordpress-popup/assets/js/maps/admin.min.js.map'),
(3918, 'wp-content/plugins/wordpress-popup/assets/js/maps/front.min.js.map'),
(3919, 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/ace.js'),
(3920, 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/mode-css.js'),
(3921, 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/theme-monokai.js'),
(3922, 'wp-content/plugins/wordpress-popup/assets/js/vendor/ace/theme-solarized_light.js'),
(3923, 'wp-content/plugins/wordpress-popup/assets/js/vendor/chartjs/Chart.bundle.min.js'),
(3924, 'wp-content/plugins/wordpress-popup/assets/js/vendor/fitie/fitie.js'),
(3925, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/css/select2.min.css'),
(3926, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/az.js'),
(3927, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/bg.js'),
(3928, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ca.js'),
(3929, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/cs.js'),
(3930, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/da.js'),
(3931, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/de.js'),
(3932, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/en.js'),
(3933, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/es.js'),
(3934, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/et.js'),
(3935, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/eu.js'),
(3936, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/fa.js'),
(3937, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/fi.js'),
(3938, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/fr.js'),
(3939, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/gl.js'),
(3940, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/he.js'),
(3941, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/hi.js'),
(3942, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/hr.js'),
(3943, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/hu.js'),
(3944, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/id.js'),
(3945, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/is.js'),
(3946, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/it.js'),
(3947, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ja.js'),
(3948, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ko.js'),
(3949, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/lt.js'),
(3950, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/lv.js'),
(3951, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/mk.js'),
(3952, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/nb.js'),
(3953, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/nl.js'),
(3954, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/pl.js'),
(3955, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/pt-BR.js'),
(3956, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/pt.js'),
(3957, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ro.js'),
(3958, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/ru.js'),
(3959, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/sk.js'),
(3960, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/sr.js'),
(3961, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/sv.js'),
(3962, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/th.js'),
(3963, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/tr.js'),
(3964, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/uk.js'),
(3965, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/vi.js'),
(3966, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/zh-CN.js'),
(3967, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/i18n/zh-TW.js'),
(3968, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/select2.full.js'),
(3969, 'wp-content/plugins/wordpress-popup/assets/js/vendor/select2/js/select2.full.min.js'),
(3970, 'wp-content/plugins/wordpress-popup/assets/js/vendor/wp-color-picker-alpha.min.js'),
(3971, 'wp-content/plugins/wordpress-popup/assets/shared-ui/README.md'),
(3972, 'wp-content/plugins/wordpress-popup/assets/shared-ui/contributors.txt'),
(3973, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU DEV Dashboard.json'),
(3974, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.eot'),
(3975, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.svg'),
(3976, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.ttf'),
(3977, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/WPMU-DEV-App-Icons.woff'),
(3978, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.eot'),
(3979, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.svg'),
(3980, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.svgz'),
(3981, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.ttf'),
(3982, 'wp-content/plugins/wordpress-popup/assets/shared-ui/font/fontawesome-webfont.woff'),
(3983, 'wp-content/plugins/wordpress-popup/assets/shared-ui/img/spin-grey.gif'),
(3984, 'wp-content/plugins/wordpress-popup/assets/shared-ui/img/spin.gif'),
(3985, 'wp-content/plugins/wordpress-popup/assets/shared-ui/notice.css'),
(3986, 'wp-content/plugins/wordpress-popup/assets/shared-ui/notice.js'),
(3987, 'wp-content/plugins/wordpress-popup/assets/shared-ui/plugin-ui.php'),
(3988, 'wp-content/plugins/wordpress-popup/assets/shared-ui/wdev-ui.css'),
(3989, 'wp-content/plugins/wordpress-popup/assets/shared-ui/wdev-ui.js'),
(3990, 'wp-content/plugins/wordpress-popup/changelog.txt'),
(3991, 'wp-content/plugins/wordpress-popup/humans.txt'),
(3992, 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-design.php'),
(3993, 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta-magic-bar.php'),
(3994, 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta-popup.php'),
(3995, 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta-slide-in.php'),
(3996, 'wp-content/plugins/wordpress-popup/inc/custom-content/hustle-custom-content-meta.php'),
(3997, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-abstract.php'),
(3998, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-categories.php'),
(3999, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-from-search-engine.php'),
(4000, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-from-specific-ref.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4001, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-in-a-country.php'),
(4002, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-interface.php'),
(4003, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-from-internal-link.php'),
(4004, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-from-specific-ref.php'),
(4005, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-in-a-country.php'),
(4006, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-on-mobile.php'),
(4007, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-not-on-specific-url.php'),
(4008, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-on-specific-url.php'),
(4009, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-only-on-mobile.php'),
(4010, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-pages.php'),
(4011, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-posts.php'),
(4012, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-shown-less-than.php'),
(4013, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-tags.php'),
(4014, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-has-commented.php'),
(4015, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-has-never-commented.php'),
(4016, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-logged-in.php'),
(4017, 'wp-content/plugins/wordpress-popup/inc/display-conditions/opt-in-condition-visitor-not-logged-in.php'),
(4018, 'wp-content/plugins/wordpress-popup/inc/hustle-collection.php'),
(4019, 'wp-content/plugins/wordpress-popup/inc/hustle-condition-factory.php'),
(4020, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-admin-ajax.php'),
(4021, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-admin.php'),
(4022, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-collection.php'),
(4023, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-decorator.php'),
(4024, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-front-ajax.php'),
(4025, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-front.php'),
(4026, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-model-stats.php'),
(4027, 'wp-content/plugins/wordpress-popup/inc/hustle-custom-content-model.php'),
(4028, 'wp-content/plugins/wordpress-popup/inc/hustle-dashboard-admin.php'),
(4029, 'wp-content/plugins/wordpress-popup/inc/hustle-dashboard-data.php'),
(4030, 'wp-content/plugins/wordpress-popup/inc/hustle-data.php'),
(4031, 'wp-content/plugins/wordpress-popup/inc/hustle-email-services.php'),
(4032, 'wp-content/plugins/wordpress-popup/inc/hustle-legacy-popups-admin.php'),
(4033, 'wp-content/plugins/wordpress-popup/inc/hustle-legacy-popups-ajax.php'),
(4034, 'wp-content/plugins/wordpress-popup/inc/hustle-legacy-popups.php'),
(4035, 'wp-content/plugins/wordpress-popup/inc/hustle-meta.php'),
(4036, 'wp-content/plugins/wordpress-popup/inc/hustle-model.php'),
(4037, 'wp-content/plugins/wordpress-popup/inc/hustle-settings-admin-ajax.php'),
(4038, 'wp-content/plugins/wordpress-popup/inc/hustle-settings-admin.php'),
(4039, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-design-borders.php'),
(4040, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-design-colors.php'),
(4041, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-design.php'),
(4042, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-after-content.php'),
(4043, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-popup.php'),
(4044, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-shortcode.php'),
(4045, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-slide-in.php'),
(4046, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings-widget.php'),
(4047, 'wp-content/plugins/wordpress-popup/inc/meta/opt-in-meta-settings.php'),
(4048, 'wp-content/plugins/wordpress-popup/inc/opt-in-admin-ajax.php'),
(4049, 'wp-content/plugins/wordpress-popup/inc/opt-in-admin.php'),
(4050, 'wp-content/plugins/wordpress-popup/inc/opt-in-collection.php'),
(4051, 'wp-content/plugins/wordpress-popup/inc/opt-in-db.php'),
(4052, 'wp-content/plugins/wordpress-popup/inc/opt-in-decorator.php'),
(4053, 'wp-content/plugins/wordpress-popup/inc/opt-in-front-ajax.php'),
(4054, 'wp-content/plugins/wordpress-popup/inc/opt-in-front.php'),
(4055, 'wp-content/plugins/wordpress-popup/inc/opt-in-geo.php'),
(4056, 'wp-content/plugins/wordpress-popup/inc/opt-in-model-stats.php'),
(4057, 'wp-content/plugins/wordpress-popup/inc/opt-in-model.php'),
(4058, 'wp-content/plugins/wordpress-popup/inc/opt-in-provider-abstract.php'),
(4059, 'wp-content/plugins/wordpress-popup/inc/opt-in-provider-interface.php'),
(4060, 'wp-content/plugins/wordpress-popup/inc/opt-in-utils.php'),
(4061, 'wp-content/plugins/wordpress-popup/inc/opt-in-widget.php'),
(4062, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-activecampaign-api.php'),
(4063, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-activecampaign.php'),
(4064, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-aweber.php'),
(4065, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-campaignmonitor.php'),
(4066, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-constantcontact-loader.php'),
(4067, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-constantcontact.php'),
(4068, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-e-newsletter.php'),
(4069, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-get-response-api.php'),
(4070, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-get-response.php'),
(4071, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-infusion-soft.php'),
(4072, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-infusionsoft-api.php'),
(4073, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-mad-mimi-api.php'),
(4074, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-mad-mimi.php'),
(4075, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-mailchimp.php'),
(4076, 'wp-content/plugins/wordpress-popup/inc/providers/opt-in-sendy.php'),
(4077, 'wp-content/plugins/wordpress-popup/languages/hustle-en_US.mo'),
(4078, 'wp-content/plugins/wordpress-popup/languages/hustle-en_US.po'),
(4079, 'wp-content/plugins/wordpress-popup/lib/free-dashboard/admin.css'),
(4080, 'wp-content/plugins/wordpress-popup/lib/free-dashboard/admin.js'),
(4081, 'wp-content/plugins/wordpress-popup/lib/free-dashboard/module.php'),
(4082, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/Gruntfile.js'),
(4083, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/changelog.txt'),
(4084, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/core.php'),
(4085, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/animate.3.css'),
(4086, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/animate.3.min.css'),
(4087, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/fontawesome.3.css'),
(4088, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/fontawesome.3.min.css'),
(4089, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/jquery-ui.wpmui.3.css'),
(4090, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/jquery-ui.wpmui.3.min.css'),
(4091, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/animate-css/animate.scss'),
(4092, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_animated.scss'),
(4093, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_bordered-pulled.scss'),
(4094, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_core.scss'),
(4095, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_fixed-width.scss'),
(4096, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_icons.scss'),
(4097, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_larger.scss'),
(4098, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_list.scss'),
(4099, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_mixins.scss'),
(4100, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_path.scss') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4101, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_rotated-flipped.scss'),
(4102, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_spinning.scss'),
(4103, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_stacked.scss'),
(4104, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/_variables.scss'),
(4105, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/font-awesome/font-awesome.scss'),
(4106, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/jquery-ui/jquery-ui-1.11.4.custom.scss'),
(4107, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/select2/select2.scss'),
(4108, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-card-list.scss'),
(4109, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-html.scss'),
(4110, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-ui.scss'),
(4111, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/sass/wpmu-vnav.scss'),
(4112, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/select2.3.css'),
(4113, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/select2.3.min.css'),
(4114, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-card-list.3.css'),
(4115, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-card-list.3.min.css'),
(4116, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-html.3.css'),
(4117, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-html.3.min.css'),
(4118, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-ui.3.css'),
(4119, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-ui.3.min.css'),
(4120, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-vnav.3.css'),
(4121, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/css/wpmu-vnav.3.min.css'),
(4122, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/FontAwesome440.otf'),
(4123, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.eot'),
(4124, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.svg'),
(4125, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.ttf'),
(4126, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.woff'),
(4127, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/fonts/fontawesome440-webfont.woff2'),
(4128, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png'),
(4129, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_0_f4fff4_40x100.png'),
(4130, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_0_fff4f4_40x100.png'),
(4131, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_75_cccccc_40x100.png'),
(4132, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_flat_75_ffffff_40x100.png'),
(4133, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_highlight-hard_65_ffffff_1x100.png'),
(4134, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_highlight-hard_75_dadada_1x100.png'),
(4135, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-bg_highlight-hard_75_e6e6e6_1x100.png'),
(4136, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_222222_256x240.png'),
(4137, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_454545_256x240.png'),
(4138, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_484_256x240.png'),
(4139, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_888888_256x240.png'),
(4140, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/jquery-ui/ui-icons_A44_256x240.png'),
(4141, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/select2.png'),
(4142, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/select2x2.png'),
(4143, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/img/spinner.gif'),
(4144, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-array.php'),
(4145, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-core.php'),
(4146, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-debug.php'),
(4147, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-html.php'),
(4148, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-net.php'),
(4149, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-session.php'),
(4150, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-ui.php'),
(4151, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib-updates.php'),
(4152, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/inc/class-thelib.php'),
(4153, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/select2.3.js'),
(4154, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/select2.3.min.js'),
(4155, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ajaxdata.js'),
(4156, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-binary.js'),
(4157, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-card-list.js'),
(4158, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui-hooks.js'),
(4159, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui-progress.js'),
(4160, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui-window.js'),
(4161, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-ui.js'),
(4162, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/src/wpmu-vnav.js'),
(4163, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/vendor/select2/select2.js'),
(4164, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-card-list.3.js'),
(4165, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-card-list.3.min.js'),
(4166, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-ui.3.js'),
(4167, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-ui.3.min.js'),
(4168, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-vnav.3.js'),
(4169, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/js/wpmu-vnav.3.min.js'),
(4170, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/license.txt'),
(4171, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/package.json'),
(4172, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/tests/php/bootstrap.php'),
(4173, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/tests/php/phpunit.xml'),
(4174, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/tests/ui/popup.html'),
(4175, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/view/list.php'),
(4176, 'wp-content/plugins/wordpress-popup/lib/wpmu-lib/view/pointer.php'),
(4177, 'wp-content/plugins/wordpress-popup/license.txt'),
(4178, 'wp-content/plugins/wordpress-popup/opt-in-static.php'),
(4179, 'wp-content/plugins/wordpress-popup/popover.php'),
(4180, 'wp-content/plugins/wordpress-popup/readme.txt'),
(4181, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Auth/CtctDataStore.php'),
(4182, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Auth/CtctOAuth2.php'),
(4183, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Auth/SessionDataStore.php'),
(4184, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Account/AccountInfo.php'),
(4185, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Account/VerifiedEmailAddress.php'),
(4186, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/Activity.php'),
(4187, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/ActivityError.php'),
(4188, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/AddContacts.php'),
(4189, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/AddContactsImportData.php'),
(4190, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Activities/ExportContacts.php'),
(4191, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Component.php'),
(4192, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/Address.php'),
(4193, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/Contact.php'),
(4194, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/ContactList.php'),
(4195, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/CustomField.php'),
(4196, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/EmailAddress.php'),
(4197, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Contacts/Note.php'),
(4198, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/Campaign.php'),
(4199, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/ClickThroughDetails.php'),
(4200, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/MessageFooter.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4201, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/Schedule.php'),
(4202, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/EmailMarketing/TestSend.php'),
(4203, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Library/File.php'),
(4204, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Library/Folder.php'),
(4205, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Library/Thumbnail.php'),
(4206, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/ResultSet.php'),
(4207, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/BounceActivity.php'),
(4208, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/ClickActivity.php'),
(4209, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/ForwardActivity.php'),
(4210, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/OpenActivity.php'),
(4211, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/SendActivity.php'),
(4212, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/TrackingActivity.php'),
(4213, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/TrackingSummary.php'),
(4214, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Components/Tracking/UnsubscribeActivity.php'),
(4215, 'wp-content/plugins/wordpress-popup/vendor/Ctct/ConstantContact.php'),
(4216, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Exceptions/CtctException.php'),
(4217, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Exceptions/IllegalArgumentException.php'),
(4218, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Exceptions/OAuth2Exception.php'),
(4219, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/AccountService.php'),
(4220, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ActivityService.php'),
(4221, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/BaseService.php'),
(4222, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/CampaignScheduleService.php'),
(4223, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/CampaignTrackingService.php'),
(4224, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ContactService.php'),
(4225, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ContactTrackingService.php'),
(4226, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/EmailMarketingService.php'),
(4227, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/LibraryService.php'),
(4228, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Services/ListService.php'),
(4229, 'wp-content/plugins/wordpress-popup/vendor/Ctct/SplClassLoader.php'),
(4230, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/Config.php'),
(4231, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/CurlResponse.php'),
(4232, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/RestClient.php'),
(4233, 'wp-content/plugins/wordpress-popup/vendor/Ctct/Util/RestClientInterface.php'),
(4234, 'wp-content/plugins/wordpress-popup/vendor/Ctct/WebHooks/CTCTWebhookUtil.php'),
(4235, 'wp-content/plugins/wordpress-popup/vendor/Ctct/autoload.php'),
(4236, 'wp-content/plugins/wordpress-popup/vendor/autoload.php'),
(4237, 'wp-content/plugins/wordpress-popup/vendor/autoload_52.php'),
(4238, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/LICENSE'),
(4239, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/README.md'),
(4240, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber.php'),
(4241, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_api.php'),
(4242, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_collection.php'),
(4243, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_entry.php'),
(4244, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_entry_data_array.php'),
(4245, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/aweber_response.php'),
(4246, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/curl_object.php'),
(4247, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/curl_response.php'),
(4248, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/exceptions.php'),
(4249, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/oauth_adapter.php'),
(4250, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/aweber_api/oauth_application.php'),
(4251, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build/phpcs.xml'),
(4252, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build/phpmd.xml'),
(4253, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build/phpunit.xml'),
(4254, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/build.xml'),
(4255, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/composer.json'),
(4256, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/demo.php'),
(4257, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberAPITest.php'),
(4258, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCollectionFindTest.php'),
(4259, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCollectionParentEntryTest.php'),
(4260, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCollectionTest.php'),
(4261, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberCreateEntryTest.php'),
(4262, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/AWeberEntryTest.php'),
(4263, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/MultiVersionTest.php'),
(4264, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/OAuthApplicationTest.php'),
(4265, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/1.json'),
(4266, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/findSubscribers.json'),
(4267, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/findSubscribers_ts.json'),
(4268, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/page1.json'),
(4269, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/webFormSplitTests.json'),
(4270, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/accounts/webForms.json'),
(4271, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/campaigns/303449.json'),
(4272, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/custom_fields/1.json'),
(4273, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/custom_fields/2.json'),
(4274, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/custom_fields/303449.json'),
(4275, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/empty.json'),
(4276, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/error.json'),
(4277, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/303449.json'),
(4278, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/505454.json'),
(4279, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/page1.json'),
(4280, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/lists/page2.json'),
(4281, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/1.json'),
(4282, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/2.json'),
(4283, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/3.json'),
(4284, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/activity.json'),
(4285, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/activity_ts.json'),
(4286, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find.json'),
(4287, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_1of2.json'),
(4288, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_1of2_tsl.json'),
(4289, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_2of2.json'),
(4290, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/find_tsl.json'),
(4291, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/nonexist.json'),
(4292, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/nonexist_tsl.json'),
(4293, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/data/subscribers/page1.json'),
(4294, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/mock_adapter.php'),
(4295, 'wp-content/plugins/wordpress-popup/vendor/aweber/aweber/tests/mock_data.php'),
(4296, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/CONTRIBUTING.md'),
(4297, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/HISTORY.md'),
(4298, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/LICENSE'),
(4299, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/README.md'),
(4300, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/RELEASE.md') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4301, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/base_classes.php'),
(4302, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/cacert.pem'),
(4303, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/exceptions.php'),
(4304, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/log.php'),
(4305, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/serialisation.php'),
(4306, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/services_json.php'),
(4307, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/class/transport.php'),
(4308, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/composer.json'),
(4309, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/composer.lock'),
(4310, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_administrators.php'),
(4311, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_campaigns.php'),
(4312, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_clients.php'),
(4313, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_general.php'),
(4314, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_lists.php'),
(4315, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_people.php'),
(4316, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_segments.php'),
(4317, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_subscribers.php'),
(4318, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_templates.php'),
(4319, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_transactional_classicemail.php'),
(4320, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_transactional_smartemail.php'),
(4321, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/csrest_transactional_timeline.php'),
(4322, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/auth_with_api_key.php'),
(4323, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/auth_with_oauth.php'),
(4324, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/exchange_token.php'),
(4325, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/get_authorize_url.php'),
(4326, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/authentication/refresh_token.php'),
(4327, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/create.php'),
(4328, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/create_from_template.php'),
(4329, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/delete.php'),
(4330, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_bounces.php'),
(4331, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_clicks.php'),
(4332, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_email_client_usage.php'),
(4333, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_lists_and_segments.php'),
(4334, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_opens.php'),
(4335, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_recipients.php'),
(4336, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_spam.php'),
(4337, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_summary.php'),
(4338, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/get_unsubscribes.php'),
(4339, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/send.php'),
(4340, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/send_preview.php'),
(4341, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/campaign/unschedule.php'),
(4342, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/create.php'),
(4343, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/delete.php'),
(4344, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get.php'),
(4345, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_campaigns.php'),
(4346, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_drafts.php'),
(4347, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_lists.php'),
(4348, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_lists_for_email.php'),
(4349, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_scheduled.php'),
(4350, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_segments.php'),
(4351, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_suppressionlist.php'),
(4352, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/get_templates.php'),
(4353, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/set_basics.php'),
(4354, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/set_monthly_billing.php'),
(4355, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/set_payg_billing.php'),
(4356, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/suppress.php'),
(4357, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/transfer_credits.php'),
(4358, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/client/unsuppress.php'),
(4359, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/external_session_url.php'),
(4360, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_apikey.php'),
(4361, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_billing_details.php'),
(4362, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_clients.php'),
(4363, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_countries.php'),
(4364, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_systemdate.php'),
(4365, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/get_timezones.php'),
(4366, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/activate_webhook.php'),
(4367, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/create.php'),
(4368, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/create_custom_field.php'),
(4369, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/create_webhook.php'),
(4370, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/deactivate_webhook.php'),
(4371, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/delete.php'),
(4372, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/delete_custom_field.php'),
(4373, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/delete_webhook.php'),
(4374, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get.php'),
(4375, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_active_subscribers.php'),
(4376, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_bounced_subscribers.php'),
(4377, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_custom_fields.php'),
(4378, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_deleted_subscribers.php'),
(4379, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_segments.php'),
(4380, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_stats.php'),
(4381, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_unconfirmed_subscribers.php'),
(4382, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_unsubscribed_subscribers.php'),
(4383, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/get_webhooks.php'),
(4384, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/list_webhook_receiver.php'),
(4385, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/test_webhook.php'),
(4386, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/update.php'),
(4387, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/update_custom_field.php'),
(4388, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/list/update_field_options.php'),
(4389, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/add_rule.php'),
(4390, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/clear_rules.php'),
(4391, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/create.php'),
(4392, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/delete.php'),
(4393, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/get.php'),
(4394, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/get_subscribers.php'),
(4395, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/segment/update.php'),
(4396, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/add.php'),
(4397, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/delete.php'),
(4398, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/get.php'),
(4399, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/get_history.php'),
(4400, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/import.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4401, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/unsubscribe.php'),
(4402, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/subscriber/update.php'),
(4403, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/create.php'),
(4404, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/delete.php'),
(4405, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/get.php'),
(4406, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/template/update.php'),
(4407, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/classic_groups.php'),
(4408, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/classic_send.php'),
(4409, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/smart_details.php'),
(4410, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/smart_list.php'),
(4411, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/smart_send.php'),
(4412, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/samples/transactional/timeline.php'),
(4413, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/all_tests.php'),
(4414, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/class_tests/response_tests.php'),
(4415, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/class_tests/transport_test.php'),
(4416, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_administrators_test.php'),
(4417, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_campaigns_test.php'),
(4418, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_clients_test.php'),
(4419, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_lists_test.php'),
(4420, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_people_test.php'),
(4421, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_segments_test.php'),
(4422, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_subscribers_test.php'),
(4423, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_template_test.php'),
(4424, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/csrest_test.php'),
(4425, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/active_subscribers.json'),
(4426, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/add_subscriber.json'),
(4427, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/apikey.json'),
(4428, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/bounced_subscribers.json'),
(4429, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_bounces.json'),
(4430, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_clicks.json'),
(4431, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_listsandsegments.json'),
(4432, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_opens.json'),
(4433, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_recipients.json'),
(4434, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_spam.json'),
(4435, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_summary.json'),
(4436, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaign_unsubscribes.json'),
(4437, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/campaigns.json'),
(4438, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/client_details.json'),
(4439, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/clients.json'),
(4440, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/countries.json'),
(4441, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_campaign.json'),
(4442, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_client.json'),
(4443, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_custom_field.json'),
(4444, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_list.json'),
(4445, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_list_webhook.json'),
(4446, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_segment.json'),
(4447, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/create_template.json'),
(4448, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/custom_api_error.json'),
(4449, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/custom_fields.json'),
(4450, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/deleted_subscribers.json'),
(4451, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/drafts.json'),
(4452, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/import_subscribers.json'),
(4453, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/import_subscribers_partial_success.json'),
(4454, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/list_details.json'),
(4455, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/list_stats.json'),
(4456, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/list_webhooks.json'),
(4457, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/lists.json'),
(4458, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/listsforemail.json'),
(4459, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/oauth_exchange_token.json'),
(4460, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/scheduled.json'),
(4461, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/segment_details.json'),
(4462, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/segment_subscribers.json'),
(4463, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/segments.json'),
(4464, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/subscriber_details.json'),
(4465, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/subscriber_history.json'),
(4466, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/suppressionlist.json'),
(4467, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/systemdate.json'),
(4468, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/template_details.json'),
(4469, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/templates.json'),
(4470, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/timezones.json'),
(4471, 'wp-content/plugins/wordpress-popup/vendor/campaignmonitor/createsend-php/tests/responses/unsubscribed_subscribers.json'),
(4472, 'wp-content/plugins/wordpress-popup/vendor/composer/ClassLoader.php'),
(4473, 'wp-content/plugins/wordpress-popup/vendor/composer/ClassLoader52.php'),
(4474, 'wp-content/plugins/wordpress-popup/vendor/composer/LICENSE'),
(4475, 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_classmap.php'),
(4476, 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_namespaces.php'),
(4477, 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_psr4.php'),
(4478, 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_real.php'),
(4479, 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_real_52.php'),
(4480, 'wp-content/plugins/wordpress-popup/vendor/composer/autoload_static.php'),
(4481, 'wp-content/plugins/wordpress-popup/vendor/composer/installed.json'),
(4482, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/README.md'),
(4483, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/apigen.neon'),
(4484, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/composer.json'),
(4485, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/composer.lock'),
(4486, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Campaigns.php'),
(4487, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Conversations.php'),
(4488, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Ecomm.php'),
(4489, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Exceptions.php'),
(4490, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Folders.php'),
(4491, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Gallery.php'),
(4492, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Goal.php'),
(4493, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Helper.php'),
(4494, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Lists.php'),
(4495, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Mobile.php'),
(4496, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Neapolitan.php'),
(4497, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Reports.php'),
(4498, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Templates.php'),
(4499, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Users.php'),
(4500, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp/Vip.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4501, 'wp-content/plugins/wordpress-popup/vendor/mailchimp/mailchimp/src/Mailchimp.php'),
(4502, 'wp-content/plugins/wordpress-popup/views/admin/OLD-wpoi-wizard-design.php'),
(4503, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-design.php'),
(4504, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-listings.php'),
(4505, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-magicbar.php'),
(4506, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-migration.php'),
(4507, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-popup.php'),
(4508, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-preview-container.php'),
(4509, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-settings.php'),
(4510, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-slidein.php'),
(4511, 'wp-content/plugins/wordpress-popup/views/admin/ccontent/ccontent-update.php'),
(4512, 'wp-content/plugins/wordpress-popup/views/admin/common/delete-confirmation.php'),
(4513, 'wp-content/plugins/wordpress-popup/views/admin/common/media-holder.php'),
(4514, 'wp-content/plugins/wordpress-popup/views/admin/custom-content.php'),
(4515, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-conversion-report.php'),
(4516, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-conversion-tracking.php'),
(4517, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-module-edit.php'),
(4518, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-module-setup.php'),
(4519, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-module-stats.php'),
(4520, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-welcome-off.php'),
(4521, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-welcome-on.php'),
(4522, 'wp-content/plugins/wordpress-popup/views/admin/dashboard/widget-welcome.php'),
(4523, 'wp-content/plugins/wordpress-popup/views/admin/emails_list.php'),
(4524, 'wp-content/plugins/wordpress-popup/views/admin/listing.php'),
(4525, 'wp-content/plugins/wordpress-popup/views/admin/new-custom-content.php'),
(4526, 'wp-content/plugins/wordpress-popup/views/admin/new-free-info.php'),
(4527, 'wp-content/plugins/wordpress-popup/views/admin/new-optin_success.php'),
(4528, 'wp-content/plugins/wordpress-popup/views/admin/new-social-group.php'),
(4529, 'wp-content/plugins/wordpress-popup/views/admin/new-social-restriction.php'),
(4530, 'wp-content/plugins/wordpress-popup/views/admin/new-welcome.php'),
(4531, 'wp-content/plugins/wordpress-popup/views/admin/optins/optins-design.php'),
(4532, 'wp-content/plugins/wordpress-popup/views/admin/optins/optins-preview-container.php'),
(4533, 'wp-content/plugins/wordpress-popup/views/admin/provider/activecampaign/args.php'),
(4534, 'wp-content/plugins/wordpress-popup/views/admin/provider/infusionsoft/args.php'),
(4535, 'wp-content/plugins/wordpress-popup/views/admin/provider/mad_mimi/args.php'),
(4536, 'wp-content/plugins/wordpress-popup/views/admin/provider/mailchimp/args.php'),
(4537, 'wp-content/plugins/wordpress-popup/views/admin/provider/sendy/args.php'),
(4538, 'wp-content/plugins/wordpress-popup/views/admin/settings/conditions.php'),
(4539, 'wp-content/plugins/wordpress-popup/views/admin/settings/display-triggers.php'),
(4540, 'wp-content/plugins/wordpress-popup/views/admin/settings/e-news-sync-back.php'),
(4541, 'wp-content/plugins/wordpress-popup/views/admin/settings/e-news-sync-front.php'),
(4542, 'wp-content/plugins/wordpress-popup/views/admin/settings/modules.php'),
(4543, 'wp-content/plugins/wordpress-popup/views/admin/settings/providers-edit-modal-content.php'),
(4544, 'wp-content/plugins/wordpress-popup/views/admin/settings/providers-edit-modal.php'),
(4545, 'wp-content/plugins/wordpress-popup/views/admin/settings/providers-edit.php'),
(4546, 'wp-content/plugins/wordpress-popup/views/admin/settings.php'),
(4547, 'wp-content/plugins/wordpress-popup/views/admin/social-groups.php'),
(4548, 'wp-content/plugins/wordpress-popup/views/admin/social-restrictions.php'),
(4549, 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design-after-submit.php'),
(4550, 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design-shapes.php'),
(4551, 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design-structure.php'),
(4552, 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-design.php'),
(4553, 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-services.php'),
(4554, 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard-settings.php'),
(4555, 'wp-content/plugins/wordpress-popup/views/admin/wpoi-wizard.php'),
(4556, 'wp-content/plugins/wordpress-popup/views/general/alert.php'),
(4557, 'wp-content/plugins/wordpress-popup/views/general/layouts/0.php'),
(4558, 'wp-content/plugins/wordpress-popup/views/general/layouts/1.php'),
(4559, 'wp-content/plugins/wordpress-popup/views/general/layouts/2.php'),
(4560, 'wp-content/plugins/wordpress-popup/views/general/layouts/3.php'),
(4561, 'wp-content/plugins/wordpress-popup/views/general/layouts/cc_shortcode.php'),
(4562, 'wp-content/plugins/wordpress-popup/views/general/layouts/success.php'),
(4563, 'wp-content/plugins/wordpress-popup/views/general/layouts.php'),
(4564, 'wp-content/plugins/wordpress-popup/views/general/modal.php'),
(4565, 'wp-content/plugins/wordpress-popup/views/general/option.php'),
(4566, 'wp-content/plugins/wordpress-popup/views/general/providers/activecampaign.php'),
(4567, 'wp-content/plugins/wordpress-popup/views/general/providers/infusionsoft.php'),
(4568, 'wp-content/plugins/wordpress-popup/views/general/providers/mad_mimi.php'),
(4569, 'wp-content/plugins/wordpress-popup/views/general/providers/mailchimp.php'),
(4570, 'wp-content/plugins/wordpress-popup/views/general/providers/sendy.php'),
(4571, 'wp-content/plugins/wp-migrate-db/asset/dist/css/styles.css'),
(4572, 'wp-content/plugins/wp-migrate-db/asset/dist/img/icon-cli.svg'),
(4573, 'wp-content/plugins/wp-migrate-db/asset/dist/img/icon-media-files.svg'),
(4574, 'wp-content/plugins/wp-migrate-db/asset/dist/img/icon-multisite-tools.svg'),
(4575, 'wp-content/plugins/wp-migrate-db/asset/dist/img/mor10.png'),
(4576, 'wp-content/plugins/wp-migrate-db/asset/dist/img/mor10@2x.png'),
(4577, 'wp-content/plugins/wp-migrate-db/asset/dist/img/welcome.jpg'),
(4578, 'wp-content/plugins/wp-migrate-db/asset/dist/img/wp-migrate-db-pro.jpg'),
(4579, 'wp-content/plugins/wp-migrate-db/asset/dist/img/wp-migrate-db-pro@2x.jpg'),
(4580, 'wp-content/plugins/wp-migrate-db/asset/dist/js/common-092.js'),
(4581, 'wp-content/plugins/wp-migrate-db/asset/dist/js/common-092.min.js'),
(4582, 'wp-content/plugins/wp-migrate-db/asset/dist/js/hook-092.js'),
(4583, 'wp-content/plugins/wp-migrate-db/asset/dist/js/hook-092.min.js'),
(4584, 'wp-content/plugins/wp-migrate-db/asset/dist/js/multisite-092.js'),
(4585, 'wp-content/plugins/wp-migrate-db/asset/dist/js/multisite-092.min.js'),
(4586, 'wp-content/plugins/wp-migrate-db/asset/dist/js/plugin-update-092.js'),
(4587, 'wp-content/plugins/wp-migrate-db/asset/dist/js/plugin-update-092.min.js'),
(4588, 'wp-content/plugins/wp-migrate-db/asset/dist/js/script-092.js'),
(4589, 'wp-content/plugins/wp-migrate-db/asset/dist/js/script-092.min.js'),
(4590, 'wp-content/plugins/wp-migrate-db/class/wpmdb-base.php'),
(4591, 'wp-content/plugins/wp-migrate-db/class/wpmdb-cli.php'),
(4592, 'wp-content/plugins/wp-migrate-db/class/wpmdb-command.php'),
(4593, 'wp-content/plugins/wp-migrate-db/class/wpmdb-filesystem.php'),
(4594, 'wp-content/plugins/wp-migrate-db/class/wpmdb-migration-state.php'),
(4595, 'wp-content/plugins/wp-migrate-db/class/wpmdb-replace.php'),
(4596, 'wp-content/plugins/wp-migrate-db/class/wpmdb-sanitize.php'),
(4597, 'wp-content/plugins/wp-migrate-db/class/wpmdb-utils.php'),
(4598, 'wp-content/plugins/wp-migrate-db/class/wpmdb.php'),
(4599, 'wp-content/plugins/wp-migrate-db/compatibility/wp-migrate-db-pro-compatibility.php'),
(4600, 'wp-content/plugins/wp-migrate-db/languages/wp-migrate-db-en.pot') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4601, 'wp-content/plugins/wp-migrate-db/languages/wp-migrate-db-pt_BR.mo'),
(4602, 'wp-content/plugins/wp-migrate-db/readme.txt'),
(4603, 'wp-content/plugins/wp-migrate-db/template/addons.php'),
(4604, 'wp-content/plugins/wp-migrate-db/template/common/breadcrumbs.php'),
(4605, 'wp-content/plugins/wp-migrate-db/template/common/checkbox.php'),
(4606, 'wp-content/plugins/wp-migrate-db/template/common/compatibility.php'),
(4607, 'wp-content/plugins/wp-migrate-db/template/common/debug-info.php'),
(4608, 'wp-content/plugins/wp-migrate-db/template/common/max-request-size.php'),
(4609, 'wp-content/plugins/wp-migrate-db/template/help.php'),
(4610, 'wp-content/plugins/wp-migrate-db/template/migrate-progress.php'),
(4611, 'wp-content/plugins/wp-migrate-db/template/migrate.php'),
(4612, 'wp-content/plugins/wp-migrate-db/template/options-tools-subsite.php'),
(4613, 'wp-content/plugins/wp-migrate-db/template/options.php'),
(4614, 'wp-content/plugins/wp-migrate-db/template/profile.php'),
(4615, 'wp-content/plugins/wp-migrate-db/template/settings.php'),
(4616, 'wp-content/plugins/wp-migrate-db/template/wpmdb/exclude-post-revisions.php'),
(4617, 'wp-content/plugins/wp-migrate-db/template/wpmdb/progress-upgrade.php'),
(4618, 'wp-content/plugins/wp-migrate-db/template/wpmdb/sidebar.php'),
(4619, 'wp-content/plugins/wp-migrate-db/template/wpmdb/wordpress-org-support.php'),
(4620, 'wp-content/plugins/wp-migrate-db/wp-migrate-db.php'),
(4621, 'wp-content/themes/betheme/404.php'),
(4622, 'wp-content/themes/betheme/assets/animations/animations.js'),
(4623, 'wp-content/themes/betheme/assets/animations/animations.min.js'),
(4624, 'wp-content/themes/betheme/assets/jplayer/jplayer.min.js'),
(4625, 'wp-content/themes/betheme/assets/ui/js/jquery.ui.accordion.js'),
(4626, 'wp-content/themes/betheme/assets/ui/js/jquery.ui.core.js'),
(4627, 'wp-content/themes/betheme/assets/ui/js/jquery.ui.tabs.js'),
(4628, 'wp-content/themes/betheme/assets/ui/js/jquery.ui.widget.js'),
(4629, 'wp-content/themes/betheme/bbpress/content-archive-forum.php'),
(4630, 'wp-content/themes/betheme/bbpress/content-search.php'),
(4631, 'wp-content/themes/betheme/bbpress/content-single-forum.php'),
(4632, 'wp-content/themes/betheme/bbpress/content-single-topic-lead.php'),
(4633, 'wp-content/themes/betheme/bbpress/content-single-topic.php'),
(4634, 'wp-content/themes/betheme/bbpress/form-reply-move.php'),
(4635, 'wp-content/themes/betheme/bbpress/form-reply.php'),
(4636, 'wp-content/themes/betheme/bbpress/form-search.php'),
(4637, 'wp-content/themes/betheme/bbpress/form-topic-merge.php'),
(4638, 'wp-content/themes/betheme/bbpress/form-topic-tag.php'),
(4639, 'wp-content/themes/betheme/bbpress/loop-forums.php'),
(4640, 'wp-content/themes/betheme/bbpress/loop-replies.php'),
(4641, 'wp-content/themes/betheme/bbpress/loop-search-forum.php'),
(4642, 'wp-content/themes/betheme/bbpress/loop-search-reply.php'),
(4643, 'wp-content/themes/betheme/bbpress/loop-search-topic.php'),
(4644, 'wp-content/themes/betheme/bbpress/loop-search.php'),
(4645, 'wp-content/themes/betheme/bbpress/loop-single-forum.php'),
(4646, 'wp-content/themes/betheme/bbpress/loop-single-reply.php'),
(4647, 'wp-content/themes/betheme/bbpress/loop-single-topic.php'),
(4648, 'wp-content/themes/betheme/bbpress/loop-topics.php'),
(4649, 'wp-content/themes/betheme/bbpress/pagination-replies.php'),
(4650, 'wp-content/themes/betheme/bbpress/pagination-search.php'),
(4651, 'wp-content/themes/betheme/bbpress/pagination-topics.php'),
(4652, 'wp-content/themes/betheme/bbpress/user-details.php'),
(4653, 'wp-content/themes/betheme/bbpress/user-profile.php'),
(4654, 'wp-content/themes/betheme/bbpress.php'),
(4655, 'wp-content/themes/betheme/comments.php'),
(4656, 'wp-content/themes/betheme/footer.php'),
(4657, 'wp-content/themes/betheme/functions/builder/front.php'),
(4658, 'wp-content/themes/betheme/functions/builder/js/scripts.js'),
(4659, 'wp-content/themes/betheme/functions/class-love.php'),
(4660, 'wp-content/themes/betheme/functions/class-tgm-plugin-activation.php'),
(4661, 'wp-content/themes/betheme/functions/importer/import.js'),
(4662, 'wp-content/themes/betheme/functions/importer/import.php'),
(4663, 'wp-content/themes/betheme/functions/importer/parsers.php'),
(4664, 'wp-content/themes/betheme/functions/importer/wordpress-importer.php'),
(4665, 'wp-content/themes/betheme/functions/meta-client.php'),
(4666, 'wp-content/themes/betheme/functions/meta-layout.php'),
(4667, 'wp-content/themes/betheme/functions/meta-offer.php'),
(4668, 'wp-content/themes/betheme/functions/meta-page.php'),
(4669, 'wp-content/themes/betheme/functions/meta-portfolio.php'),
(4670, 'wp-content/themes/betheme/functions/meta-post.php'),
(4671, 'wp-content/themes/betheme/functions/meta-slide.php'),
(4672, 'wp-content/themes/betheme/functions/meta-template.php'),
(4673, 'wp-content/themes/betheme/functions/meta-testimonial.php'),
(4674, 'wp-content/themes/betheme/functions/plugins/visual-composer.php'),
(4675, 'wp-content/themes/betheme/functions/system-status.php'),
(4676, 'wp-content/themes/betheme/functions/theme-head.php'),
(4677, 'wp-content/themes/betheme/functions/theme-hooks.php'),
(4678, 'wp-content/themes/betheme/functions/theme-mega-menu.php'),
(4679, 'wp-content/themes/betheme/functions/theme-menu.php'),
(4680, 'wp-content/themes/betheme/functions/theme-shortcodes.php'),
(4681, 'wp-content/themes/betheme/functions/theme-woocommerce.php'),
(4682, 'wp-content/themes/betheme/functions/tinymce/plugin.js'),
(4683, 'wp-content/themes/betheme/functions/tinymce/tinymce.php'),
(4684, 'wp-content/themes/betheme/functions/widget-flickr.php'),
(4685, 'wp-content/themes/betheme/functions/widget-functions.php'),
(4686, 'wp-content/themes/betheme/functions/widget-login.php'),
(4687, 'wp-content/themes/betheme/functions/widget-menu.php'),
(4688, 'wp-content/themes/betheme/functions/widget-recent-comments.php'),
(4689, 'wp-content/themes/betheme/functions/widget-recent-posts.php'),
(4690, 'wp-content/themes/betheme/functions/widget-tag-cloud.php'),
(4691, 'wp-content/themes/betheme/functions.php'),
(4692, 'wp-content/themes/betheme/header-shop.php'),
(4693, 'wp-content/themes/betheme/header.php'),
(4694, 'wp-content/themes/betheme/includes/content-portfolio.php'),
(4695, 'wp-content/themes/betheme/includes/content-post.php'),
(4696, 'wp-content/themes/betheme/includes/content-single-portfolio.php'),
(4697, 'wp-content/themes/betheme/includes/content-single.php'),
(4698, 'wp-content/themes/betheme/includes/header-creative.php'),
(4699, 'wp-content/themes/betheme/includes/header-single-intro.php'),
(4700, 'wp-content/themes/betheme/includes/header-sliding-area.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4701, 'wp-content/themes/betheme/includes/header-top-area.php'),
(4702, 'wp-content/themes/betheme/index.php'),
(4703, 'wp-content/themes/betheme/js/menu.js'),
(4704, 'wp-content/themes/betheme/js/parallax/smoothscroll.js'),
(4705, 'wp-content/themes/betheme/js/parallax/stellar.js'),
(4706, 'wp-content/themes/betheme/js/parallax/translate3d.js'),
(4707, 'wp-content/themes/betheme/js/plugins.js'),
(4708, 'wp-content/themes/betheme/muffin-options/fields/ajax/field_ajax.js'),
(4709, 'wp-content/themes/betheme/muffin-options/fields/ajax/field_ajax.php'),
(4710, 'wp-content/themes/betheme/muffin-options/fields/checkbox/field_checkbox.js'),
(4711, 'wp-content/themes/betheme/muffin-options/fields/checkbox/field_checkbox.php'),
(4712, 'wp-content/themes/betheme/muffin-options/fields/color/field_color.js'),
(4713, 'wp-content/themes/betheme/muffin-options/fields/color/field_color.php'),
(4714, 'wp-content/themes/betheme/muffin-options/fields/color_gradient/field_color_gradient.php'),
(4715, 'wp-content/themes/betheme/muffin-options/fields/custom/field_custom.php'),
(4716, 'wp-content/themes/betheme/muffin-options/fields/font_select/field_font_select.php'),
(4717, 'wp-content/themes/betheme/muffin-options/fields/icon/field_icon.js'),
(4718, 'wp-content/themes/betheme/muffin-options/fields/icon/field_icon.php'),
(4719, 'wp-content/themes/betheme/muffin-options/fields/info/field_info.php'),
(4720, 'wp-content/themes/betheme/muffin-options/fields/multi_text/field_multi_text.js'),
(4721, 'wp-content/themes/betheme/muffin-options/fields/multi_text/field_multi_text.php'),
(4722, 'wp-content/themes/betheme/muffin-options/fields/pages_select/field_pages_select.php'),
(4723, 'wp-content/themes/betheme/muffin-options/fields/radio_img/field_radio_img.js'),
(4724, 'wp-content/themes/betheme/muffin-options/fields/radio_img/field_radio_img.php'),
(4725, 'wp-content/themes/betheme/muffin-options/fields/select/field_select.php'),
(4726, 'wp-content/themes/betheme/muffin-options/fields/sliderbar/field_sliderbar.js'),
(4727, 'wp-content/themes/betheme/muffin-options/fields/sliderbar/field_sliderbar.php'),
(4728, 'wp-content/themes/betheme/muffin-options/fields/sliderbar/jquery.ui.slider.js'),
(4729, 'wp-content/themes/betheme/muffin-options/fields/switch/field_switch.js'),
(4730, 'wp-content/themes/betheme/muffin-options/fields/switch/field_switch.php'),
(4731, 'wp-content/themes/betheme/muffin-options/fields/tabs/field_tabs.js'),
(4732, 'wp-content/themes/betheme/muffin-options/fields/tabs/field_tabs.php'),
(4733, 'wp-content/themes/betheme/muffin-options/fields/text/field_text.php'),
(4734, 'wp-content/themes/betheme/muffin-options/fields/textarea/field_textarea.php'),
(4735, 'wp-content/themes/betheme/muffin-options/fields/typography/field_typography.php'),
(4736, 'wp-content/themes/betheme/muffin-options/fields/upload/field_upload.js'),
(4737, 'wp-content/themes/betheme/muffin-options/fields/upload/field_upload.php'),
(4738, 'wp-content/themes/betheme/muffin-options/fonts.php'),
(4739, 'wp-content/themes/betheme/muffin-options/js/options.js'),
(4740, 'wp-content/themes/betheme/muffin-options/options.php'),
(4741, 'wp-content/themes/betheme/muffin-options/theme-options.php'),
(4742, 'wp-content/themes/betheme/muffin-options/validation/color/validation_color.php'),
(4743, 'wp-content/themes/betheme/muffin-options/validation/email/validation_email.php'),
(4744, 'wp-content/themes/betheme/muffin-options/validation/html/validation_html.php'),
(4745, 'wp-content/themes/betheme/muffin-options/validation/html_custom/validation_html_custom.php'),
(4746, 'wp-content/themes/betheme/muffin-options/validation/js/validation_js.php'),
(4747, 'wp-content/themes/betheme/muffin-options/validation/no_html/validation_no_html.php'),
(4748, 'wp-content/themes/betheme/muffin-options/validation/no_special_chars/validation_no_special_chars.php'),
(4749, 'wp-content/themes/betheme/muffin-options/validation/numeric/validation_numeric.php'),
(4750, 'wp-content/themes/betheme/muffin-options/validation/preg_replace/validation_preg_replace.php'),
(4751, 'wp-content/themes/betheme/muffin-options/validation/str_replace/validation_str_replace.php'),
(4752, 'wp-content/themes/betheme/muffin-options/validation/url/validation_url.php'),
(4753, 'wp-content/themes/betheme/page.php'),
(4754, 'wp-content/themes/betheme/search.php'),
(4755, 'wp-content/themes/betheme/searchform.php'),
(4756, 'wp-content/themes/betheme/sidebar-blog.php'),
(4757, 'wp-content/themes/betheme/sidebar-taxonomy.php'),
(4758, 'wp-content/themes/betheme/sidebar.php'),
(4759, 'wp-content/themes/betheme/single-attachment.php'),
(4760, 'wp-content/themes/betheme/single-download.php'),
(4761, 'wp-content/themes/betheme/single-portfolio.php'),
(4762, 'wp-content/themes/betheme/single.php'),
(4763, 'wp-content/themes/betheme/style-colors.php'),
(4764, 'wp-content/themes/betheme/style-one.php'),
(4765, 'wp-content/themes/betheme/style-responsive.php'),
(4766, 'wp-content/themes/betheme/style.php'),
(4767, 'wp-content/themes/betheme/taxonomy-portfolio-types.php'),
(4768, 'wp-content/themes/betheme/template-archives.php'),
(4769, 'wp-content/themes/betheme/template-blank.php'),
(4770, 'wp-content/themes/betheme/template-portfolio.php'),
(4771, 'wp-content/themes/betheme/template-sitemap.php'),
(4772, 'wp-content/themes/betheme/tribe-events/default-template.php'),
(4773, 'wp-content/themes/betheme/under-construction.php'),
(4774, 'wp-content/themes/betheme/vc_templates/vc_accordion.php'),
(4775, 'wp-content/themes/betheme/vc_templates/vc_accordion_tab.php'),
(4776, 'wp-content/themes/betheme/vc_templates/vc_tabs.php'),
(4777, 'wp-content/themes/betheme/vc_templates/vc_toggle.php'),
(4778, 'wp-content/themes/betheme/woocommerce/archive-product.php'),
(4779, 'wp-content/themes/betheme/woocommerce/cart/cart.php'),
(4780, 'wp-content/themes/betheme/woocommerce/cart/mini-cart.php'),
(4781, 'wp-content/themes/betheme/woocommerce/content-product.php'),
(4782, 'wp-content/themes/betheme/woocommerce/content-single-product.php'),
(4783, 'wp-content/themes/betheme/woocommerce/loop/loop-end.php'),
(4784, 'wp-content/themes/betheme/woocommerce/loop/loop-start.php'),
(4785, 'wp-content/themes/betheme/woocommerce/loop/no-products-found.php'),
(4786, 'wp-content/themes/betheme/woocommerce/loop/orderby.php'),
(4787, 'wp-content/themes/betheme/woocommerce/loop/pagination.php'),
(4788, 'wp-content/themes/betheme/woocommerce/loop/price.php'),
(4789, 'wp-content/themes/betheme/woocommerce/loop/rating.php'),
(4790, 'wp-content/themes/betheme/woocommerce/loop/result-count.php'),
(4791, 'wp-content/themes/betheme/woocommerce/loop/sale-flash.php'),
(4792, 'wp-content/themes/betheme/woocommerce/notices/error.php'),
(4793, 'wp-content/themes/betheme/woocommerce/notices/notice.php'),
(4794, 'wp-content/themes/betheme/woocommerce/notices/success.php'),
(4795, 'wp-content/themes/betheme/woocommerce/single-product/add-to-cart/external.php'),
(4796, 'wp-content/themes/betheme/woocommerce/single-product/meta.php'),
(4797, 'wp-content/themes/betheme/woocommerce/single-product/price.php'),
(4798, 'wp-content/themes/betheme/woocommerce/single-product/product-attributes.php'),
(4799, 'wp-content/themes/betheme/woocommerce/single-product/product-image.php'),
(4800, 'wp-content/themes/betheme/woocommerce/single-product/product-thumbnails.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4801, 'wp-content/themes/betheme/woocommerce/single-product/related.php'),
(4802, 'wp-content/themes/betheme/woocommerce/single-product/sale-flash.php'),
(4803, 'wp-content/themes/betheme/woocommerce/single-product/share.php'),
(4804, 'wp-content/themes/betheme/woocommerce/single-product/short-description.php'),
(4805, 'wp-content/themes/betheme/woocommerce/single-product/tabs/additional-information.php'),
(4806, 'wp-content/themes/betheme/woocommerce/single-product/tabs/description.php'),
(4807, 'wp-content/themes/betheme/woocommerce/single-product/tabs/tabs.php'),
(4808, 'wp-content/themes/betheme/woocommerce/single-product/title.php'),
(4809, 'wp-content/themes/betheme/woocommerce/single-product/up-sells.php'),
(4810, 'wp-content/themes/betheme/woocommerce/single-product.php'),
(4811, 'wp-content/themes/index.php'),
(4812, 'wp-content/themes/twentyfifteen/404.php'),
(4813, 'wp-content/themes/twentyfifteen/archive.php'),
(4814, 'wp-content/themes/twentyfifteen/author-bio.php'),
(4815, 'wp-content/themes/twentyfifteen/comments.php'),
(4816, 'wp-content/themes/twentyfifteen/content-link.php'),
(4817, 'wp-content/themes/twentyfifteen/content-none.php'),
(4818, 'wp-content/themes/twentyfifteen/content-page.php'),
(4819, 'wp-content/themes/twentyfifteen/content-search.php'),
(4820, 'wp-content/themes/twentyfifteen/content.php'),
(4821, 'wp-content/themes/twentyfifteen/css/editor-style.css'),
(4822, 'wp-content/themes/twentyfifteen/css/ie.css'),
(4823, 'wp-content/themes/twentyfifteen/css/ie7.css'),
(4824, 'wp-content/themes/twentyfifteen/footer.php'),
(4825, 'wp-content/themes/twentyfifteen/functions.php'),
(4826, 'wp-content/themes/twentyfifteen/genericons/COPYING.txt'),
(4827, 'wp-content/themes/twentyfifteen/genericons/Genericons.eot'),
(4828, 'wp-content/themes/twentyfifteen/genericons/Genericons.svg'),
(4829, 'wp-content/themes/twentyfifteen/genericons/Genericons.ttf'),
(4830, 'wp-content/themes/twentyfifteen/genericons/Genericons.woff'),
(4831, 'wp-content/themes/twentyfifteen/genericons/LICENSE.txt'),
(4832, 'wp-content/themes/twentyfifteen/genericons/README.md'),
(4833, 'wp-content/themes/twentyfifteen/genericons/genericons.css'),
(4834, 'wp-content/themes/twentyfifteen/header.php'),
(4835, 'wp-content/themes/twentyfifteen/image.php'),
(4836, 'wp-content/themes/twentyfifteen/inc/back-compat.php'),
(4837, 'wp-content/themes/twentyfifteen/inc/custom-header.php'),
(4838, 'wp-content/themes/twentyfifteen/inc/customizer.php'),
(4839, 'wp-content/themes/twentyfifteen/inc/template-tags.php'),
(4840, 'wp-content/themes/twentyfifteen/index.php'),
(4841, 'wp-content/themes/twentyfifteen/js/color-scheme-control.js'),
(4842, 'wp-content/themes/twentyfifteen/js/customize-preview.js'),
(4843, 'wp-content/themes/twentyfifteen/js/functions.js'),
(4844, 'wp-content/themes/twentyfifteen/js/html5.js'),
(4845, 'wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js'),
(4846, 'wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js'),
(4847, 'wp-content/themes/twentyfifteen/languages/twentyfifteen.pot'),
(4848, 'wp-content/themes/twentyfifteen/page.php'),
(4849, 'wp-content/themes/twentyfifteen/readme.txt'),
(4850, 'wp-content/themes/twentyfifteen/rtl.css'),
(4851, 'wp-content/themes/twentyfifteen/screenshot.png'),
(4852, 'wp-content/themes/twentyfifteen/search.php'),
(4853, 'wp-content/themes/twentyfifteen/sidebar.php'),
(4854, 'wp-content/themes/twentyfifteen/single.php'),
(4855, 'wp-content/themes/twentyfifteen/style.css'),
(4856, 'wp-content/themes/twentyfourteen/404.php'),
(4857, 'wp-content/themes/twentyfourteen/archive.php'),
(4858, 'wp-content/themes/twentyfourteen/author.php'),
(4859, 'wp-content/themes/twentyfourteen/category.php'),
(4860, 'wp-content/themes/twentyfourteen/comments.php'),
(4861, 'wp-content/themes/twentyfourteen/content-aside.php'),
(4862, 'wp-content/themes/twentyfourteen/content-audio.php'),
(4863, 'wp-content/themes/twentyfourteen/content-featured-post.php'),
(4864, 'wp-content/themes/twentyfourteen/content-gallery.php'),
(4865, 'wp-content/themes/twentyfourteen/content-image.php'),
(4866, 'wp-content/themes/twentyfourteen/content-link.php'),
(4867, 'wp-content/themes/twentyfourteen/content-none.php'),
(4868, 'wp-content/themes/twentyfourteen/content-page.php'),
(4869, 'wp-content/themes/twentyfourteen/content-quote.php'),
(4870, 'wp-content/themes/twentyfourteen/content-video.php'),
(4871, 'wp-content/themes/twentyfourteen/content.php'),
(4872, 'wp-content/themes/twentyfourteen/css/editor-style.css'),
(4873, 'wp-content/themes/twentyfourteen/css/ie.css'),
(4874, 'wp-content/themes/twentyfourteen/featured-content.php'),
(4875, 'wp-content/themes/twentyfourteen/footer.php'),
(4876, 'wp-content/themes/twentyfourteen/functions.php'),
(4877, 'wp-content/themes/twentyfourteen/genericons/COPYING.txt'),
(4878, 'wp-content/themes/twentyfourteen/genericons/Genericons-Regular.otf'),
(4879, 'wp-content/themes/twentyfourteen/genericons/LICENSE.txt'),
(4880, 'wp-content/themes/twentyfourteen/genericons/README.txt'),
(4881, 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.eot'),
(4882, 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.svg'),
(4883, 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.ttf'),
(4884, 'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.woff'),
(4885, 'wp-content/themes/twentyfourteen/genericons/genericons.css'),
(4886, 'wp-content/themes/twentyfourteen/header.php'),
(4887, 'wp-content/themes/twentyfourteen/image.php'),
(4888, 'wp-content/themes/twentyfourteen/images/pattern-dark.svg'),
(4889, 'wp-content/themes/twentyfourteen/images/pattern-light.svg'),
(4890, 'wp-content/themes/twentyfourteen/inc/back-compat.php'),
(4891, 'wp-content/themes/twentyfourteen/inc/custom-header.php'),
(4892, 'wp-content/themes/twentyfourteen/inc/customizer.php'),
(4893, 'wp-content/themes/twentyfourteen/inc/featured-content.php'),
(4894, 'wp-content/themes/twentyfourteen/inc/template-tags.php'),
(4895, 'wp-content/themes/twentyfourteen/inc/widgets.php'),
(4896, 'wp-content/themes/twentyfourteen/index.php'),
(4897, 'wp-content/themes/twentyfourteen/js/customizer.js'),
(4898, 'wp-content/themes/twentyfourteen/js/featured-content-admin.js'),
(4899, 'wp-content/themes/twentyfourteen/js/functions.js'),
(4900, 'wp-content/themes/twentyfourteen/js/html5.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(4901, 'wp-content/themes/twentyfourteen/js/keyboard-image-navigation.js'),
(4902, 'wp-content/themes/twentyfourteen/js/slider.js'),
(4903, 'wp-content/themes/twentyfourteen/languages/twentyfourteen.pot'),
(4904, 'wp-content/themes/twentyfourteen/page-templates/contributors.php'),
(4905, 'wp-content/themes/twentyfourteen/page-templates/full-width.php'),
(4906, 'wp-content/themes/twentyfourteen/page.php'),
(4907, 'wp-content/themes/twentyfourteen/readme.txt'),
(4908, 'wp-content/themes/twentyfourteen/rtl.css'),
(4909, 'wp-content/themes/twentyfourteen/screenshot.png'),
(4910, 'wp-content/themes/twentyfourteen/search.php'),
(4911, 'wp-content/themes/twentyfourteen/sidebar-content.php'),
(4912, 'wp-content/themes/twentyfourteen/sidebar-footer.php'),
(4913, 'wp-content/themes/twentyfourteen/sidebar.php'),
(4914, 'wp-content/themes/twentyfourteen/single.php'),
(4915, 'wp-content/themes/twentyfourteen/style.css'),
(4916, 'wp-content/themes/twentyfourteen/tag.php'),
(4917, 'wp-content/themes/twentyfourteen/taxonomy-post_format.php'),
(4918, 'wp-content/themes/twentysixteen/404.php'),
(4919, 'wp-content/themes/twentysixteen/archive.php'),
(4920, 'wp-content/themes/twentysixteen/comments.php'),
(4921, 'wp-content/themes/twentysixteen/css/editor-style.css'),
(4922, 'wp-content/themes/twentysixteen/css/ie.css'),
(4923, 'wp-content/themes/twentysixteen/css/ie7.css'),
(4924, 'wp-content/themes/twentysixteen/css/ie8.css'),
(4925, 'wp-content/themes/twentysixteen/footer.php'),
(4926, 'wp-content/themes/twentysixteen/functions.php'),
(4927, 'wp-content/themes/twentysixteen/genericons/COPYING.txt'),
(4928, 'wp-content/themes/twentysixteen/genericons/Genericons.eot'),
(4929, 'wp-content/themes/twentysixteen/genericons/Genericons.svg'),
(4930, 'wp-content/themes/twentysixteen/genericons/Genericons.ttf'),
(4931, 'wp-content/themes/twentysixteen/genericons/Genericons.woff'),
(4932, 'wp-content/themes/twentysixteen/genericons/LICENSE.txt'),
(4933, 'wp-content/themes/twentysixteen/genericons/README.md'),
(4934, 'wp-content/themes/twentysixteen/genericons/genericons.css'),
(4935, 'wp-content/themes/twentysixteen/header.php'),
(4936, 'wp-content/themes/twentysixteen/image.php'),
(4937, 'wp-content/themes/twentysixteen/inc/back-compat.php'),
(4938, 'wp-content/themes/twentysixteen/inc/customizer.php'),
(4939, 'wp-content/themes/twentysixteen/inc/template-tags.php'),
(4940, 'wp-content/themes/twentysixteen/index.php'),
(4941, 'wp-content/themes/twentysixteen/js/color-scheme-control.js'),
(4942, 'wp-content/themes/twentysixteen/js/customize-preview.js'),
(4943, 'wp-content/themes/twentysixteen/js/functions.js'),
(4944, 'wp-content/themes/twentysixteen/js/html5.js'),
(4945, 'wp-content/themes/twentysixteen/js/keyboard-image-navigation.js'),
(4946, 'wp-content/themes/twentysixteen/js/skip-link-focus-fix.js'),
(4947, 'wp-content/themes/twentysixteen/languages/twentysixteen.pot'),
(4948, 'wp-content/themes/twentysixteen/page.php'),
(4949, 'wp-content/themes/twentysixteen/readme.txt'),
(4950, 'wp-content/themes/twentysixteen/rtl.css'),
(4951, 'wp-content/themes/twentysixteen/screenshot.png'),
(4952, 'wp-content/themes/twentysixteen/search.php'),
(4953, 'wp-content/themes/twentysixteen/searchform.php'),
(4954, 'wp-content/themes/twentysixteen/sidebar-content-bottom.php'),
(4955, 'wp-content/themes/twentysixteen/sidebar.php'),
(4956, 'wp-content/themes/twentysixteen/single.php'),
(4957, 'wp-content/themes/twentysixteen/style.css'),
(4958, 'wp-content/themes/twentysixteen/template-parts/biography.php'),
(4959, 'wp-content/themes/twentysixteen/template-parts/content-none.php'),
(4960, 'wp-content/themes/twentysixteen/template-parts/content-page.php'),
(4961, 'wp-content/themes/twentysixteen/template-parts/content-search.php'),
(4962, 'wp-content/themes/twentysixteen/template-parts/content-single.php'),
(4963, 'wp-content/themes/twentysixteen/template-parts/content.php'),
(4964, 'wp-content/uploads/hm_custom_css_js/custom.js'),
(4965, 'wp-content/uploads/wp-migrate-db/index.php'),
(4966, 'wp-content/wflogs/attack-data.php'),
(4967, 'wp-content/wflogs/config.php'),
(4968, 'wp-content/wflogs/ips.php'),
(4969, 'wp-cron.php'),
(4970, 'wp-includes/ID3/getid3.lib.php'),
(4971, 'wp-includes/ID3/getid3.php'),
(4972, 'wp-includes/ID3/license.commercial.txt'),
(4973, 'wp-includes/ID3/license.txt'),
(4974, 'wp-includes/ID3/module.audio-video.asf.php'),
(4975, 'wp-includes/ID3/module.audio-video.flv.php'),
(4976, 'wp-includes/ID3/module.audio-video.matroska.php'),
(4977, 'wp-includes/ID3/module.audio-video.quicktime.php'),
(4978, 'wp-includes/ID3/module.audio-video.riff.php'),
(4979, 'wp-includes/ID3/module.audio.ac3.php'),
(4980, 'wp-includes/ID3/module.audio.dts.php'),
(4981, 'wp-includes/ID3/module.audio.flac.php'),
(4982, 'wp-includes/ID3/module.audio.mp3.php'),
(4983, 'wp-includes/ID3/module.audio.ogg.php'),
(4984, 'wp-includes/ID3/module.tag.apetag.php'),
(4985, 'wp-includes/ID3/module.tag.id3v1.php'),
(4986, 'wp-includes/ID3/module.tag.id3v2.php'),
(4987, 'wp-includes/ID3/module.tag.lyrics3.php'),
(4988, 'wp-includes/ID3/readme.txt'),
(4989, 'wp-includes/IXR/class-IXR-base64.php'),
(4990, 'wp-includes/IXR/class-IXR-client.php'),
(4991, 'wp-includes/IXR/class-IXR-clientmulticall.php'),
(4992, 'wp-includes/IXR/class-IXR-date.php'),
(4993, 'wp-includes/IXR/class-IXR-error.php'),
(4994, 'wp-includes/IXR/class-IXR-introspectionserver.php'),
(4995, 'wp-includes/IXR/class-IXR-message.php'),
(4996, 'wp-includes/IXR/class-IXR-request.php'),
(4997, 'wp-includes/IXR/class-IXR-server.php'),
(4998, 'wp-includes/IXR/class-IXR-value.php'),
(4999, 'wp-includes/Requests/Auth/Basic.php'),
(5000, 'wp-includes/Requests/Auth.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5001, 'wp-includes/Requests/Cookie/Jar.php'),
(5002, 'wp-includes/Requests/Cookie.php'),
(5003, 'wp-includes/Requests/Exception/HTTP/304.php'),
(5004, 'wp-includes/Requests/Exception/HTTP/305.php'),
(5005, 'wp-includes/Requests/Exception/HTTP/306.php'),
(5006, 'wp-includes/Requests/Exception/HTTP/400.php'),
(5007, 'wp-includes/Requests/Exception/HTTP/401.php'),
(5008, 'wp-includes/Requests/Exception/HTTP/402.php'),
(5009, 'wp-includes/Requests/Exception/HTTP/403.php'),
(5010, 'wp-includes/Requests/Exception/HTTP/404.php'),
(5011, 'wp-includes/Requests/Exception/HTTP/405.php'),
(5012, 'wp-includes/Requests/Exception/HTTP/406.php'),
(5013, 'wp-includes/Requests/Exception/HTTP/407.php'),
(5014, 'wp-includes/Requests/Exception/HTTP/408.php'),
(5015, 'wp-includes/Requests/Exception/HTTP/409.php'),
(5016, 'wp-includes/Requests/Exception/HTTP/410.php'),
(5017, 'wp-includes/Requests/Exception/HTTP/411.php'),
(5018, 'wp-includes/Requests/Exception/HTTP/412.php'),
(5019, 'wp-includes/Requests/Exception/HTTP/413.php'),
(5020, 'wp-includes/Requests/Exception/HTTP/414.php'),
(5021, 'wp-includes/Requests/Exception/HTTP/415.php'),
(5022, 'wp-includes/Requests/Exception/HTTP/416.php'),
(5023, 'wp-includes/Requests/Exception/HTTP/417.php'),
(5024, 'wp-includes/Requests/Exception/HTTP/418.php'),
(5025, 'wp-includes/Requests/Exception/HTTP/428.php'),
(5026, 'wp-includes/Requests/Exception/HTTP/429.php'),
(5027, 'wp-includes/Requests/Exception/HTTP/431.php'),
(5028, 'wp-includes/Requests/Exception/HTTP/500.php'),
(5029, 'wp-includes/Requests/Exception/HTTP/501.php'),
(5030, 'wp-includes/Requests/Exception/HTTP/502.php'),
(5031, 'wp-includes/Requests/Exception/HTTP/503.php'),
(5032, 'wp-includes/Requests/Exception/HTTP/504.php'),
(5033, 'wp-includes/Requests/Exception/HTTP/505.php'),
(5034, 'wp-includes/Requests/Exception/HTTP/511.php'),
(5035, 'wp-includes/Requests/Exception/HTTP/Unknown.php'),
(5036, 'wp-includes/Requests/Exception/HTTP.php'),
(5037, 'wp-includes/Requests/Exception/Transport/cURL.php'),
(5038, 'wp-includes/Requests/Exception/Transport.php'),
(5039, 'wp-includes/Requests/Exception.php'),
(5040, 'wp-includes/Requests/Hooker.php'),
(5041, 'wp-includes/Requests/Hooks.php'),
(5042, 'wp-includes/Requests/IDNAEncoder.php'),
(5043, 'wp-includes/Requests/IPv6.php'),
(5044, 'wp-includes/Requests/IRI.php'),
(5045, 'wp-includes/Requests/Proxy/HTTP.php'),
(5046, 'wp-includes/Requests/Proxy.php'),
(5047, 'wp-includes/Requests/Response/Headers.php'),
(5048, 'wp-includes/Requests/Response.php'),
(5049, 'wp-includes/Requests/SSL.php'),
(5050, 'wp-includes/Requests/Session.php'),
(5051, 'wp-includes/Requests/Transport/cURL.php'),
(5052, 'wp-includes/Requests/Transport/fsockopen.php'),
(5053, 'wp-includes/Requests/Transport.php'),
(5054, 'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),
(5055, 'wp-includes/Requests/Utility/FilteredIterator.php'),
(5056, 'wp-includes/SimplePie/Author.php'),
(5057, 'wp-includes/SimplePie/Cache/Base.php'),
(5058, 'wp-includes/SimplePie/Cache/DB.php'),
(5059, 'wp-includes/SimplePie/Cache/File.php'),
(5060, 'wp-includes/SimplePie/Cache/Memcache.php'),
(5061, 'wp-includes/SimplePie/Cache/MySQL.php'),
(5062, 'wp-includes/SimplePie/Cache.php'),
(5063, 'wp-includes/SimplePie/Caption.php'),
(5064, 'wp-includes/SimplePie/Category.php'),
(5065, 'wp-includes/SimplePie/Content/Type/Sniffer.php'),
(5066, 'wp-includes/SimplePie/Copyright.php'),
(5067, 'wp-includes/SimplePie/Core.php'),
(5068, 'wp-includes/SimplePie/Credit.php'),
(5069, 'wp-includes/SimplePie/Decode/HTML/Entities.php'),
(5070, 'wp-includes/SimplePie/Enclosure.php'),
(5071, 'wp-includes/SimplePie/Exception.php'),
(5072, 'wp-includes/SimplePie/File.php'),
(5073, 'wp-includes/SimplePie/HTTP/Parser.php'),
(5074, 'wp-includes/SimplePie/IRI.php'),
(5075, 'wp-includes/SimplePie/Item.php'),
(5076, 'wp-includes/SimplePie/Locator.php'),
(5077, 'wp-includes/SimplePie/Misc.php'),
(5078, 'wp-includes/SimplePie/Net/IPv6.php'),
(5079, 'wp-includes/SimplePie/Parse/Date.php'),
(5080, 'wp-includes/SimplePie/Parser.php'),
(5081, 'wp-includes/SimplePie/Rating.php'),
(5082, 'wp-includes/SimplePie/Registry.php'),
(5083, 'wp-includes/SimplePie/Restriction.php'),
(5084, 'wp-includes/SimplePie/Sanitize.php'),
(5085, 'wp-includes/SimplePie/Source.php'),
(5086, 'wp-includes/SimplePie/XML/Declaration/Parser.php'),
(5087, 'wp-includes/SimplePie/gzdecode.php'),
(5088, 'wp-includes/Text/Diff/Engine/native.php'),
(5089, 'wp-includes/Text/Diff/Engine/shell.php'),
(5090, 'wp-includes/Text/Diff/Engine/string.php'),
(5091, 'wp-includes/Text/Diff/Engine/xdiff.php'),
(5092, 'wp-includes/Text/Diff/Renderer/inline.php'),
(5093, 'wp-includes/Text/Diff/Renderer.php'),
(5094, 'wp-includes/Text/Diff.php'),
(5095, 'wp-includes/admin-bar.php'),
(5096, 'wp-includes/atomlib.php'),
(5097, 'wp-includes/author-template.php'),
(5098, 'wp-includes/bookmark-template.php'),
(5099, 'wp-includes/bookmark.php'),
(5100, 'wp-includes/cache.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5101, 'wp-includes/canonical.php'),
(5102, 'wp-includes/capabilities.php'),
(5103, 'wp-includes/category-template.php'),
(5104, 'wp-includes/category.php'),
(5105, 'wp-includes/certificates/ca-bundle.crt'),
(5106, 'wp-includes/class-IXR.php'),
(5107, 'wp-includes/class-feed.php'),
(5108, 'wp-includes/class-http.php'),
(5109, 'wp-includes/class-json.php'),
(5110, 'wp-includes/class-oembed.php'),
(5111, 'wp-includes/class-phpass.php'),
(5112, 'wp-includes/class-phpmailer.php'),
(5113, 'wp-includes/class-pop3.php'),
(5114, 'wp-includes/class-requests.php'),
(5115, 'wp-includes/class-simplepie.php'),
(5116, 'wp-includes/class-smtp.php'),
(5117, 'wp-includes/class-snoopy.php'),
(5118, 'wp-includes/class-walker-category-dropdown.php'),
(5119, 'wp-includes/class-walker-category.php'),
(5120, 'wp-includes/class-walker-comment.php'),
(5121, 'wp-includes/class-walker-nav-menu.php'),
(5122, 'wp-includes/class-walker-page-dropdown.php'),
(5123, 'wp-includes/class-walker-page.php'),
(5124, 'wp-includes/class-wp-admin-bar.php'),
(5125, 'wp-includes/class-wp-ajax-response.php'),
(5126, 'wp-includes/class-wp-comment-query.php'),
(5127, 'wp-includes/class-wp-comment.php'),
(5128, 'wp-includes/class-wp-customize-control.php'),
(5129, 'wp-includes/class-wp-customize-manager.php'),
(5130, 'wp-includes/class-wp-customize-nav-menus.php'),
(5131, 'wp-includes/class-wp-customize-panel.php'),
(5132, 'wp-includes/class-wp-customize-section.php'),
(5133, 'wp-includes/class-wp-customize-setting.php'),
(5134, 'wp-includes/class-wp-customize-widgets.php'),
(5135, 'wp-includes/class-wp-dependency.php'),
(5136, 'wp-includes/class-wp-editor.php'),
(5137, 'wp-includes/class-wp-embed.php'),
(5138, 'wp-includes/class-wp-error.php'),
(5139, 'wp-includes/class-wp-feed-cache-transient.php'),
(5140, 'wp-includes/class-wp-feed-cache.php'),
(5141, 'wp-includes/class-wp-hook.php'),
(5142, 'wp-includes/class-wp-http-cookie.php'),
(5143, 'wp-includes/class-wp-http-curl.php'),
(5144, 'wp-includes/class-wp-http-encoding.php'),
(5145, 'wp-includes/class-wp-http-ixr-client.php'),
(5146, 'wp-includes/class-wp-http-proxy.php'),
(5147, 'wp-includes/class-wp-http-requests-hooks.php'),
(5148, 'wp-includes/class-wp-http-requests-response.php'),
(5149, 'wp-includes/class-wp-http-response.php'),
(5150, 'wp-includes/class-wp-http-streams.php'),
(5151, 'wp-includes/class-wp-image-editor-gd.php'),
(5152, 'wp-includes/class-wp-image-editor-imagick.php'),
(5153, 'wp-includes/class-wp-image-editor.php'),
(5154, 'wp-includes/class-wp-list-util.php'),
(5155, 'wp-includes/class-wp-locale-switcher.php'),
(5156, 'wp-includes/class-wp-locale.php'),
(5157, 'wp-includes/class-wp-matchesmapregex.php'),
(5158, 'wp-includes/class-wp-meta-query.php'),
(5159, 'wp-includes/class-wp-metadata-lazyloader.php'),
(5160, 'wp-includes/class-wp-network-query.php'),
(5161, 'wp-includes/class-wp-network.php'),
(5162, 'wp-includes/class-wp-oembed-controller.php'),
(5163, 'wp-includes/class-wp-post-type.php'),
(5164, 'wp-includes/class-wp-post.php'),
(5165, 'wp-includes/class-wp-query.php'),
(5166, 'wp-includes/class-wp-rewrite.php'),
(5167, 'wp-includes/class-wp-role.php'),
(5168, 'wp-includes/class-wp-roles.php'),
(5169, 'wp-includes/class-wp-session-tokens.php'),
(5170, 'wp-includes/class-wp-simplepie-file.php'),
(5171, 'wp-includes/class-wp-simplepie-sanitize-kses.php'),
(5172, 'wp-includes/class-wp-site-query.php'),
(5173, 'wp-includes/class-wp-site.php'),
(5174, 'wp-includes/class-wp-tax-query.php'),
(5175, 'wp-includes/class-wp-taxonomy.php'),
(5176, 'wp-includes/class-wp-term-query.php'),
(5177, 'wp-includes/class-wp-term.php'),
(5178, 'wp-includes/class-wp-text-diff-renderer-inline.php'),
(5179, 'wp-includes/class-wp-text-diff-renderer-table.php'),
(5180, 'wp-includes/class-wp-theme.php'),
(5181, 'wp-includes/class-wp-user-meta-session-tokens.php'),
(5182, 'wp-includes/class-wp-user-query.php'),
(5183, 'wp-includes/class-wp-user.php'),
(5184, 'wp-includes/class-wp-walker.php'),
(5185, 'wp-includes/class-wp-widget-factory.php'),
(5186, 'wp-includes/class-wp-widget.php'),
(5187, 'wp-includes/class-wp-xmlrpc-server.php'),
(5188, 'wp-includes/class-wp.php'),
(5189, 'wp-includes/class.wp-dependencies.php'),
(5190, 'wp-includes/class.wp-scripts.php'),
(5191, 'wp-includes/class.wp-styles.php'),
(5192, 'wp-includes/comment-template.php'),
(5193, 'wp-includes/comment.php'),
(5194, 'wp-includes/compat.php'),
(5195, 'wp-includes/cron.php'),
(5196, 'wp-includes/css/admin-bar-rtl.css'),
(5197, 'wp-includes/css/admin-bar-rtl.min.css'),
(5198, 'wp-includes/css/admin-bar.css'),
(5199, 'wp-includes/css/admin-bar.min.css'),
(5200, 'wp-includes/css/buttons-rtl.css') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5201, 'wp-includes/css/buttons-rtl.min.css'),
(5202, 'wp-includes/css/buttons.css'),
(5203, 'wp-includes/css/buttons.min.css'),
(5204, 'wp-includes/css/customize-preview-rtl.css'),
(5205, 'wp-includes/css/customize-preview-rtl.min.css'),
(5206, 'wp-includes/css/customize-preview.css'),
(5207, 'wp-includes/css/customize-preview.min.css'),
(5208, 'wp-includes/css/dashicons.css'),
(5209, 'wp-includes/css/dashicons.min.css'),
(5210, 'wp-includes/css/editor-rtl.css'),
(5211, 'wp-includes/css/editor-rtl.min.css'),
(5212, 'wp-includes/css/editor.css'),
(5213, 'wp-includes/css/editor.min.css'),
(5214, 'wp-includes/css/jquery-ui-dialog-rtl.css'),
(5215, 'wp-includes/css/jquery-ui-dialog-rtl.min.css'),
(5216, 'wp-includes/css/jquery-ui-dialog.css'),
(5217, 'wp-includes/css/jquery-ui-dialog.min.css'),
(5218, 'wp-includes/css/media-views-rtl.css'),
(5219, 'wp-includes/css/media-views-rtl.min.css'),
(5220, 'wp-includes/css/media-views.css'),
(5221, 'wp-includes/css/media-views.min.css'),
(5222, 'wp-includes/css/wp-auth-check-rtl.css'),
(5223, 'wp-includes/css/wp-auth-check-rtl.min.css'),
(5224, 'wp-includes/css/wp-auth-check.css'),
(5225, 'wp-includes/css/wp-auth-check.min.css'),
(5226, 'wp-includes/css/wp-embed-template-ie.css'),
(5227, 'wp-includes/css/wp-embed-template-ie.min.css'),
(5228, 'wp-includes/css/wp-embed-template.css'),
(5229, 'wp-includes/css/wp-embed-template.min.css'),
(5230, 'wp-includes/css/wp-pointer-rtl.css'),
(5231, 'wp-includes/css/wp-pointer-rtl.min.css'),
(5232, 'wp-includes/css/wp-pointer.css'),
(5233, 'wp-includes/css/wp-pointer.min.css'),
(5234, 'wp-includes/customize/class-wp-customize-background-image-control.php'),
(5235, 'wp-includes/customize/class-wp-customize-background-image-setting.php'),
(5236, 'wp-includes/customize/class-wp-customize-background-position-control.php'),
(5237, 'wp-includes/customize/class-wp-customize-color-control.php'),
(5238, 'wp-includes/customize/class-wp-customize-cropped-image-control.php'),
(5239, 'wp-includes/customize/class-wp-customize-custom-css-setting.php'),
(5240, 'wp-includes/customize/class-wp-customize-filter-setting.php'),
(5241, 'wp-includes/customize/class-wp-customize-header-image-control.php'),
(5242, 'wp-includes/customize/class-wp-customize-header-image-setting.php'),
(5243, 'wp-includes/customize/class-wp-customize-image-control.php'),
(5244, 'wp-includes/customize/class-wp-customize-media-control.php'),
(5245, 'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),
(5246, 'wp-includes/customize/class-wp-customize-nav-menu-control.php'),
(5247, 'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),
(5248, 'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),
(5249, 'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),
(5250, 'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),
(5251, 'wp-includes/customize/class-wp-customize-nav-menu-section.php'),
(5252, 'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),
(5253, 'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),
(5254, 'wp-includes/customize/class-wp-customize-new-menu-control.php'),
(5255, 'wp-includes/customize/class-wp-customize-new-menu-section.php'),
(5256, 'wp-includes/customize/class-wp-customize-partial.php'),
(5257, 'wp-includes/customize/class-wp-customize-selective-refresh.php'),
(5258, 'wp-includes/customize/class-wp-customize-sidebar-section.php'),
(5259, 'wp-includes/customize/class-wp-customize-site-icon-control.php'),
(5260, 'wp-includes/customize/class-wp-customize-theme-control.php'),
(5261, 'wp-includes/customize/class-wp-customize-themes-section.php'),
(5262, 'wp-includes/customize/class-wp-customize-upload-control.php'),
(5263, 'wp-includes/customize/class-wp-widget-area-customize-control.php'),
(5264, 'wp-includes/customize/class-wp-widget-form-customize-control.php'),
(5265, 'wp-includes/date.php'),
(5266, 'wp-includes/default-constants.php'),
(5267, 'wp-includes/default-filters.php'),
(5268, 'wp-includes/default-widgets.php'),
(5269, 'wp-includes/deprecated.php'),
(5270, 'wp-includes/embed-template.php'),
(5271, 'wp-includes/embed.php'),
(5272, 'wp-includes/feed-atom-comments.php'),
(5273, 'wp-includes/feed-atom.php'),
(5274, 'wp-includes/feed-rdf.php'),
(5275, 'wp-includes/feed-rss.php'),
(5276, 'wp-includes/feed-rss2-comments.php'),
(5277, 'wp-includes/feed-rss2.php'),
(5278, 'wp-includes/feed.php'),
(5279, 'wp-includes/fonts/dashicons.eot'),
(5280, 'wp-includes/fonts/dashicons.svg'),
(5281, 'wp-includes/fonts/dashicons.ttf'),
(5282, 'wp-includes/fonts/dashicons.woff'),
(5283, 'wp-includes/formatting.php'),
(5284, 'wp-includes/functions.php'),
(5285, 'wp-includes/functions.wp-scripts.php'),
(5286, 'wp-includes/functions.wp-styles.php'),
(5287, 'wp-includes/general-template.php'),
(5288, 'wp-includes/http.php'),
(5289, 'wp-includes/images/admin-bar-sprite-2x.png'),
(5290, 'wp-includes/images/admin-bar-sprite.png'),
(5291, 'wp-includes/images/arrow-pointer-blue-2x.png'),
(5292, 'wp-includes/images/arrow-pointer-blue.png'),
(5293, 'wp-includes/images/blank.gif'),
(5294, 'wp-includes/images/crystal/archive.png'),
(5295, 'wp-includes/images/crystal/audio.png'),
(5296, 'wp-includes/images/crystal/code.png'),
(5297, 'wp-includes/images/crystal/default.png'),
(5298, 'wp-includes/images/crystal/document.png'),
(5299, 'wp-includes/images/crystal/interactive.png'),
(5300, 'wp-includes/images/crystal/license.txt') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5301, 'wp-includes/images/crystal/spreadsheet.png'),
(5302, 'wp-includes/images/crystal/text.png'),
(5303, 'wp-includes/images/crystal/video.png'),
(5304, 'wp-includes/images/down_arrow-2x.gif'),
(5305, 'wp-includes/images/down_arrow.gif'),
(5306, 'wp-includes/images/icon-pointer-flag-2x.png'),
(5307, 'wp-includes/images/icon-pointer-flag.png'),
(5308, 'wp-includes/images/media/archive.png'),
(5309, 'wp-includes/images/media/audio.png'),
(5310, 'wp-includes/images/media/code.png'),
(5311, 'wp-includes/images/media/default.png'),
(5312, 'wp-includes/images/media/document.png'),
(5313, 'wp-includes/images/media/interactive.png'),
(5314, 'wp-includes/images/media/spreadsheet.png'),
(5315, 'wp-includes/images/media/text.png'),
(5316, 'wp-includes/images/media/video.png'),
(5317, 'wp-includes/images/rss-2x.png'),
(5318, 'wp-includes/images/rss.png'),
(5319, 'wp-includes/images/smilies/frownie.png'),
(5320, 'wp-includes/images/smilies/icon_arrow.gif'),
(5321, 'wp-includes/images/smilies/icon_biggrin.gif'),
(5322, 'wp-includes/images/smilies/icon_confused.gif'),
(5323, 'wp-includes/images/smilies/icon_cool.gif'),
(5324, 'wp-includes/images/smilies/icon_cry.gif'),
(5325, 'wp-includes/images/smilies/icon_eek.gif'),
(5326, 'wp-includes/images/smilies/icon_evil.gif'),
(5327, 'wp-includes/images/smilies/icon_exclaim.gif'),
(5328, 'wp-includes/images/smilies/icon_idea.gif'),
(5329, 'wp-includes/images/smilies/icon_lol.gif'),
(5330, 'wp-includes/images/smilies/icon_mad.gif'),
(5331, 'wp-includes/images/smilies/icon_mrgreen.gif'),
(5332, 'wp-includes/images/smilies/icon_neutral.gif'),
(5333, 'wp-includes/images/smilies/icon_question.gif'),
(5334, 'wp-includes/images/smilies/icon_razz.gif'),
(5335, 'wp-includes/images/smilies/icon_redface.gif'),
(5336, 'wp-includes/images/smilies/icon_rolleyes.gif'),
(5337, 'wp-includes/images/smilies/icon_sad.gif'),
(5338, 'wp-includes/images/smilies/icon_smile.gif'),
(5339, 'wp-includes/images/smilies/icon_surprised.gif'),
(5340, 'wp-includes/images/smilies/icon_twisted.gif'),
(5341, 'wp-includes/images/smilies/icon_wink.gif'),
(5342, 'wp-includes/images/smilies/mrgreen.png'),
(5343, 'wp-includes/images/smilies/rolleyes.png'),
(5344, 'wp-includes/images/smilies/simple-smile.png'),
(5345, 'wp-includes/images/spinner-2x.gif'),
(5346, 'wp-includes/images/spinner.gif'),
(5347, 'wp-includes/images/toggle-arrow-2x.png'),
(5348, 'wp-includes/images/toggle-arrow.png'),
(5349, 'wp-includes/images/uploader-icons-2x.png'),
(5350, 'wp-includes/images/uploader-icons.png'),
(5351, 'wp-includes/images/w-logo-blue.png'),
(5352, 'wp-includes/images/wlw/wp-comments.png'),
(5353, 'wp-includes/images/wlw/wp-icon.png'),
(5354, 'wp-includes/images/wlw/wp-watermark.png'),
(5355, 'wp-includes/images/wpicons-2x.png'),
(5356, 'wp-includes/images/wpicons.png'),
(5357, 'wp-includes/images/wpspin-2x.gif'),
(5358, 'wp-includes/images/wpspin.gif'),
(5359, 'wp-includes/images/xit-2x.gif'),
(5360, 'wp-includes/images/xit.gif'),
(5361, 'wp-includes/js/admin-bar.js'),
(5362, 'wp-includes/js/admin-bar.min.js'),
(5363, 'wp-includes/js/autosave.js'),
(5364, 'wp-includes/js/autosave.min.js'),
(5365, 'wp-includes/js/backbone.min.js'),
(5366, 'wp-includes/js/colorpicker.js'),
(5367, 'wp-includes/js/colorpicker.min.js'),
(5368, 'wp-includes/js/comment-reply.js'),
(5369, 'wp-includes/js/comment-reply.min.js'),
(5370, 'wp-includes/js/crop/cropper.css'),
(5371, 'wp-includes/js/crop/cropper.js'),
(5372, 'wp-includes/js/crop/marqueeHoriz.gif'),
(5373, 'wp-includes/js/crop/marqueeVert.gif'),
(5374, 'wp-includes/js/customize-base.js'),
(5375, 'wp-includes/js/customize-base.min.js'),
(5376, 'wp-includes/js/customize-loader.js'),
(5377, 'wp-includes/js/customize-loader.min.js'),
(5378, 'wp-includes/js/customize-models.js'),
(5379, 'wp-includes/js/customize-models.min.js'),
(5380, 'wp-includes/js/customize-preview-nav-menus.js'),
(5381, 'wp-includes/js/customize-preview-nav-menus.min.js'),
(5382, 'wp-includes/js/customize-preview-widgets.js'),
(5383, 'wp-includes/js/customize-preview-widgets.min.js'),
(5384, 'wp-includes/js/customize-preview.js'),
(5385, 'wp-includes/js/customize-preview.min.js'),
(5386, 'wp-includes/js/customize-selective-refresh.js'),
(5387, 'wp-includes/js/customize-selective-refresh.min.js'),
(5388, 'wp-includes/js/customize-views.js'),
(5389, 'wp-includes/js/customize-views.min.js'),
(5390, 'wp-includes/js/heartbeat.js'),
(5391, 'wp-includes/js/heartbeat.min.js'),
(5392, 'wp-includes/js/hoverIntent.js'),
(5393, 'wp-includes/js/hoverIntent.min.js'),
(5394, 'wp-includes/js/imagesloaded.min.js'),
(5395, 'wp-includes/js/imgareaselect/border-anim-h.gif'),
(5396, 'wp-includes/js/imgareaselect/border-anim-v.gif'),
(5397, 'wp-includes/js/imgareaselect/imgareaselect.css'),
(5398, 'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),
(5399, 'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),
(5400, 'wp-includes/js/jcrop/Jcrop.gif') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5401, 'wp-includes/js/jcrop/jquery.Jcrop.min.css'),
(5402, 'wp-includes/js/jcrop/jquery.Jcrop.min.js'),
(5403, 'wp-includes/js/jquery/jquery-migrate.js'),
(5404, 'wp-includes/js/jquery/jquery-migrate.min.js'),
(5405, 'wp-includes/js/jquery/jquery.color.min.js'),
(5406, 'wp-includes/js/jquery/jquery.form.js'),
(5407, 'wp-includes/js/jquery/jquery.form.min.js'),
(5408, 'wp-includes/js/jquery/jquery.hotkeys.js'),
(5409, 'wp-includes/js/jquery/jquery.hotkeys.min.js'),
(5410, 'wp-includes/js/jquery/jquery.js'),
(5411, 'wp-includes/js/jquery/jquery.masonry.min.js'),
(5412, 'wp-includes/js/jquery/jquery.query.js'),
(5413, 'wp-includes/js/jquery/jquery.schedule.js'),
(5414, 'wp-includes/js/jquery/jquery.serialize-object.js'),
(5415, 'wp-includes/js/jquery/jquery.table-hotkeys.js'),
(5416, 'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),
(5417, 'wp-includes/js/jquery/jquery.ui.touch-punch.js'),
(5418, 'wp-includes/js/jquery/suggest.js'),
(5419, 'wp-includes/js/jquery/suggest.min.js'),
(5420, 'wp-includes/js/jquery/ui/accordion.min.js'),
(5421, 'wp-includes/js/jquery/ui/autocomplete.min.js'),
(5422, 'wp-includes/js/jquery/ui/button.min.js'),
(5423, 'wp-includes/js/jquery/ui/core.min.js'),
(5424, 'wp-includes/js/jquery/ui/datepicker.min.js'),
(5425, 'wp-includes/js/jquery/ui/dialog.min.js'),
(5426, 'wp-includes/js/jquery/ui/draggable.min.js'),
(5427, 'wp-includes/js/jquery/ui/droppable.min.js'),
(5428, 'wp-includes/js/jquery/ui/effect-blind.min.js'),
(5429, 'wp-includes/js/jquery/ui/effect-bounce.min.js'),
(5430, 'wp-includes/js/jquery/ui/effect-clip.min.js'),
(5431, 'wp-includes/js/jquery/ui/effect-drop.min.js'),
(5432, 'wp-includes/js/jquery/ui/effect-explode.min.js'),
(5433, 'wp-includes/js/jquery/ui/effect-fade.min.js'),
(5434, 'wp-includes/js/jquery/ui/effect-fold.min.js'),
(5435, 'wp-includes/js/jquery/ui/effect-highlight.min.js'),
(5436, 'wp-includes/js/jquery/ui/effect-puff.min.js'),
(5437, 'wp-includes/js/jquery/ui/effect-pulsate.min.js'),
(5438, 'wp-includes/js/jquery/ui/effect-scale.min.js'),
(5439, 'wp-includes/js/jquery/ui/effect-shake.min.js'),
(5440, 'wp-includes/js/jquery/ui/effect-size.min.js'),
(5441, 'wp-includes/js/jquery/ui/effect-slide.min.js'),
(5442, 'wp-includes/js/jquery/ui/effect-transfer.min.js'),
(5443, 'wp-includes/js/jquery/ui/effect.min.js'),
(5444, 'wp-includes/js/jquery/ui/menu.min.js'),
(5445, 'wp-includes/js/jquery/ui/mouse.min.js'),
(5446, 'wp-includes/js/jquery/ui/position.min.js'),
(5447, 'wp-includes/js/jquery/ui/progressbar.min.js'),
(5448, 'wp-includes/js/jquery/ui/resizable.min.js'),
(5449, 'wp-includes/js/jquery/ui/selectable.min.js'),
(5450, 'wp-includes/js/jquery/ui/selectmenu.min.js'),
(5451, 'wp-includes/js/jquery/ui/slider.min.js'),
(5452, 'wp-includes/js/jquery/ui/sortable.min.js'),
(5453, 'wp-includes/js/jquery/ui/spinner.min.js'),
(5454, 'wp-includes/js/jquery/ui/tabs.min.js'),
(5455, 'wp-includes/js/jquery/ui/tooltip.min.js'),
(5456, 'wp-includes/js/jquery/ui/widget.min.js'),
(5457, 'wp-includes/js/json2.js'),
(5458, 'wp-includes/js/json2.min.js'),
(5459, 'wp-includes/js/masonry.min.js'),
(5460, 'wp-includes/js/mce-view.js'),
(5461, 'wp-includes/js/mce-view.min.js'),
(5462, 'wp-includes/js/media-audiovideo.js'),
(5463, 'wp-includes/js/media-audiovideo.min.js'),
(5464, 'wp-includes/js/media-editor.js'),
(5465, 'wp-includes/js/media-editor.min.js'),
(5466, 'wp-includes/js/media-grid.js'),
(5467, 'wp-includes/js/media-grid.min.js'),
(5468, 'wp-includes/js/media-models.js'),
(5469, 'wp-includes/js/media-models.min.js'),
(5470, 'wp-includes/js/media-views.js'),
(5471, 'wp-includes/js/media-views.min.js'),
(5472, 'wp-includes/js/mediaelement/background.png'),
(5473, 'wp-includes/js/mediaelement/bigplay.png'),
(5474, 'wp-includes/js/mediaelement/bigplay.svg'),
(5475, 'wp-includes/js/mediaelement/controls.png'),
(5476, 'wp-includes/js/mediaelement/controls.svg'),
(5477, 'wp-includes/js/mediaelement/froogaloop.min.js'),
(5478, 'wp-includes/js/mediaelement/jumpforward.png'),
(5479, 'wp-includes/js/mediaelement/loading.gif'),
(5480, 'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),
(5481, 'wp-includes/js/mediaelement/mediaelementplayer.min.css'),
(5482, 'wp-includes/js/mediaelement/skipback.png'),
(5483, 'wp-includes/js/mediaelement/wp-mediaelement.css'),
(5484, 'wp-includes/js/mediaelement/wp-mediaelement.js'),
(5485, 'wp-includes/js/mediaelement/wp-mediaelement.min.css'),
(5486, 'wp-includes/js/mediaelement/wp-mediaelement.min.js'),
(5487, 'wp-includes/js/mediaelement/wp-playlist.js'),
(5488, 'wp-includes/js/mediaelement/wp-playlist.min.js'),
(5489, 'wp-includes/js/plupload/handlers.js'),
(5490, 'wp-includes/js/plupload/handlers.min.js'),
(5491, 'wp-includes/js/plupload/license.txt'),
(5492, 'wp-includes/js/plupload/plupload.flash.swf'),
(5493, 'wp-includes/js/plupload/plupload.full.min.js'),
(5494, 'wp-includes/js/plupload/plupload.silverlight.xap'),
(5495, 'wp-includes/js/plupload/wp-plupload.js'),
(5496, 'wp-includes/js/plupload/wp-plupload.min.js'),
(5497, 'wp-includes/js/quicktags.js'),
(5498, 'wp-includes/js/quicktags.min.js'),
(5499, 'wp-includes/js/shortcode.js'),
(5500, 'wp-includes/js/shortcode.min.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5501, 'wp-includes/js/swfobject.js'),
(5502, 'wp-includes/js/swfupload/handlers.js'),
(5503, 'wp-includes/js/swfupload/handlers.min.js'),
(5504, 'wp-includes/js/swfupload/license.txt'),
(5505, 'wp-includes/js/swfupload/plugins/swfupload.cookies.js'),
(5506, 'wp-includes/js/swfupload/plugins/swfupload.queue.js'),
(5507, 'wp-includes/js/swfupload/plugins/swfupload.speed.js'),
(5508, 'wp-includes/js/swfupload/plugins/swfupload.swfobject.js'),
(5509, 'wp-includes/js/swfupload/swfupload.js'),
(5510, 'wp-includes/js/swfupload/swfupload.swf'),
(5511, 'wp-includes/js/thickbox/loadingAnimation.gif'),
(5512, 'wp-includes/js/thickbox/macFFBgHack.png'),
(5513, 'wp-includes/js/thickbox/thickbox.css'),
(5514, 'wp-includes/js/thickbox/thickbox.js'),
(5515, 'wp-includes/js/tinymce/langs/wp-langs-en.js'),
(5516, 'wp-includes/js/tinymce/license.txt'),
(5517, 'wp-includes/js/tinymce/plugins/charmap/plugin.js'),
(5518, 'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),
(5519, 'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),
(5520, 'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),
(5521, 'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),
(5522, 'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),
(5523, 'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),
(5524, 'wp-includes/js/tinymce/plugins/directionality/plugin.js'),
(5525, 'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),
(5526, 'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),
(5527, 'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),
(5528, 'wp-includes/js/tinymce/plugins/hr/plugin.js'),
(5529, 'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),
(5530, 'wp-includes/js/tinymce/plugins/image/plugin.js'),
(5531, 'wp-includes/js/tinymce/plugins/image/plugin.min.js'),
(5532, 'wp-includes/js/tinymce/plugins/lists/plugin.js'),
(5533, 'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),
(5534, 'wp-includes/js/tinymce/plugins/media/moxieplayer.swf'),
(5535, 'wp-includes/js/tinymce/plugins/media/plugin.js'),
(5536, 'wp-includes/js/tinymce/plugins/media/plugin.min.js'),
(5537, 'wp-includes/js/tinymce/plugins/paste/plugin.js'),
(5538, 'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),
(5539, 'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),
(5540, 'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),
(5541, 'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),
(5542, 'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),
(5543, 'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),
(5544, 'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),
(5545, 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),
(5546, 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),
(5547, 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),
(5548, 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),
(5549, 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),
(5550, 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),
(5551, 'wp-includes/js/tinymce/plugins/wpembed/plugin.js'),
(5552, 'wp-includes/js/tinymce/plugins/wpembed/plugin.min.js'),
(5553, 'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),
(5554, 'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),
(5555, 'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),
(5556, 'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),
(5557, 'wp-includes/js/tinymce/plugins/wplink/plugin.js'),
(5558, 'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),
(5559, 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),
(5560, 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),
(5561, 'wp-includes/js/tinymce/plugins/wpview/plugin.js'),
(5562, 'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),
(5563, 'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),
(5564, 'wp-includes/js/tinymce/skins/lightgray/content.min.css'),
(5565, 'wp-includes/js/tinymce/skins/lightgray/fonts/readme.md'),
(5566, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),
(5567, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.json'),
(5568, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),
(5569, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),
(5570, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),
(5571, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),
(5572, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.json'),
(5573, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),
(5574, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),
(5575, 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),
(5576, 'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),
(5577, 'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),
(5578, 'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),
(5579, 'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),
(5580, 'wp-includes/js/tinymce/skins/lightgray/skin.ie7.min.css'),
(5581, 'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),
(5582, 'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),
(5583, 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),
(5584, 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),
(5585, 'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),
(5586, 'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),
(5587, 'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),
(5588, 'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),
(5589, 'wp-includes/js/tinymce/skins/wordpress/images/more.png'),
(5590, 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),
(5591, 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),
(5592, 'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),
(5593, 'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),
(5594, 'wp-includes/js/tinymce/skins/wordpress/images/video.png'),
(5595, 'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),
(5596, 'wp-includes/js/tinymce/themes/inlite/theme.js'),
(5597, 'wp-includes/js/tinymce/themes/inlite/theme.min.js'),
(5598, 'wp-includes/js/tinymce/themes/modern/theme.js'),
(5599, 'wp-includes/js/tinymce/themes/modern/theme.min.js'),
(5600, 'wp-includes/js/tinymce/tiny_mce_popup.js') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5601, 'wp-includes/js/tinymce/tinymce.min.js'),
(5602, 'wp-includes/js/tinymce/utils/editable_selects.js'),
(5603, 'wp-includes/js/tinymce/utils/form_utils.js'),
(5604, 'wp-includes/js/tinymce/utils/mctabs.js'),
(5605, 'wp-includes/js/tinymce/utils/validate.js'),
(5606, 'wp-includes/js/tinymce/wp-tinymce.js.gz'),
(5607, 'wp-includes/js/tinymce/wp-tinymce.php'),
(5608, 'wp-includes/js/tw-sack.js'),
(5609, 'wp-includes/js/tw-sack.min.js'),
(5610, 'wp-includes/js/twemoji.js'),
(5611, 'wp-includes/js/twemoji.min.js'),
(5612, 'wp-includes/js/underscore.min.js'),
(5613, 'wp-includes/js/utils.js'),
(5614, 'wp-includes/js/utils.min.js'),
(5615, 'wp-includes/js/wp-a11y.js'),
(5616, 'wp-includes/js/wp-a11y.min.js'),
(5617, 'wp-includes/js/wp-ajax-response.js'),
(5618, 'wp-includes/js/wp-ajax-response.min.js'),
(5619, 'wp-includes/js/wp-api.js'),
(5620, 'wp-includes/js/wp-api.min.js'),
(5621, 'wp-includes/js/wp-auth-check.js'),
(5622, 'wp-includes/js/wp-auth-check.min.js'),
(5623, 'wp-includes/js/wp-backbone.js'),
(5624, 'wp-includes/js/wp-backbone.min.js'),
(5625, 'wp-includes/js/wp-custom-header.js'),
(5626, 'wp-includes/js/wp-custom-header.min.js'),
(5627, 'wp-includes/js/wp-embed-template.js'),
(5628, 'wp-includes/js/wp-embed-template.min.js'),
(5629, 'wp-includes/js/wp-embed.js'),
(5630, 'wp-includes/js/wp-embed.min.js'),
(5631, 'wp-includes/js/wp-emoji-loader.js'),
(5632, 'wp-includes/js/wp-emoji-loader.min.js'),
(5633, 'wp-includes/js/wp-emoji-release.min.js'),
(5634, 'wp-includes/js/wp-emoji.js'),
(5635, 'wp-includes/js/wp-emoji.min.js'),
(5636, 'wp-includes/js/wp-list-revisions.js'),
(5637, 'wp-includes/js/wp-list-revisions.min.js'),
(5638, 'wp-includes/js/wp-lists.js'),
(5639, 'wp-includes/js/wp-lists.min.js'),
(5640, 'wp-includes/js/wp-pointer.js'),
(5641, 'wp-includes/js/wp-pointer.min.js'),
(5642, 'wp-includes/js/wp-util.js'),
(5643, 'wp-includes/js/wp-util.min.js'),
(5644, 'wp-includes/js/wpdialog.js'),
(5645, 'wp-includes/js/wpdialog.min.js'),
(5646, 'wp-includes/js/wplink.js'),
(5647, 'wp-includes/js/wplink.min.js'),
(5648, 'wp-includes/js/zxcvbn-async.js'),
(5649, 'wp-includes/js/zxcvbn-async.min.js'),
(5650, 'wp-includes/js/zxcvbn.min.js'),
(5651, 'wp-includes/kses.php'),
(5652, 'wp-includes/l10n.php'),
(5653, 'wp-includes/link-template.php'),
(5654, 'wp-includes/load.php'),
(5655, 'wp-includes/locale.php'),
(5656, 'wp-includes/media-template.php'),
(5657, 'wp-includes/media.php'),
(5658, 'wp-includes/meta.php'),
(5659, 'wp-includes/ms-blogs.php'),
(5660, 'wp-includes/ms-default-constants.php'),
(5661, 'wp-includes/ms-default-filters.php'),
(5662, 'wp-includes/ms-deprecated.php'),
(5663, 'wp-includes/ms-files.php'),
(5664, 'wp-includes/ms-functions.php'),
(5665, 'wp-includes/ms-load.php'),
(5666, 'wp-includes/ms-settings.php'),
(5667, 'wp-includes/nav-menu-template.php'),
(5668, 'wp-includes/nav-menu.php'),
(5669, 'wp-includes/option.php'),
(5670, 'wp-includes/pluggable-deprecated.php'),
(5671, 'wp-includes/pluggable.php'),
(5672, 'wp-includes/plugin.php'),
(5673, 'wp-includes/pomo/entry.php'),
(5674, 'wp-includes/pomo/mo.php'),
(5675, 'wp-includes/pomo/po.php'),
(5676, 'wp-includes/pomo/streams.php'),
(5677, 'wp-includes/pomo/translations.php'),
(5678, 'wp-includes/post-formats.php'),
(5679, 'wp-includes/post-template.php'),
(5680, 'wp-includes/post-thumbnail-template.php'),
(5681, 'wp-includes/post.php'),
(5682, 'wp-includes/query.php'),
(5683, 'wp-includes/random_compat/byte_safe_strings.php'),
(5684, 'wp-includes/random_compat/cast_to_int.php'),
(5685, 'wp-includes/random_compat/error_polyfill.php'),
(5686, 'wp-includes/random_compat/random.php'),
(5687, 'wp-includes/random_compat/random_bytes_com_dotnet.php'),
(5688, 'wp-includes/random_compat/random_bytes_dev_urandom.php'),
(5689, 'wp-includes/random_compat/random_bytes_libsodium.php'),
(5690, 'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),
(5691, 'wp-includes/random_compat/random_bytes_mcrypt.php'),
(5692, 'wp-includes/random_compat/random_bytes_openssl.php'),
(5693, 'wp-includes/random_compat/random_int.php'),
(5694, 'wp-includes/registration-functions.php'),
(5695, 'wp-includes/registration.php'),
(5696, 'wp-includes/rest-api/class-wp-rest-request.php'),
(5697, 'wp-includes/rest-api/class-wp-rest-response.php'),
(5698, 'wp-includes/rest-api/class-wp-rest-server.php'),
(5699, 'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),
(5700, 'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php') ;
INSERT INTO `wp2o_wfKnownFileList` ( `id`, `path`) VALUES
(5701, 'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),
(5702, 'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),
(5703, 'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),
(5704, 'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),
(5705, 'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),
(5706, 'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),
(5707, 'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),
(5708, 'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),
(5709, 'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),
(5710, 'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),
(5711, 'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),
(5712, 'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),
(5713, 'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),
(5714, 'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),
(5715, 'wp-includes/rest-api.php'),
(5716, 'wp-includes/revision.php'),
(5717, 'wp-includes/rewrite.php'),
(5718, 'wp-includes/rss-functions.php'),
(5719, 'wp-includes/rss.php'),
(5720, 'wp-includes/script-loader.php'),
(5721, 'wp-includes/session.php'),
(5722, 'wp-includes/shortcodes.php'),
(5723, 'wp-includes/taxonomy.php'),
(5724, 'wp-includes/template-loader.php'),
(5725, 'wp-includes/template.php'),
(5726, 'wp-includes/theme-compat/comments.php'),
(5727, 'wp-includes/theme-compat/embed-404.php'),
(5728, 'wp-includes/theme-compat/embed-content.php'),
(5729, 'wp-includes/theme-compat/embed.php'),
(5730, 'wp-includes/theme-compat/footer-embed.php'),
(5731, 'wp-includes/theme-compat/footer.php'),
(5732, 'wp-includes/theme-compat/header-embed.php'),
(5733, 'wp-includes/theme-compat/header.php'),
(5734, 'wp-includes/theme-compat/sidebar.php'),
(5735, 'wp-includes/theme.php'),
(5736, 'wp-includes/update.php'),
(5737, 'wp-includes/user.php'),
(5738, 'wp-includes/vars.php'),
(5739, 'wp-includes/version.php'),
(5740, 'wp-includes/widgets/class-wp-nav-menu-widget.php'),
(5741, 'wp-includes/widgets/class-wp-widget-archives.php'),
(5742, 'wp-includes/widgets/class-wp-widget-calendar.php'),
(5743, 'wp-includes/widgets/class-wp-widget-categories.php'),
(5744, 'wp-includes/widgets/class-wp-widget-links.php'),
(5745, 'wp-includes/widgets/class-wp-widget-meta.php'),
(5746, 'wp-includes/widgets/class-wp-widget-pages.php'),
(5747, 'wp-includes/widgets/class-wp-widget-recent-comments.php'),
(5748, 'wp-includes/widgets/class-wp-widget-recent-posts.php'),
(5749, 'wp-includes/widgets/class-wp-widget-rss.php'),
(5750, 'wp-includes/widgets/class-wp-widget-search.php'),
(5751, 'wp-includes/widgets/class-wp-widget-tag-cloud.php'),
(5752, 'wp-includes/widgets/class-wp-widget-text.php'),
(5753, 'wp-includes/widgets.php'),
(5754, 'wp-includes/wlwmanifest.xml'),
(5755, 'wp-includes/wp-db.php'),
(5756, 'wp-includes/wp-diff.php'),
(5757, 'wp-links-opml.php'),
(5758, 'wp-load.php'),
(5759, 'wp-login.php'),
(5760, 'wp-mail.php'),
(5761, 'wp-settings.php'),
(5762, 'wp-signup.php'),
(5763, 'wp-trackback.php'),
(5764, 'xmlrpc.php') ;

#
# End of data contents of table `wp2o_wfKnownFileList`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfLeechers`
#

DROP TABLE IF EXISTS `wp2o_wfLeechers`;


#
# Table structure of table `wp2o_wfLeechers`
#

CREATE TABLE `wp2o_wfLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


#
# Data contents of table `wp2o_wfLeechers`
#
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25845487, UNHEX('00000000000000000000FFFF7B886FC3'), 2),
(25845486, UNHEX('00000000000000000000FFFF7B886FC3'), 2),
(25845485, UNHEX('00000000000000000000FFFFD2138C89'), 1),
(25845484, UNHEX('00000000000000000000FFFFDA6F80B9'), 1),
(25845484, UNHEX('00000000000000000000FFFFB4A3DC05'), 1),
(25845483, UNHEX('00000000000000000000FFFF6FE0CB20'), 2),
(25845483, UNHEX('00000000000000000000FFFFB4BEA79A'), 1),
(25845481, UNHEX('00000000000000000000FFFF3C32A1A9'), 2),
(25845479, UNHEX('00000000000000000000FFFF6FE0CB20'), 1),
(25845478, UNHEX('00000000000000000000FFFF3D5B38D6'), 1),
(25845478, UNHEX('00000000000000000000FFFF010975B9'), 11),
(25845477, UNHEX('00000000000000000000FFFFAF88CAF5'), 2),
(25845477, UNHEX('00000000000000000000FFFFB4A3DC44'), 1),
(25845477, UNHEX('00000000000000000000FFFF010975B9'), 16),
(25845477, UNHEX('00000000000000000000FFFF6FE0CB20'), 1),
(25845477, UNHEX('00000000000000000000FFFF3D5B38D6'), 1),
(25845476, UNHEX('00000000000000000000FFFF3D5B38D6'), 2),
(25845475, UNHEX('00000000000000000000FFFF3D5B38D6'), 3),
(25845475, UNHEX('00000000000000000000FFFF6882887C'), 4),
(25845474, UNHEX('00000000000000000000FFFFCB6AB40A'), 2),
(25845474, UNHEX('00000000000000000000FFFFCAA21282'), 1),
(25845472, UNHEX('00000000000000000000FFFFCAA21282'), 9),
(25845467, UNHEX('00000000000000000000FFFFDAD0086D'), 2),
(25845464, UNHEX('00000000000000000000FFFFDAD0086D'), 2),
(25845464, UNHEX('00000000000000000000FFFF36249507'), 1),
(25845463, UNHEX('00000000000000000000FFFF73A45FFF'), 2),
(25845462, UNHEX('00000000000000000000FFFFDAD0086D'), 2),
(25845462, UNHEX('00000000000000000000FFFF73A4BFB1'), 2),
(25845462, UNHEX('00000000000000000000FFFF7664A48C'), 2),
(25845461, UNHEX('00000000000000000000FFFF73A4BFB1'), 2),
(25845461, UNHEX('00000000000000000000FFFF7664A48C'), 4),
(25845461, UNHEX('00000000000000000000FFFF7086BDB2'), 1),
(25845460, UNHEX('00000000000000000000FFFFD3186516'), 3),
(25845460, UNHEX('00000000000000000000FFFF71D233DC'), 1),
(25845460, UNHEX('00000000000000000000FFFF7664A48C'), 5),
(25845459, UNHEX('00000000000000000000FFFF36249421'), 1),
(25845459, UNHEX('00000000000000000000FFFF7664A48C'), 1),
(25845458, UNHEX('00000000000000000000FFFFD34BED07'), 2),
(25845458, UNHEX('00000000000000000000FFFFD3487CEF'), 2),
(25845457, UNHEX('00000000000000000000FFFF73A4BFB1'), 4),
(25845456, UNHEX('00000000000000000000FFFFB28CAFA9'), 1),
(25845456, UNHEX('00000000000000000000FFFFAF8BCFAC'), 2),
(25845455, UNHEX('00000000000000000000FFFF284DA738'), 1),
(25845452, UNHEX('00000000000000000000FFFF73EFD487'), 1),
(25845446, UNHEX('00000000000000000000FFFF73862A84'), 2),
(25845446, UNHEX('00000000000000000000FFFF5C60546C'), 3),
(25845444, UNHEX('00000000000000000000FFFF9D3727F5'), 1),
(25845444, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25845443, UNHEX('00000000000000000000FFFF71D2C2E9'), 2),
(25845442, UNHEX('00000000000000000000FFFF7A6CF46E'), 1),
(25845441, UNHEX('00000000000000000000FFFF7A6CF46E'), 1),
(25845441, UNHEX('00000000000000000000FFFF7B8876F3'), 2),
(25845435, UNHEX('00000000000000000000FFFFB7ABB905'), 2),
(25845435, UNHEX('00000000000000000000FFFF71D2C2E9'), 2),
(25845434, UNHEX('00000000000000000000FFFFB7ABB905'), 4),
(25845433, UNHEX('00000000000000000000FFFFC0192A83'), 1),
(25845432, UNHEX('00000000000000000000FFFFB7AB51F0'), 1),
(25845431, UNHEX('00000000000000000000FFFFB7AB51F0'), 3),
(25845429, UNHEX('00000000000000000000FFFF7B8870F8'), 2),
(25845428, UNHEX('00000000000000000000FFFF71D26577'), 2),
(25845427, UNHEX('00000000000000000000FFFFAF915CB2'), 1),
(25845427, UNHEX('00000000000000000000FFFF71D26577'), 1),
(25845426, UNHEX('00000000000000000000FFFF71D26577'), 1),
(25845424, UNHEX('00000000000000000000FFFF71D26577'), 2),
(25845424, UNHEX('00000000000000000000FFFF7B88756C'), 2),
(25845424, UNHEX('00000000000000000000FFFFB955EF6E'), 2),
(25845423, UNHEX('00000000000000000000FFFFB7AB560D'), 4),
(25845422, UNHEX('00000000000000000000FFFFB7AB560D'), 2),
(25845422, UNHEX('00000000000000000000FFFFAF8F3169'), 1),
(25845422, UNHEX('00000000000000000000FFFF7B88756C'), 2),
(25845421, UNHEX('00000000000000000000FFFF7B88756C'), 2),
(25845421, UNHEX('00000000000000000000FFFF01203A19'), 4),
(25845420, UNHEX('00000000000000000000FFFFD3186991'), 2),
(25845419, UNHEX('00000000000000000000FFFFD3186991'), 4),
(25845418, UNHEX('00000000000000000000FFFF53F6411C'), 1),
(25845417, UNHEX('00000000000000000000FFFFAF8BFCAA'), 4),
(25845416, UNHEX('00000000000000000000FFFFAF8BFCAA'), 4),
(25845415, UNHEX('00000000000000000000FFFF7B88760A'), 4),
(25845414, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25845412, UNHEX('00000000000000000000FFFFADCD211C'), 1),
(25845412, UNHEX('00000000000000000000FFFF012044E2'), 2),
(25845411, UNHEX('00000000000000000000FFFFAF8DEC4D'), 2),
(25845411, UNHEX('00000000000000000000FFFF3C3298A5'), 2),
(25845408, UNHEX('00000000000000000000FFFF71D2C3E8'), 4),
(25845408, UNHEX('00000000000000000000FFFF01093FC2'), 8),
(25845408, UNHEX('00000000000000000000FFFFCF2E0D14'), 1),
(25845407, UNHEX('00000000000000000000FFFF771FA811'), 4),
(25845407, UNHEX('00000000000000000000FFFF012044E2'), 6),
(25845406, UNHEX('00000000000000000000FFFFD3185E22'), 4),
(25845406, UNHEX('00000000000000000000FFFF797A5949'), 2),
(25845405, UNHEX('00000000000000000000FFFF797A5949'), 2),
(25845404, UNHEX('00000000000000000000FFFFAF8DEC4D'), 4),
(25845403, UNHEX('00000000000000000000FFFFCA4B04AD'), 1),
(25845403, UNHEX('00000000000000000000FFFFD3186991'), 6),
(25845403, UNHEX('00000000000000000000FFFF3C3298A5'), 4),
(25845403, UNHEX('00000000000000000000FFFF2AEC65EA'), 1),
(25845403, UNHEX('00000000000000000000FFFFAF8DEC4D'), 4),
(25845402, UNHEX('00000000000000000000FFFF3C3298A5'), 2),
(25845401, UNHEX('00000000000000000000FFFF3C3298A5'), 4),
(25845400, UNHEX('00000000000000000000FFFF0E8F0F32'), 3) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25845400, UNHEX('00000000000000000000FFFFB6490D76'), 5),
(25845400, UNHEX('00000000000000000000FFFFCA419E32'), 5),
(25845399, UNHEX('00000000000000000000FFFF797A5326'), 1),
(25845399, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25845397, UNHEX('00000000000000000000FFFF012044E2'), 2),
(25845397, UNHEX('00000000000000000000FFFFD318643B'), 1),
(25845395, UNHEX('00000000000000000000FFFF0EC0D654'), 2),
(25845394, UNHEX('00000000000000000000FFFF01204385'), 2),
(25845394, UNHEX('00000000000000000000FFFF788A50CE'), 4),
(25845392, UNHEX('00000000000000000000FFFF0EC0D654'), 2),
(25845391, UNHEX('00000000000000000000FFFF0EC0D654'), 2),
(25845390, UNHEX('00000000000000000000FFFF9D372733'), 2),
(25845390, UNHEX('00000000000000000000FFFF3C321F3C'), 3),
(25845389, UNHEX('00000000000000000000FFFFB7ABB97F'), 2),
(25845389, UNHEX('00000000000000000000FFFF3C321F3C'), 7),
(25845389, UNHEX('00000000000000000000FFFFAF8F2972'), 2),
(25844266, UNHEX('00000000000000000000FFFF797A2DA1'), 1),
(25844263, UNHEX('00000000000000000000FFFFAF8A1EA9'), 2),
(25844261, UNHEX('00000000000000000000FFFFB44C0F9D'), 1),
(25844261, UNHEX('00000000000000000000FFFFAF8F615D'), 1),
(25844260, UNHEX('00000000000000000000FFFFAF8F615D'), 3),
(25844260, UNHEX('00000000000000000000FFFFDB5C4735'), 3),
(25844259, UNHEX('00000000000000000000FFFFDB5C4735'), 1),
(25844257, UNHEX('00000000000000000000FFFFAF8F615D'), 2),
(25844253, UNHEX('00000000000000000000FFFF312C4C2A'), 2),
(25844251, UNHEX('00000000000000000000FFFFB955EF6E'), 2),
(25844250, UNHEX('00000000000000000000FFFFD319DE22'), 2),
(25844249, UNHEX('00000000000000000000FFFF675ADC28'), 1),
(25844248, UNHEX('00000000000000000000FFFF675ADC28'), 3),
(25844246, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844244, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844243, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844243, UNHEX('00000000000000000000FFFFAF91567B'), 2),
(25844242, UNHEX('00000000000000000000FFFFAF91567B'), 2),
(25844242, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844239, UNHEX('00000000000000000000FFFFCF2E0D76'), 8),
(25844239, UNHEX('00000000000000000000FFFFCF2E0DA4'), 1),
(25844239, UNHEX('00000000000000000000FFFFCF2E0DD6'), 2),
(25844238, UNHEX('00000000000000000000FFFF732AA2B2'), 2),
(25844238, UNHEX('00000000000000000000FFFFCF2E0D76'), 6),
(25844238, UNHEX('00000000000000000000FFFF9D372768'), 1),
(25844238, UNHEX('00000000000000000000FFFFCF2E0DD6'), 3),
(25844238, UNHEX('00000000000000000000FFFFCF2E0DA4'), 6),
(25844237, UNHEX('00000000000000000000FFFFCF2E0DA4'), 3),
(25844237, UNHEX('00000000000000000000FFFF9D372768'), 1),
(25844237, UNHEX('00000000000000000000FFFF629EF2B2'), 4),
(25844237, UNHEX('00000000000000000000FFFFCF2E0DD6'), 7),
(25844236, UNHEX('00000000000000000000FFFFC7F9E645'), 2),
(25844236, UNHEX('00000000000000000000FFFF629EF2B2'), 4),
(25844236, UNHEX('00000000000000000000FFFF9D372768'), 2),
(25844236, UNHEX('00000000000000000000FFFFB9687807'), 2),
(25844000, UNHEX('00000000000000000000FFFFAF8F52C5'), 1),
(25843996, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25843995, UNHEX('00000000000000000000FFFFAF8F52C5'), 4),
(25843994, UNHEX('00000000000000000000FFFFAF8F52C5'), 3),
(25843992, UNHEX('00000000000000000000FFFF9E4547C3'), 2),
(25843991, UNHEX('00000000000000000000FFFFAF8F52C5'), 1),
(25843989, UNHEX('00000000000000000000FFFF3C364645'), 2),
(25843988, UNHEX('00000000000000000000FFFF73A4CF83'), 2),
(25843987, UNHEX('00000000000000000000FFFF73A4CF83'), 2),
(25843987, UNHEX('00000000000000000000FFFF76655E67'), 2),
(25843983, UNHEX('00000000000000000000FFFF2ABFC5E3'), 1),
(25843983, UNHEX('00000000000000000000FFFF73A4DAD5'), 1),
(25843982, UNHEX('00000000000000000000FFFF6E9F9B60'), 2),
(25843981, UNHEX('00000000000000000000FFFFAF8BBC35'), 2),
(25843981, UNHEX('00000000000000000000FFFF6E9F9B60'), 2),
(25842494, UNHEX('00000000000000000000FFFF71D2705A'), 5),
(25842493, UNHEX('00000000000000000000FFFF71D2705A'), 1),
(25842493, UNHEX('00000000000000000000FFFF76C8A52E'), 1),
(25842493, UNHEX('00000000000000000000FFFFAF8CE66E'), 4),
(25842492, UNHEX('00000000000000000000FFFF71D2705A'), 2),
(25842491, UNHEX('00000000000000000000FFFF71D2705A'), 2),
(25842491, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25842489, UNHEX('00000000000000000000FFFFAF8B8D21'), 1),
(25842487, UNHEX('00000000000000000000FFFF3C30FD7E'), 2),
(25842485, UNHEX('00000000000000000000FFFFB7ABB902'), 4),
(25842484, UNHEX('00000000000000000000FFFFB7ABB902'), 2),
(25842484, UNHEX('00000000000000000000FFFF3C30FD7E'), 4),
(25842483, UNHEX('00000000000000000000FFFF3C30FD7E'), 1),
(25842482, UNHEX('00000000000000000000FFFF284DA7B4'), 1),
(25842482, UNHEX('00000000000000000000FFFFDB5CF411'), 3),
(25842481, UNHEX('00000000000000000000FFFFDB5CF411'), 2),
(25842481, UNHEX('00000000000000000000FFFFCB6AA525'), 4),
(25842480, UNHEX('00000000000000000000FFFF71D2694B'), 2),
(25842480, UNHEX('00000000000000000000FFFFD3186998'), 7),
(25842479, UNHEX('00000000000000000000FFFFD3186998'), 1),
(25842478, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842476, UNHEX('00000000000000000000FFFF40D15981'), 1),
(25842476, UNHEX('00000000000000000000FFFF671AC715'), 2),
(25842475, UNHEX('00000000000000000000FFFFD109D404'), 1),
(25842475, UNHEX('00000000000000000000FFFFDAD09559'), 2),
(25842475, UNHEX('00000000000000000000FFFF40D15981'), 1),
(25842474, UNHEX('00000000000000000000FFFF40D15981'), 1),
(25842473, UNHEX('00000000000000000000FFFFAF889D6C'), 2),
(25842472, UNHEX('00000000000000000000FFFF284DA7B6'), 1),
(25842471, UNHEX('00000000000000000000FFFF284DA74B'), 1),
(25842471, UNHEX('00000000000000000000FFFFAF885BE5'), 2),
(25842470, UNHEX('00000000000000000000FFFFAF885BE5'), 2),
(25842470, UNHEX('00000000000000000000FFFFD2BA85EB'), 6),
(25842468, UNHEX('00000000000000000000FFFF71D268FF'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842467, UNHEX('00000000000000000000FFFF284DA7B4'), 1),
(25842467, UNHEX('00000000000000000000FFFFCA3A5612'), 1),
(25842467, UNHEX('00000000000000000000FFFF2EE5A889'), 1),
(25842464, UNHEX('00000000000000000000FFFF284DA74B'), 1),
(25842464, UNHEX('00000000000000000000FFFFCB6A5D02'), 1),
(25842462, UNHEX('00000000000000000000FFFFCABE97A0'), 2),
(25842460, UNHEX('00000000000000000000FFFFAF88DBC8'), 1),
(25842459, UNHEX('00000000000000000000FFFFC0E4AA7E'), 1),
(25842458, UNHEX('00000000000000000000FFFF284DA74B'), 1),
(25842457, UNHEX('00000000000000000000FFFF73A4B04C'), 2),
(25842455, UNHEX('00000000000000000000FFFF01203B02'), 4),
(25842454, UNHEX('00000000000000000000FFFFAF8BBCB1'), 2),
(25843981, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843980, UNHEX('00000000000000000000FFFF73EFD487'), 1),
(25843980, UNHEX('00000000000000000000FFFFAF8BBC35'), 5),
(25843979, UNHEX('00000000000000000000FFFFAF8BBC35'), 1),
(25843977, UNHEX('00000000000000000000FFFFA18BDE88'), 2),
(25843976, UNHEX('00000000000000000000FFFFCF2E0DD6'), 1),
(25843976, UNHEX('00000000000000000000FFFFB7ABB829'), 5),
(25843976, UNHEX('00000000000000000000FFFF3C35CF00'), 1),
(25843976, UNHEX('00000000000000000000FFFFB7AB7E97'), 2),
(25843975, UNHEX('00000000000000000000FFFFB7ABB829'), 2),
(25843975, UNHEX('00000000000000000000FFFF4DF75545'), 5),
(25843974, UNHEX('00000000000000000000FFFF4DF75545'), 5),
(25843974, UNHEX('00000000000000000000FFFF3C35CF00'), 2),
(25843973, UNHEX('00000000000000000000FFFF3C35CF00'), 4),
(25843969, UNHEX('00000000000000000000FFFF73A4BE28'), 5),
(25843966, UNHEX('00000000000000000000FFFF2A3DD37D'), 8),
(25843966, UNHEX('00000000000000000000FFFFB7AB7E97'), 2),
(25843965, UNHEX('00000000000000000000FFFF0EC0D727'), 4),
(25843965, UNHEX('00000000000000000000FFFF76645B67'), 2),
(25843964, UNHEX('00000000000000000000FFFF0EC0D727'), 2),
(25843962, UNHEX('00000000000000000000FFFF3D7178D2'), 1),
(25843962, UNHEX('00000000000000000000FFFF3A1B30C2'), 2),
(25843962, UNHEX('00000000000000000000FFFFD2BB9437'), 4),
(25843961, UNHEX('00000000000000000000FFFFD2BB9437'), 2),
(25843961, UNHEX('00000000000000000000FFFFC063F5A2'), 1),
(25843961, UNHEX('00000000000000000000FFFF3D7178D2'), 4),
(25843961, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843960, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25843960, UNHEX('00000000000000000000FFFF3D7178D2'), 5),
(25843959, UNHEX('00000000000000000000FFFF3D7178D2'), 2),
(25843959, UNHEX('00000000000000000000FFFF8E5DBF31'), 1),
(25843959, UNHEX('00000000000000000000FFFF67834769'), 1),
(25843959, UNHEX('00000000000000000000FFFF67834761'), 1),
(25843958, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843958, UNHEX('00000000000000000000FFFF3A1B30C2'), 5),
(25843956, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843956, UNHEX('00000000000000000000FFFF0EC0D727'), 2),
(25843955, UNHEX('00000000000000000000FFFF3C326349'), 2),
(25843955, UNHEX('00000000000000000000FFFFA18BDE88'), 4),
(25843953, UNHEX('00000000000000000000FFFFAB635549'), 1),
(25843953, UNHEX('00000000000000000000FFFF3A1B30C2'), 2),
(25843951, UNHEX('00000000000000000000FFFFB956A463'), 2),
(25843951, UNHEX('00000000000000000000FFFFB7AB6FE3'), 1),
(25843950, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25843950, UNHEX('00000000000000000000FFFFB7AB6FE3'), 6),
(25843949, UNHEX('00000000000000000000FFFF3C326349'), 1),
(25843948, UNHEX('00000000000000000000FFFF3C326349'), 1),
(25843946, UNHEX('00000000000000000000FFFF6710B7FA'), 2),
(25843945, UNHEX('00000000000000000000FFFFD319E15E'), 2),
(25843944, UNHEX('00000000000000000000FFFFCB7936AA'), 1),
(25843944, UNHEX('00000000000000000000FFFFD319E15E'), 4),
(25843943, UNHEX('00000000000000000000FFFFD319E15E'), 3),
(25843943, UNHEX('00000000000000000000FFFF738444A0'), 2),
(25843942, UNHEX('00000000000000000000FFFFAF8A40B9'), 1),
(25843942, UNHEX('00000000000000000000FFFF738444A0'), 4),
(25843942, UNHEX('00000000000000000000FFFF081DC61A'), 1),
(25843941, UNHEX('00000000000000000000FFFFAF8C2E29'), 4),
(25843941, UNHEX('00000000000000000000FFFF797A4FD3'), 2),
(25843940, UNHEX('00000000000000000000FFFF081DC619'), 1),
(25843940, UNHEX('00000000000000000000FFFF2EF628D6'), 1),
(25843940, UNHEX('00000000000000000000FFFF797A4FD3'), 2),
(25843939, UNHEX('00000000000000000000FFFFB7AB6FE3'), 1),
(25843938, UNHEX('00000000000000000000FFFFB7AB6FE3'), 1),
(25843938, UNHEX('00000000000000000000FFFFAF8E3D09'), 4),
(25843937, UNHEX('00000000000000000000FFFFAF8E3D09'), 4),
(25843937, UNHEX('00000000000000000000FFFF0EC0D49A'), 4),
(25843933, UNHEX('00000000000000000000FFFF2EE5A896'), 1),
(25843932, UNHEX('00000000000000000000FFFFB7AB5257'), 2),
(25843931, UNHEX('00000000000000000000FFFF76C8A52E'), 1),
(25843930, UNHEX('00000000000000000000FFFFD23094FE'), 1),
(25843928, UNHEX('00000000000000000000FFFFAF8BA051'), 2),
(25843928, UNHEX('00000000000000000000FFFFAF8BA1D7'), 2),
(25843926, UNHEX('00000000000000000000FFFF71D24133'), 2),
(25843925, UNHEX('00000000000000000000FFFF71D24133'), 2),
(25843921, UNHEX('00000000000000000000FFFF7664E41A'), 1),
(25843920, UNHEX('00000000000000000000FFFF7664E41A'), 1),
(25843920, UNHEX('00000000000000000000FFFF71D2B533'), 2),
(25843920, UNHEX('00000000000000000000FFFFAF8A40B9'), 1),
(25843919, UNHEX('00000000000000000000FFFFAF8A40B9'), 10),
(25843919, UNHEX('00000000000000000000FFFF71D2B533'), 4),
(25843919, UNHEX('00000000000000000000FFFFAF8DFB5D'), 4),
(25843918, UNHEX('00000000000000000000FFFF71D2B533'), 4),
(25843918, UNHEX('00000000000000000000FFFFCA4D3F32'), 2),
(25843917, UNHEX('00000000000000000000FFFF71D2B533'), 4),
(25843917, UNHEX('00000000000000000000FFFFD2C3B29F'), 2),
(25843916, UNHEX('00000000000000000000FFFFD2C3B29F'), 4),
(25843914, UNHEX('00000000000000000000FFFFB7ABB977'), 2),
(25843914, UNHEX('00000000000000000000FFFFB7ABB97B'), 7) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25843913, UNHEX('00000000000000000000FFFFB7ABB97B'), 1),
(25843913, UNHEX('00000000000000000000FFFF36249469'), 1),
(25843913, UNHEX('00000000000000000000FFFF3A1A1B76'), 2),
(25843912, UNHEX('00000000000000000000FFFFCABE8226'), 2),
(25843911, UNHEX('00000000000000000000FFFFCABE8226'), 2),
(25843907, UNHEX('00000000000000000000FFFFCABE8226'), 4),
(25843907, UNHEX('00000000000000000000FFFF362494D5'), 1),
(25843905, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25843905, UNHEX('00000000000000000000FFFF7C7C2482'), 2),
(25843904, UNHEX('00000000000000000000FFFF7C7C2482'), 2),
(25843903, UNHEX('00000000000000000000FFFFCAA21282'), 2),
(25843903, UNHEX('00000000000000000000FFFFA5E17070'), 1),
(25843902, UNHEX('00000000000000000000FFFF0EC0D46F'), 2),
(25843901, UNHEX('00000000000000000000FFFF0EC0D46F'), 2),
(25843901, UNHEX('00000000000000000000FFFFCABE8226'), 2),
(25843899, UNHEX('00000000000000000000FFFFCABE8226'), 2),
(25844236, UNHEX('00000000000000000000FFFFAF8B8D21'), 1),
(25844236, UNHEX('00000000000000000000FFFFAF90CF6F'), 6),
(25844236, UNHEX('00000000000000000000FFFFCF2E0D76'), 2),
(25844236, UNHEX('00000000000000000000FFFFB9DC651F'), 2),
(25844236, UNHEX('00000000000000000000FFFFCF2E0DA4'), 2),
(25844235, UNHEX('00000000000000000000FFFFB9DC6545'), 2),
(25844235, UNHEX('00000000000000000000FFFFCF2E0DA4'), 1),
(25844235, UNHEX('00000000000000000000FFFF9D37271A'), 2),
(25844235, UNHEX('00000000000000000000FFFFB211AB66'), 2),
(25844235, UNHEX('00000000000000000000FFFFB9C17DA8'), 3),
(25844235, UNHEX('00000000000000000000FFFF9D372768'), 4),
(25844234, UNHEX('00000000000000000000FFFF9D372768'), 2),
(25844234, UNHEX('00000000000000000000FFFFD3186021'), 2),
(25844232, UNHEX('00000000000000000000FFFFAA266405'), 2),
(25844231, UNHEX('00000000000000000000FFFFAA266404'), 4),
(25844227, UNHEX('00000000000000000000FFFF6DC99AC4'), 1),
(25844226, UNHEX('00000000000000000000FFFF673C1B86'), 1),
(25844226, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25844226, UNHEX('00000000000000000000FFFFAF91567B'), 5),
(25844225, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25844225, UNHEX('00000000000000000000FFFFAF91567B'), 1),
(25844225, UNHEX('00000000000000000000FFFF7C525E64'), 3),
(25844224, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844224, UNHEX('00000000000000000000FFFFB7AB6610'), 2),
(25844224, UNHEX('00000000000000000000FFFFCB746482'), 1),
(25844223, UNHEX('00000000000000000000FFFF0120440B'), 1),
(25844223, UNHEX('00000000000000000000FFFFCB746482'), 3),
(25844223, UNHEX('00000000000000000000FFFFD21307A1'), 8),
(25844220, UNHEX('00000000000000000000FFFF67E0A752'), 1),
(25844220, UNHEX('00000000000000000000FFFFAF91567B'), 1),
(25844219, UNHEX('00000000000000000000FFFFAF91567B'), 3),
(25842453, UNHEX('00000000000000000000FFFF3D06AE55'), 2),
(25842452, UNHEX('00000000000000000000FFFFB7ABB84C'), 2),
(25842452, UNHEX('00000000000000000000FFFFAF8BBCB1'), 5),
(25842451, UNHEX('00000000000000000000FFFFAF8E9012'), 2),
(25842449, UNHEX('00000000000000000000FFFFC0E4E801'), 2),
(25842449, UNHEX('00000000000000000000FFFF73A4579A'), 4),
(25842449, UNHEX('00000000000000000000FFFF79792BBC'), 2),
(25842449, UNHEX('00000000000000000000FFFFB44C0F9C'), 1),
(25842448, UNHEX('00000000000000000000FFFF939EFFC8'), 2),
(25842448, UNHEX('00000000000000000000FFFF73A4579A'), 8),
(25842447, UNHEX('00000000000000000000FFFF73A4579A'), 4),
(25842447, UNHEX('00000000000000000000FFFFAF8BBCB1'), 2),
(25842447, UNHEX('00000000000000000000FFFF2EE5A88A'), 1),
(25842447, UNHEX('00000000000000000000FFFF79792BBC'), 2),
(25842447, UNHEX('00000000000000000000FFFF2EE5A88B'), 1),
(25843899, UNHEX('00000000000000000000FFFF25E786A4'), 4),
(25843898, UNHEX('00000000000000000000FFFFCABE8226'), 2),
(25843898, UNHEX('00000000000000000000FFFF73A42C51'), 4),
(25843898, UNHEX('00000000000000000000FFFF25E786A4'), 2),
(25843897, UNHEX('00000000000000000000FFFF25E786A4'), 2),
(25843897, UNHEX('00000000000000000000FFFFCB6A5E42'), 1),
(25843897, UNHEX('00000000000000000000FFFFCABE8226'), 4),
(25843896, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843896, UNHEX('00000000000000000000FFFFCB6ADB9D'), 2),
(25843896, UNHEX('00000000000000000000FFFF2BF128C8'), 1),
(25843896, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25843896, UNHEX('00000000000000000000FFFFCABE8226'), 8),
(25842446, UNHEX('00000000000000000000FFFF01203B02'), 6),
(25842824, UNHEX('00000000000000000000FFFF939EC343'), 1),
(25842822, UNHEX('00000000000000000000FFFFCA4FCB53'), 2),
(25842820, UNHEX('00000000000000000000FFFFCB6A5D02'), 2),
(25842820, UNHEX('00000000000000000000FFFFDB5CEAD9'), 1),
(25842444, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25842443, UNHEX('00000000000000000000FFFF01203B02'), 2),
(25842440, UNHEX('00000000000000000000FFFFC0E4E801'), 2),
(25842440, UNHEX('00000000000000000000FFFFA5E17066'), 2),
(25842440, UNHEX('00000000000000000000FFFFCB6AA525'), 2),
(25842439, UNHEX('00000000000000000000FFFFCB6AA525'), 2),
(25842439, UNHEX('00000000000000000000FFFFB955BFC4'), 2),
(25842439, UNHEX('00000000000000000000FFFFA5E17066'), 3),
(25842436, UNHEX('00000000000000000000FFFF17EFB483'), 1),
(25842436, UNHEX('00000000000000000000FFFFAF885BE5'), 2),
(25842436, UNHEX('00000000000000000000FFFF36E34AAE'), 1),
(25842435, UNHEX('00000000000000000000FFFFCB755D93'), 1),
(25842435, UNHEX('00000000000000000000FFFF40F4F0C7'), 4),
(25842434, UNHEX('00000000000000000000FFFFAF8F6AA9'), 4),
(25842434, UNHEX('00000000000000000000FFFF738675A0'), 2),
(25842433, UNHEX('00000000000000000000FFFF738675A0'), 2),
(25842433, UNHEX('00000000000000000000FFFFAF8F6AA9'), 6),
(25845388, UNHEX('00000000000000000000FFFF71D2CBD2'), 2),
(25845388, UNHEX('00000000000000000000FFFFD21307A1'), 6),
(25845387, UNHEX('00000000000000000000FFFF71D233DC'), 5),
(25845386, UNHEX('00000000000000000000FFFFD3185E22'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25845385, UNHEX('00000000000000000000FFFFAF8BB021'), 2),
(25845382, UNHEX('00000000000000000000FFFF081DC619'), 1),
(25845382, UNHEX('00000000000000000000FFFF766592F6'), 3),
(25845381, UNHEX('00000000000000000000FFFF081DC61A'), 1),
(25845380, UNHEX('00000000000000000000FFFF113A62EF'), 2),
(25845377, UNHEX('00000000000000000000FFFFAF8A3A8D'), 1),
(25845377, UNHEX('00000000000000000000FFFF797A5949'), 2),
(25845376, UNHEX('00000000000000000000FFFFB7AB594A'), 1),
(25845375, UNHEX('00000000000000000000FFFF3C312699'), 2),
(25845375, UNHEX('00000000000000000000FFFF73A45B54'), 2),
(25845375, UNHEX('00000000000000000000FFFFCB7936AA'), 8),
(25845374, UNHEX('00000000000000000000FFFFCB7936AA'), 5),
(25845374, UNHEX('00000000000000000000FFFF73A436F6'), 2),
(25845373, UNHEX('00000000000000000000FFFF73A436F6'), 2),
(25845373, UNHEX('00000000000000000000FFFF73A44EDE'), 5),
(25845373, UNHEX('00000000000000000000FFFF73A45B54'), 4),
(25845372, UNHEX('00000000000000000000FFFF73A45B54'), 4),
(25845372, UNHEX('00000000000000000000FFFFCB7936AA'), 5),
(25845371, UNHEX('00000000000000000000FFFF3C32FCB0'), 6),
(25845371, UNHEX('00000000000000000000FFFF73A44F3C'), 2),
(25845371, UNHEX('00000000000000000000FFFF2ABDCD17'), 6),
(25845371, UNHEX('00000000000000000000FFFF18152F68'), 2),
(25845370, UNHEX('00000000000000000000FFFF18152F68'), 2),
(25845370, UNHEX('00000000000000000000FFFF73A44F3C'), 8),
(25845370, UNHEX('00000000000000000000FFFF2ABDCD17'), 5),
(25845369, UNHEX('00000000000000000000FFFF73A44F3C'), 2),
(25845369, UNHEX('00000000000000000000FFFF2ABDCD17'), 4),
(25845368, UNHEX('00000000000000000000FFFF73A45B54'), 2),
(25845368, UNHEX('00000000000000000000FFFF2ABDCD17'), 5),
(25845367, UNHEX('00000000000000000000FFFFD2BA8798'), 4),
(25845367, UNHEX('00000000000000000000FFFF2ABDCD17'), 3),
(25845367, UNHEX('00000000000000000000FFFFA5E17061'), 1),
(25845367, UNHEX('00000000000000000000FFFF73A44D73'), 2),
(25845366, UNHEX('00000000000000000000FFFF7AA35F4B'), 1),
(25845365, UNHEX('00000000000000000000FFFFCABE9442'), 2),
(25845365, UNHEX('00000000000000000000FFFF73A44D73'), 4),
(25845365, UNHEX('00000000000000000000FFFFB7ABB914'), 6),
(25845365, UNHEX('00000000000000000000FFFFAF88DF59'), 6),
(25845364, UNHEX('00000000000000000000FFFFD3187C12'), 1),
(25845364, UNHEX('00000000000000000000FFFFAF88DF59'), 6),
(25845364, UNHEX('00000000000000000000FFFFA5E17060'), 1),
(25845364, UNHEX('00000000000000000000FFFFB7ABB914'), 4),
(25845363, UNHEX('00000000000000000000FFFF73A45D7E'), 2),
(25845363, UNHEX('00000000000000000000FFFFB7ABB914'), 4),
(25845363, UNHEX('00000000000000000000FFFFB7AB527E'), 2),
(25845362, UNHEX('00000000000000000000FFFF3D0694D3'), 2),
(25845362, UNHEX('00000000000000000000FFFFB7ABB914'), 4),
(25845361, UNHEX('00000000000000000000FFFFD31913FA'), 2),
(25845361, UNHEX('00000000000000000000FFFFB7ABB914'), 4),
(25845361, UNHEX('00000000000000000000FFFFD2BA8798'), 1),
(25845360, UNHEX('00000000000000000000FFFFD31913FA'), 4),
(25845359, UNHEX('00000000000000000000FFFF2ABDCD17'), 1),
(25845357, UNHEX('00000000000000000000FFFF0E01E129'), 2),
(25845357, UNHEX('00000000000000000000FFFF71D2773D'), 4),
(25845357, UNHEX('00000000000000000000FFFFCAB78712'), 2),
(25845356, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25845356, UNHEX('00000000000000000000FFFFCAB78712'), 4),
(25845356, UNHEX('00000000000000000000FFFFD3186998'), 1),
(25845356, UNHEX('00000000000000000000FFFF9D372733'), 1),
(25845356, UNHEX('00000000000000000000FFFF71D2773D'), 6),
(25845356, UNHEX('00000000000000000000FFFF0E01E129'), 4),
(25845355, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25845355, UNHEX('00000000000000000000FFFFDB5C32B9'), 1),
(25845354, UNHEX('00000000000000000000FFFF3A1A7F8D'), 3),
(25845354, UNHEX('00000000000000000000FFFF3D06B4DA'), 2),
(25845353, UNHEX('00000000000000000000FFFF629EF2B2'), 2),
(25845353, UNHEX('00000000000000000000FFFF3D06B4DA'), 6),
(25845352, UNHEX('00000000000000000000FFFF629EF2B2'), 4),
(25845352, UNHEX('00000000000000000000FFFF7664BEC5'), 4),
(25845351, UNHEX('00000000000000000000FFFF7664BEC5'), 6),
(25845349, UNHEX('00000000000000000000FFFF12CFF5B6'), 1),
(25845348, UNHEX('00000000000000000000FFFFB7ABB92E'), 2),
(25845348, UNHEX('00000000000000000000FFFFD2BA9D37'), 3),
(25845347, UNHEX('00000000000000000000FFFFD2BA9D37'), 5),
(25845346, UNHEX('00000000000000000000FFFFD318875A'), 1),
(25845345, UNHEX('00000000000000000000FFFFAF8E54B0'), 3),
(25845344, UNHEX('00000000000000000000FFFF73A436F6'), 2),
(25845344, UNHEX('00000000000000000000FFFF73A451CF'), 4),
(25845343, UNHEX('00000000000000000000FFFF73A451CF'), 2),
(25842820, UNHEX('00000000000000000000FFFF3C35C33E'), 2),
(25842818, UNHEX('00000000000000000000FFFFDB5C37E2'), 2),
(25842817, UNHEX('00000000000000000000FFFFAF915A2E'), 4),
(25842815, UNHEX('00000000000000000000FFFFAF88EE5D'), 2),
(25842815, UNHEX('00000000000000000000FFFF71D269E8'), 2),
(25842814, UNHEX('00000000000000000000FFFF71D269E8'), 2),
(25842813, UNHEX('00000000000000000000FFFF3C35C33E'), 8),
(25842813, UNHEX('00000000000000000000FFFF9D37276B'), 1),
(25842813, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25842812, UNHEX('00000000000000000000FFFF689B046C'), 1),
(25842807, UNHEX('00000000000000000000FFFFD161B456'), 1),
(25842806, UNHEX('00000000000000000000FFFFD3186991'), 1),
(25842803, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842802, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842801, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842798, UNHEX('00000000000000000000FFFF3D0EAF47'), 2),
(25842797, UNHEX('00000000000000000000FFFF3D0EAF47'), 4),
(25842795, UNHEX('00000000000000000000FFFF76646425'), 1),
(25842795, UNHEX('00000000000000000000FFFF3C33114A'), 2),
(25842794, UNHEX('00000000000000000000FFFFB7ABAEEF'), 2),
(25842794, UNHEX('00000000000000000000FFFFD21307A1'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842792, UNHEX('00000000000000000000FFFFB44C0F1F'), 1),
(25842792, UNHEX('00000000000000000000FFFFB7AB4ED6'), 4),
(25845343, UNHEX('00000000000000000000FFFF0109F652'), 4),
(25842792, UNHEX('00000000000000000000FFFF36249500'), 1),
(25842791, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842791, UNHEX('00000000000000000000FFFF3A47CB6B'), 8),
(25842790, UNHEX('00000000000000000000FFFF25E75991'), 1),
(25842788, UNHEX('00000000000000000000FFFF7664924C'), 4),
(25842787, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842786, UNHEX('00000000000000000000FFFF362494EB'), 1),
(25842786, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25845343, UNHEX('00000000000000000000FFFF73A436F6'), 4),
(25845343, UNHEX('00000000000000000000FFFFAF8A0423'), 2),
(25845342, UNHEX('00000000000000000000FFFF7B887436'), 2),
(25845342, UNHEX('00000000000000000000FFFF797A5949'), 2),
(25845340, UNHEX('00000000000000000000FFFFAF8D9EF5'), 2),
(25845340, UNHEX('00000000000000000000FFFF9D372733'), 1),
(25845340, UNHEX('00000000000000000000FFFF797A5949'), 2),
(25845337, UNHEX('00000000000000000000FFFF73A4AA71'), 6),
(25845337, UNHEX('00000000000000000000FFFFAF90D609'), 2),
(25845337, UNHEX('00000000000000000000FFFF36F33594'), 2),
(25845336, UNHEX('00000000000000000000FFFFB7AB5664'), 3),
(25845336, UNHEX('00000000000000000000FFFFD319828B'), 2),
(25845335, UNHEX('00000000000000000000FFFF73A454D1'), 1),
(25845335, UNHEX('00000000000000000000FFFF7385660E'), 1),
(25845334, UNHEX('00000000000000000000FFFF7385660E'), 2),
(25845334, UNHEX('00000000000000000000FFFFCAB8969C'), 2),
(25842786, UNHEX('00000000000000000000FFFFD213FEE5'), 2),
(25842785, UNHEX('00000000000000000000FFFFCBBCEE02'), 1),
(25842785, UNHEX('00000000000000000000FFFFD213FEE5'), 4),
(25842784, UNHEX('00000000000000000000FFFFD213FEE5'), 7),
(25842783, UNHEX('00000000000000000000FFFF3D0EAF47'), 2),
(25842783, UNHEX('00000000000000000000FFFFD213FEE5'), 4),
(25842782, UNHEX('00000000000000000000FFFFD213FEE5'), 2),
(25842780, UNHEX('00000000000000000000FFFFD213FEE5'), 3),
(25842779, UNHEX('00000000000000000000FFFF73A45D8B'), 2),
(25842777, UNHEX('00000000000000000000FFFFB7AB4058'), 2),
(25842773, UNHEX('00000000000000000000FFFFD319828B'), 4),
(25842773, UNHEX('00000000000000000000FFFF2EE5A88A'), 1),
(25842772, UNHEX('00000000000000000000FFFF7664A52C'), 1),
(25842772, UNHEX('00000000000000000000FFFFA5E17066'), 1),
(25842771, UNHEX('00000000000000000000FFFF2EE5A897'), 1),
(25842768, UNHEX('00000000000000000000FFFFAF915CB2'), 2),
(25842767, UNHEX('00000000000000000000FFFFB977E979'), 3),
(25842767, UNHEX('00000000000000000000FFFF2ABEB149'), 3),
(25842766, UNHEX('00000000000000000000FFFF2ABEB149'), 3),
(25842765, UNHEX('00000000000000000000FFFF7B88765C'), 2),
(25842764, UNHEX('00000000000000000000FFFFDCB56C74'), 1),
(25842759, UNHEX('00000000000000000000FFFF73849FC8'), 2),
(25842758, UNHEX('00000000000000000000FFFFB7AB7F64'), 2),
(25842756, UNHEX('00000000000000000000FFFFC7F9E640'), 2),
(25842755, UNHEX('00000000000000000000FFFF334B42FA'), 2),
(25842755, UNHEX('00000000000000000000FFFF334B477B'), 2),
(25842755, UNHEX('00000000000000000000FFFFB9DC6539'), 2),
(25842755, UNHEX('00000000000000000000FFFFC7F9E64F'), 2),
(25842755, UNHEX('00000000000000000000FFFFC6623A87'), 2),
(25842755, UNHEX('00000000000000000000FFFF6202CA64'), 3),
(25842755, UNHEX('00000000000000000000FFFF1255C0FD'), 1),
(25842755, UNHEX('00000000000000000000FFFFAF90CE15'), 3),
(25842754, UNHEX('00000000000000000000FFFFAF90CE15'), 1),
(25842754, UNHEX('00000000000000000000FFFF6202CA64'), 1),
(25842754, UNHEX('00000000000000000000FFFFDB5D686D'), 2),
(25842754, UNHEX('00000000000000000000FFFF2AEC0A7C'), 1),
(25842754, UNHEX('00000000000000000000FFFFB4A3DC42'), 1),
(25842753, UNHEX('00000000000000000000FFFFB4A3DC03'), 1),
(25842753, UNHEX('00000000000000000000FFFF2AEC0A4E'), 1),
(25842753, UNHEX('00000000000000000000FFFFB4A3DC44'), 1),
(25842753, UNHEX('00000000000000000000FFFF3D0640F3'), 4),
(25842752, UNHEX('00000000000000000000FFFFB4A3DC03'), 1),
(25842752, UNHEX('00000000000000000000FFFF2AEC0A7C'), 1),
(25842752, UNHEX('00000000000000000000FFFFB4A3DC04'), 1),
(25842752, UNHEX('00000000000000000000FFFF3D0640F3'), 5),
(25842751, UNHEX('00000000000000000000FFFF3D0640F3'), 1),
(25842751, UNHEX('00000000000000000000FFFFDB5D686D'), 2),
(25842748, UNHEX('00000000000000000000FFFFAF915CB2'), 2),
(25842748, UNHEX('00000000000000000000FFFF3A1A5407'), 1),
(25842747, UNHEX('00000000000000000000FFFF3624955F'), 1),
(25842746, UNHEX('00000000000000000000FFFFCBD24CC0'), 2),
(25842745, UNHEX('00000000000000000000FFFF7665FF88'), 4),
(25842744, UNHEX('00000000000000000000FFFF7665FF88'), 4),
(25842743, UNHEX('00000000000000000000FFFF7665FF88'), 4),
(25842742, UNHEX('00000000000000000000FFFF7665FF88'), 8),
(25842742, UNHEX('00000000000000000000FFFF7664F7E6'), 5),
(25842741, UNHEX('00000000000000000000FFFF7664F7E6'), 1),
(25842741, UNHEX('00000000000000000000FFFFB956A46B'), 2),
(25842740, UNHEX('00000000000000000000FFFFB7AB45B5'), 2),
(25842738, UNHEX('00000000000000000000FFFFAF88DCE7'), 1),
(25842738, UNHEX('00000000000000000000FFFFAF8CE94C'), 4),
(25842737, UNHEX('00000000000000000000FFFFDB5D65AD'), 2),
(25842737, UNHEX('00000000000000000000FFFFAF88DCE7'), 1),
(25842737, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25842737, UNHEX('00000000000000000000FFFF4D433632'), 1),
(25842736, UNHEX('00000000000000000000FFFF73A4B75C'), 4),
(25842735, UNHEX('00000000000000000000FFFF73A4B75C'), 2),
(25842734, UNHEX('00000000000000000000FFFFAF8B8C39'), 1),
(25842734, UNHEX('00000000000000000000FFFFB7AB577D'), 1),
(25842733, UNHEX('00000000000000000000FFFFB7AB577D'), 3),
(25842732, UNHEX('00000000000000000000FFFFB7AB577D'), 1),
(25842731, UNHEX('00000000000000000000FFFFAF8F03C2'), 4),
(25842729, UNHEX('00000000000000000000FFFFD21307A1'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842729, UNHEX('00000000000000000000FFFF7C0D2F61'), 1),
(25842728, UNHEX('00000000000000000000FFFFAF90D52D'), 4),
(25842727, UNHEX('00000000000000000000FFFF774B2E36'), 2),
(25842726, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842725, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842723, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25842722, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842722, UNHEX('00000000000000000000FFFFD213C5D2'), 3),
(25842721, UNHEX('00000000000000000000FFFFAF915CB2'), 2),
(25842720, UNHEX('00000000000000000000FFFF362494FC'), 1),
(25842718, UNHEX('00000000000000000000FFFF671AC715'), 1),
(25842718, UNHEX('00000000000000000000FFFFB7ABB97B'), 2),
(25842718, UNHEX('00000000000000000000FFFF2ABF66D8'), 2),
(25842717, UNHEX('00000000000000000000FFFF2ABF66D8'), 2),
(25842717, UNHEX('00000000000000000000FFFF79792BBC'), 2),
(25842717, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842716, UNHEX('00000000000000000000FFFFAF88EC3A'), 3),
(25842715, UNHEX('00000000000000000000FFFFD21307A1'), 4),
(25842715, UNHEX('00000000000000000000FFFF79792BBC'), 1),
(25842715, UNHEX('00000000000000000000FFFFAF88EC3A'), 4),
(25842715, UNHEX('00000000000000000000FFFF7C0DCD29'), 2),
(25842714, UNHEX('00000000000000000000FFFF79792BBC'), 1),
(25842714, UNHEX('00000000000000000000FFFFAF88EC3A'), 2),
(25842714, UNHEX('00000000000000000000FFFFCBB09209'), 1),
(25842714, UNHEX('00000000000000000000FFFF3A1A53C8'), 1),
(25842712, UNHEX('00000000000000000000FFFF933C1583'), 2),
(25842712, UNHEX('00000000000000000000FFFF9D37276B'), 1),
(25842712, UNHEX('00000000000000000000FFFFD3193F02'), 4),
(25842711, UNHEX('00000000000000000000FFFF012042D3'), 1),
(25842710, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842709, UNHEX('00000000000000000000FFFF3C326349'), 2),
(25844219, UNHEX('00000000000000000000FFFFCA38527A'), 2),
(25844218, UNHEX('00000000000000000000FFFF7A0B86E4'), 1),
(25844218, UNHEX('00000000000000000000FFFF6E9F8BED'), 2),
(25844217, UNHEX('00000000000000000000FFFFCA38527A'), 4),
(25844217, UNHEX('00000000000000000000FFFFB7AB5395'), 2),
(25844216, UNHEX('00000000000000000000FFFF1B6A6946'), 1),
(25844216, UNHEX('00000000000000000000FFFFAF90CF65'), 2),
(25844215, UNHEX('00000000000000000000FFFFDB5C5264'), 8),
(25844215, UNHEX('00000000000000000000FFFFAF90CF65'), 1),
(25844214, UNHEX('00000000000000000000FFFFAF90CF65'), 3),
(25844214, UNHEX('00000000000000000000FFFFAA266404'), 1),
(25844211, UNHEX('00000000000000000000FFFF7B8876BC'), 2),
(25844211, UNHEX('00000000000000000000FFFFAF91567B'), 2),
(25844210, UNHEX('00000000000000000000FFFFAF91567B'), 4),
(25844210, UNHEX('00000000000000000000FFFF7B8876BC'), 5),
(25844209, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25844209, UNHEX('00000000000000000000FFFFAF91567B'), 4),
(25844209, UNHEX('00000000000000000000FFFF7B8876BC'), 2),
(25844208, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25844208, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25844208, UNHEX('00000000000000000000FFFF012039E5'), 1),
(25844208, UNHEX('00000000000000000000FFFF081DC61A'), 1),
(25844208, UNHEX('00000000000000000000FFFFAF91567B'), 2),
(25844207, UNHEX('00000000000000000000FFFF3624944D'), 1),
(25844207, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844207, UNHEX('00000000000000000000FFFFAF91567B'), 2),
(25844206, UNHEX('00000000000000000000FFFFAF91567B'), 1),
(25842709, UNHEX('00000000000000000000FFFFB6490D76'), 2),
(25842709, UNHEX('00000000000000000000FFFF0E8F0F32'), 6),
(25842709, UNHEX('00000000000000000000FFFFCA419E32'), 3),
(25842708, UNHEX('00000000000000000000FFFFB6490D76'), 1),
(25842708, UNHEX('00000000000000000000FFFFCA419E32'), 1),
(25842708, UNHEX('00000000000000000000FFFF3C326349'), 6),
(25842707, UNHEX('00000000000000000000FFFF670F19E3'), 1),
(25844205, UNHEX('00000000000000000000FFFFAF91567B'), 4),
(25844205, UNHEX('00000000000000000000FFFF73855165'), 2),
(25844205, UNHEX('00000000000000000000FFFF71D26390'), 2),
(25844204, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25844204, UNHEX('00000000000000000000FFFF71D26390'), 4),
(25844204, UNHEX('00000000000000000000FFFFAF91567B'), 5),
(25844203, UNHEX('00000000000000000000FFFF73855165'), 4),
(25844202, UNHEX('00000000000000000000FFFFAF91567B'), 2),
(25844202, UNHEX('00000000000000000000FFFF73855165'), 5),
(25844201, UNHEX('00000000000000000000FFFFDCB56C74'), 1),
(25844201, UNHEX('00000000000000000000FFFF7387AC49'), 6),
(25844201, UNHEX('00000000000000000000FFFF081DC619'), 1),
(25842707, UNHEX('00000000000000000000FFFFA18B1FF9'), 2),
(25842706, UNHEX('00000000000000000000FFFFCB5010E3'), 4),
(25842705, UNHEX('00000000000000000000FFFF33FD06A6'), 1),
(25842705, UNHEX('00000000000000000000FFFF7665FF88'), 1),
(25842705, UNHEX('00000000000000000000FFFF284DA774'), 1),
(25842703, UNHEX('00000000000000000000FFFF797A51BF'), 7),
(25842703, UNHEX('00000000000000000000FFFFB7AB1656'), 2),
(25842703, UNHEX('00000000000000000000FFFFD3186F2E'), 3),
(25842701, UNHEX('00000000000000000000FFFF670893DD'), 7),
(25842700, UNHEX('00000000000000000000FFFFD3186F2E'), 6),
(25842700, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25842699, UNHEX('00000000000000000000FFFFB7ABB902'), 2),
(25842699, UNHEX('00000000000000000000FFFF7117E244'), 2),
(25842699, UNHEX('00000000000000000000FFFF73A45537'), 4),
(25842698, UNHEX('00000000000000000000FFFF73A45537'), 2),
(25842698, UNHEX('00000000000000000000FFFF7117E244'), 4),
(25842698, UNHEX('00000000000000000000FFFFAF88EC3A'), 2),
(25842697, UNHEX('00000000000000000000FFFFAF88EC3A'), 4),
(25842696, UNHEX('00000000000000000000FFFF7117E244'), 1),
(25842696, UNHEX('00000000000000000000FFFFD21307A1'), 3),
(25842695, UNHEX('00000000000000000000FFFFA5E17072'), 1),
(25842694, UNHEX('00000000000000000000FFFF3C35CE0C'), 6),
(25842693, UNHEX('00000000000000000000FFFFB7AB5440'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842693, UNHEX('00000000000000000000FFFFD213FE8E'), 1),
(25842693, UNHEX('00000000000000000000FFFF74323CB4'), 4),
(25842693, UNHEX('00000000000000000000FFFF3C35CE0C'), 2),
(25842692, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25842692, UNHEX('00000000000000000000FFFFD213FE8E'), 2),
(25842691, UNHEX('00000000000000000000FFFFB7AB5440'), 1),
(25842691, UNHEX('00000000000000000000FFFFD213FE8E'), 4),
(25842691, UNHEX('00000000000000000000FFFF9E45CB46'), 1),
(25842690, UNHEX('00000000000000000000FFFF6710B7FA'), 1),
(25842690, UNHEX('00000000000000000000FFFF71D26757'), 1),
(25842689, UNHEX('00000000000000000000FFFFB7AB1656'), 2),
(25842689, UNHEX('00000000000000000000FFFFD21307A1'), 3),
(25842689, UNHEX('00000000000000000000FFFFD213FE8E'), 6),
(25842688, UNHEX('00000000000000000000FFFFCBBCEE1D'), 1),
(25842688, UNHEX('00000000000000000000FFFFB7AB1656'), 2),
(25842687, UNHEX('00000000000000000000FFFF6706DB02'), 2),
(25842685, UNHEX('00000000000000000000FFFF797A0435'), 1),
(25842684, UNHEX('00000000000000000000FFFF59F8ABAD'), 1),
(25842684, UNHEX('00000000000000000000FFFF2EE5A891'), 1),
(25842684, UNHEX('00000000000000000000FFFF6710B7FA'), 1),
(25842682, UNHEX('00000000000000000000FFFF2EE5A892'), 1),
(25842675, UNHEX('00000000000000000000FFFF2EE5A890'), 1),
(25842675, UNHEX('00000000000000000000FFFF76C8D129'), 2),
(25842675, UNHEX('00000000000000000000FFFF2EE5A88F'), 1),
(25842674, UNHEX('00000000000000000000FFFF76C8D129'), 2),
(25842674, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25842674, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25842674, UNHEX('00000000000000000000FFFFB7AB5432'), 4),
(25842672, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842672, UNHEX('00000000000000000000FFFF284DA712'), 1),
(25842672, UNHEX('00000000000000000000FFFF79075D19'), 2),
(25842671, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842671, UNHEX('00000000000000000000FFFFAF88DCE7'), 4),
(25842670, UNHEX('00000000000000000000FFFFC0E4E801'), 2),
(25842670, UNHEX('00000000000000000000FFFFD31913FA'), 1),
(25844200, UNHEX('00000000000000000000FFFF7387AC49'), 2),
(25844199, UNHEX('00000000000000000000FFFF7387AC49'), 2),
(25844197, UNHEX('00000000000000000000FFFF71D26236'), 4),
(25844195, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25844194, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25844193, UNHEX('00000000000000000000FFFFCB6A5D02'), 2),
(25844193, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844193, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25844192, UNHEX('00000000000000000000FFFFD53B7E6E'), 2),
(25844190, UNHEX('00000000000000000000FFFFD3186991'), 2),
(25844189, UNHEX('00000000000000000000FFFFD3186991'), 6),
(25842669, UNHEX('00000000000000000000FFFFAF88DCE7'), 2),
(25842668, UNHEX('00000000000000000000FFFF7384A70F'), 2),
(25842668, UNHEX('00000000000000000000FFFF772876E7'), 2),
(25842667, UNHEX('00000000000000000000FFFF772872E7'), 2),
(25842666, UNHEX('00000000000000000000FFFF7384A70F'), 1),
(25842666, UNHEX('00000000000000000000FFFFB7AB7185'), 4),
(25842665, UNHEX('00000000000000000000FFFF7384A70F'), 1),
(25842665, UNHEX('00000000000000000000FFFFB7AB7185'), 4),
(25842663, UNHEX('00000000000000000000FFFFCF2E0D11'), 1),
(25842662, UNHEX('00000000000000000000FFFFCB6AA525'), 2),
(25842661, UNHEX('00000000000000000000FFFF71A14326'), 2),
(25842659, UNHEX('00000000000000000000FFFF71A14326'), 2),
(25842657, UNHEX('00000000000000000000FFFFCB6AA525'), 2),
(25842657, UNHEX('00000000000000000000FFFFD3193F02'), 2),
(25842655, UNHEX('00000000000000000000FFFF362494D8'), 1),
(25842655, UNHEX('00000000000000000000FFFF3D060BCD'), 2),
(25842654, UNHEX('00000000000000000000FFFFCB7F7A12'), 1),
(25842653, UNHEX('00000000000000000000FFFF67568370'), 2),
(25842652, UNHEX('00000000000000000000FFFFB7AB5432'), 2),
(25842651, UNHEX('00000000000000000000FFFF284DA751'), 1),
(25842650, UNHEX('00000000000000000000FFFFA772F625'), 1),
(25842650, UNHEX('00000000000000000000FFFF3D060BCD'), 3),
(25842649, UNHEX('00000000000000000000FFFF3D060BCD'), 4),
(25842647, UNHEX('00000000000000000000FFFF3D060BCD'), 2),
(25844188, UNHEX('00000000000000000000FFFFD3186991'), 2),
(25844187, UNHEX('00000000000000000000FFFFADCD211B'), 1),
(25844187, UNHEX('00000000000000000000FFFF0EC0D727'), 5),
(25844186, UNHEX('00000000000000000000FFFF0EC0D727'), 1),
(25844186, UNHEX('00000000000000000000FFFFAF8BB036'), 2),
(25844182, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844181, UNHEX('00000000000000000000FFFF7B8876C7'), 2),
(25844181, UNHEX('00000000000000000000FFFFB7ABB907'), 2),
(25844180, UNHEX('00000000000000000000FFFF7B8876C7'), 2),
(25844180, UNHEX('00000000000000000000FFFFB7ABB907'), 2),
(25844180, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25844180, UNHEX('00000000000000000000FFFFD3186516'), 6),
(25844178, UNHEX('00000000000000000000FFFF2EE5A88A'), 1),
(25844178, UNHEX('00000000000000000000FFFF2AEC676A'), 1),
(25844178, UNHEX('00000000000000000000FFFF2EE5A88F'), 1),
(25844178, UNHEX('00000000000000000000FFFF3D064C40'), 2),
(25844178, UNHEX('00000000000000000000FFFF73A45949'), 2),
(25844177, UNHEX('00000000000000000000FFFF2AEC0C96'), 1),
(25844177, UNHEX('00000000000000000000FFFF5EC8A026'), 3),
(25842646, UNHEX('00000000000000000000FFFFB7AB5432'), 1),
(25842646, UNHEX('00000000000000000000FFFF71D279FB'), 2),
(25842645, UNHEX('00000000000000000000FFFFAF8A14E4'), 2),
(25842644, UNHEX('00000000000000000000FFFFAF8A14E4'), 2),
(25842644, UNHEX('00000000000000000000FFFF9E45CB46'), 1),
(25842643, UNHEX('00000000000000000000FFFF67568370'), 2),
(25842643, UNHEX('00000000000000000000FFFFAF8A14E4'), 6),
(25842643, UNHEX('00000000000000000000FFFFB956A466'), 2),
(25842641, UNHEX('00000000000000000000FFFF3C35EE6A'), 2),
(25842640, UNHEX('00000000000000000000FFFFD109D404'), 1),
(25842640, UNHEX('00000000000000000000FFFFD3186F2E'), 4) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842637, UNHEX('00000000000000000000FFFF68DE217E'), 1),
(25842636, UNHEX('00000000000000000000FFFF7C520442'), 2),
(25842636, UNHEX('00000000000000000000FFFFAF8F601D'), 5),
(25842636, UNHEX('00000000000000000000FFFF76658D75'), 2),
(25842635, UNHEX('00000000000000000000FFFF76658D75'), 6),
(25842635, UNHEX('00000000000000000000FFFFDB5CF901'), 3),
(25842634, UNHEX('00000000000000000000FFFFDB5CF901'), 1),
(25842634, UNHEX('00000000000000000000FFFF76658D75'), 1),
(25842633, UNHEX('00000000000000000000FFFF081DC619'), 1),
(25842631, UNHEX('00000000000000000000FFFF67568370'), 1),
(25842630, UNHEX('00000000000000000000FFFFDB5CF901'), 4),
(25842630, UNHEX('00000000000000000000FFFF67568370'), 6),
(25842629, UNHEX('00000000000000000000FFFF67568370'), 1),
(25842629, UNHEX('00000000000000000000FFFFB64B9F62'), 2),
(25842628, UNHEX('00000000000000000000FFFFB64B9F62'), 1),
(25842627, UNHEX('00000000000000000000FFFFAF903330'), 2),
(25842626, UNHEX('00000000000000000000FFFF34094931'), 1),
(25842625, UNHEX('00000000000000000000FFFF7C520442'), 1),
(25842624, UNHEX('00000000000000000000FFFF7C520442'), 5),
(25842624, UNHEX('00000000000000000000FFFF797A0CC1'), 1),
(25842621, UNHEX('00000000000000000000FFFF71D24A9B'), 2),
(25842621, UNHEX('00000000000000000000FFFF23C05407'), 2),
(25842621, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842620, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25842620, UNHEX('00000000000000000000FFFFDAD089AB'), 2),
(25842619, UNHEX('00000000000000000000FFFF9D372795'), 1),
(25842619, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25842618, UNHEX('00000000000000000000FFFFDAD089AB'), 2),
(25842617, UNHEX('00000000000000000000FFFF7384E0A0'), 2),
(25842617, UNHEX('00000000000000000000FFFFB7AB4BCB'), 2),
(25842617, UNHEX('00000000000000000000FFFF3A1A203E'), 2),
(25842616, UNHEX('00000000000000000000FFFF3A1A203E'), 2),
(25842615, UNHEX('00000000000000000000FFFF3A1A203E'), 2),
(25842615, UNHEX('00000000000000000000FFFF4DFAF1FB'), 1),
(25842612, UNHEX('00000000000000000000FFFF71D2BAB3'), 3),
(25842611, UNHEX('00000000000000000000FFFF71D2BAB3'), 7),
(25842610, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25842610, UNHEX('00000000000000000000FFFF71D2BAB3'), 5),
(25842608, UNHEX('00000000000000000000FFFFAA268802'), 2),
(25842607, UNHEX('00000000000000000000FFFFAA268802'), 2),
(25842606, UNHEX('00000000000000000000FFFFAA268802'), 2),
(25842605, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25842605, UNHEX('00000000000000000000FFFF3D7178D2'), 3),
(25842604, UNHEX('00000000000000000000FFFF3D7178D2'), 1),
(25842602, UNHEX('00000000000000000000FFFFD2C376D6'), 2),
(25842601, UNHEX('00000000000000000000FFFFD2C376D6'), 6),
(25842600, UNHEX('00000000000000000000FFFFAF88EE5D'), 3),
(25842599, UNHEX('00000000000000000000FFFFAF88EE5D'), 3),
(25842597, UNHEX('00000000000000000000FFFF73A42E36'), 2),
(25842597, UNHEX('00000000000000000000FFFFAF88EE5D'), 2),
(25842595, UNHEX('00000000000000000000FFFF6A0B982B'), 1),
(25842595, UNHEX('00000000000000000000FFFF2A9C8A29'), 1),
(25842594, UNHEX('00000000000000000000FFFFAF88EE5D'), 4),
(25842594, UNHEX('00000000000000000000FFFFAF8F4A29'), 2),
(25842593, UNHEX('00000000000000000000FFFFAF8F4A29'), 2),
(25842593, UNHEX('00000000000000000000FFFFAF88EE5D'), 4),
(25842593, UNHEX('00000000000000000000FFFFAF90D6D2'), 2),
(25842592, UNHEX('00000000000000000000FFFFAF90D6D2'), 8),
(25842591, UNHEX('00000000000000000000FFFFAF90D6D2'), 2),
(25842590, UNHEX('00000000000000000000FFFFAF90D6D2'), 2),
(25842586, UNHEX('00000000000000000000FFFFDF1B8306'), 2),
(25842585, UNHEX('00000000000000000000FFFFDF1B8306'), 6),
(25842584, UNHEX('00000000000000000000FFFFDF1B8306'), 4),
(25842584, UNHEX('00000000000000000000FFFFAF8AE709'), 2),
(25842582, UNHEX('00000000000000000000FFFF71D232B5'), 4),
(25842581, UNHEX('00000000000000000000FFFF71D232B5'), 2),
(25842581, UNHEX('00000000000000000000FFFF67834763'), 1),
(25842580, UNHEX('00000000000000000000FFFFCFF1E521'), 1),
(25842580, UNHEX('00000000000000000000FFFF67834761'), 1),
(25842580, UNHEX('00000000000000000000FFFF2EE5A893'), 1),
(25842580, UNHEX('00000000000000000000FFFF2EE5A882'), 1),
(25842580, UNHEX('00000000000000000000FFFF71D232B5'), 1),
(25842579, UNHEX('00000000000000000000FFFF71D232B5'), 2),
(25842579, UNHEX('00000000000000000000FFFF5291D2A3'), 1),
(25842578, UNHEX('00000000000000000000FFFF71D232B5'), 1),
(25842578, UNHEX('00000000000000000000FFFF5291D2A3'), 1),
(25842578, UNHEX('00000000000000000000FFFFD3185516'), 1),
(25842577, UNHEX('00000000000000000000FFFF71D232B5'), 1),
(25842576, UNHEX('00000000000000000000FFFF71D232B5'), 1),
(25842573, UNHEX('00000000000000000000FFFF71D232B5'), 1),
(25842566, UNHEX('00000000000000000000FFFF36249491'), 1),
(25842566, UNHEX('00000000000000000000FFFFCF2E0D31'), 1),
(25842563, UNHEX('00000000000000000000FFFFCF2E0D11'), 1),
(25842563, UNHEX('00000000000000000000FFFF67291B94'), 2),
(25842562, UNHEX('00000000000000000000FFFFB75224E3'), 3),
(25842562, UNHEX('00000000000000000000FFFF3A1B30BE'), 2),
(25844177, UNHEX('00000000000000000000FFFF73A45949'), 2),
(25844175, UNHEX('00000000000000000000FFFFAF915CB2'), 1),
(25844174, UNHEX('00000000000000000000FFFF933C1583'), 1),
(25844174, UNHEX('00000000000000000000FFFFAF8A53DE'), 1),
(25844172, UNHEX('00000000000000000000FFFF732AA2B2'), 2),
(25844172, UNHEX('00000000000000000000FFFF2BFCE924'), 4),
(25844172, UNHEX('00000000000000000000FFFFD23094FE'), 4),
(25844171, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25845333, UNHEX('00000000000000000000FFFFC063F5A0'), 1),
(25845333, UNHEX('00000000000000000000FFFF79786542'), 1),
(25845332, UNHEX('00000000000000000000FFFF79786542'), 1),
(25845331, UNHEX('00000000000000000000FFFF73A4AA71'), 4),
(25845331, UNHEX('00000000000000000000FFFFAF8DB96B'), 11),
(25845330, UNHEX('00000000000000000000FFFF7385660E'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25845330, UNHEX('00000000000000000000FFFFAF8DB96B'), 7),
(25845330, UNHEX('00000000000000000000FFFF797A340D'), 1),
(25845330, UNHEX('00000000000000000000FFFF73A4AA71'), 3),
(25845329, UNHEX('00000000000000000000FFFF73A4AA71'), 1),
(25845329, UNHEX('00000000000000000000FFFF7385660E'), 3),
(25845329, UNHEX('00000000000000000000FFFF797B0C32'), 2),
(25845326, UNHEX('00000000000000000000FFFFAF8BC176'), 1),
(25845326, UNHEX('00000000000000000000FFFFB956A46B'), 2),
(25845326, UNHEX('00000000000000000000FFFF71D2B36E'), 2),
(25845324, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25845323, UNHEX('00000000000000000000FFFF9D372733'), 1),
(25845323, UNHEX('00000000000000000000FFFFD3186998'), 5),
(25845321, UNHEX('00000000000000000000FFFF3A1B72F7'), 4),
(25845319, UNHEX('00000000000000000000FFFF73849C6D'), 4),
(25845319, UNHEX('00000000000000000000FFFF71D23905'), 6),
(25845319, UNHEX('00000000000000000000FFFFAF8A365C'), 2),
(25845318, UNHEX('00000000000000000000FFFFAF8A1D7B'), 1),
(25845317, UNHEX('00000000000000000000FFFFB07AA0A6'), 4),
(25845316, UNHEX('00000000000000000000FFFF6A0B9E1C'), 1),
(25845316, UNHEX('00000000000000000000FFFF2A9C8920'), 1),
(25845315, UNHEX('00000000000000000000FFFFAF8BC54D'), 1),
(25845314, UNHEX('00000000000000000000FFFFD319828B'), 4),
(25845311, UNHEX('00000000000000000000FFFF7C5231FC'), 2),
(25845309, UNHEX('00000000000000000000FFFF3C327483'), 6),
(25845308, UNHEX('00000000000000000000FFFF7749DB32'), 1),
(25845307, UNHEX('00000000000000000000FFFF7749DB32'), 1),
(25845307, UNHEX('00000000000000000000FFFFAF91DBD1'), 1),
(25845306, UNHEX('00000000000000000000FFFF22E7F1BF'), 1),
(25845306, UNHEX('00000000000000000000FFFFDB5C487E'), 2),
(25845305, UNHEX('00000000000000000000FFFF4FB60937'), 1),
(25845304, UNHEX('00000000000000000000FFFF4FB60937'), 1),
(25845304, UNHEX('00000000000000000000FFFF3C3408D2'), 4),
(25845302, UNHEX('00000000000000000000FFFF3C3647E9'), 6),
(25842562, UNHEX('00000000000000000000FFFF7B8876C0'), 3),
(25842561, UNHEX('00000000000000000000FFFF3624951E'), 1),
(25842561, UNHEX('00000000000000000000FFFF3A1B30BE'), 2),
(25842559, UNHEX('00000000000000000000FFFFAF915CB2'), 1),
(25842559, UNHEX('00000000000000000000FFFF31F8728D'), 1),
(25842555, UNHEX('00000000000000000000FFFF31F8728D'), 3),
(25842554, UNHEX('00000000000000000000FFFF2A992BF7'), 1),
(25842554, UNHEX('00000000000000000000FFFFB7AB442F'), 3),
(25842554, UNHEX('00000000000000000000FFFF31F8728D'), 9),
(25842553, UNHEX('00000000000000000000FFFFB7AB442F'), 1),
(25842552, UNHEX('00000000000000000000FFFF7D166429'), 2),
(25842551, UNHEX('00000000000000000000FFFF71D231B6'), 2),
(25842551, UNHEX('00000000000000000000FFFF73A4B263'), 2),
(25842551, UNHEX('00000000000000000000FFFF7D166429'), 4),
(25842550, UNHEX('00000000000000000000FFFF73A4B263'), 2),
(25842548, UNHEX('00000000000000000000FFFFB7ABB964'), 6),
(25842547, UNHEX('00000000000000000000FFFF0ED7B011'), 1),
(25842545, UNHEX('00000000000000000000FFFF71D27652'), 4),
(25842544, UNHEX('00000000000000000000FFFFCF2E0DAB'), 1),
(25842540, UNHEX('00000000000000000000FFFFB7ABB920'), 1),
(25842536, UNHEX('00000000000000000000FFFF73A4B557'), 2),
(25842532, UNHEX('00000000000000000000FFFFAF8BFF85'), 1),
(25842530, UNHEX('00000000000000000000FFFF71D26757'), 2),
(25842529, UNHEX('00000000000000000000FFFFB7ABB935'), 1),
(25842528, UNHEX('00000000000000000000FFFF71D26320'), 2),
(25842526, UNHEX('00000000000000000000FFFF7D1342E4'), 2),
(25842523, UNHEX('00000000000000000000FFFFB7ABB935'), 1),
(25842523, UNHEX('00000000000000000000FFFFB7ABB90B'), 2),
(25842522, UNHEX('00000000000000000000FFFFB7ABB90B'), 2),
(25842519, UNHEX('00000000000000000000FFFF7D1342E4'), 2),
(25844171, UNHEX('00000000000000000000FFFF2D723022'), 6),
(25844171, UNHEX('00000000000000000000FFFFB6A37AE2'), 2),
(25844170, UNHEX('00000000000000000000FFFF3C30DC33'), 2),
(25844170, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25844169, UNHEX('00000000000000000000FFFF3C30DC33'), 4),
(25844169, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25844168, UNHEX('00000000000000000000FFFFCF2E0DA4'), 1),
(25844167, UNHEX('00000000000000000000FFFFD23094FE'), 1),
(25844167, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25844166, UNHEX('00000000000000000000FFFFD23094FE'), 4),
(25844161, UNHEX('00000000000000000000FFFF797A1F11'), 4),
(25844159, UNHEX('00000000000000000000FFFF71D2C40E'), 1),
(25844159, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844158, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25844156, UNHEX('00000000000000000000FFFF33D3B081'), 1),
(25844155, UNHEX('00000000000000000000FFFFAF91567B'), 1),
(25844154, UNHEX('00000000000000000000FFFF71D274AB'), 3),
(25844152, UNHEX('00000000000000000000FFFFCAA8480C'), 2),
(25844151, UNHEX('00000000000000000000FFFFB7AB4ABF'), 3),
(25844150, UNHEX('00000000000000000000FFFFB7AB4ABF'), 1),
(25844150, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844146, UNHEX('00000000000000000000FFFF7B887079'), 2),
(25844146, UNHEX('00000000000000000000FFFFAF8B8D55'), 2),
(25844145, UNHEX('00000000000000000000FFFF7387AC49'), 2),
(25844144, UNHEX('00000000000000000000FFFF3624954E'), 1),
(25844142, UNHEX('00000000000000000000FFFFCAA21282'), 1),
(25844142, UNHEX('00000000000000000000FFFF73A4D7DA'), 2),
(25844142, UNHEX('00000000000000000000FFFF806A14C9'), 1),
(25844142, UNHEX('00000000000000000000FFFF5FD860F4'), 5),
(25844141, UNHEX('00000000000000000000FFFF73A4D7DA'), 4),
(25844139, UNHEX('00000000000000000000FFFF797A2DA1'), 2),
(25844138, UNHEX('00000000000000000000FFFFCA4FCB43'), 1),
(25844138, UNHEX('00000000000000000000FFFF797A2DA1'), 2),
(25844138, UNHEX('00000000000000000000FFFFCA419E32'), 1),
(25844138, UNHEX('00000000000000000000FFFFAF8CB558'), 2),
(25844138, UNHEX('00000000000000000000FFFFB6490D76'), 2),
(25844137, UNHEX('00000000000000000000FFFFB6490D76'), 5) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25844137, UNHEX('00000000000000000000FFFFCA4FCB43'), 1),
(25844137, UNHEX('00000000000000000000FFFFCA419E32'), 2),
(25844137, UNHEX('00000000000000000000FFFF0E8F0F32'), 3),
(25844137, UNHEX('00000000000000000000FFFFAF8CB558'), 6),
(25844137, UNHEX('00000000000000000000FFFF797A2DA1'), 2),
(25844136, UNHEX('00000000000000000000FFFFAF8CB558'), 2),
(25844135, UNHEX('00000000000000000000FFFFAF8CB558'), 4),
(25844134, UNHEX('00000000000000000000FFFFAF8CB558'), 2),
(25844133, UNHEX('00000000000000000000FFFFAF8CB558'), 2),
(25844133, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25844132, UNHEX('00000000000000000000FFFF3C3658A4'), 7),
(25844131, UNHEX('00000000000000000000FFFF3C3658A4'), 1),
(25844131, UNHEX('00000000000000000000FFFFB8487323'), 2),
(25844131, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25844131, UNHEX('00000000000000000000FFFFAF8CB558'), 8),
(25844131, UNHEX('00000000000000000000FFFFB7AB5AAF'), 1),
(25844131, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25844130, UNHEX('00000000000000000000FFFFB7AB5AAF'), 3),
(25844130, UNHEX('00000000000000000000FFFFD3186516'), 6),
(25844130, UNHEX('00000000000000000000FFFFAF8CB558'), 6),
(25844130, UNHEX('00000000000000000000FFFF73A45602'), 2),
(25844129, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844128, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844128, UNHEX('00000000000000000000FFFF3D067FB0'), 1),
(25844127, UNHEX('00000000000000000000FFFF36D13C3F'), 2),
(25844127, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844126, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25844124, UNHEX('00000000000000000000FFFF7B887079'), 2),
(25844124, UNHEX('00000000000000000000FFFF7385E5F8'), 2),
(25844123, UNHEX('00000000000000000000FFFF7385E5F8'), 2),
(25844123, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25844122, UNHEX('00000000000000000000FFFF7385E5F8'), 2),
(25844122, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25844122, UNHEX('00000000000000000000FFFFD319E282'), 2),
(25844121, UNHEX('00000000000000000000FFFFC0630126'), 1),
(25844121, UNHEX('00000000000000000000FFFF73A45602'), 2),
(25844120, UNHEX('00000000000000000000FFFF6DC99AE0'), 1),
(25844120, UNHEX('00000000000000000000FFFF73A45602'), 2),
(25844120, UNHEX('00000000000000000000FFFFCB6ADB2A'), 4),
(25844119, UNHEX('00000000000000000000FFFFC0630126'), 1),
(25844119, UNHEX('00000000000000000000FFFFAF91DBD1'), 1),
(25844119, UNHEX('00000000000000000000FFFFB956A468'), 2),
(25844118, UNHEX('00000000000000000000FFFF73A432A2'), 1),
(25844118, UNHEX('00000000000000000000FFFFAF91E02A'), 1),
(25844118, UNHEX('00000000000000000000FFFFAF8CE986'), 5),
(25844117, UNHEX('00000000000000000000FFFFC0630126'), 1),
(25844117, UNHEX('00000000000000000000FFFFAF8CE986'), 2),
(25844116, UNHEX('00000000000000000000FFFFC0630126'), 1),
(25844116, UNHEX('00000000000000000000FFFFAF8CE986'), 4),
(25842519, UNHEX('00000000000000000000FFFFD282C333'), 2),
(25842517, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842514, UNHEX('00000000000000000000FFFFA5E17082'), 2),
(25842514, UNHEX('00000000000000000000FFFFB2FFD759'), 1),
(25842513, UNHEX('00000000000000000000FFFFB2FFD759'), 2),
(25842513, UNHEX('00000000000000000000FFFFB7AB40ED'), 2),
(25842513, UNHEX('00000000000000000000FFFF71D26757'), 2),
(25842512, UNHEX('00000000000000000000FFFF73842E30'), 2),
(25842512, UNHEX('00000000000000000000FFFFB7ABB974'), 4),
(25845301, UNHEX('00000000000000000000FFFF7B7BDB21'), 1),
(25845301, UNHEX('00000000000000000000FFFFA5E17060'), 2),
(25845301, UNHEX('00000000000000000000FFFFCBD9B0E7'), 2),
(25845300, UNHEX('00000000000000000000FFFFCBD9B0E7'), 2),
(25845298, UNHEX('00000000000000000000FFFF76648E7A'), 2),
(25845297, UNHEX('00000000000000000000FFFF73A4483F'), 2),
(25845297, UNHEX('00000000000000000000FFFFB7ABB95B'), 2),
(25845296, UNHEX('00000000000000000000FFFF9D3727F5'), 1),
(25845296, UNHEX('00000000000000000000FFFF76648E7A'), 2),
(25845296, UNHEX('00000000000000000000FFFF0E00E523'), 2),
(25845296, UNHEX('00000000000000000000FFFF71D27448'), 2),
(25845296, UNHEX('00000000000000000000FFFF73A4483F'), 6),
(25845295, UNHEX('00000000000000000000FFFF73A4483F'), 2),
(25845295, UNHEX('00000000000000000000FFFFAF8F4FAD'), 2),
(25845294, UNHEX('00000000000000000000FFFF797B89D7'), 2),
(25845293, UNHEX('00000000000000000000FFFFAF8F4FAD'), 3),
(25845292, UNHEX('00000000000000000000FFFFAF8F4FAD'), 3),
(25845291, UNHEX('00000000000000000000FFFFAF8F4FAD'), 1),
(25845291, UNHEX('00000000000000000000FFFF73A44D73'), 2),
(25845291, UNHEX('00000000000000000000FFFFD3186991'), 4),
(25845290, UNHEX('00000000000000000000FFFFD3186991'), 2),
(25843896, UNHEX('00000000000000000000FFFFCB87BE35'), 1),
(25844115, UNHEX('00000000000000000000FFFFAF916E60'), 2),
(25844114, UNHEX('00000000000000000000FFFFC0630126'), 2),
(25844114, UNHEX('00000000000000000000FFFFB7AB5E61'), 4),
(25844114, UNHEX('00000000000000000000FFFF797A340D'), 1),
(25844114, UNHEX('00000000000000000000FFFFAF91E02A'), 2),
(25844113, UNHEX('00000000000000000000FFFF797A340D'), 1),
(25844113, UNHEX('00000000000000000000FFFFB7AB5E61'), 2),
(25844113, UNHEX('00000000000000000000FFFFAF91E02A'), 1),
(25844111, UNHEX('00000000000000000000FFFFAF916E60'), 2),
(25844110, UNHEX('00000000000000000000FFFFAF916E60'), 4),
(25844108, UNHEX('00000000000000000000FFFF113A62EF'), 3),
(25844108, UNHEX('00000000000000000000FFFFAF8CE986'), 4),
(25844108, UNHEX('00000000000000000000FFFFD21307A1'), 4),
(25844107, UNHEX('00000000000000000000FFFF7085F4B9'), 2),
(25844104, UNHEX('00000000000000000000FFFF01202F22'), 2),
(25844102, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25844102, UNHEX('00000000000000000000FFFFD453913A'), 4),
(25844099, UNHEX('00000000000000000000FFFF3C322B7A'), 1),
(25844098, UNHEX('00000000000000000000FFFF6783475F'), 1),
(25844098, UNHEX('00000000000000000000FFFF7085FBA3'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25844097, UNHEX('00000000000000000000FFFFD21307A1'), 4),
(25844097, UNHEX('00000000000000000000FFFF73A4385A'), 2),
(25844096, UNHEX('00000000000000000000FFFF73A448E0'), 4),
(25844095, UNHEX('00000000000000000000FFFF73A448E0'), 2),
(25843895, UNHEX('00000000000000000000FFFFCABE8226'), 2),
(25843895, UNHEX('00000000000000000000FFFFCB87BE35'), 5),
(25843895, UNHEX('00000000000000000000FFFFB7AB7078'), 2),
(25843893, UNHEX('00000000000000000000FFFFB7AB7078'), 2),
(25843892, UNHEX('00000000000000000000FFFF480EC7A5'), 1),
(25843892, UNHEX('00000000000000000000FFFFAF88DBA3'), 2),
(25843891, UNHEX('00000000000000000000FFFFAF88DBA3'), 1),
(25843891, UNHEX('00000000000000000000FFFFB7AB7078'), 1),
(25843891, UNHEX('00000000000000000000FFFFAF8B8D21'), 3),
(25843891, UNHEX('00000000000000000000FFFFD319E3A2'), 3),
(25843890, UNHEX('00000000000000000000FFFFD319E3A2'), 1),
(25843890, UNHEX('00000000000000000000FFFFAF915427'), 1),
(25843890, UNHEX('00000000000000000000FFFFB7AB7078'), 2),
(25843890, UNHEX('00000000000000000000FFFF71D2C509'), 5),
(25843889, UNHEX('00000000000000000000FFFF284DA78B'), 1),
(25843889, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25843889, UNHEX('00000000000000000000FFFFCAA02868'), 4),
(25843889, UNHEX('00000000000000000000FFFFD319E3A2'), 3),
(25843888, UNHEX('00000000000000000000FFFFD319E3A2'), 1),
(25843888, UNHEX('00000000000000000000FFFF34094943'), 1),
(25844094, UNHEX('00000000000000000000FFFF71D27918'), 2),
(25844093, UNHEX('00000000000000000000FFFFD2BA85C3'), 2),
(25844091, UNHEX('00000000000000000000FFFF0D39E963'), 1),
(25844091, UNHEX('00000000000000000000FFFF7906CF3E'), 1),
(25844091, UNHEX('00000000000000000000FFFF675ADC28'), 2),
(25844090, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25844086, UNHEX('00000000000000000000FFFF7384A78D'), 8),
(25844085, UNHEX('00000000000000000000FFFF797AAA73'), 5),
(25844085, UNHEX('00000000000000000000FFFF7384A78D'), 2),
(25844085, UNHEX('00000000000000000000FFFF76646F91'), 4),
(25844085, UNHEX('00000000000000000000FFFF797912EA'), 6),
(25844085, UNHEX('00000000000000000000FFFFD23094FE'), 1),
(25844085, UNHEX('00000000000000000000FFFFA5E170D6'), 1),
(25844084, UNHEX('00000000000000000000FFFF7384A78D'), 2),
(25844084, UNHEX('00000000000000000000FFFF797AAA73'), 2),
(25844083, UNHEX('00000000000000000000FFFF797AAA73'), 1),
(25844081, UNHEX('00000000000000000000FFFF670893DD'), 7),
(25844080, UNHEX('00000000000000000000FFFF670893DD'), 6),
(25844080, UNHEX('00000000000000000000FFFFDB5CF7A9'), 2),
(25844078, UNHEX('00000000000000000000FFFFB7AB4055'), 6),
(25844077, UNHEX('00000000000000000000FFFFB7AB4055'), 1),
(25844076, UNHEX('00000000000000000000FFFFAF8A40B9'), 4),
(25844074, UNHEX('00000000000000000000FFFF7C520442'), 2),
(25844074, UNHEX('00000000000000000000FFFFCAB88DA0'), 4),
(25844073, UNHEX('00000000000000000000FFFF7C520442'), 2),
(25844070, UNHEX('00000000000000000000FFFF7387AC49'), 4),
(25844069, UNHEX('00000000000000000000FFFF5325690E'), 1),
(25844069, UNHEX('00000000000000000000FFFFAF8CE907'), 1),
(25844068, UNHEX('00000000000000000000FFFFCB705202'), 1),
(25844068, UNHEX('00000000000000000000FFFF2EE5A893'), 1),
(25844068, UNHEX('00000000000000000000FFFF2EE5A88B'), 1),
(25844068, UNHEX('00000000000000000000FFFFD2BA9D98'), 4),
(25844067, UNHEX('00000000000000000000FFFFCB705202'), 1),
(25844067, UNHEX('00000000000000000000FFFF71D2B254'), 1),
(25844066, UNHEX('00000000000000000000FFFF71D2B254'), 1),
(25844062, UNHEX('00000000000000000000FFFFAF8CE907'), 1),
(25844062, UNHEX('00000000000000000000FFFFD230DD0A'), 2),
(25844062, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844060, UNHEX('00000000000000000000FFFFAA268802'), 6),
(25844059, UNHEX('00000000000000000000FFFFAA268802'), 2),
(25844059, UNHEX('00000000000000000000FFFFD3186027'), 4),
(25844058, UNHEX('00000000000000000000FFFF71D24792'), 2),
(25844058, UNHEX('00000000000000000000FFFF849362B3'), 6),
(25844056, UNHEX('00000000000000000000FFFFC0E49E09'), 2),
(25844054, UNHEX('00000000000000000000FFFF0E8F0F32'), 3),
(25844054, UNHEX('00000000000000000000FFFFCA419E32'), 3),
(25844053, UNHEX('00000000000000000000FFFF0E8F0F32'), 2),
(25844053, UNHEX('00000000000000000000FFFFB6490D76'), 3),
(25844053, UNHEX('00000000000000000000FFFFCA419E32'), 2),
(25844053, UNHEX('00000000000000000000FFFF7C520442'), 6),
(25844053, UNHEX('00000000000000000000FFFF7387AC49'), 2),
(25844052, UNHEX('00000000000000000000FFFF7A0B86E4'), 5),
(25844052, UNHEX('00000000000000000000FFFFCF2E0D21'), 1),
(25844051, UNHEX('00000000000000000000FFFF7387AC49'), 2),
(25844051, UNHEX('00000000000000000000FFFF7A0B86E4'), 1),
(25844051, UNHEX('00000000000000000000FFFF286BC926'), 2),
(25844050, UNHEX('00000000000000000000FFFF2A998263'), 4),
(25844047, UNHEX('00000000000000000000FFFFD3186027'), 2),
(25844047, UNHEX('00000000000000000000FFFF0ED7B086'), 1),
(25844046, UNHEX('00000000000000000000FFFF7C0D2F85'), 1),
(25844045, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844044, UNHEX('00000000000000000000FFFFCF2E0D21'), 1),
(25844041, UNHEX('00000000000000000000FFFF76C8A52E'), 1),
(25844041, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844039, UNHEX('00000000000000000000FFFFDB412C0A'), 2),
(25844037, UNHEX('00000000000000000000FFFF0E01E170'), 2),
(25844036, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844035, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844032, UNHEX('00000000000000000000FFFF0E01E170'), 6),
(25844031, UNHEX('00000000000000000000FFFF797A340D'), 4),
(25844030, UNHEX('00000000000000000000FFFFDB412C0A'), 2),
(25844029, UNHEX('00000000000000000000FFFFB7AB777E'), 3),
(25844028, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25844023, UNHEX('00000000000000000000FFFFCB705201'), 1),
(25844023, UNHEX('00000000000000000000FFFF7B887557'), 2),
(25844023, UNHEX('00000000000000000000FFFFDB412C0A'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25844022, UNHEX('00000000000000000000FFFFDB412C0A'), 3),
(25844020, UNHEX('00000000000000000000FFFFCA419E32'), 1),
(25844020, UNHEX('00000000000000000000FFFFB6490D76'), 6),
(25844020, UNHEX('00000000000000000000FFFF0E8F0F32'), 6),
(25844018, UNHEX('00000000000000000000FFFF3D0647E0'), 1),
(25844015, UNHEX('00000000000000000000FFFFCAA02868'), 6),
(25844014, UNHEX('00000000000000000000FFFF36EA0DEF'), 1),
(25844014, UNHEX('00000000000000000000FFFFAF89D0B2'), 4),
(25844013, UNHEX('00000000000000000000FFFF3D0647E0'), 1),
(25844013, UNHEX('00000000000000000000FFFF7C0D3D71'), 2),
(25844010, UNHEX('00000000000000000000FFFFDAD08F6F'), 2),
(25844010, UNHEX('00000000000000000000FFFFAF89D0B2'), 4),
(25844009, UNHEX('00000000000000000000FFFFAF89D0B2'), 2),
(25844007, UNHEX('00000000000000000000FFFFD21307A1'), 4),
(25844006, UNHEX('00000000000000000000FFFF7665CC45'), 4),
(25844003, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844003, UNHEX('00000000000000000000FFFFB7AB4C0D'), 1),
(25845290, UNHEX('00000000000000000000FFFFB7ABB920'), 2),
(25845289, UNHEX('00000000000000000000FFFFBEB7F7B1'), 2),
(25845288, UNHEX('00000000000000000000FFFFB44C0F86'), 1),
(25845288, UNHEX('00000000000000000000FFFF9D372733'), 2),
(25845288, UNHEX('00000000000000000000FFFFAF8A5E5A'), 2),
(25845288, UNHEX('00000000000000000000FFFF797B89D7'), 4),
(25845288, UNHEX('00000000000000000000FFFFAF8A40C1'), 2),
(25845287, UNHEX('00000000000000000000FFFF797B89D7'), 2),
(25845286, UNHEX('00000000000000000000FFFFCBD9B0E7'), 2),
(25845286, UNHEX('00000000000000000000FFFFCBD98198'), 1),
(25845286, UNHEX('00000000000000000000FFFFAF8B9749'), 6),
(25845285, UNHEX('00000000000000000000FFFFCBD9B0E7'), 4),
(25845284, UNHEX('00000000000000000000FFFF7C0DCFF2'), 1),
(25845276, UNHEX('00000000000000000000FFFF3C361E0F'), 4),
(25845275, UNHEX('00000000000000000000FFFF3C361E0F'), 4),
(25845275, UNHEX('00000000000000000000FFFFD213FE6C'), 1),
(25845274, UNHEX('00000000000000000000FFFFD213FE6C'), 3),
(25845273, UNHEX('00000000000000000000FFFF9D372733'), 1),
(25845272, UNHEX('00000000000000000000FFFF629EF2B2'), 2),
(25845269, UNHEX('00000000000000000000FFFFAF8B9749'), 2),
(25845269, UNHEX('00000000000000000000FFFF7665F8EF'), 1),
(25845267, UNHEX('00000000000000000000FFFF79792BBC'), 2),
(25845266, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25845266, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25845266, UNHEX('00000000000000000000FFFF79792BBC'), 6),
(25845265, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25845265, UNHEX('00000000000000000000FFFFAF8F064B'), 2),
(25845265, UNHEX('00000000000000000000FFFF79792BBC'), 6),
(25845265, UNHEX('00000000000000000000FFFFCB6AD702'), 6),
(25845264, UNHEX('00000000000000000000FFFF2684728D'), 1),
(25845264, UNHEX('00000000000000000000FFFFCB6AD702'), 2),
(25845264, UNHEX('00000000000000000000FFFFB7AB51D0'), 2),
(25845264, UNHEX('00000000000000000000FFFFAF8F064B'), 5),
(25845264, UNHEX('00000000000000000000FFFFD31867D9'), 1),
(25845262, UNHEX('00000000000000000000FFFFAF8BBBF5'), 4),
(25845262, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25845260, UNHEX('00000000000000000000FFFF7B887479'), 3),
(25845260, UNHEX('00000000000000000000FFFF362494E3'), 1),
(25845259, UNHEX('00000000000000000000FFFF3C321072'), 4),
(25845259, UNHEX('00000000000000000000FFFFD3186991'), 4),
(25845258, UNHEX('00000000000000000000FFFFD3186991'), 2),
(25845258, UNHEX('00000000000000000000FFFFB7ABB923'), 4),
(25845256, UNHEX('00000000000000000000FFFF629EF2B2'), 2),
(25845255, UNHEX('00000000000000000000FFFF9D372733'), 1),
(25845255, UNHEX('00000000000000000000FFFFB44C0F8D'), 1),
(25845254, UNHEX('00000000000000000000FFFFB7ABB923'), 2),
(25845253, UNHEX('00000000000000000000FFFF01203AC9'), 6),
(25845253, UNHEX('00000000000000000000FFFF76645796'), 1),
(25845253, UNHEX('00000000000000000000FFFFDB5C34F9'), 4),
(25845252, UNHEX('00000000000000000000FFFF76645796'), 1),
(25845252, UNHEX('00000000000000000000FFFF73A45B0F'), 4),
(25845252, UNHEX('00000000000000000000FFFF629EF2B2'), 1),
(25845251, UNHEX('00000000000000000000FFFF7AA35F4B'), 1),
(25845251, UNHEX('00000000000000000000FFFF629EF2B2'), 3),
(25845251, UNHEX('00000000000000000000FFFF73A45B0F'), 2),
(25845250, UNHEX('00000000000000000000FFFF9D3727F5'), 1),
(25845250, UNHEX('00000000000000000000FFFF01203AC9'), 4),
(25845249, UNHEX('00000000000000000000FFFF73A45B0F'), 2),
(25845249, UNHEX('00000000000000000000FFFF73854FD9'), 9),
(25845249, UNHEX('00000000000000000000FFFF3C313C62'), 1),
(25845248, UNHEX('00000000000000000000FFFF76645796'), 2),
(25845248, UNHEX('00000000000000000000FFFF73854F9E'), 2),
(25845248, UNHEX('00000000000000000000FFFF73A45B0F'), 2),
(25845247, UNHEX('00000000000000000000FFFFAF88FD32'), 4),
(25845246, UNHEX('00000000000000000000FFFF73A45B0F'), 2),
(25845245, UNHEX('00000000000000000000FFFF939E9CC3'), 2),
(25845245, UNHEX('00000000000000000000FFFF010953B5'), 4),
(25845244, UNHEX('00000000000000000000FFFF939E9CC3'), 4),
(25845244, UNHEX('00000000000000000000FFFF010953B5'), 7),
(25845243, UNHEX('00000000000000000000FFFF010953B5'), 3),
(25845243, UNHEX('00000000000000000000FFFF73A4D448'), 4),
(25845242, UNHEX('00000000000000000000FFFF73A4D448'), 2),
(25845242, UNHEX('00000000000000000000FFFFDB5C34F9'), 4),
(25845242, UNHEX('00000000000000000000FFFFCB6A5D02'), 2),
(25845240, UNHEX('00000000000000000000FFFFCBB09209'), 2),
(25845240, UNHEX('00000000000000000000FFFF73A4CF07'), 2),
(25845239, UNHEX('00000000000000000000FFFFCBB09209'), 4),
(25845237, UNHEX('00000000000000000000FFFF76645796'), 2),
(25845237, UNHEX('00000000000000000000FFFF73A4CC66'), 4),
(25845236, UNHEX('00000000000000000000FFFF73A4CC66'), 4),
(25845236, UNHEX('00000000000000000000FFFFCBB09209'), 1),
(25845236, UNHEX('00000000000000000000FFFF76645796'), 2),
(25845235, UNHEX('00000000000000000000FFFFCBB09209'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25845235, UNHEX('00000000000000000000FFFFAF88FD32'), 1),
(25845234, UNHEX('00000000000000000000FFFF797A311D'), 1),
(25845234, UNHEX('00000000000000000000FFFFD21307A1'), 4),
(25845234, UNHEX('00000000000000000000FFFF3C34687D'), 6),
(25845233, UNHEX('00000000000000000000FFFF73847689'), 1),
(25845229, UNHEX('00000000000000000000FFFF2AEC0A5C'), 1),
(25845229, UNHEX('00000000000000000000FFFFB4A3DC44'), 1),
(25845229, UNHEX('00000000000000000000FFFFB4A3DC05'), 2),
(25845228, UNHEX('00000000000000000000FFFF2AEC0A54'), 1),
(25845228, UNHEX('00000000000000000000FFFFA5E17060'), 1),
(25845226, UNHEX('00000000000000000000FFFF8A80F279'), 2),
(25845225, UNHEX('00000000000000000000FFFF8A80F279'), 1),
(25845225, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25845224, UNHEX('00000000000000000000FFFFDB5CF411'), 1),
(25845223, UNHEX('00000000000000000000FFFFA5E17060'), 2),
(25845222, UNHEX('00000000000000000000FFFFB9DC6523'), 2),
(25845222, UNHEX('00000000000000000000FFFFA5E17060'), 2),
(25845222, UNHEX('00000000000000000000FFFFB32B869C'), 2),
(25845222, UNHEX('00000000000000000000FFFFB00A63C8'), 3),
(25845220, UNHEX('00000000000000000000FFFFAF8BC176'), 1),
(25845220, UNHEX('00000000000000000000FFFFC62D125E'), 1),
(25845220, UNHEX('00000000000000000000FFFF939E9CC3'), 4),
(25843888, UNHEX('00000000000000000000FFFFB7AB7078'), 2),
(25843888, UNHEX('00000000000000000000FFFFD3186998'), 3),
(25843887, UNHEX('00000000000000000000FFFFB7AB7078'), 2),
(25843887, UNHEX('00000000000000000000FFFFD3186998'), 5),
(25843887, UNHEX('00000000000000000000FFFFD3186991'), 2),
(25843886, UNHEX('00000000000000000000FFFFD3186991'), 2),
(25843886, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25843886, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25843886, UNHEX('00000000000000000000FFFF2ABC4072'), 1),
(25843885, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25843885, UNHEX('00000000000000000000FFFF797967D3'), 2),
(25843885, UNHEX('00000000000000000000FFFFB7ABB907'), 4),
(25843885, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25843885, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25843884, UNHEX('00000000000000000000FFFFD3186516'), 3),
(25843884, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25843883, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25843883, UNHEX('00000000000000000000FFFF673EF04A'), 1),
(25843882, UNHEX('00000000000000000000FFFFD2BA6214'), 1),
(25843882, UNHEX('00000000000000000000FFFFB7ABB907'), 4),
(25843882, UNHEX('00000000000000000000FFFF2EE5A894'), 1),
(25843882, UNHEX('00000000000000000000FFFF2EE5A899'), 1),
(25843882, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25843881, UNHEX('00000000000000000000FFFF9D372758'), 1),
(25843881, UNHEX('00000000000000000000FFFFB7ABB907'), 4),
(25843881, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25843880, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25843880, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25843878, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25843878, UNHEX('00000000000000000000FFFFD3186998'), 3),
(25843878, UNHEX('00000000000000000000FFFF2ABC4072'), 1),
(25843877, UNHEX('00000000000000000000FFFF7BCF5E7E'), 1),
(25843877, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25843877, UNHEX('00000000000000000000FFFF2ABC4072'), 5),
(25843871, UNHEX('00000000000000000000FFFF3C36257A'), 2),
(25843871, UNHEX('00000000000000000000FFFF9D372748'), 1),
(25843867, UNHEX('00000000000000000000FFFFAF8A0423'), 2),
(25843865, UNHEX('00000000000000000000FFFF7B886B45'), 2),
(25843865, UNHEX('00000000000000000000FFFF3C305158'), 1),
(25843864, UNHEX('00000000000000000000FFFF7664C484'), 2),
(25843863, UNHEX('00000000000000000000FFFF7664C484'), 4),
(25843863, UNHEX('00000000000000000000FFFF797928A2'), 2),
(25843862, UNHEX('00000000000000000000FFFF797928A2'), 4),
(25843861, UNHEX('00000000000000000000FFFFCAB74C12'), 1),
(25843861, UNHEX('00000000000000000000FFFF76653922'), 4),
(25843861, UNHEX('00000000000000000000FFFF797928A2'), 4),
(25843860, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25843860, UNHEX('00000000000000000000FFFFA18BDE12'), 1),
(25843859, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25843859, UNHEX('00000000000000000000FFFFC0C1A009'), 6),
(25843858, UNHEX('00000000000000000000FFFFC0C1A009'), 2),
(25843858, UNHEX('00000000000000000000FFFFAF8BE3E4'), 4),
(25843856, UNHEX('00000000000000000000FFFF88006389'), 4),
(25843853, UNHEX('00000000000000000000FFFFB7AB5D43'), 8),
(25843851, UNHEX('00000000000000000000FFFFAF8DEE43'), 2),
(25843850, UNHEX('00000000000000000000FFFF9D372758'), 1),
(25843848, UNHEX('00000000000000000000FFFF88006389'), 2),
(25843848, UNHEX('00000000000000000000FFFFD2BA086A'), 1),
(25843846, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843846, UNHEX('00000000000000000000FFFFAF8EFB9C'), 1),
(25843845, UNHEX('00000000000000000000FFFFAF8EFB9C'), 4),
(25843845, UNHEX('00000000000000000000FFFFD3186991'), 6),
(25843845, UNHEX('00000000000000000000FFFF73842ECA'), 2),
(25843844, UNHEX('00000000000000000000FFFF73A4CDB3'), 2),
(25843844, UNHEX('00000000000000000000FFFFCBBCEE1D'), 1),
(25843843, UNHEX('00000000000000000000FFFFAF8B8392'), 2),
(25843841, UNHEX('00000000000000000000FFFF9D3727BB'), 1),
(25843841, UNHEX('00000000000000000000FFFF3C36288A'), 3),
(25843840, UNHEX('00000000000000000000FFFF3C36288A'), 1),
(25843840, UNHEX('00000000000000000000FFFFAF8B8E36'), 1),
(25843839, UNHEX('00000000000000000000FFFF7384A8AB'), 2),
(25843838, UNHEX('00000000000000000000FFFF797BBDB5'), 1),
(25843838, UNHEX('00000000000000000000FFFF284DA784'), 1),
(25843836, UNHEX('00000000000000000000FFFF7384A051'), 2),
(25843836, UNHEX('00000000000000000000FFFFAF8A5EF1'), 1),
(25843835, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843835, UNHEX('00000000000000000000FFFFB7AB41F2'), 4),
(25843835, UNHEX('00000000000000000000FFFFDB5CF901'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25843834, UNHEX('00000000000000000000FFFFDB5CF901'), 2),
(25843833, UNHEX('00000000000000000000FFFF6E9F7ED9'), 2),
(25843833, UNHEX('00000000000000000000FFFFDB5CF901'), 6),
(25843833, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843832, UNHEX('00000000000000000000FFFFCAB78712'), 1),
(25843832, UNHEX('00000000000000000000FFFFB7AB4C25'), 4),
(25843832, UNHEX('00000000000000000000FFFFDB5CF901'), 2),
(25843832, UNHEX('00000000000000000000FFFFDC6235E5'), 5),
(25843832, UNHEX('00000000000000000000FFFF0109752D'), 4),
(25843831, UNHEX('00000000000000000000FFFFDB5CF901'), 4),
(25843831, UNHEX('00000000000000000000FFFFAF8B8D55'), 2),
(25843831, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843831, UNHEX('00000000000000000000FFFF0109752D'), 6),
(25843830, UNHEX('00000000000000000000FFFF0109752D'), 5),
(25843830, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25843829, UNHEX('00000000000000000000FFFF9D3727BB'), 1),
(25843828, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25843828, UNHEX('00000000000000000000FFFF9D3727BB'), 1),
(25843827, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843826, UNHEX('00000000000000000000FFFFCAB78712'), 1),
(25843826, UNHEX('00000000000000000000FFFF9D3727BB'), 1),
(25843826, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25843826, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25843826, UNHEX('00000000000000000000FFFF7C9E0D6C'), 3),
(25843825, UNHEX('00000000000000000000FFFF7C9E0D6C'), 1),
(25843825, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843825, UNHEX('00000000000000000000FFFF6E9F7ED9'), 1),
(25843824, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843824, UNHEX('00000000000000000000FFFFAF89AE63'), 2),
(25843824, UNHEX('00000000000000000000FFFF6E9F7ED9'), 3),
(25843824, UNHEX('00000000000000000000FFFF6E9F8BED'), 2),
(25843824, UNHEX('00000000000000000000FFFFDB5CF901'), 4),
(25842512, UNHEX('00000000000000000000FFFFD3186F2E'), 2),
(25842511, UNHEX('00000000000000000000FFFFD3186F2E'), 9),
(25842509, UNHEX('00000000000000000000FFFF79792BBC'), 2),
(25842508, UNHEX('00000000000000000000FFFF71D2B311'), 2),
(25842508, UNHEX('00000000000000000000FFFF284DA714'), 1),
(25842507, UNHEX('00000000000000000000FFFFD319AAE2'), 1),
(25842506, UNHEX('00000000000000000000FFFF79792BBC'), 2),
(25842505, UNHEX('00000000000000000000FFFFAF8DEE48'), 1),
(25842504, UNHEX('00000000000000000000FFFFBEE6A683'), 2),
(25842504, UNHEX('00000000000000000000FFFFCABEAE18'), 2),
(25842503, UNHEX('00000000000000000000FFFF284DA7B4'), 1),
(25842503, UNHEX('00000000000000000000FFFFCABEAE18'), 8),
(25842502, UNHEX('00000000000000000000FFFF081DC61A'), 1),
(25842502, UNHEX('00000000000000000000FFFF50ACEA0F'), 3),
(25842501, UNHEX('00000000000000000000FFFF50ACEA0F'), 1),
(25842501, UNHEX('00000000000000000000FFFFAF8BFCAA'), 4),
(25842500, UNHEX('00000000000000000000FFFF081DC61A'), 1),
(25842500, UNHEX('00000000000000000000FFFFC0EAEB67'), 2),
(25842498, UNHEX('00000000000000000000FFFF7B7BDB2D'), 1),
(25842497, UNHEX('00000000000000000000FFFFC0E4F300'), 1),
(25842496, UNHEX('00000000000000000000FFFF71D2705A'), 2),
(25842495, UNHEX('00000000000000000000FFFF71D2705A'), 2),
(25842494, UNHEX('00000000000000000000FFFF2ABE2B6F'), 4),
(25842433, UNHEX('00000000000000000000FFFF79792BBC'), 4),
(25842433, UNHEX('00000000000000000000FFFFAF885BE5'), 2),
(25842432, UNHEX('00000000000000000000FFFF79792BBC'), 1),
(25842431, UNHEX('00000000000000000000FFFFAF885BE5'), 4),
(25842425, UNHEX('00000000000000000000FFFF3D06AE55'), 4),
(25842424, UNHEX('00000000000000000000FFFF3D06AE55'), 8),
(25842422, UNHEX('00000000000000000000FFFF7B887673'), 2),
(25842419, UNHEX('00000000000000000000FFFF7B887673'), 1),
(25842418, UNHEX('00000000000000000000FFFF7B887673'), 1),
(25842418, UNHEX('00000000000000000000FFFFCA419E32'), 3),
(25842418, UNHEX('00000000000000000000FFFFB6490D76'), 2),
(25842418, UNHEX('00000000000000000000FFFF0E8F0F32'), 3),
(25842417, UNHEX('00000000000000000000FFFFCA419E32'), 2),
(25842417, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25842416, UNHEX('00000000000000000000FFFFCA419E32'), 1),
(25842415, UNHEX('00000000000000000000FFFF73857AD6'), 2),
(25842415, UNHEX('00000000000000000000FFFFB44C0F22'), 1),
(25842415, UNHEX('00000000000000000000FFFF284DA7B6'), 1),
(25842414, UNHEX('00000000000000000000FFFF73857AD6'), 1),
(25842413, UNHEX('00000000000000000000FFFF73857AD6'), 1),
(25842413, UNHEX('00000000000000000000FFFF0E8F0F32'), 1),
(25842413, UNHEX('00000000000000000000FFFF7C0D2D06'), 2),
(25842411, UNHEX('00000000000000000000FFFF7C0D2D0E'), 2),
(25842410, UNHEX('00000000000000000000FFFFCA419E32'), 1),
(25842410, UNHEX('00000000000000000000FFFFAF8F4FAD'), 6),
(25842409, UNHEX('00000000000000000000FFFF7B887509'), 4),
(25842408, UNHEX('00000000000000000000FFFF7B887509'), 2),
(25842408, UNHEX('00000000000000000000FFFF3D0EAF47'), 4),
(25842407, UNHEX('00000000000000000000FFFF3D0EAF47'), 2),
(25842404, UNHEX('00000000000000000000FFFF3C32D168'), 1),
(25842402, UNHEX('00000000000000000000FFFF797A2CDE'), 1),
(25842401, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842400, UNHEX('00000000000000000000FFFF3C32D079'), 3),
(25842399, UNHEX('00000000000000000000FFFF3C32D079'), 5),
(25842398, UNHEX('00000000000000000000FFFF3D06AE55'), 4),
(25842397, UNHEX('00000000000000000000FFFFDF1B8093'), 1),
(25842397, UNHEX('00000000000000000000FFFFDB5C4697'), 2),
(25842396, UNHEX('00000000000000000000FFFFDB5C45F0'), 2),
(25842396, UNHEX('00000000000000000000FFFFDB5C4697'), 1),
(25842396, UNHEX('00000000000000000000FFFFAF88DE71'), 1),
(25842395, UNHEX('00000000000000000000FFFFAF88DE71'), 1),
(25842391, UNHEX('00000000000000000000FFFF362494B3'), 1),
(25842391, UNHEX('00000000000000000000FFFF3C32D168'), 1),
(25842390, UNHEX('00000000000000000000FFFFD3186F2E'), 2),
(25842389, UNHEX('00000000000000000000FFFFCB6A5D02'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842388, UNHEX('00000000000000000000FFFF284DA7B4'), 1),
(25842387, UNHEX('00000000000000000000FFFFCB6A5D02'), 1),
(25842386, UNHEX('00000000000000000000FFFFCB6A5D02'), 2),
(25842386, UNHEX('00000000000000000000FFFFB7ABB91B'), 2),
(25842383, UNHEX('00000000000000000000FFFFD3186F2E'), 4),
(25842383, UNHEX('00000000000000000000FFFF7B886B73'), 1),
(25842382, UNHEX('00000000000000000000FFFF7B886B73'), 1),
(25842381, UNHEX('00000000000000000000FFFFA5E1707D'), 2),
(25842381, UNHEX('00000000000000000000FFFFCF2E0DA8'), 1),
(25842377, UNHEX('00000000000000000000FFFF2ABF2D65'), 5),
(25845218, UNHEX('00000000000000000000FFFFCF2E0D11'), 1),
(25845217, UNHEX('00000000000000000000FFFFC0E4CC75'), 1),
(25845216, UNHEX('00000000000000000000FFFFC0E4CC75'), 3),
(25845213, UNHEX('00000000000000000000FFFF71D2B1A4'), 4),
(25845209, UNHEX('00000000000000000000FFFFAF8B8E9D'), 4),
(25845209, UNHEX('00000000000000000000FFFF79790FA2'), 2),
(25845208, UNHEX('00000000000000000000FFFF73A44D73'), 2),
(25845208, UNHEX('00000000000000000000FFFF79790FA2'), 4),
(25845207, UNHEX('00000000000000000000FFFF79790FA2'), 2),
(25845206, UNHEX('00000000000000000000FFFFB44C0F1A'), 1),
(25845206, UNHEX('00000000000000000000FFFFAF8C88A1'), 1),
(25845206, UNHEX('00000000000000000000FFFF79790FA2'), 6),
(25845203, UNHEX('00000000000000000000FFFF7117E244'), 1),
(25845203, UNHEX('00000000000000000000FFFFCBD24FC0'), 6),
(25845202, UNHEX('00000000000000000000FFFF68EFCFC3'), 6),
(25845201, UNHEX('00000000000000000000FFFF36249559'), 1),
(25845200, UNHEX('00000000000000000000FFFFAF8A1CE1'), 5),
(25845199, UNHEX('00000000000000000000FFFFAF8A1CE1'), 8),
(25845198, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25845197, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25845197, UNHEX('00000000000000000000FFFFCB7900B3'), 1),
(25845184, UNHEX('00000000000000000000FFFF935C89B4'), 1),
(25845184, UNHEX('00000000000000000000FFFF935C89B9'), 1),
(25845182, UNHEX('00000000000000000000FFFFC6015854'), 4),
(25845181, UNHEX('00000000000000000000FFFF36249432'), 1),
(25845175, UNHEX('00000000000000000000FFFFB7AB4912'), 2),
(25845174, UNHEX('00000000000000000000FFFFD213571A'), 2),
(25845173, UNHEX('00000000000000000000FFFFB44C0F9A'), 1),
(25845171, UNHEX('00000000000000000000FFFFB44C0FA3'), 1),
(25845171, UNHEX('00000000000000000000FFFFB44C0F12'), 1),
(25845168, UNHEX('00000000000000000000FFFF40F4F0C7'), 5),
(25845167, UNHEX('00000000000000000000FFFF40F4F0C7'), 2),
(25845167, UNHEX('00000000000000000000FFFFDCB56C6E'), 1),
(25845166, UNHEX('00000000000000000000FFFFAF8B8E9D'), 2),
(25845165, UNHEX('00000000000000000000FFFFAF88DB43'), 2),
(25845164, UNHEX('00000000000000000000FFFF73A457D7'), 2),
(25845164, UNHEX('00000000000000000000FFFFA18BDE87'), 1),
(25845163, UNHEX('00000000000000000000FFFF73A457D7'), 1),
(25845162, UNHEX('00000000000000000000FFFF73A457D7'), 1),
(25845160, UNHEX('00000000000000000000FFFFB7AB4EC5'), 2),
(25845160, UNHEX('00000000000000000000FFFFD31901F2'), 5),
(25845159, UNHEX('00000000000000000000FFFF76C97822'), 2),
(25845159, UNHEX('00000000000000000000FFFFD31901F2'), 2),
(25845157, UNHEX('00000000000000000000FFFF71D24B94'), 2),
(25845157, UNHEX('00000000000000000000FFFFAF8F6BED'), 4),
(25845154, UNHEX('00000000000000000000FFFFAF8F6BED'), 2),
(25845153, UNHEX('00000000000000000000FFFFAF8F6BED'), 4),
(25845151, UNHEX('00000000000000000000FFFFAF8F6BED'), 2),
(25845150, UNHEX('00000000000000000000FFFFAF8F6BED'), 5),
(25845149, UNHEX('00000000000000000000FFFF79792BBC'), 1),
(25845149, UNHEX('00000000000000000000FFFFAF8F6BED'), 2),
(25845149, UNHEX('00000000000000000000FFFF71D24B94'), 6),
(25845148, UNHEX('00000000000000000000FFFFAF8F6BED'), 4),
(25845148, UNHEX('00000000000000000000FFFF3624968D'), 1),
(25845147, UNHEX('00000000000000000000FFFF34094937'), 1),
(25845146, UNHEX('00000000000000000000FFFF79786642'), 2),
(25845137, UNHEX('00000000000000000000FFFFCB7960E2'), 1),
(25845131, UNHEX('00000000000000000000FFFF73A43B28'), 3),
(25845130, UNHEX('00000000000000000000FFFF73A43B28'), 1),
(25845126, UNHEX('00000000000000000000FFFF01203A0B'), 1),
(25845122, UNHEX('00000000000000000000FFFFB8487323'), 1),
(25845117, UNHEX('00000000000000000000FFFF6F412F34'), 2),
(25845116, UNHEX('00000000000000000000FFFFCAA50A83'), 6),
(25845114, UNHEX('00000000000000000000FFFFB51FD73E'), 2),
(25845113, UNHEX('00000000000000000000FFFF76645774'), 2),
(25845112, UNHEX('00000000000000000000FFFF76645774'), 2),
(25845111, UNHEX('00000000000000000000FFFF76645774'), 2),
(25845110, UNHEX('00000000000000000000FFFF71D236E0'), 4),
(25845107, UNHEX('00000000000000000000FFFF76645774'), 2),
(25845106, UNHEX('00000000000000000000FFFF76645774'), 2),
(25845106, UNHEX('00000000000000000000FFFFB7AB7685'), 2),
(25845106, UNHEX('00000000000000000000FFFF7B886A18'), 2),
(25845105, UNHEX('00000000000000000000FFFF7B886A18'), 4),
(25845105, UNHEX('00000000000000000000FFFFB7AB7685'), 4),
(25845105, UNHEX('00000000000000000000FFFF76645774'), 4),
(25845103, UNHEX('00000000000000000000FFFF76645774'), 2),
(25845102, UNHEX('00000000000000000000FFFF76645774'), 4),
(25845101, UNHEX('00000000000000000000FFFF3A573FEC'), 1),
(25843824, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25843824, UNHEX('00000000000000000000FFFF797912EA'), 4),
(25843823, UNHEX('00000000000000000000FFFF71D267D8'), 4),
(25843823, UNHEX('00000000000000000000FFFFAF894EFB'), 2),
(25843823, UNHEX('00000000000000000000FFFF797912EA'), 6),
(25843822, UNHEX('00000000000000000000FFFF797912EA'), 3),
(25843822, UNHEX('00000000000000000000FFFF797A32F6'), 1),
(25843822, UNHEX('00000000000000000000FFFF2ABFC5E3'), 2),
(25843822, UNHEX('00000000000000000000FFFFCAB78712'), 1),
(25843822, UNHEX('00000000000000000000FFFFD3186998'), 4),
(25843822, UNHEX('00000000000000000000FFFFB7AB5BAD'), 6),
(25843821, UNHEX('00000000000000000000FFFFB7AB5BAD'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25843821, UNHEX('00000000000000000000FFFFB956A468'), 2),
(25843821, UNHEX('00000000000000000000FFFF9D3727BB'), 1),
(25843821, UNHEX('00000000000000000000FFFF6E9F8216'), 2),
(25843820, UNHEX('00000000000000000000FFFF73A43C02'), 1),
(25843820, UNHEX('00000000000000000000FFFF7085FBA3'), 5),
(25843819, UNHEX('00000000000000000000FFFF7085FBA3'), 1),
(25843819, UNHEX('00000000000000000000FFFF2ABFC5E3'), 5),
(25843819, UNHEX('00000000000000000000FFFFCABCD0AC'), 8),
(25843818, UNHEX('00000000000000000000FFFF2ABFC5E3'), 1),
(25843818, UNHEX('00000000000000000000FFFF7B887077'), 2),
(25843817, UNHEX('00000000000000000000FFFF0EC0D064'), 1),
(25843817, UNHEX('00000000000000000000FFFF7B887077'), 2),
(25843816, UNHEX('00000000000000000000FFFFDB5CF901'), 5),
(25843815, UNHEX('00000000000000000000FFFF36AF4A1B'), 1),
(25843815, UNHEX('00000000000000000000FFFFDB5CF901'), 4),
(25842376, UNHEX('00000000000000000000FFFF71D24143'), 2),
(25842373, UNHEX('00000000000000000000FFFFCFF1E7A5'), 1),
(25842371, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25842370, UNHEX('00000000000000000000FFFF67834768'), 1),
(25842366, UNHEX('00000000000000000000FFFF3AB98F38'), 1),
(25842365, UNHEX('00000000000000000000FFFF7384AE95'), 2),
(25842364, UNHEX('00000000000000000000FFFF73856C52'), 2),
(25842364, UNHEX('00000000000000000000FFFF73856C56'), 2),
(25842363, UNHEX('00000000000000000000FFFF7B886B14'), 1),
(25842362, UNHEX('00000000000000000000FFFFA5E17083'), 6),
(25842361, UNHEX('00000000000000000000FFFF3AB98F38'), 1),
(25842361, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25842360, UNHEX('00000000000000000000FFFFD21307A1'), 1),
(25842360, UNHEX('00000000000000000000FFFF3AB98F38'), 1),
(25842358, UNHEX('00000000000000000000FFFFC1A9FE55'), 1),
(25842357, UNHEX('00000000000000000000FFFFDB5C3559'), 6),
(25842356, UNHEX('00000000000000000000FFFFDB5C3559'), 6),
(25842356, UNHEX('00000000000000000000FFFFAF8F4BD9'), 3),
(25842355, UNHEX('00000000000000000000FFFFAF8F4BD9'), 3),
(25842354, UNHEX('00000000000000000000FFFFB9BFCC08'), 1),
(25842354, UNHEX('00000000000000000000FFFFB7ABB97E'), 2),
(25842354, UNHEX('00000000000000000000FFFFD3185EC2'), 3),
(25842354, UNHEX('00000000000000000000FFFF68CF9D18'), 9),
(25842353, UNHEX('00000000000000000000FFFF68CF9D18'), 1),
(25842350, UNHEX('00000000000000000000FFFF6701CD67'), 2),
(25842346, UNHEX('00000000000000000000FFFFD3186F2E'), 2),
(25842344, UNHEX('00000000000000000000FFFFCB6ADEF1'), 4),
(25842342, UNHEX('00000000000000000000FFFFD3186998'), 1),
(25842341, UNHEX('00000000000000000000FFFF7664C51A'), 1),
(25842340, UNHEX('00000000000000000000FFFFD21307A1'), 4),
(25842340, UNHEX('00000000000000000000FFFF284DA7B4'), 1),
(25842339, UNHEX('00000000000000000000FFFF5B8611EF'), 1),
(25842339, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25842338, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25842330, UNHEX('00000000000000000000FFFF362494E3'), 1),
(25842330, UNHEX('00000000000000000000FFFFCB6A5D02'), 2),
(25842330, UNHEX('00000000000000000000FFFF3C3234B1'), 2),
(25842327, UNHEX('00000000000000000000FFFF36249555'), 1),
(25842327, UNHEX('00000000000000000000FFFF3624943E'), 1),
(25842325, UNHEX('00000000000000000000FFFF797A340D'), 8),
(25842322, UNHEX('00000000000000000000FFFFC0E49E09'), 2),
(25842321, UNHEX('00000000000000000000FFFF67EA6519'), 2),
(25842319, UNHEX('00000000000000000000FFFF2ABF2D65'), 2),
(25842315, UNHEX('00000000000000000000FFFFB7AB45CD'), 2),
(25842314, UNHEX('00000000000000000000FFFFC0E4E801'), 2),
(25842314, UNHEX('00000000000000000000FFFFA18B7EF8'), 2),
(25842312, UNHEX('00000000000000000000FFFF2EE5A881'), 1),
(25842312, UNHEX('00000000000000000000FFFF2EE5A88C'), 1),
(25842312, UNHEX('00000000000000000000FFFFC0E4E801'), 2),
(25842312, UNHEX('00000000000000000000FFFFCF2E0D4A'), 1),
(25842309, UNHEX('00000000000000000000FFFF79793CAB'), 4),
(25842308, UNHEX('00000000000000000000FFFF79793CAB'), 2),
(25842307, UNHEX('00000000000000000000FFFF9D3727A9'), 1),
(25842307, UNHEX('00000000000000000000FFFF79793CAB'), 2),
(25842305, UNHEX('00000000000000000000FFFF0E01E187'), 2),
(25842304, UNHEX('00000000000000000000FFFF0E01E187'), 2),
(25842303, UNHEX('00000000000000000000FFFF284DA729'), 1),
(25842303, UNHEX('00000000000000000000FFFF0E01E187'), 5),
(25842302, UNHEX('00000000000000000000FFFF0E01E187'), 2),
(25842302, UNHEX('00000000000000000000FFFFAF8FFE89'), 8),
(25842299, UNHEX('00000000000000000000FFFF7B7D471C'), 1),
(25842297, UNHEX('00000000000000000000FFFFAF8BCD07'), 1),
(25842296, UNHEX('00000000000000000000FFFFAF8BCD07'), 3),
(25842296, UNHEX('00000000000000000000FFFFC0E4E801'), 1),
(25842294, UNHEX('00000000000000000000FFFFC0E4E801'), 2),
(25842293, UNHEX('00000000000000000000FFFF7665E6C7'), 2),
(25842293, UNHEX('00000000000000000000FFFFC0E4E801'), 2),
(25842292, UNHEX('00000000000000000000FFFF7665E6C7'), 5),
(25842291, UNHEX('00000000000000000000FFFF73A43721'), 6),
(25842290, UNHEX('00000000000000000000FFFF22D6E841'), 1),
(25842290, UNHEX('00000000000000000000FFFF0EC0D6BD'), 4),
(25842289, UNHEX('00000000000000000000FFFF73A43721'), 2),
(25842289, UNHEX('00000000000000000000FFFF0EC0D6BD'), 4),
(25842285, UNHEX('00000000000000000000FFFFB7AB4048'), 1),
(25842284, UNHEX('00000000000000000000FFFFD3008132'), 1),
(25842283, UNHEX('00000000000000000000FFFF2ABEE9B0'), 4),
(25842282, UNHEX('00000000000000000000FFFF36249432'), 1),
(25842282, UNHEX('00000000000000000000FFFF2ABEE9B0'), 2),
(25842277, UNHEX('00000000000000000000FFFF797A311D'), 2),
(25842274, UNHEX('00000000000000000000FFFF797A311D'), 2),
(25842273, UNHEX('00000000000000000000FFFF797A311D'), 4),
(25842272, UNHEX('00000000000000000000FFFF797A311D'), 2),
(25842272, UNHEX('00000000000000000000FFFFB956A46C'), 2),
(25842271, UNHEX('00000000000000000000FFFF9D3727A8'), 1),
(25842270, UNHEX('00000000000000000000FFFFBBBEF732'), 4) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842266, UNHEX('00000000000000000000FFFF7B7E719E'), 1),
(25842262, UNHEX('00000000000000000000FFFF7B88741A'), 2),
(25843815, UNHEX('00000000000000000000FFFF9D3727BB'), 2),
(25843814, UNHEX('00000000000000000000FFFF2ABFC5E3'), 2),
(25843813, UNHEX('00000000000000000000FFFF2EE5A881'), 1),
(25843813, UNHEX('00000000000000000000FFFF2EE5A883'), 1),
(25843812, UNHEX('00000000000000000000FFFFB7AB4DD8'), 2),
(25843811, UNHEX('00000000000000000000FFFF797A3935'), 2),
(25843811, UNHEX('00000000000000000000FFFFDB5CF901'), 2),
(25845100, UNHEX('00000000000000000000FFFFB9D3F59E'), 1),
(25845100, UNHEX('00000000000000000000FFFF3A573FEC'), 3),
(25845099, UNHEX('00000000000000000000FFFFB7ABB96E'), 1),
(25845087, UNHEX('00000000000000000000FFFFB7ABB972'), 2),
(25845085, UNHEX('00000000000000000000FFFF2A9CFE3F'), 1),
(25845085, UNHEX('00000000000000000000FFFF6A0B982E'), 1),
(25845083, UNHEX('00000000000000000000FFFFA772F61C'), 1),
(25845081, UNHEX('00000000000000000000FFFF71D26761'), 4),
(25845081, UNHEX('00000000000000000000FFFFB1801806'), 2),
(25845079, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25845077, UNHEX('00000000000000000000FFFF284DA732'), 1),
(25845076, UNHEX('00000000000000000000FFFFCAA50A83'), 1),
(25845072, UNHEX('00000000000000000000FFFFB7AB57AE'), 3),
(25845071, UNHEX('00000000000000000000FFFFB7AB57AE'), 3),
(25845070, UNHEX('00000000000000000000FFFF3C36612E'), 2),
(25845068, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25845068, UNHEX('00000000000000000000FFFF73842E4B'), 2),
(25845066, UNHEX('00000000000000000000FFFF3C36612E'), 2),
(25845065, UNHEX('00000000000000000000FFFF3C36612E'), 2),
(25845064, UNHEX('00000000000000000000FFFF3C36612E'), 8),
(25845058, UNHEX('00000000000000000000FFFF42F95395'), 1),
(25845054, UNHEX('00000000000000000000FFFF9D3727F5'), 1),
(25845054, UNHEX('00000000000000000000FFFF7B886A09'), 2),
(25845054, UNHEX('00000000000000000000FFFFCF2E0D11'), 1),
(25845053, UNHEX('00000000000000000000FFFF7B886A09'), 4),
(25845052, UNHEX('00000000000000000000FFFF77EC678D'), 1),
(25845052, UNHEX('00000000000000000000FFFF6A80011A'), 6),
(25842259, UNHEX('00000000000000000000FFFFD0641AEB'), 2),
(25842258, UNHEX('00000000000000000000FFFFD0641AF6'), 1),
(25842244, UNHEX('00000000000000000000FFFFCBB4B989'), 1),
(25842242, UNHEX('00000000000000000000FFFFCBB4B989'), 2),
(25842241, UNHEX('00000000000000000000FFFF7C0D2F61'), 1),
(25842237, UNHEX('00000000000000000000FFFF113A62EF'), 1),
(25842235, UNHEX('00000000000000000000FFFF3A573DE1'), 1),
(25842234, UNHEX('00000000000000000000FFFF3A573DE1'), 3),
(25842220, UNHEX('00000000000000000000FFFFCBF79597'), 2),
(25842219, UNHEX('00000000000000000000FFFFCBF79597'), 2),
(25842218, UNHEX('00000000000000000000FFFFCBF79597'), 2),
(25842213, UNHEX('00000000000000000000FFFFCF2E0D9F'), 1),
(25842213, UNHEX('00000000000000000000FFFF73A4AEDB'), 2),
(25842212, UNHEX('00000000000000000000FFFF73A4AEDB'), 2),
(25842209, UNHEX('00000000000000000000FFFFB7ABB96D'), 2),
(25842207, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25842205, UNHEX('00000000000000000000FFFFC7F9E649'), 2),
(25842205, UNHEX('00000000000000000000FFFF1255C0FD'), 2),
(25842205, UNHEX('00000000000000000000FFFFC3CE69D9'), 2),
(25842205, UNHEX('00000000000000000000FFFFB2AF8F9C'), 2),
(25842205, UNHEX('00000000000000000000FFFFC7F9E651'), 2),
(25842205, UNHEX('00000000000000000000FFFFB9DC6505'), 1),
(25842205, UNHEX('00000000000000000000FFFF90D93CD3'), 1),
(25842204, UNHEX('00000000000000000000FFFFB00A68F0'), 1),
(25842204, UNHEX('00000000000000000000FFFF3409493A'), 1),
(25842199, UNHEX('00000000000000000000FFFF7B886AF5'), 2),
(25842196, UNHEX('00000000000000000000FFFF7B886AF5'), 1),
(25842196, UNHEX('00000000000000000000FFFF3D454DF6'), 3),
(25842192, UNHEX('00000000000000000000FFFF7B886AF5'), 1),
(25842190, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25842187, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25842171, UNHEX('00000000000000000000FFFFA930425A'), 2),
(25842163, UNHEX('00000000000000000000FFFFBD5B804A'), 2),
(25842151, UNHEX('00000000000000000000FFFF22D6E841'), 1),
(25842146, UNHEX('00000000000000000000FFFF2EE5A890'), 2),
(25842142, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25842139, UNHEX('00000000000000000000FFFF284DA763'), 1),
(25842130, UNHEX('00000000000000000000FFFF02331C48'), 2),
(25842126, UNHEX('00000000000000000000FFFF284DA763'), 1),
(25842121, UNHEX('00000000000000000000FFFF2A78A066'), 1),
(25842093, UNHEX('00000000000000000000FFFFCF2E0D94'), 1),
(25842090, UNHEX('00000000000000000000FFFF2DA3DC2E'), 2),
(25842090, UNHEX('00000000000000000000FFFF0D428B01'), 2),
(25842088, UNHEX('00000000000000000000FFFF2ABD948F'), 2),
(25842079, UNHEX('00000000000000000000FFFFB955BFC9'), 2),
(25842077, UNHEX('00000000000000000000FFFF113A62EF'), 3),
(25842074, UNHEX('00000000000000000000FFFFCF2E0D45'), 1),
(25842072, UNHEX('00000000000000000000FFFF362494D6'), 1),
(25842056, UNHEX('00000000000000000000FFFF36B8D2C7'), 1),
(25842042, UNHEX('00000000000000000000FFFF45BFF9D8'), 1),
(25842025, UNHEX('00000000000000000000FFFFCF2E0D94'), 1),
(25842017, UNHEX('00000000000000000000FFFFCF2E0D94'), 1),
(25841997, UNHEX('00000000000000000000FFFF9D372720'), 1),
(25841997, UNHEX('00000000000000000000FFFF40F4F0C7'), 4),
(25841981, UNHEX('00000000000000000000FFFFCF2E0D94'), 1),
(25841980, UNHEX('00000000000000000000FFFF47CFC13C'), 4),
(25841975, UNHEX('00000000000000000000FFFFB44C0FA2'), 1),
(25841971, UNHEX('00000000000000000000FFFF0EC0F64D'), 2),
(25841971, UNHEX('00000000000000000000FFFFCAB82C69'), 1),
(25841970, UNHEX('00000000000000000000FFFFB956A46F'), 2),
(25841967, UNHEX('00000000000000000000FFFFCF2E0D94'), 1),
(25841965, UNHEX('00000000000000000000FFFF284DA765'), 1),
(25841963, UNHEX('00000000000000000000FFFFAF913B05'), 2),
(25841962, UNHEX('00000000000000000000FFFF73EFD4C1'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25841961, UNHEX('00000000000000000000FFFFAF913B05'), 2),
(25841960, UNHEX('00000000000000000000FFFFC3B00313'), 2),
(25841960, UNHEX('00000000000000000000FFFF330F2561'), 2),
(25841960, UNHEX('00000000000000000000FFFFA5E16A5E'), 1),
(25841960, UNHEX('00000000000000000000FFFFB9DC6518'), 2),
(25841960, UNHEX('00000000000000000000FFFF59BB8F1F'), 2),
(25841960, UNHEX('00000000000000000000FFFF67ECC91B'), 1),
(25841959, UNHEX('00000000000000000000FFFF67ECC91B'), 1),
(25841959, UNHEX('00000000000000000000FFFF1255C0FD'), 2),
(25841959, UNHEX('00000000000000000000FFFFB9DC6519'), 1),
(25841952, UNHEX('00000000000000000000FFFF8B3BADF9'), 1),
(25841952, UNHEX('00000000000000000000FFFF2E65FA87'), 1),
(25841948, UNHEX('00000000000000000000FFFFCF2E0DC6'), 1),
(25841942, UNHEX('00000000000000000000FFFFB44C0F93'), 1),
(25841939, UNHEX('00000000000000000000FFFFA5E16A5E'), 1),
(25841938, UNHEX('00000000000000000000FFFF6D6C0D37'), 4),
(25841925, UNHEX('00000000000000000000FFFFB6490D76'), 1),
(25841924, UNHEX('00000000000000000000FFFFB6490D76'), 2),
(25841923, UNHEX('00000000000000000000FFFFB6490D76'), 1),
(25841923, UNHEX('00000000000000000000FFFF0E8F0F32'), 1),
(25841923, UNHEX('00000000000000000000FFFF362494E5'), 1),
(25841922, UNHEX('00000000000000000000FFFFCA419E32'), 1),
(25841922, UNHEX('00000000000000000000FFFF284DA76B'), 1),
(25841922, UNHEX('00000000000000000000FFFFB6490D76'), 6),
(25841921, UNHEX('00000000000000000000FFFFB6490D76'), 1),
(25841919, UNHEX('00000000000000000000FFFF9D372720'), 1),
(25841913, UNHEX('00000000000000000000FFFF781B72E0'), 1),
(25841911, UNHEX('00000000000000000000FFFF284DA74F'), 1),
(25841894, UNHEX('00000000000000000000FFFFB7ABB922'), 1),
(25841886, UNHEX('00000000000000000000FFFF9E45CB46'), 1),
(25841884, UNHEX('00000000000000000000FFFF3DB11443'), 5),
(25841883, UNHEX('00000000000000000000FFFF3DB11443'), 5),
(25841882, UNHEX('00000000000000000000FFFF3DB11443'), 4),
(25841881, UNHEX('00000000000000000000FFFF3DB11443'), 1),
(25841881, UNHEX('00000000000000000000FFFF7B7BDB3B'), 1),
(25841881, UNHEX('00000000000000000000FFFF3624950B'), 1),
(25841872, UNHEX('00000000000000000000FFFF58ECB989'), 2),
(25841865, UNHEX('00000000000000000000FFFF6783475E'), 1),
(25841865, UNHEX('00000000000000000000FFFF67834760'), 1),
(25841864, UNHEX('00000000000000000000FFFF73A4591E'), 1),
(25841862, UNHEX('00000000000000000000FFFFCAEF0565'), 2),
(25841861, UNHEX('00000000000000000000FFFF73A4591E'), 3),
(25841852, UNHEX('00000000000000000000FFFF362494C0'), 1),
(25841843, UNHEX('00000000000000000000FFFF284DA7C6'), 1),
(25841842, UNHEX('00000000000000000000FFFF2AEC639A'), 1),
(25841840, UNHEX('00000000000000000000FFFF2AEC3715'), 1),
(25841833, UNHEX('00000000000000000000FFFFD2C381A1'), 2),
(25841832, UNHEX('00000000000000000000FFFFD2C381A1'), 2),
(25841825, UNHEX('00000000000000000000FFFF0E01E365'), 1),
(25841820, UNHEX('00000000000000000000FFFFD13AA323'), 1),
(25841819, UNHEX('00000000000000000000FFFF7384E08C'), 1),
(25841815, UNHEX('00000000000000000000FFFF7B7D43A2'), 1),
(25841812, UNHEX('00000000000000000000FFFF7B7D43A3'), 1),
(25841811, UNHEX('00000000000000000000FFFF7B7D471C'), 1),
(25841807, UNHEX('00000000000000000000FFFFB44C0F9B'), 1),
(25841791, UNHEX('00000000000000000000FFFFB6490D76'), 1),
(25841791, UNHEX('00000000000000000000FFFF2EE5A895'), 1),
(25841791, UNHEX('00000000000000000000FFFF0E8F0F32'), 2),
(25841791, UNHEX('00000000000000000000FFFFCA419E32'), 5),
(25841791, UNHEX('00000000000000000000FFFF2EE5A897'), 1),
(25841790, UNHEX('00000000000000000000FFFFB6490D76'), 1),
(25841790, UNHEX('00000000000000000000FFFF671AC715'), 1),
(25841790, UNHEX('00000000000000000000FFFF0E8F0F32'), 4),
(25841790, UNHEX('00000000000000000000FFFF7C5231D7'), 2),
(25841789, UNHEX('00000000000000000000FFFF3409493A'), 1),
(25841789, UNHEX('00000000000000000000FFFF671AC715'), 2),
(25841785, UNHEX('00000000000000000000FFFFD0641AF4'), 1),
(25841782, UNHEX('00000000000000000000FFFF5DA03C16'), 1),
(25841781, UNHEX('00000000000000000000FFFFD0641AEC'), 1),
(25841781, UNHEX('00000000000000000000FFFF2A992C76'), 6),
(25841780, UNHEX('00000000000000000000FFFF426606CB'), 1),
(25841780, UNHEX('00000000000000000000FFFF2A992C76'), 2),
(25841780, UNHEX('00000000000000000000FFFFAF8A72B4'), 3),
(25841777, UNHEX('00000000000000000000FFFFB7ABB93E'), 4),
(25841776, UNHEX('00000000000000000000FFFFB7ABB93E'), 3),
(25841775, UNHEX('00000000000000000000FFFFB7ABB93E'), 3),
(25841774, UNHEX('00000000000000000000FFFFB7ABB93E'), 1),
(25841773, UNHEX('00000000000000000000FFFFB44C0F93'), 1),
(25841770, UNHEX('00000000000000000000FFFFB9560DD5'), 2),
(25841770, UNHEX('00000000000000000000FFFFCAEF0565'), 1),
(25841770, UNHEX('00000000000000000000FFFFB7AB481B'), 7),
(25841769, UNHEX('00000000000000000000FFFF73A4DE3C'), 2),
(25841769, UNHEX('00000000000000000000FFFFB7AB481B'), 5),
(25841768, UNHEX('00000000000000000000FFFFB7AB481B'), 3),
(25841767, UNHEX('00000000000000000000FFFFB7AB481B'), 5),
(25841766, UNHEX('00000000000000000000FFFFB7ABB920'), 2),
(25841766, UNHEX('00000000000000000000FFFF0EC0D447'), 2),
(25841766, UNHEX('00000000000000000000FFFFB7AB481B'), 8),
(25841765, UNHEX('00000000000000000000FFFFB7AB481B'), 4),
(25841762, UNHEX('00000000000000000000FFFF0EC0D447'), 2),
(25841762, UNHEX('00000000000000000000FFFF73857A87'), 1),
(25841759, UNHEX('00000000000000000000FFFF0EC0D447'), 2),
(25841756, UNHEX('00000000000000000000FFFF7B8874CF'), 2),
(25841753, UNHEX('00000000000000000000FFFFB009097D'), 1),
(25841751, UNHEX('00000000000000000000FFFF22D6E841'), 1),
(25841751, UNHEX('00000000000000000000FFFF26633E5D'), 1),
(25841748, UNHEX('00000000000000000000FFFF22FE85C9'), 2),
(25841748, UNHEX('00000000000000000000FFFF12CA6D83'), 2),
(25841748, UNHEX('00000000000000000000FFFF36249521'), 1),
(25841744, UNHEX('00000000000000000000FFFF71D230B2'), 9) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25841743, UNHEX('00000000000000000000FFFF71D230B2'), 8),
(25841742, UNHEX('00000000000000000000FFFF71D230B2'), 2),
(25845051, UNHEX('00000000000000000000FFFF6A80011A'), 2),
(25845040, UNHEX('00000000000000000000FFFF8D088E55'), 1),
(25845040, UNHEX('00000000000000000000FFFF05FFFD1B'), 2),
(25845026, UNHEX('00000000000000000000FFFF95CABC63'), 1),
(25845006, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25845004, UNHEX('00000000000000000000FFFF9D372732'), 1),
(25845001, UNHEX('00000000000000000000FFFFDAD478E0'), 2),
(25844998, UNHEX('00000000000000000000FFFF9F459BEC'), 4),
(25844991, UNHEX('00000000000000000000FFFFCF2E0D0C'), 1),
(25844989, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25844982, UNHEX('00000000000000000000FFFF3AFC34B5'), 27),
(25844981, UNHEX('00000000000000000000FFFF3AFC34B5'), 1),
(25844971, UNHEX('00000000000000000000FFFF2EE5A885'), 1),
(25844971, UNHEX('00000000000000000000FFFF2EE5A88B'), 1),
(25844964, UNHEX('00000000000000000000FFFF9D372732'), 1),
(25844964, UNHEX('00000000000000000000FFFF05FFFD1B'), 1),
(25844962, UNHEX('00000000000000000000FFFF26633E5D'), 1),
(25844954, UNHEX('00000000000000000000FFFF9D3727FE'), 1),
(25844941, UNHEX('00000000000000000000FFFF71D27B0F'), 2),
(25844940, UNHEX('00000000000000000000FFFFB1345727'), 2),
(25844940, UNHEX('00000000000000000000FFFFCF2E0DA3'), 1),
(25844929, UNHEX('00000000000000000000FFFFCF2E0DA3'), 1),
(25844914, UNHEX('00000000000000000000FFFFCF2E0DA3'), 1),
(25844912, UNHEX('00000000000000000000FFFF284DA77C'), 1),
(25844908, UNHEX('00000000000000000000FFFFCF2E0DA3'), 1),
(25844908, UNHEX('00000000000000000000FFFFCFF1E878'), 1),
(25844906, UNHEX('00000000000000000000FFFFA2DE5188'), 2),
(25844905, UNHEX('00000000000000000000FFFFA2DE5188'), 2),
(25844905, UNHEX('00000000000000000000FFFF45BFF9CA'), 1),
(25844903, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25844900, UNHEX('00000000000000000000FFFF672FC102'), 4),
(25844892, UNHEX('00000000000000000000FFFFCF2E0DA3'), 1),
(25844892, UNHEX('00000000000000000000FFFF284DA77C'), 1),
(25844889, UNHEX('00000000000000000000FFFF284DA782'), 1),
(25844887, UNHEX('00000000000000000000FFFF9A757CA3'), 1),
(25844885, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25844879, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25844867, UNHEX('00000000000000000000FFFFB956A464'), 2),
(25844863, UNHEX('00000000000000000000FFFF9D372732'), 1),
(25844862, UNHEX('00000000000000000000FFFF284DA782'), 1),
(25844855, UNHEX('00000000000000000000FFFF113A62EF'), 3),
(25844832, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25844830, UNHEX('00000000000000000000FFFF36E3CBDC'), 1),
(25844824, UNHEX('00000000000000000000FFFF7B8876BE'), 1),
(25844821, UNHEX('00000000000000000000FFFF284DA782'), 1),
(25844821, UNHEX('00000000000000000000FFFF7B8876BE'), 8),
(25844813, UNHEX('00000000000000000000FFFF7B8876BE'), 1),
(25844811, UNHEX('00000000000000000000FFFF5B5AB142'), 4),
(25844783, UNHEX('00000000000000000000FFFF284DA77C'), 1),
(25844780, UNHEX('00000000000000000000FFFFAF88B188'), 2),
(25844779, UNHEX('00000000000000000000FFFFAF88B188'), 4),
(25844778, UNHEX('00000000000000000000FFFFAF88B188'), 5),
(25844777, UNHEX('00000000000000000000FFFFAF88B188'), 6),
(25844777, UNHEX('00000000000000000000FFFFCF2E0DA3'), 1),
(25844776, UNHEX('00000000000000000000FFFFCF2E0DA3'), 1),
(25844775, UNHEX('00000000000000000000FFFFB6490D76'), 4),
(25844775, UNHEX('00000000000000000000FFFFCA419E32'), 5),
(25844775, UNHEX('00000000000000000000FFFF0E8F0F32'), 4),
(25844767, UNHEX('00000000000000000000FFFF6A4ECD52'), 2),
(25844765, UNHEX('00000000000000000000FFFF6A4ECD52'), 2),
(25844764, UNHEX('00000000000000000000FFFF0EC0D49A'), 8),
(25844754, UNHEX('00000000000000000000FFFF2E041688'), 1),
(25844748, UNHEX('00000000000000000000FFFF6A4ECD52'), 2),
(25844745, UNHEX('00000000000000000000FFFF7B887453'), 6),
(25844744, UNHEX('00000000000000000000FFFF7B887453'), 4),
(25844743, UNHEX('00000000000000000000FFFF7B887453'), 2),
(25844737, UNHEX('00000000000000000000FFFFB44C0F22'), 1),
(25844733, UNHEX('00000000000000000000FFFF0D428B00'), 1),
(25844732, UNHEX('00000000000000000000FFFF3409493A'), 1),
(25844730, UNHEX('00000000000000000000FFFFB955BFC9'), 2),
(25844728, UNHEX('00000000000000000000FFFF73A4AAC2'), 4),
(25844727, UNHEX('00000000000000000000FFFF73A4AAC2'), 2),
(25844718, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25844711, UNHEX('00000000000000000000FFFFB9813E3F'), 2),
(25844711, UNHEX('00000000000000000000FFFF362794E9'), 2),
(25844711, UNHEX('00000000000000000000FFFFC2476D2C'), 2),
(25844711, UNHEX('00000000000000000000FFFF4DF7B5A5'), 2),
(25844711, UNHEX('00000000000000000000FFFFC62D125C'), 4),
(25844711, UNHEX('00000000000000000000FFFFB9DC653E'), 2),
(25844710, UNHEX('00000000000000000000FFFFB90484B7'), 1),
(25844707, UNHEX('00000000000000000000FFFF766521AF'), 6),
(25844707, UNHEX('00000000000000000000FFFFA772F625'), 1),
(25844700, UNHEX('00000000000000000000FFFF6783475F'), 1),
(25844700, UNHEX('00000000000000000000FFFF67834766'), 1),
(25844700, UNHEX('00000000000000000000FFFFD13AA323'), 1),
(25844695, UNHEX('00000000000000000000FFFFA772F61C'), 1),
(25844695, UNHEX('00000000000000000000FFFF081DC61B'), 1),
(25844695, UNHEX('00000000000000000000FFFFC7503409'), 1),
(25844692, UNHEX('00000000000000000000FFFFDCB56C4C'), 1),
(25844691, UNHEX('00000000000000000000FFFFD8ABB0BA'), 1),
(25844688, UNHEX('00000000000000000000FFFFDCB56C54'), 1),
(25844686, UNHEX('00000000000000000000FFFF9D3727EF'), 1),
(25844672, UNHEX('00000000000000000000FFFF6FCEC65F'), 1),
(25844672, UNHEX('00000000000000000000FFFF7B7D470F'), 1),
(25844669, UNHEX('00000000000000000000FFFFCF2E0D40'), 1),
(25844663, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25844659, UNHEX('00000000000000000000FFFFB29AF426'), 1),
(25844658, UNHEX('00000000000000000000FFFF05FFFD1B'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25844657, UNHEX('00000000000000000000FFFF7B7D439C'), 1),
(25844654, UNHEX('00000000000000000000FFFF7B8875F6'), 3),
(25844653, UNHEX('00000000000000000000FFFF7B8875F6'), 1),
(25844645, UNHEX('00000000000000000000FFFF43A9970D'), 2),
(25844639, UNHEX('00000000000000000000FFFF42660609'), 1),
(25844638, UNHEX('00000000000000000000FFFF7B887483'), 2),
(25844629, UNHEX('00000000000000000000FFFFCF2E0D40'), 1),
(25844629, UNHEX('00000000000000000000FFFFB7AB5BCB'), 2),
(25844629, UNHEX('00000000000000000000FFFF4AD0D6A0'), 4),
(25844629, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25844628, UNHEX('00000000000000000000FFFF8A80F279'), 3),
(25844624, UNHEX('00000000000000000000FFFF71D2B1EE'), 1),
(25844623, UNHEX('00000000000000000000FFFF71D2B1EE'), 1),
(25844622, UNHEX('00000000000000000000FFFF7B887509'), 2),
(25844622, UNHEX('00000000000000000000FFFF71D2B1EE'), 2),
(25844618, UNHEX('00000000000000000000FFFFCFF1E7AA'), 3),
(25844615, UNHEX('00000000000000000000FFFF2ABC0F86'), 2),
(25844610, UNHEX('00000000000000000000FFFF2ABC0F86'), 6),
(25844597, UNHEX('00000000000000000000FFFF81D54C74'), 3),
(25844596, UNHEX('00000000000000000000FFFFB959DAED'), 2),
(25844596, UNHEX('00000000000000000000FFFF81D54C74'), 9),
(25844595, UNHEX('00000000000000000000FFFF81D54C74'), 5),
(25844594, UNHEX('00000000000000000000FFFF81D54C74'), 10),
(25844593, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844592, UNHEX('00000000000000000000FFFF3C30DC33'), 2),
(25844592, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844591, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844590, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844589, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844589, UNHEX('00000000000000000000FFFF71D277F4'), 4),
(25844588, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844587, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844586, UNHEX('00000000000000000000FFFF81D54C74'), 5),
(25844585, UNHEX('00000000000000000000FFFF81D54C74'), 8),
(25844584, UNHEX('00000000000000000000FFFF2EE5A88E'), 1),
(25844584, UNHEX('00000000000000000000FFFF81D54C74'), 5),
(25844583, UNHEX('00000000000000000000FFFF7A0F95E9'), 1),
(25844583, UNHEX('00000000000000000000FFFF81D54C74'), 5),
(25844582, UNHEX('00000000000000000000FFFFDB5C2F8D'), 1),
(25844582, UNHEX('00000000000000000000FFFF81D54C74'), 5),
(25844581, UNHEX('00000000000000000000FFFF81D54C74'), 13),
(25844580, UNHEX('00000000000000000000FFFF81D54C74'), 14),
(25844579, UNHEX('00000000000000000000FFFF81D54C74'), 6),
(25844579, UNHEX('00000000000000000000FFFF9D3727CC'), 1),
(25844578, UNHEX('00000000000000000000FFFF12BFEE3D'), 5),
(25844578, UNHEX('00000000000000000000FFFF81D54C74'), 5),
(25844577, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844576, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844575, UNHEX('00000000000000000000FFFF81D54C74'), 3),
(25844574, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844573, UNHEX('00000000000000000000FFFF81D54C74'), 7),
(25844572, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844571, UNHEX('00000000000000000000FFFF71D2C5D6'), 2),
(25844571, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844570, UNHEX('00000000000000000000FFFF81D54C74'), 3),
(25844569, UNHEX('00000000000000000000FFFF81D54C74'), 6),
(25844568, UNHEX('00000000000000000000FFFF81D54C74'), 3),
(25844568, UNHEX('00000000000000000000FFFFAF8D7AE5'), 4),
(25844567, UNHEX('00000000000000000000FFFFB7AB56DD'), 2),
(25844567, UNHEX('00000000000000000000FFFF2EE5A890'), 1),
(25844567, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844566, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844565, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844564, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844563, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844562, UNHEX('00000000000000000000FFFF81D54C74'), 7),
(25844562, UNHEX('00000000000000000000FFFFAF8D7AE5'), 2),
(25844561, UNHEX('00000000000000000000FFFFAF8D7AE5'), 2),
(25844561, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844560, UNHEX('00000000000000000000FFFF81D54C74'), 10),
(25844559, UNHEX('00000000000000000000FFFF7B8874C0'), 3),
(25844559, UNHEX('00000000000000000000FFFF81D54C74'), 15),
(25844558, UNHEX('00000000000000000000FFFF7B8874C0'), 1),
(25844558, UNHEX('00000000000000000000FFFF81D54C74'), 11),
(25844557, UNHEX('00000000000000000000FFFF79786608'), 2),
(25844557, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844556, UNHEX('00000000000000000000FFFF79786608'), 6),
(25844556, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844555, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844555, UNHEX('00000000000000000000FFFF79786608'), 2),
(25844554, UNHEX('00000000000000000000FFFF79786608'), 4),
(25844554, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844554, UNHEX('00000000000000000000FFFF3C32E3A1'), 3),
(25844553, UNHEX('00000000000000000000FFFF3C32E3A1'), 1),
(25844553, UNHEX('00000000000000000000FFFF79786608'), 4),
(25844553, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844552, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844551, UNHEX('00000000000000000000FFFF36AF4A1B'), 1),
(25844551, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844550, UNHEX('00000000000000000000FFFF81D54C74'), 3),
(25844550, UNHEX('00000000000000000000FFFF0EC0D43A'), 2),
(25844550, UNHEX('00000000000000000000FFFFB7AB5293'), 5),
(25844549, UNHEX('00000000000000000000FFFFB7AB5293'), 1),
(25844549, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844548, UNHEX('00000000000000000000FFFF81D54C74'), 11),
(25844547, UNHEX('00000000000000000000FFFF671F2302'), 4),
(25844547, UNHEX('00000000000000000000FFFF81D54C74'), 7),
(25844546, UNHEX('00000000000000000000FFFF81D54C74'), 9),
(25844545, UNHEX('00000000000000000000FFFF81D54C74'), 9),
(25844544, UNHEX('00000000000000000000FFFF81D54C74'), 4) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25844543, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844542, UNHEX('00000000000000000000FFFF0EC0D43A'), 2),
(25844541, UNHEX('00000000000000000000FFFF0EC0D43A'), 2),
(25844541, UNHEX('00000000000000000000FFFF81D54C74'), 5),
(25844540, UNHEX('00000000000000000000FFFF671F2302'), 2),
(25844540, UNHEX('00000000000000000000FFFF81D54C74'), 6),
(25844539, UNHEX('00000000000000000000FFFF7B7D4710'), 1),
(25844539, UNHEX('00000000000000000000FFFFA18E71F9'), 1),
(25844539, UNHEX('00000000000000000000FFFF81D54C74'), 8),
(25844538, UNHEX('00000000000000000000FFFF81D54C74'), 15),
(25844537, UNHEX('00000000000000000000FFFFB759A0FD'), 2),
(25844537, UNHEX('00000000000000000000FFFFB7AB443D'), 2),
(25844537, UNHEX('00000000000000000000FFFF81D54C74'), 14),
(25844536, UNHEX('00000000000000000000FFFF1B8235DF'), 4),
(25844536, UNHEX('00000000000000000000FFFF81D54C74'), 15),
(25844535, UNHEX('00000000000000000000FFFFB7AB42AE'), 2),
(25844535, UNHEX('00000000000000000000FFFF81D54C74'), 15),
(25844534, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844534, UNHEX('00000000000000000000FFFFB7AB42AE'), 1),
(25841742, UNHEX('00000000000000000000FFFFA5E174D2'), 1),
(25841740, UNHEX('00000000000000000000FFFFB44C0F12'), 1),
(25841740, UNHEX('00000000000000000000FFFF6F412C43'), 4),
(25841739, UNHEX('00000000000000000000FFFF6F412C43'), 2),
(25841737, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25841734, UNHEX('00000000000000000000FFFF2ABF72EB'), 2),
(25841733, UNHEX('00000000000000000000FFFF362494A7'), 1),
(25841733, UNHEX('00000000000000000000FFFF2ABF72EB'), 6),
(25841732, UNHEX('00000000000000000000FFFFB9EADBF6'), 2),
(25841729, UNHEX('00000000000000000000FFFF5FEB433F'), 2),
(25841719, UNHEX('00000000000000000000FFFFD31968C4'), 4),
(25841718, UNHEX('00000000000000000000FFFFD31968C4'), 4),
(25841715, UNHEX('00000000000000000000FFFF36249479'), 1),
(25841715, UNHEX('00000000000000000000FFFF89E2711B'), 1),
(25841713, UNHEX('00000000000000000000FFFF2A993156'), 2),
(25841712, UNHEX('00000000000000000000FFFF7B886BF5'), 2),
(25841712, UNHEX('00000000000000000000FFFF2A993156'), 2),
(25841708, UNHEX('00000000000000000000FFFF9D3727CD'), 1),
(25841707, UNHEX('00000000000000000000FFFFC2019D79'), 2),
(25841705, UNHEX('00000000000000000000FFFF7B886F1A'), 2),
(25841705, UNHEX('00000000000000000000FFFFB7ABB96D'), 2),
(25841704, UNHEX('00000000000000000000FFFFB7ABB96D'), 2),
(25841704, UNHEX('00000000000000000000FFFF71D230B2'), 2),
(25841703, UNHEX('00000000000000000000FFFFC063F5A2'), 1),
(25841698, UNHEX('00000000000000000000FFFF3C32D1E5'), 1),
(25841697, UNHEX('00000000000000000000FFFF3C32D1E5'), 1),
(25841696, UNHEX('00000000000000000000FFFFCF2E0DC6'), 1),
(25841694, UNHEX('00000000000000000000FFFFAF8ACAB4'), 2),
(25841685, UNHEX('00000000000000000000FFFFCF2E0DB7'), 1),
(25841682, UNHEX('00000000000000000000FFFF3ED83C01'), 6),
(25841681, UNHEX('00000000000000000000FFFF3ED83C01'), 2),
(25841679, UNHEX('00000000000000000000FFFF2F6F4B86'), 1),
(25841678, UNHEX('00000000000000000000FFFFB956A463'), 2),
(25841673, UNHEX('00000000000000000000FFFF9E45CB46'), 1),
(25841671, UNHEX('00000000000000000000FFFFA93C8068'), 1),
(25841671, UNHEX('00000000000000000000FFFF2ABC6588'), 4),
(25841670, UNHEX('00000000000000000000FFFF71D2667F'), 2),
(25841670, UNHEX('00000000000000000000FFFF3C303C76'), 2),
(25841670, UNHEX('00000000000000000000FFFFB7AB455B'), 1),
(25841669, UNHEX('00000000000000000000FFFFB7AB455B'), 1),
(25841666, UNHEX('00000000000000000000FFFF71D2667F'), 6),
(25841662, UNHEX('00000000000000000000FFFF36D2B996'), 1),
(25841658, UNHEX('00000000000000000000FFFF9D3727CD'), 1),
(25841658, UNHEX('00000000000000000000FFFF79E4378E'), 1),
(25841656, UNHEX('00000000000000000000FFFF2ABFE683'), 2),
(25841656, UNHEX('00000000000000000000FFFFA18B6621'), 1),
(25841656, UNHEX('00000000000000000000FFFF73A4B050'), 1),
(25841655, UNHEX('00000000000000000000FFFF73A4B050'), 1),
(25841653, UNHEX('00000000000000000000FFFF12DF0617'), 1),
(25841650, UNHEX('00000000000000000000FFFF79E4378E'), 1),
(25841649, UNHEX('00000000000000000000FFFFB7ABA5C1'), 1),
(25841648, UNHEX('00000000000000000000FFFFB7ABA5C1'), 1),
(25841647, UNHEX('00000000000000000000FFFFD2BA2B08'), 2),
(25841643, UNHEX('00000000000000000000FFFF78BC5F50'), 2),
(25841642, UNHEX('00000000000000000000FFFF78BC5F50'), 2),
(25841640, UNHEX('00000000000000000000FFFF77287D8B'), 2),
(25841639, UNHEX('00000000000000000000FFFF77287669'), 2),
(25841637, UNHEX('00000000000000000000FFFF8E2CF0E1'), 1),
(25841625, UNHEX('00000000000000000000FFFF73A45030'), 7),
(25841624, UNHEX('00000000000000000000FFFF73A45030'), 3),
(25841624, UNHEX('00000000000000000000FFFFB89A4A42'), 1),
(25841624, UNHEX('00000000000000000000FFFFAF913BD5'), 6),
(25841623, UNHEX('00000000000000000000FFFFCF2E0DB7'), 1),
(25841623, UNHEX('00000000000000000000FFFF73A45030'), 3),
(25841622, UNHEX('00000000000000000000FFFF73A45030'), 2),
(25841619, UNHEX('00000000000000000000FFFF2AEC0A6B'), 1),
(25841619, UNHEX('00000000000000000000FFFF2AEC0A69'), 1),
(25841619, UNHEX('00000000000000000000FFFF7B887515'), 2),
(25841613, UNHEX('00000000000000000000FFFF766457A9'), 1),
(25841612, UNHEX('00000000000000000000FFFF766457A9'), 1),
(25844533, UNHEX('00000000000000000000FFFFB7AB42AE'), 1),
(25844533, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844533, UNHEX('00000000000000000000FFFF2ABD0EAD'), 2),
(25844531, UNHEX('00000000000000000000FFFF1B8235DF'), 4),
(25844530, UNHEX('00000000000000000000FFFF71D23602'), 1),
(25844530, UNHEX('00000000000000000000FFFF1B8235DF'), 2),
(25844528, UNHEX('00000000000000000000FFFF71D23602'), 1),
(25844524, UNHEX('00000000000000000000FFFFADF9062A'), 4),
(25844523, UNHEX('00000000000000000000FFFFB955EEF4'), 1),
(25844522, UNHEX('00000000000000000000FFFFB955EEF4'), 1),
(25844522, UNHEX('00000000000000000000FFFF3C35143B'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25844520, UNHEX('00000000000000000000FFFF3C366699'), 2),
(25844519, UNHEX('00000000000000000000FFFFCAAA33F9'), 1),
(25844515, UNHEX('00000000000000000000FFFF3C366699'), 4),
(25844514, UNHEX('00000000000000000000FFFFAF8D7AE5'), 2),
(25844514, UNHEX('00000000000000000000FFFF3C366699'), 2),
(25844513, UNHEX('00000000000000000000FFFF3C366699'), 4),
(25844512, UNHEX('00000000000000000000FFFF3C366699'), 2),
(25844511, UNHEX('00000000000000000000FFFF3C366699'), 2),
(25844511, UNHEX('00000000000000000000FFFF6EE3D111'), 2),
(25844511, UNHEX('00000000000000000000FFFFB7ABB924'), 2),
(25844510, UNHEX('00000000000000000000FFFF2AEC0A69'), 1),
(25844510, UNHEX('00000000000000000000FFFF2AEC0A7B'), 1),
(25844510, UNHEX('00000000000000000000FFFFAF8D7AE5'), 2),
(25844508, UNHEX('00000000000000000000FFFF724F8E0E'), 3),
(25844507, UNHEX('00000000000000000000FFFF0E01E345'), 1),
(25844502, UNHEX('00000000000000000000FFFF724F8E0E'), 2),
(25844501, UNHEX('00000000000000000000FFFF724F8E0E'), 4),
(25844500, UNHEX('00000000000000000000FFFF0E01E345'), 4),
(25844496, UNHEX('00000000000000000000FFFFB7AB5A12'), 2),
(25844495, UNHEX('00000000000000000000FFFF0EC0D3B4'), 4),
(25844494, UNHEX('00000000000000000000FFFFAF9176E6'), 2),
(25844493, UNHEX('00000000000000000000FFFF71D26810'), 5),
(25844492, UNHEX('00000000000000000000FFFF71D26810'), 4),
(25844491, UNHEX('00000000000000000000FFFF71D26810'), 2),
(25844490, UNHEX('00000000000000000000FFFF3C328DC9'), 1),
(25844489, UNHEX('00000000000000000000FFFF71D26810'), 6),
(25844487, UNHEX('00000000000000000000FFFF73875128'), 2),
(25844486, UNHEX('00000000000000000000FFFF67E7FB57'), 4),
(25844485, UNHEX('00000000000000000000FFFF67E7FB57'), 2),
(25841608, UNHEX('00000000000000000000FFFFB7AB5C8B'), 2),
(25841607, UNHEX('00000000000000000000FFFF689B046C'), 1),
(25841604, UNHEX('00000000000000000000FFFFB7AB5C8B'), 1),
(25841604, UNHEX('00000000000000000000FFFF7B886A25'), 2),
(25841603, UNHEX('00000000000000000000FFFF7B886A25'), 4),
(25841601, UNHEX('00000000000000000000FFFF7B886BF5'), 1),
(25841601, UNHEX('00000000000000000000FFFF2A992D85'), 3),
(25841600, UNHEX('00000000000000000000FFFFB7AB6F05'), 2),
(25841600, UNHEX('00000000000000000000FFFF2A992D85'), 3),
(25841600, UNHEX('00000000000000000000FFFF73A4D19B'), 3),
(25841599, UNHEX('00000000000000000000FFFF73A4D19B'), 1),
(25841599, UNHEX('00000000000000000000FFFF2A992D85'), 2),
(25841595, UNHEX('00000000000000000000FFFF73A4BD87'), 2),
(25841592, UNHEX('00000000000000000000FFFF01203535'), 2),
(25841590, UNHEX('00000000000000000000FFFF9E45CB46'), 1),
(25841585, UNHEX('00000000000000000000FFFF689B046C'), 1),
(25841584, UNHEX('00000000000000000000FFFFADCD211E'), 1),
(25841584, UNHEX('00000000000000000000FFFF4D433603'), 1),
(25841584, UNHEX('00000000000000000000FFFF4D43363A'), 1),
(25841584, UNHEX('00000000000000000000FFFF4D433634'), 1),
(25841584, UNHEX('00000000000000000000FFFF4D433636'), 1),
(25841580, UNHEX('00000000000000000000FFFF2A992D85'), 2),
(25841574, UNHEX('00000000000000000000FFFFD5AE98BA'), 1),
(25841574, UNHEX('00000000000000000000FFFFD5AE98B8'), 1),
(25841574, UNHEX('00000000000000000000FFFFD5AE98B5'), 1),
(25841574, UNHEX('00000000000000000000FFFFD5AE98B7'), 1),
(25841573, UNHEX('00000000000000000000FFFFD5AE98B6'), 1),
(25841573, UNHEX('00000000000000000000FFFFD5AE98BA'), 1),
(25841573, UNHEX('00000000000000000000FFFFD5AE98BB'), 1),
(25841573, UNHEX('00000000000000000000FFFF2ABF6B86'), 2),
(25841572, UNHEX('00000000000000000000FFFF2ABF6B86'), 6),
(25841570, UNHEX('00000000000000000000FFFFAF8807DF'), 2),
(25841566, UNHEX('00000000000000000000FFFF284DA769'), 1),
(25841554, UNHEX('00000000000000000000FFFF71D2625E'), 1),
(25841553, UNHEX('00000000000000000000FFFF73A4B5F6'), 2),
(25841549, UNHEX('00000000000000000000FFFF7386ADE2'), 2),
(25841548, UNHEX('00000000000000000000FFFF3624948D'), 1),
(25841547, UNHEX('00000000000000000000FFFF7B88707F'), 2),
(25841545, UNHEX('00000000000000000000FFFF7386ADE2'), 1),
(25841544, UNHEX('00000000000000000000FFFF7AB48CAA'), 2),
(25841544, UNHEX('00000000000000000000FFFF7386ADE2'), 6),
(25841543, UNHEX('00000000000000000000FFFF7AB48CAA'), 4),
(25841543, UNHEX('00000000000000000000FFFF7386ADE2'), 2),
(25841542, UNHEX('00000000000000000000FFFF7386ADE2'), 2),
(25841539, UNHEX('00000000000000000000FFFF7B88743F'), 4),
(25841534, UNHEX('00000000000000000000FFFFC063F5A2'), 1),
(25841529, UNHEX('00000000000000000000FFFF9E4551B9'), 1),
(25841527, UNHEX('00000000000000000000FFFFD319AAE2'), 1),
(25841519, UNHEX('00000000000000000000FFFF67120022'), 1),
(25841518, UNHEX('00000000000000000000FFFF67120022'), 1),
(25841512, UNHEX('00000000000000000000FFFF67120022'), 6),
(25841511, UNHEX('00000000000000000000FFFF67120022'), 1),
(25841510, UNHEX('00000000000000000000FFFF67120022'), 1),
(25841497, UNHEX('00000000000000000000FFFF40D15967'), 2),
(25841494, UNHEX('00000000000000000000FFFFAF88D2BB'), 6),
(25841493, UNHEX('00000000000000000000FFFFAF88D2BB'), 4),
(25841488, UNHEX('00000000000000000000FFFF76645715'), 2),
(25841485, UNHEX('00000000000000000000FFFFB44C0F22'), 1),
(25841482, UNHEX('00000000000000000000FFFF689B046C'), 2),
(25841481, UNHEX('00000000000000000000FFFFB955BE84'), 2),
(25841480, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25841477, UNHEX('00000000000000000000FFFF9D3727B1'), 1),
(25841477, UNHEX('00000000000000000000FFFF0EC0D280'), 2),
(25841476, UNHEX('00000000000000000000FFFF0EC0D280'), 2),
(25841476, UNHEX('00000000000000000000FFFFB7AB4C51'), 2),
(25841476, UNHEX('00000000000000000000FFFF7C0DC9D5'), 9),
(25841475, UNHEX('00000000000000000000FFFF7C0DC9D5'), 1),
(25841475, UNHEX('00000000000000000000FFFFCF2E0D7F'), 1),
(25841475, UNHEX('00000000000000000000FFFF9D37271F'), 2),
(25841475, UNHEX('00000000000000000000FFFFB7AB4C51'), 4),
(25841473, UNHEX('00000000000000000000FFFF4246CA79'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25841473, UNHEX('00000000000000000000FFFF284DA758'), 1),
(25841464, UNHEX('00000000000000000000FFFF5EC8A026'), 2),
(25841462, UNHEX('00000000000000000000FFFFD52A8953'), 3),
(25841455, UNHEX('00000000000000000000FFFF5EC8A026'), 4),
(25841454, UNHEX('00000000000000000000FFFFB33C9209'), 1),
(25841452, UNHEX('00000000000000000000FFFFB44C0F8A'), 1),
(25841451, UNHEX('00000000000000000000FFFF7B7BDB3B'), 1),
(25841443, UNHEX('00000000000000000000FFFFAF88E092'), 4),
(25841439, UNHEX('00000000000000000000FFFF9D372705'), 1),
(25841439, UNHEX('00000000000000000000FFFF5EC8A026'), 2),
(25841439, UNHEX('00000000000000000000FFFFAF88E092'), 3),
(25841438, UNHEX('00000000000000000000FFFFAF88E092'), 6),
(25841432, UNHEX('00000000000000000000FFFF73A4393A'), 2),
(25841430, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25841423, UNHEX('00000000000000000000FFFF75F1F89E'), 2),
(25844485, UNHEX('00000000000000000000FFFFB7AB4A99'), 4),
(25844484, UNHEX('00000000000000000000FFFFB7ABB953'), 6),
(25844483, UNHEX('00000000000000000000FFFFB7ABB953'), 2),
(25844476, UNHEX('00000000000000000000FFFF7B8874C5'), 1),
(25844476, UNHEX('00000000000000000000FFFF7979643B'), 4),
(25844475, UNHEX('00000000000000000000FFFF724F8E0E'), 1),
(25844474, UNHEX('00000000000000000000FFFF724F8E0E'), 5),
(25844474, UNHEX('00000000000000000000FFFF73A4B96F'), 2),
(25844471, UNHEX('00000000000000000000FFFF939EDEDD'), 3),
(25844468, UNHEX('00000000000000000000FFFFCF2E0D80'), 1),
(25844468, UNHEX('00000000000000000000FFFFCB87BE34'), 4),
(25844465, UNHEX('00000000000000000000FFFF73849CBE'), 2),
(25844463, UNHEX('00000000000000000000FFFF3C365A2F'), 1),
(25844462, UNHEX('00000000000000000000FFFF3C365A2F'), 1),
(25844461, UNHEX('00000000000000000000FFFF05FFFD1B'), 1),
(25844460, UNHEX('00000000000000000000FFFF22D6E841'), 1),
(25844459, UNHEX('00000000000000000000FFFFCFF1E7AB'), 1),
(25844459, UNHEX('00000000000000000000FFFF0EC0D074'), 1),
(25844458, UNHEX('00000000000000000000FFFF0EC0D074'), 1),
(25844457, UNHEX('00000000000000000000FFFF36C6821D'), 3),
(25844454, UNHEX('00000000000000000000FFFFD5AE98B8'), 1),
(25844453, UNHEX('00000000000000000000FFFFD5AE98B8'), 1),
(25844453, UNHEX('00000000000000000000FFFFD5AE98B5'), 1),
(25844452, UNHEX('00000000000000000000FFFFD5AE98B7'), 1),
(25844452, UNHEX('00000000000000000000FFFFD5AE98B6'), 1),
(25844451, UNHEX('00000000000000000000FFFFD5AE98B6'), 1),
(25844451, UNHEX('00000000000000000000FFFFB7AB6647'), 2),
(25844451, UNHEX('00000000000000000000FFFFD5AE98BB'), 1),
(25844451, UNHEX('00000000000000000000FFFFD5AE98B7'), 1),
(25844450, UNHEX('00000000000000000000FFFFD5AE98BA'), 1),
(25844449, UNHEX('00000000000000000000FFFFD5AE98B9'), 1),
(25844444, UNHEX('00000000000000000000FFFF71D2C6F9'), 2),
(25844443, UNHEX('00000000000000000000FFFF0EC0D247'), 1),
(25841422, UNHEX('00000000000000000000FFFF75F1F89E'), 2),
(25841419, UNHEX('00000000000000000000FFFF7BC9748E'), 2),
(25841414, UNHEX('00000000000000000000FFFFCF2E0D01'), 1),
(25841405, UNHEX('00000000000000000000FFFFB7AB7C9C'), 4),
(25841404, UNHEX('00000000000000000000FFFF71D27441'), 2),
(25841400, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25841399, UNHEX('00000000000000000000FFFF7B886A25'), 2),
(25843810, UNHEX('00000000000000000000FFFFDB5C1129'), 2),
(25843810, UNHEX('00000000000000000000FFFFDAD0BCFF'), 2),
(25843809, UNHEX('00000000000000000000FFFFDB5C1129'), 4),
(25843809, UNHEX('00000000000000000000FFFFDAD0BCFF'), 2),
(25843809, UNHEX('00000000000000000000FFFFD2138C89'), 1),
(25843808, UNHEX('00000000000000000000FFFF71D24198'), 2),
(25843808, UNHEX('00000000000000000000FFFFDAD0BCFF'), 6),
(25844442, UNHEX('00000000000000000000FFFFCABC8F12'), 2),
(25843808, UNHEX('00000000000000000000FFFFDB5CF901'), 1),
(25843808, UNHEX('00000000000000000000FFFFDB5C1129'), 2),
(25843807, UNHEX('00000000000000000000FFFFD3186F2E'), 2),
(25843807, UNHEX('00000000000000000000FFFFDB5C1129'), 4),
(25843806, UNHEX('00000000000000000000FFFFDB5C1129'), 4),
(25843805, UNHEX('00000000000000000000FFFFCB7FDE82'), 6),
(25843803, UNHEX('00000000000000000000FFFFD213FEE5'), 2),
(25843802, UNHEX('00000000000000000000FFFF0EC0D43B'), 4),
(25843802, UNHEX('00000000000000000000FFFFD213FEE5'), 10),
(25843801, UNHEX('00000000000000000000FFFFD213FEE5'), 2),
(25843798, UNHEX('00000000000000000000FFFF74323CB4'), 1),
(25843798, UNHEX('00000000000000000000FFFF7B88731B'), 1),
(25843797, UNHEX('00000000000000000000FFFF7B88731B'), 1),
(25843796, UNHEX('00000000000000000000FFFF4D433601'), 1),
(25843796, UNHEX('00000000000000000000FFFFADCD211F'), 1),
(25843795, UNHEX('00000000000000000000FFFFB7ABB931'), 2),
(25843795, UNHEX('00000000000000000000FFFFCAA50A83'), 6),
(25843794, UNHEX('00000000000000000000FFFFB9DD450A'), 1),
(25843794, UNHEX('00000000000000000000FFFF0EC0D064'), 2),
(25843793, UNHEX('00000000000000000000FFFF0EC0D064'), 4),
(25843793, UNHEX('00000000000000000000FFFF9D3727BB'), 1),
(25843793, UNHEX('00000000000000000000FFFFB7ABB931'), 6),
(25843792, UNHEX('00000000000000000000FFFF0EC0D064'), 4),
(25843792, UNHEX('00000000000000000000FFFFAF915CB2'), 1),
(25843792, UNHEX('00000000000000000000FFFFC0C693A4'), 1),
(25843792, UNHEX('00000000000000000000FFFF797B88B4'), 3),
(25843792, UNHEX('00000000000000000000FFFFCFF1E7A4'), 1),
(25843791, UNHEX('00000000000000000000FFFF797B88B4'), 3),
(25843790, UNHEX('00000000000000000000FFFF797B88B4'), 1),
(25843788, UNHEX('00000000000000000000FFFF73A4B015'), 2),
(25843788, UNHEX('00000000000000000000FFFF23E3A54A'), 2),
(25843787, UNHEX('00000000000000000000FFFFB12FD009'), 2),
(25843787, UNHEX('00000000000000000000FFFF7B88769F'), 2),
(25843786, UNHEX('00000000000000000000FFFFD213ACA6'), 2),
(25843786, UNHEX('00000000000000000000FFFFD3193F02'), 1),
(25843785, UNHEX('00000000000000000000FFFFD213ACA6'), 1),
(25843784, UNHEX('00000000000000000000FFFF4D433600'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25843781, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843781, UNHEX('00000000000000000000FFFF71D24401'), 1),
(25843779, UNHEX('00000000000000000000FFFF2EA5F59A'), 2),
(25843779, UNHEX('00000000000000000000FFFFAF8B6276'), 1),
(25843779, UNHEX('00000000000000000000FFFF6DC98564'), 2),
(25843779, UNHEX('00000000000000000000FFFF0596FE43'), 1),
(25844434, UNHEX('00000000000000000000FFFF9D37276F'), 1),
(25844432, UNHEX('00000000000000000000FFFF2E61217A'), 2),
(25844431, UNHEX('00000000000000000000FFFF2E61217A'), 2),
(25844429, UNHEX('00000000000000000000FFFFB7AB6659'), 4),
(25844427, UNHEX('00000000000000000000FFFF0379EDD5'), 1),
(25844426, UNHEX('00000000000000000000FFFF7A0F95E9'), 2),
(25844422, UNHEX('00000000000000000000FFFFD2BA450E'), 1),
(25844420, UNHEX('00000000000000000000FFFF73A456A1'), 2),
(25844419, UNHEX('00000000000000000000FFFF71D2C45A'), 4),
(25844419, UNHEX('00000000000000000000FFFFB956A46A'), 2),
(25844418, UNHEX('00000000000000000000FFFF71D2C45A'), 10),
(25844417, UNHEX('00000000000000000000FFFF71D2C45A'), 2),
(25844411, UNHEX('00000000000000000000FFFF36249510'), 1),
(25844411, UNHEX('00000000000000000000FFFF2E61217A'), 4),
(25843778, UNHEX('00000000000000000000FFFF0596FE43'), 1),
(25843778, UNHEX('00000000000000000000FFFFB9DC6521'), 2),
(25843778, UNHEX('00000000000000000000FFFFC7F9E643'), 2),
(25843778, UNHEX('00000000000000000000FFFFC7F9E657'), 2),
(25843778, UNHEX('00000000000000000000FFFFB00A63C8'), 1),
(25843778, UNHEX('00000000000000000000FFFF7B887434'), 1),
(25843777, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843777, UNHEX('00000000000000000000FFFFAA266405'), 2),
(25843775, UNHEX('00000000000000000000FFFFDAD052E2'), 2),
(25843775, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843773, UNHEX('00000000000000000000FFFF71D24401'), 2),
(25843773, UNHEX('00000000000000000000FFFF01203AC9'), 4),
(25843772, UNHEX('00000000000000000000FFFF71D24401'), 3),
(25843769, UNHEX('00000000000000000000FFFF71D24401'), 2),
(25843769, UNHEX('00000000000000000000FFFF73A452AA'), 2),
(25843768, UNHEX('00000000000000000000FFFF73A452AA'), 2),
(25843764, UNHEX('00000000000000000000FFFFB44C0F08'), 1),
(25843758, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843756, UNHEX('00000000000000000000FFFFD3193F02'), 2),
(25843756, UNHEX('00000000000000000000FFFF3A1A1402'), 2),
(25843755, UNHEX('00000000000000000000FFFFD3193F02'), 2),
(25843751, UNHEX('00000000000000000000FFFF55F8E3A4'), 2),
(25843751, UNHEX('00000000000000000000FFFFB9DC6542'), 4),
(25843750, UNHEX('00000000000000000000FFFF5276F280'), 2),
(25843750, UNHEX('00000000000000000000FFFF5778249D'), 2),
(25843750, UNHEX('00000000000000000000FFFF76C8A52E'), 1),
(25843750, UNHEX('00000000000000000000FFFF339F04AC'), 2),
(25843750, UNHEX('00000000000000000000FFFFAB19C14D'), 1),
(25843744, UNHEX('00000000000000000000FFFF6710B7FA'), 4),
(25843739, UNHEX('00000000000000000000FFFF9D3727BB'), 1),
(25843733, UNHEX('00000000000000000000FFFF4D43360F'), 1),
(25843730, UNHEX('00000000000000000000FFFF7B7D4775'), 1),
(25843728, UNHEX('00000000000000000000FFFFD3186998'), 2),
(25843728, UNHEX('00000000000000000000FFFF36249433'), 1),
(25843727, UNHEX('00000000000000000000FFFF01203AC9'), 5),
(25843726, UNHEX('00000000000000000000FFFF01203AC9'), 1),
(25843726, UNHEX('00000000000000000000FFFF79786642'), 8),
(25843726, UNHEX('00000000000000000000FFFF7C0D084D'), 4),
(25843720, UNHEX('00000000000000000000FFFFB7ABB935'), 1),
(25843715, UNHEX('00000000000000000000FFFF73A42F7D'), 2),
(25843713, UNHEX('00000000000000000000FFFF73A42F7D'), 8),
(25843706, UNHEX('00000000000000000000FFFFD318681D'), 2),
(25843704, UNHEX('00000000000000000000FFFF71D2625D'), 2),
(25843703, UNHEX('00000000000000000000FFFF71D2625D'), 2),
(25843697, UNHEX('00000000000000000000FFFF9D372758'), 1),
(25843678, UNHEX('00000000000000000000FFFFCAB8253D'), 2),
(25843677, UNHEX('00000000000000000000FFFFCAB8253D'), 2),
(25843676, UNHEX('00000000000000000000FFFFCAB8253D'), 2),
(25843675, UNHEX('00000000000000000000FFFFCAB8253D'), 4),
(25843667, UNHEX('00000000000000000000FFFF67F558E4'), 2),
(25843663, UNHEX('00000000000000000000FFFF43E7CC07'), 4),
(25843661, UNHEX('00000000000000000000FFFF284DA72B'), 1),
(25843653, UNHEX('00000000000000000000FFFFDAD08A18'), 1),
(25843648, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843646, UNHEX('00000000000000000000FFFF95CABC63'), 1),
(25843645, UNHEX('00000000000000000000FFFF797A340D'), 4),
(25843644, UNHEX('00000000000000000000FFFF797A340D'), 4),
(25843641, UNHEX('00000000000000000000FFFF3624953B'), 1),
(25843638, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25843637, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25843629, UNHEX('00000000000000000000FFFF797A340D'), 9),
(25843628, UNHEX('00000000000000000000FFFF3A573FEF'), 2),
(25843627, UNHEX('00000000000000000000FFFF3A573FEF'), 1),
(25843626, UNHEX('00000000000000000000FFFFA772F61C'), 1),
(25843620, UNHEX('00000000000000000000FFFFA772F61C'), 1),
(25843619, UNHEX('00000000000000000000FFFF71D239E4'), 1),
(25843618, UNHEX('00000000000000000000FFFF71D239E4'), 6),
(25843605, UNHEX('00000000000000000000FFFF7B886AC4'), 2),
(25843600, UNHEX('00000000000000000000FFFFB955EFC3'), 2),
(25843598, UNHEX('00000000000000000000FFFF339E4CDF'), 2),
(25843597, UNHEX('00000000000000000000FFFF339E4CDF'), 2),
(25843585, UNHEX('00000000000000000000FFFFC87AB546'), 1),
(25843574, UNHEX('00000000000000000000FFFF284DA7D3'), 1),
(25843570, UNHEX('00000000000000000000FFFF284DA7BD'), 1),
(25843558, UNHEX('00000000000000000000FFFFD2BA2B08'), 1),
(25843544, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843544, UNHEX('00000000000000000000FFFF3D060D0F'), 2),
(25843543, UNHEX('00000000000000000000FFFF3D060D0F'), 4),
(25843535, UNHEX('00000000000000000000FFFF939E71A1'), 2),
(25843521, UNHEX('00000000000000000000FFFFB956A466'), 2) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25843512, UNHEX('00000000000000000000FFFF2AEC0A79'), 1),
(25843512, UNHEX('00000000000000000000FFFF2AEC0A78'), 1),
(25843508, UNHEX('00000000000000000000FFFF45BFF9C9'), 1),
(25843505, UNHEX('00000000000000000000FFFF0D428B00'), 1),
(25843492, UNHEX('00000000000000000000FFFFA18BDE12'), 2),
(25843488, UNHEX('00000000000000000000FFFF8838968E'), 1),
(25843486, UNHEX('00000000000000000000FFFFA18BDE12'), 8),
(25843483, UNHEX('00000000000000000000FFFF330FE9FD'), 2),
(25843483, UNHEX('00000000000000000000FFFF55F8E3A3'), 1),
(25843482, UNHEX('00000000000000000000FFFF55F8E3A3'), 1),
(25843482, UNHEX('00000000000000000000FFFFB9DC653E'), 2),
(25843482, UNHEX('00000000000000000000FFFFD9AAC559'), 2),
(25843482, UNHEX('00000000000000000000FFFFC3B00314'), 2),
(25843482, UNHEX('00000000000000000000FFFFB9DC6507'), 2),
(25843482, UNHEX('00000000000000000000FFFF334DB1C2'), 1),
(25843482, UNHEX('00000000000000000000FFFF34094943'), 1),
(25843481, UNHEX('00000000000000000000FFFF2A3CF899'), 2),
(25843477, UNHEX('00000000000000000000FFFF6FCEC67E'), 1),
(25843477, UNHEX('00000000000000000000FFFF7B7D4757'), 1),
(25843474, UNHEX('00000000000000000000FFFFA18BDE12'), 2),
(25843458, UNHEX('00000000000000000000FFFFCFB4F5FD'), 2),
(25843457, UNHEX('00000000000000000000FFFF5347F726'), 1),
(25843456, UNHEX('00000000000000000000FFFF5347F726'), 4),
(25843455, UNHEX('00000000000000000000FFFF5347F726'), 1),
(25843454, UNHEX('00000000000000000000FFFF6DC99AE0'), 1),
(25843453, UNHEX('00000000000000000000FFFFA18BDE12'), 1),
(25843451, UNHEX('00000000000000000000FFFFAF88B88F'), 2),
(25843451, UNHEX('00000000000000000000FFFF284DA703'), 1),
(25843446, UNHEX('00000000000000000000FFFF3624943D'), 1),
(25843443, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843442, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843436, UNHEX('00000000000000000000FFFFB44C0F17'), 1),
(25843428, UNHEX('00000000000000000000FFFF9D37273D'), 1),
(25843419, UNHEX('00000000000000000000FFFF9D372706'), 1),
(25843403, UNHEX('00000000000000000000FFFFB44C0F14'), 1),
(25843401, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843398, UNHEX('00000000000000000000FFFF67834732'), 1),
(25843396, UNHEX('00000000000000000000FFFF2EE5A894'), 1),
(25843396, UNHEX('00000000000000000000FFFF2EE5A887'), 1),
(25843395, UNHEX('00000000000000000000FFFF9D37273D'), 1),
(25843393, UNHEX('00000000000000000000FFFF284DA703'), 1),
(25843375, UNHEX('00000000000000000000FFFFB7ABA382'), 2),
(25843365, UNHEX('00000000000000000000FFFFB7ABB941'), 2),
(25843365, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25843354, UNHEX('00000000000000000000FFFF45925112'), 1),
(25843353, UNHEX('00000000000000000000FFFF45925112'), 2),
(25843352, UNHEX('00000000000000000000FFFF45925112'), 1),
(25843351, UNHEX('00000000000000000000FFFFB44C0F9C'), 1),
(25843344, UNHEX('00000000000000000000FFFF73A4532E'), 2),
(25843344, UNHEX('00000000000000000000FFFFCBC8E133'), 6),
(25843344, UNHEX('00000000000000000000FFFF36249490'), 1),
(25843343, UNHEX('00000000000000000000FFFFCBC8E133'), 3),
(25843334, UNHEX('00000000000000000000FFFFC72F578E'), 8),
(25843333, UNHEX('00000000000000000000FFFFC72F578E'), 21),
(25843332, UNHEX('00000000000000000000FFFFC72F578E'), 16),
(25843331, UNHEX('00000000000000000000FFFFCF2E0DB2'), 1),
(25843330, UNHEX('00000000000000000000FFFFB956A46B'), 2),
(25843329, UNHEX('00000000000000000000FFFFCF2E0D92'), 1),
(25843328, UNHEX('00000000000000000000FFFFC72F578E'), 9),
(25843327, UNHEX('00000000000000000000FFFFC72F578E'), 19),
(25843326, UNHEX('00000000000000000000FFFF7386FC1C'), 1),
(25843321, UNHEX('00000000000000000000FFFFA5E170DA'), 4),
(25843320, UNHEX('00000000000000000000FFFFA5E170DA'), 2),
(25843319, UNHEX('00000000000000000000FFFFB8487323'), 1),
(25843317, UNHEX('00000000000000000000FFFF40F4F0C7'), 2),
(25843312, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843311, UNHEX('00000000000000000000FFFF9D372729'), 2),
(25843305, UNHEX('00000000000000000000FFFF9D3727C2'), 1),
(25843300, UNHEX('00000000000000000000FFFF797B999E'), 2),
(25843289, UNHEX('00000000000000000000FFFF76BD40D9'), 2),
(25843289, UNHEX('00000000000000000000FFFF67568373'), 2),
(25843284, UNHEX('00000000000000000000FFFFB44C0F08'), 1),
(25843283, UNHEX('00000000000000000000FFFFAF88AC3F'), 1),
(25843275, UNHEX('00000000000000000000FFFF9D372706'), 1),
(25843268, UNHEX('00000000000000000000FFFF7B886BA3'), 4),
(25843262, UNHEX('00000000000000000000FFFF6E9F8216'), 3),
(25843260, UNHEX('00000000000000000000FFFF42F95D4D'), 1),
(25843260, UNHEX('00000000000000000000FFFFD13AA323'), 1),
(25843259, UNHEX('00000000000000000000FFFF12B852D8'), 1),
(25843258, UNHEX('00000000000000000000FFFFAF8BE93A'), 2),
(25843255, UNHEX('00000000000000000000FFFFB9DC6515'), 2),
(25843255, UNHEX('00000000000000000000FFFFB9DC6534'), 2),
(25843255, UNHEX('00000000000000000000FFFFB95695FE'), 2),
(25843255, UNHEX('00000000000000000000FFFFB96B2FD7'), 2),
(25843255, UNHEX('00000000000000000000FFFF55F8E3A4'), 2),
(25843255, UNHEX('00000000000000000000FFFFB9DC6519'), 2),
(25843255, UNHEX('00000000000000000000FFFF4113A782'), 1),
(25843254, UNHEX('00000000000000000000FFFFAF8BE93A'), 2),
(25843254, UNHEX('00000000000000000000FFFF7B7D43DB'), 1),
(25843253, UNHEX('00000000000000000000FFFF71D273B5'), 2),
(25843252, UNHEX('00000000000000000000FFFF71D273B5'), 3),
(25843252, UNHEX('00000000000000000000FFFF9D3727E3'), 1),
(25843251, UNHEX('00000000000000000000FFFF7B7D43A5'), 1),
(25843251, UNHEX('00000000000000000000FFFF7B7D4734'), 1),
(25843250, UNHEX('00000000000000000000FFFF12D48E81'), 1),
(25843244, UNHEX('00000000000000000000FFFFB7ABB97B'), 2),
(25843233, UNHEX('00000000000000000000FFFF62719BDA'), 1),
(25843231, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843225, UNHEX('00000000000000000000FFFF73A435C0'), 2),
(25843225, UNHEX('00000000000000000000FFFF76659955'), 4) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25843214, UNHEX('00000000000000000000FFFFCA419E32'), 5),
(25843214, UNHEX('00000000000000000000FFFFB6490D76'), 4),
(25843214, UNHEX('00000000000000000000FFFF0E8F0F32'), 4),
(25843209, UNHEX('00000000000000000000FFFF36249420'), 1),
(25843208, UNHEX('00000000000000000000FFFF904C7695'), 1),
(25843208, UNHEX('00000000000000000000FFFF175097BC'), 2),
(25843208, UNHEX('00000000000000000000FFFF17515E5A'), 2),
(25843208, UNHEX('00000000000000000000FFFFACF15B98'), 2),
(25843208, UNHEX('00000000000000000000FFFFA85B5A33'), 2),
(25843207, UNHEX('00000000000000000000FFFF176AC312'), 2),
(25843207, UNHEX('00000000000000000000FFFFA85B48DD'), 2),
(25843205, UNHEX('00000000000000000000FFFF0EC0D02C'), 6),
(25843204, UNHEX('00000000000000000000FFFF0EC0D02C'), 2),
(25843203, UNHEX('00000000000000000000FFFF2BFB5137'), 4),
(25843200, UNHEX('00000000000000000000FFFFCB87BE34'), 4),
(25843199, UNHEX('00000000000000000000FFFFCB87BE34'), 1),
(25843198, UNHEX('00000000000000000000FFFFCB87BE34'), 1),
(25843194, UNHEX('00000000000000000000FFFFB7ABB94F'), 6),
(25843193, UNHEX('00000000000000000000FFFFB7ABB94F'), 2),
(25843193, UNHEX('00000000000000000000FFFFCB87BE34'), 3),
(25843192, UNHEX('00000000000000000000FFFFCB87BE34'), 2),
(25843191, UNHEX('00000000000000000000FFFFADCD2115'), 1),
(25843189, UNHEX('00000000000000000000FFFFB7ABB86C'), 1),
(25843189, UNHEX('00000000000000000000FFFF88F32326'), 1),
(25843185, UNHEX('00000000000000000000FFFF01204421'), 2),
(25843183, UNHEX('00000000000000000000FFFFB7AB5106'), 2),
(25843182, UNHEX('00000000000000000000FFFF6E9F8216'), 2),
(25843181, UNHEX('00000000000000000000FFFF6E9F8216'), 3),
(25843181, UNHEX('00000000000000000000FFFF7387C8EF'), 2),
(25843180, UNHEX('00000000000000000000FFFFD2BA4FB0'), 1),
(25843177, UNHEX('00000000000000000000FFFF0EC0D442'), 4),
(25843176, UNHEX('00000000000000000000FFFFBEE1F674'), 2),
(25843176, UNHEX('00000000000000000000FFFF0EC0D442'), 4),
(25843175, UNHEX('00000000000000000000FFFF0EC0D442'), 2),
(25843174, UNHEX('00000000000000000000FFFF0EC0D442'), 4),
(25843170, UNHEX('00000000000000000000FFFF0EC0D20D'), 2),
(25843170, UNHEX('00000000000000000000FFFFA18BDE12'), 2),
(25843170, UNHEX('00000000000000000000FFFFD13AA323'), 1),
(25843169, UNHEX('00000000000000000000FFFFD13AA323'), 1),
(25843169, UNHEX('00000000000000000000FFFFA18BDE12'), 4),
(25843169, UNHEX('00000000000000000000FFFF4C1535B3'), 2),
(25843168, UNHEX('00000000000000000000FFFFA18BDE12'), 4),
(25843166, UNHEX('00000000000000000000FFFF9D3727E3'), 1),
(25843165, UNHEX('00000000000000000000FFFFA18BDE12'), 4),
(25843163, UNHEX('00000000000000000000FFFF7A03FEF2'), 4),
(25843156, UNHEX('00000000000000000000FFFF7387C8B8'), 3),
(25843155, UNHEX('00000000000000000000FFFF7387C8B8'), 1),
(25843155, UNHEX('00000000000000000000FFFF081DC619'), 1),
(25843153, UNHEX('00000000000000000000FFFF7B887552'), 2),
(25843152, UNHEX('00000000000000000000FFFF7B887552'), 1),
(25843151, UNHEX('00000000000000000000FFFF7B887552'), 1),
(25843140, UNHEX('00000000000000000000FFFF939E473D'), 3),
(25843139, UNHEX('00000000000000000000FFFFCABC1509'), 6),
(25843138, UNHEX('00000000000000000000FFFF284DA785'), 1),
(25843136, UNHEX('00000000000000000000FFFF2ABE82D9'), 6),
(25843136, UNHEX('00000000000000000000FFFF5006E9D5'), 1),
(25843134, UNHEX('00000000000000000000FFFF73A435C0'), 4),
(25843133, UNHEX('00000000000000000000FFFF5006E9D5'), 1),
(25843129, UNHEX('00000000000000000000FFFFA18E3142'), 4),
(25843128, UNHEX('00000000000000000000FFFFA18E3142'), 4),
(25843118, UNHEX('00000000000000000000FFFF67120022'), 3),
(25843117, UNHEX('00000000000000000000FFFF67120022'), 6),
(25843116, UNHEX('00000000000000000000FFFF67120022'), 1),
(25843111, UNHEX('00000000000000000000FFFFDAD08A18'), 4),
(25843099, UNHEX('00000000000000000000FFFFB06E8602'), 2),
(25843093, UNHEX('00000000000000000000FFFF939E473D'), 3),
(25843092, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25843091, UNHEX('00000000000000000000FFFF3C32FE53'), 4),
(25843090, UNHEX('00000000000000000000FFFF4D43363C'), 1),
(25843090, UNHEX('00000000000000000000FFFF4D433600'), 1),
(25843089, UNHEX('00000000000000000000FFFF284DA785'), 1),
(25843083, UNHEX('00000000000000000000FFFF3D06A300'), 1),
(25843077, UNHEX('00000000000000000000FFFF6756827F'), 6),
(25843073, UNHEX('00000000000000000000FFFF0EC0D75C'), 3),
(25843070, UNHEX('00000000000000000000FFFFAF8C16A4'), 1),
(25843069, UNHEX('00000000000000000000FFFFAF8C16A4'), 1),
(25843068, UNHEX('00000000000000000000FFFF73A4A96C'), 4),
(25843067, UNHEX('00000000000000000000FFFF90D95050'), 2),
(25843067, UNHEX('00000000000000000000FFFFCC55BF1E'), 2),
(25843067, UNHEX('00000000000000000000FFFFB00A63C8'), 2),
(25843067, UNHEX('00000000000000000000FFFFC7F9E650'), 2),
(25843067, UNHEX('00000000000000000000FFFF73A4A96C'), 4),
(25843067, UNHEX('00000000000000000000FFFFB9DC651F'), 2),
(25843067, UNHEX('00000000000000000000FFFFC7F9E657'), 2),
(25843067, UNHEX('00000000000000000000FFFFA2F74AD9'), 1),
(25843063, UNHEX('00000000000000000000FFFF939E473D'), 4),
(25843061, UNHEX('00000000000000000000FFFF7384AF43'), 1),
(25843060, UNHEX('00000000000000000000FFFFB7ABB920'), 2),
(25843060, UNHEX('00000000000000000000FFFF426606C9'), 1),
(25843058, UNHEX('00000000000000000000FFFFC0E4CCC0'), 4),
(25843057, UNHEX('00000000000000000000FFFFC0E4CCC0'), 2),
(25843051, UNHEX('00000000000000000000FFFFCFB4F5FD'), 1),
(25843048, UNHEX('00000000000000000000FFFFD8F442EC'), 1),
(25843047, UNHEX('00000000000000000000FFFFB7AB43E1'), 2),
(25843046, UNHEX('00000000000000000000FFFFAF90CA0D'), 4),
(25843044, UNHEX('00000000000000000000FFFF340948F6'), 1),
(25843039, UNHEX('00000000000000000000FFFF7B886B4F'), 2),
(25843039, UNHEX('00000000000000000000FFFF73A432A2'), 1),
(25843038, UNHEX('00000000000000000000FFFF73A432A2'), 1),
(25843038, UNHEX('00000000000000000000FFFF2EE5A899'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25843038, UNHEX('00000000000000000000FFFF689B046C'), 1),
(25843038, UNHEX('00000000000000000000FFFF2EE5A884'), 1),
(25843033, UNHEX('00000000000000000000FFFF0EC0D22E'), 2),
(25843033, UNHEX('00000000000000000000FFFFB7ABB91F'), 6),
(25843030, UNHEX('00000000000000000000FFFF2ABFCBF5'), 4),
(25843029, UNHEX('00000000000000000000FFFF2ABFCBF5'), 2),
(25843029, UNHEX('00000000000000000000FFFF9CCC35D5'), 2),
(25843028, UNHEX('00000000000000000000FFFF0EC0D78A'), 1),
(25843027, UNHEX('00000000000000000000FFFF73A43E19'), 2),
(25843026, UNHEX('00000000000000000000FFFF0EC0D345'), 4),
(25843025, UNHEX('00000000000000000000FFFF73A43E19'), 2),
(25843024, UNHEX('00000000000000000000FFFF0EC0D78A'), 4),
(25843024, UNHEX('00000000000000000000FFFF2A3CF899'), 2),
(25843023, UNHEX('00000000000000000000FFFFD5AE98B7'), 1),
(25843023, UNHEX('00000000000000000000FFFFD5AE98B6'), 2),
(25843022, UNHEX('00000000000000000000FFFFD5AE98B9'), 1),
(25843022, UNHEX('00000000000000000000FFFFD5AE98B5'), 1),
(25843021, UNHEX('00000000000000000000FFFFD5AE98B5'), 1),
(25843021, UNHEX('00000000000000000000FFFFD5AE98B8'), 1),
(25843021, UNHEX('00000000000000000000FFFFD5AE98B9'), 1),
(25843020, UNHEX('00000000000000000000FFFFD5AE98B5'), 2),
(25843019, UNHEX('00000000000000000000FFFFAF8D7AE5'), 3),
(25843018, UNHEX('00000000000000000000FFFFAF8D7AE5'), 5),
(25843017, UNHEX('00000000000000000000FFFF2ABC2AE9'), 4),
(25843017, UNHEX('00000000000000000000FFFFAF8D7AE5'), 2),
(25843016, UNHEX('00000000000000000000FFFFC0E4CA61'), 2),
(25843016, UNHEX('00000000000000000000FFFFAF8D7AE5'), 6),
(25843013, UNHEX('00000000000000000000FFFF689B046C'), 1),
(25843006, UNHEX('00000000000000000000FFFFA18B6620'), 4),
(25842998, UNHEX('00000000000000000000FFFFB64BF2B3'), 2),
(25842996, UNHEX('00000000000000000000FFFF9E4551BA'), 1),
(25842996, UNHEX('00000000000000000000FFFFA18B6620'), 4),
(25842995, UNHEX('00000000000000000000FFFFA18B6620'), 2),
(25842995, UNHEX('00000000000000000000FFFFB64BF2B3'), 1),
(25842994, UNHEX('00000000000000000000FFFF3C303C76'), 2),
(25842994, UNHEX('00000000000000000000FFFFB64BF2B3'), 1),
(25842994, UNHEX('00000000000000000000FFFF2AEC0A53'), 1),
(25842994, UNHEX('00000000000000000000FFFFA18B6620'), 1),
(25842993, UNHEX('00000000000000000000FFFFA18B6620'), 1),
(25842984, UNHEX('00000000000000000000FFFF284DA70B'), 1),
(25842982, UNHEX('00000000000000000000FFFF7664E4D7'), 5),
(25842981, UNHEX('00000000000000000000FFFF7664E4D7'), 1),
(25842976, UNHEX('00000000000000000000FFFF3C303C76'), 2),
(25842976, UNHEX('00000000000000000000FFFFAF88E092'), 4),
(25842975, UNHEX('00000000000000000000FFFFAF88E092'), 4),
(25842974, UNHEX('00000000000000000000FFFFAF88E092'), 2),
(25842969, UNHEX('00000000000000000000FFFFA772F61F'), 1),
(25842964, UNHEX('00000000000000000000FFFF284DA70B'), 1),
(25842960, UNHEX('00000000000000000000FFFF73A43151'), 2),
(25842960, UNHEX('00000000000000000000FFFFB74E7FE5'), 2),
(25842957, UNHEX('00000000000000000000FFFF284DA70B'), 1),
(25842956, UNHEX('00000000000000000000FFFFA772F61C'), 1),
(25842953, UNHEX('00000000000000000000FFFF67FBE87A'), 2),
(25842950, UNHEX('00000000000000000000FFFF2ABD37D3'), 2),
(25842949, UNHEX('00000000000000000000FFFF67FBE408'), 2),
(25842945, UNHEX('00000000000000000000FFFF023224F9'), 2),
(25842944, UNHEX('00000000000000000000FFFFB956A466'), 2),
(25842943, UNHEX('00000000000000000000FFFF77524FD7'), 2),
(25842941, UNHEX('00000000000000000000FFFFA772F61C'), 1),
(25842941, UNHEX('00000000000000000000FFFFAF8E930E'), 8),
(25842940, UNHEX('00000000000000000000FFFFAF8E930E'), 6),
(25842939, UNHEX('00000000000000000000FFFFAF8E930E'), 4),
(25842939, UNHEX('00000000000000000000FFFF77524FD7'), 2),
(25842938, UNHEX('00000000000000000000FFFFB44C0F0D'), 1),
(25842938, UNHEX('00000000000000000000FFFF77524FD7'), 7),
(25842928, UNHEX('00000000000000000000FFFFCAA21282'), 3),
(25842923, UNHEX('00000000000000000000FFFF71D2B347'), 2),
(25842920, UNHEX('00000000000000000000FFFF71D2B347'), 2),
(25842917, UNHEX('00000000000000000000FFFFCB6AA525'), 4),
(25842913, UNHEX('00000000000000000000FFFF36249515'), 1),
(25842913, UNHEX('00000000000000000000FFFFCFB4F5FD'), 2),
(25842912, UNHEX('00000000000000000000FFFF7B886F30'), 1),
(25842903, UNHEX('00000000000000000000FFFF71D261F0'), 4),
(25842903, UNHEX('00000000000000000000FFFF05FFFD1B'), 1),
(25842900, UNHEX('00000000000000000000FFFFC0E4F3A8'), 4),
(25842900, UNHEX('00000000000000000000FFFF797B88B4'), 2),
(25842899, UNHEX('00000000000000000000FFFFC0E4F3A8'), 4),
(25842899, UNHEX('00000000000000000000FFFF797B88B4'), 2),
(25842898, UNHEX('00000000000000000000FFFF797B88B4'), 2),
(25842897, UNHEX('00000000000000000000FFFFDB5C2DE9'), 2),
(25842897, UNHEX('00000000000000000000FFFFAF8A41FE'), 2),
(25842892, UNHEX('00000000000000000000FFFF939EB233'), 2),
(25842890, UNHEX('00000000000000000000FFFF71D2394D'), 1),
(25842889, UNHEX('00000000000000000000FFFF71D2394D'), 3),
(25842887, UNHEX('00000000000000000000FFFFAF8D4DF9'), 3),
(25842887, UNHEX('00000000000000000000FFFF71D2394D'), 2),
(25842886, UNHEX('00000000000000000000FFFF689B046C'), 2),
(25842885, UNHEX('00000000000000000000FFFFDB412C0A'), 2),
(25842882, UNHEX('00000000000000000000FFFF34479BB2'), 1),
(25842882, UNHEX('00000000000000000000FFFF7B886A0E'), 4),
(25842881, UNHEX('00000000000000000000FFFF7B886A0E'), 2),
(25842880, UNHEX('00000000000000000000FFFFCAA50A83'), 4),
(25842879, UNHEX('00000000000000000000FFFFCAA50A83'), 3),
(25842879, UNHEX('00000000000000000000FFFF7B886A0E'), 8),
(25842878, UNHEX('00000000000000000000FFFF7B886B0E'), 2),
(25842876, UNHEX('00000000000000000000FFFFAF8899C2'), 6),
(25842876, UNHEX('00000000000000000000FFFF3624946A'), 1),
(25842876, UNHEX('00000000000000000000FFFF36249433'), 1),
(25842875, UNHEX('00000000000000000000FFFFDB412C0A'), 2),
(25842875, UNHEX('00000000000000000000FFFF43C0331A'), 1) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25842874, UNHEX('00000000000000000000FFFF081DC61B'), 1),
(25842874, UNHEX('00000000000000000000FFFF68F80C29'), 1),
(25842872, UNHEX('00000000000000000000FFFF3B95EEEA'), 1),
(25842871, UNHEX('00000000000000000000FFFF2EE5A88C'), 2),
(25842869, UNHEX('00000000000000000000FFFF3A1AB3C6'), 2),
(25842869, UNHEX('00000000000000000000FFFF7B88737C'), 1),
(25842868, UNHEX('00000000000000000000FFFFCDAE2801'), 1),
(25842868, UNHEX('00000000000000000000FFFF9D37276B'), 1),
(25842867, UNHEX('00000000000000000000FFFF68836B3F'), 1),
(25842867, UNHEX('00000000000000000000FFFF7B88737C'), 1),
(25842867, UNHEX('00000000000000000000FFFF3640436A'), 1),
(25842866, UNHEX('00000000000000000000FFFFDB412C0A'), 1),
(25842863, UNHEX('00000000000000000000FFFFDB412C0A'), 1),
(25842861, UNHEX('00000000000000000000FFFFDB412C0A'), 4),
(25842860, UNHEX('00000000000000000000FFFFDB412C0A'), 3),
(25842860, UNHEX('00000000000000000000FFFF73A4BC6B'), 2),
(25842859, UNHEX('00000000000000000000FFFF7B8875CC'), 4),
(25842858, UNHEX('00000000000000000000FFFFDB412C0A'), 1),
(25842858, UNHEX('00000000000000000000FFFF7B8875CC'), 2),
(25842857, UNHEX('00000000000000000000FFFF7B8875CC'), 1),
(25842856, UNHEX('00000000000000000000FFFF7B8875CC'), 1),
(25842853, UNHEX('00000000000000000000FFFF73A4D9A3'), 2),
(25842850, UNHEX('00000000000000000000FFFFAF8DF047'), 6),
(25842850, UNHEX('00000000000000000000FFFF71D2439A'), 4),
(25842849, UNHEX('00000000000000000000FFFF9D37276B'), 1),
(25842847, UNHEX('00000000000000000000FFFFAF8F4CE6'), 4),
(25842846, UNHEX('00000000000000000000FFFF7117E244'), 1),
(25842843, UNHEX('00000000000000000000FFFFAF8DF047'), 2),
(25842841, UNHEX('00000000000000000000FFFF3C334A6A'), 2),
(25842841, UNHEX('00000000000000000000FFFF73A4B376'), 2),
(25842837, UNHEX('00000000000000000000FFFFD3185EC2'), 1),
(25842832, UNHEX('00000000000000000000FFFF284DA7CC'), 1),
(25842832, UNHEX('00000000000000000000FFFF71D272A8'), 2),
(25842829, UNHEX('00000000000000000000FFFF17EFB48E'), 1),
(25841399, UNHEX('00000000000000000000FFFFB6490D76'), 2),
(25841397, UNHEX('00000000000000000000FFFF33AF8769'), 1),
(25841397, UNHEX('00000000000000000000FFFF9E45CB46'), 1),
(25841396, UNHEX('00000000000000000000FFFF73A43A4D'), 2),
(25841393, UNHEX('00000000000000000000FFFF6FCEDD26'), 1),
(25841393, UNHEX('00000000000000000000FFFFDCB56C53'), 1),
(25841391, UNHEX('00000000000000000000FFFF0EC0D0BC'), 2),
(25841387, UNHEX('00000000000000000000FFFF36249449'), 1),
(25841387, UNHEX('00000000000000000000FFFF36249434'), 1),
(25844405, UNHEX('00000000000000000000FFFF71D2345A'), 1),
(25844403, UNHEX('00000000000000000000FFFFDFCCF791'), 2),
(25844400, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25844400, UNHEX('00000000000000000000FFFFCB6A894A'), 1),
(25844399, UNHEX('00000000000000000000FFFFCB6A894A'), 3),
(25844399, UNHEX('00000000000000000000FFFF3C362515'), 1),
(25844397, UNHEX('00000000000000000000FFFFAF88F549'), 1),
(25844393, UNHEX('00000000000000000000FFFF8D1DEC84'), 1),
(25844392, UNHEX('00000000000000000000FFFF689B046C'), 1),
(25844389, UNHEX('00000000000000000000FFFF73A43F72'), 1),
(25844386, UNHEX('00000000000000000000FFFF3435C94E'), 1),
(25844383, UNHEX('00000000000000000000FFFF7B8874E5'), 2),
(25844382, UNHEX('00000000000000000000FFFF7B8874E5'), 2),
(25844381, UNHEX('00000000000000000000FFFF7B8874E5'), 2),
(25844380, UNHEX('00000000000000000000FFFF7B8874E5'), 2),
(25844377, UNHEX('00000000000000000000FFFF40D15967'), 2),
(25844374, UNHEX('00000000000000000000FFFF8838968E'), 1),
(25844373, UNHEX('00000000000000000000FFFF670E3428'), 4),
(25844368, UNHEX('00000000000000000000FFFF2ABF246F'), 2),
(25844366, UNHEX('00000000000000000000FFFF73849DD0'), 4),
(25844364, UNHEX('00000000000000000000FFFF73849DD0'), 2),
(25844364, UNHEX('00000000000000000000FFFF797A340D'), 4),
(25844363, UNHEX('00000000000000000000FFFF797A340D'), 2),
(25844363, UNHEX('00000000000000000000FFFFA7623F82'), 2),
(25844362, UNHEX('00000000000000000000FFFF797A340D'), 6),
(25844362, UNHEX('00000000000000000000FFFFA7623F82'), 2),
(25844361, UNHEX('00000000000000000000FFFFA7623F82'), 3),
(25844360, UNHEX('00000000000000000000FFFFA7623F82'), 1),
(25844360, UNHEX('00000000000000000000FFFF9E45473A'), 6),
(25844359, UNHEX('00000000000000000000FFFFCF2E0DA4'), 1),
(25844359, UNHEX('00000000000000000000FFFFA7623F82'), 3),
(25844359, UNHEX('00000000000000000000FFFF2ABEFF3B'), 6),
(25844358, UNHEX('00000000000000000000FFFFCF2E0DA4'), 1),
(25844358, UNHEX('00000000000000000000FFFF9D37275F'), 1),
(25844357, UNHEX('00000000000000000000FFFFB7ABB875'), 1),
(25844355, UNHEX('00000000000000000000FFFFCF2E0DA4'), 1),
(25844353, UNHEX('00000000000000000000FFFF2ABEFF3B'), 4),
(25844353, UNHEX('00000000000000000000FFFF2BE080D4'), 2),
(25844353, UNHEX('00000000000000000000FFFF71D27B0F'), 2),
(25844352, UNHEX('00000000000000000000FFFF71D27B0F'), 2),
(25844352, UNHEX('00000000000000000000FFFF2AEC0A70'), 1),
(25844351, UNHEX('00000000000000000000FFFFC063F5A2'), 1),
(25844347, UNHEX('00000000000000000000FFFF1B6A6946'), 1),
(25844344, UNHEX('00000000000000000000FFFF9D372768'), 1),
(25844341, UNHEX('00000000000000000000FFFF3624945E'), 1),
(25844341, UNHEX('00000000000000000000FFFF36249432'), 1),
(25844334, UNHEX('00000000000000000000FFFF9E45473A'), 2),
(25844334, UNHEX('00000000000000000000FFFFAF88F0FD'), 2),
(25844334, UNHEX('00000000000000000000FFFFB7AB42D0'), 2),
(25844333, UNHEX('00000000000000000000FFFFB8487323'), 1),
(25844333, UNHEX('00000000000000000000FFFFB06E8602'), 2),
(25844333, UNHEX('00000000000000000000FFFF2EA5F59A'), 2),
(25844333, UNHEX('00000000000000000000FFFF7664C9DA'), 1),
(25844333, UNHEX('00000000000000000000FFFF0EC0D34F'), 2),
(25844333, UNHEX('00000000000000000000FFFFB9DC6530'), 2),
(25844333, UNHEX('00000000000000000000FFFFB9DC6546'), 2),
(25844333, UNHEX('00000000000000000000FFFFAF88F0FD'), 6) ;
INSERT INTO `wp2o_wfLeechers` ( `eMin`, `IP`, `hits`) VALUES
(25844332, UNHEX('00000000000000000000FFFF1FDC00E1'), 5),
(25844328, UNHEX('00000000000000000000FFFFCABEBFCD'), 2),
(25844328, UNHEX('00000000000000000000FFFF0EC0D34F'), 4),
(25844328, UNHEX('00000000000000000000FFFF284DA91B'), 1),
(25844325, UNHEX('00000000000000000000FFFFAF88F0FD'), 4),
(25844324, UNHEX('00000000000000000000FFFF71D26665'), 2),
(25844323, UNHEX('00000000000000000000FFFFB7ABB924'), 2),
(25844321, UNHEX('00000000000000000000FFFF3C312396'), 2),
(25844320, UNHEX('00000000000000000000FFFF8C522FBF'), 1),
(25844312, UNHEX('00000000000000000000FFFF7B886BED'), 1),
(25844311, UNHEX('00000000000000000000FFFF23C05407'), 1),
(25844310, UNHEX('00000000000000000000FFFF73A43E42'), 2),
(25844309, UNHEX('00000000000000000000FFFFCAB8289F'), 8),
(25844309, UNHEX('00000000000000000000FFFFDA6F80B9'), 3),
(25844308, UNHEX('00000000000000000000FFFFDA6F80B9'), 2),
(25844307, UNHEX('00000000000000000000FFFF0EC0D34F'), 1),
(25844305, UNHEX('00000000000000000000FFFF340948D5'), 1),
(25844303, UNHEX('00000000000000000000FFFF43C0331A'), 1),
(25844301, UNHEX('00000000000000000000FFFF2A998140'), 4),
(25844299, UNHEX('00000000000000000000FFFFCAA50A83'), 2),
(25844298, UNHEX('00000000000000000000FFFFCAA50A83'), 2),
(25844298, UNHEX('00000000000000000000FFFF71D26A63'), 4),
(25844295, UNHEX('00000000000000000000FFFF904C6051'), 1),
(25844293, UNHEX('00000000000000000000FFFFDB5C1FA5'), 1),
(25844289, UNHEX('00000000000000000000FFFF73A43FFB'), 2),
(25844288, UNHEX('00000000000000000000FFFFB44C0F9C'), 1),
(25844287, UNHEX('00000000000000000000FFFF74331BD4'), 1),
(25844287, UNHEX('00000000000000000000FFFF73A43F72'), 3),
(25844286, UNHEX('00000000000000000000FFFF73A43F72'), 2),
(25844285, UNHEX('00000000000000000000FFFF73A43F72'), 5),
(25844284, UNHEX('00000000000000000000FFFF26633E5D'), 1),
(25844283, UNHEX('00000000000000000000FFFF36D06625'), 1),
(25844283, UNHEX('00000000000000000000FFFF6B150108'), 1),
(25844282, UNHEX('00000000000000000000FFFF7978F06B'), 2),
(25844280, UNHEX('00000000000000000000FFFFCA419E32'), 6),
(25844280, UNHEX('00000000000000000000FFFF0E8F0F32'), 3),
(25844280, UNHEX('00000000000000000000FFFFB6490D76'), 4),
(25844279, UNHEX('00000000000000000000FFFF8A80823E'), 2),
(25844277, UNHEX('00000000000000000000FFFF49DF7573'), 4),
(25844276, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844273, UNHEX('00000000000000000000FFFF73A4D1F7'), 2),
(25844273, UNHEX('00000000000000000000FFFFCAA2121F'), 2),
(25844272, UNHEX('00000000000000000000FFFF73A4D1F7'), 2),
(25844272, UNHEX('00000000000000000000FFFFCAA2121F'), 7),
(25844270, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844270, UNHEX('00000000000000000000FFFF7B8870B9'), 1),
(25844268, UNHEX('00000000000000000000FFFF3D79F111'), 1),
(25841387, UNHEX('00000000000000000000FFFF01DF5FCC'), 2),
(25844267, UNHEX('00000000000000000000FFFF73A43F72'), 5),
(25844266, UNHEX('00000000000000000000FFFF73A43F72'), 2) ;

#
# End of data contents of table `wp2o_wfLeechers`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfLockedOut`
#

DROP TABLE IF EXISTS `wp2o_wfLockedOut`;


#
# Table structure of table `wp2o_wfLockedOut`
#

CREATE TABLE `wp2o_wfLockedOut` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfLockedOut`
#

#
# End of data contents of table `wp2o_wfLockedOut`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfLocs`
#

DROP TABLE IF EXISTS `wp2o_wfLocs`;


#
# Table structure of table `wp2o_wfLocs`
#

CREATE TABLE `wp2o_wfLocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfLocs`
#
INSERT INTO `wp2o_wfLocs` ( `IP`, `ctime`, `failed`, `city`, `region`, `countryName`, `countryCode`, `lat`, `lon`) VALUES
(UNHEX('00000000000000000000FFFFD3186516'), 1550651729, 0, 'Kuala Lumpur', 'Kuala Lumpur', 'Malaysia', 'MY', '3.1513000', '101.6947021') ;

#
# End of data contents of table `wp2o_wfLocs`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfLogins`
#

DROP TABLE IF EXISTS `wp2o_wfLogins`;


#
# Table structure of table `wp2o_wfLogins`
#

CREATE TABLE `wp2o_wfLogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM AUTO_INCREMENT=7535 DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfLogins`
#
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(6756, 2785697, '1545813778.197355', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFD9A5CC96'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:51.0) Gecko/20100101 Firefox/51.0'),
(6757, 2785864, '1545816129.982560', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFCA899A9A'), 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2967.50 Safari/537.36'),
(6758, 2785965, '1545819509.311467', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFC8583472'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6759, 2786037, '1545821685.493425', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9B23'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6760, 2786100, '1545825319.814671', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFCB99274A'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6761, 2786155, '1545827115.568047', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF82001E45'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6762, 2786222, '1545831053.254154', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFCA899B69'), 'Mozilla/5.0 (Windows NT 6.1; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6763, 2786258, '1545832609.738199', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCA898D79'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6764, 2786330, '1545836904.229397', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF989C'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2761.23 Safari/537.36'),
(6765, 2786361, '1545838298.232132', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFCA899AEC'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2752.6 Safari/537.36'),
(6766, 2786419, '1545842736.457097', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9B6E'), 'Mozilla/5.0 (X11; Linux i686; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6767, 2786440, '1545843949.213563', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFB576C402'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6768, 2786489, '1545848256.534477', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB168F29C'), 'Mozilla/5.0 (X11; Linux i686; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6769, 2786507, '1545849393.361448', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9924'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:51.0) Gecko/20100101 Firefox/51.0'),
(6770, 2786567, '1545853872.464182', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8B054B03'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2979.32 Safari/537.36'),
(6771, 2786575, '1545854747.063739', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9982'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2688.86 Safari/537.36'),
(6772, 2786584, '1545855751.346938', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBBD85D14'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(6773, 2786624, '1545859613.132339', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9B3E'), 'Mozilla/5.0 (Windows NT 5.1; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6774, 2786627, '1545860154.404022', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9B43'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 10.0; Win64; x64; Trident/6.0)'),
(6775, 2786673, '1545865312.642413', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9A86'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6776, 2786677, '1545865646.202253', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF98ED'), 'Mozilla/5.0 (Windows NT 5.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6777, 2786718, '1545871174.339006', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9A20'), 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Win64; x64; Trident/4.0)'),
(6778, 2786719, '1545871174.894955', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF9A24'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2659.75 Safari/537.36'),
(6779, 2786844, '1545875045.635176', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5BED0528'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(6780, 2786922, '1545876732.722826', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF9A79'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(6781, 2786928, '1545876996.783018', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFCA899A9E'), 'Mozilla/5.0 (X11; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6782, 2787110, '1545882271.912921', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF994C'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2732.94 Safari/537.36'),
(6783, 2787126, '1545882800.859260', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF73545B2F'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6784, 2787257, '1545887948.308316', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8ACC460C'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.3; Win64; x64; Trident/6.0)'),
(6785, 2787262, '1545888562.638698', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF990D'), 'Mozilla/5.0 (X11; Linux x86_64; rv:46.0) Gecko/20100101 Firefox/46.0'),
(6786, 2787372, '1545893509.016694', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF292795C2'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2662.53 Safari/537.36'),
(6787, 2787416, '1545894261.038387', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9AAE'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)'),
(6788, 2787625, '1545899010.741349', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF676F1D76'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.64 Safari/537.36'),
(6789, 2787650, '1545899639.892241', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF5BE1A302'), 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 10.0; Win64; x64; Trident/4.0)'),
(6790, 2787885, '1545904525.381579', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB168F1F8'), 'Mozilla/5.0 (Windows NT 5.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2774.9 Safari/537.36'),
(6791, 2787937, '1545905139.378559', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFCA899BD4'), 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2917.53 Safari/537.36'),
(6792, 2788054, '1545910098.134396', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9B8A'), 'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.29 Safari/537.36'),
(6793, 2788077, '1545910835.351453', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFB168F2A7'), 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2659.70 Safari/537.36'),
(6794, 2788259, '1545915741.278771', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8ACC4624'), 'Mozilla/5.0 (X11; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6795, 2788273, '1545916721.171250', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFB168F29C'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2681.48 Safari/537.36'),
(6796, 2788372, '1545921465.900120', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9AE8'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2854.79 Safari/537.36'),
(6797, 2788398, '1545922317.489080', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFD9A5CC96'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6798, 2788512, '1545927135.632233', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF3A41A454'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(6799, 2788562, '1545928058.028672', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF99E6'), 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.1; WOW64; Trident/5.0)'),
(6800, 2788616, '1545933025.694832', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFCB523C67'), 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2807.71 Safari/537.36'),
(6801, 2788651, '1545933868.411451', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFD13B731E'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6802, 2788752, '1545938868.628581', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9BD8'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2890.94 Safari/537.36'),
(6803, 2788774, '1545939795.703923', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9B66'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2806.57 Safari/537.36'),
(6804, 2788923, '1545944471.921652', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFA290C06E'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(6805, 2788926, '1545944534.895052', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFC81ABF02'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 5.1; Trident/6.0)'),
(6806, 2788934, '1545944922.910109', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF9BBE'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2873.56 Safari/537.36'),
(6807, 2789026, '1545950131.159098', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFA8CD2667'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6808, 2789032, '1545950457.771743', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF3D06F7AC'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2855.48 Safari/537.36'),
(6809, 2789257, '1545956109.115649', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB168F2A7'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6810, 2789471, '1545960329.808027', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFD857BE5A'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(6811, 2789522, '1545962002.654724', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFB10A6473'), 'Mozilla/5.0 (X11; Linux i686; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6812, 2789781, '1545967678.693050', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFC52DA1F1'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)'),
(6813, 2789820, '1545968959.182470', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF99D8'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:46.0) Gecko/20100101 Firefox/46.0'),
(6814, 2790071, '1545973728.652065', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFCA899B5F'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(6815, 2790081, '1545974529.163704', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCDD9F65A'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2691.46 Safari/537.36'),
(6816, 2790175, '1545979188.373097', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF5BC9AA8C'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6817, 2790202, '1545979763.163367', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFB4B7F57A'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.86 Safari/537.36'),
(6818, 2790538, '1545984941.999210', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFCDD9F428'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2885.48 Safari/537.36'),
(6819, 2790572, '1545985071.946201', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF73545C4C'), 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.3; WOW64; Trident/5.0)'),
(6820, 2790888, '1545990282.860449', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFD9A5CC06'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2763.41 Safari/537.36'),
(6821, 2790892, '1545990536.942007', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFB758EED9'), 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2720.45 Safari/537.36'),
(6822, 2790992, '1545995515.350298', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFC983F4C9'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6823, 2790996, '1545996059.742215', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9A36'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2863.7 Safari/537.36'),
(6824, 2791134, '1546000629.008055', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8ACC46B8'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2978.85 Safari/537.36'),
(6825, 2791154, '1546001539.473589', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF82001E05'), 'Mozilla/5.0 (X11; Linux i686; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6826, 2791216, '1546003923.445986', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC3463E82'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(6827, 2791237, '1546005995.702374', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFCA899ADA'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2725.91 Safari/537.36'),
(6828, 2791252, '1546007212.203848', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFC983F4C9'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2658.63 Safari/537.36'),
(6829, 2791312, '1546011286.666039', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9968'), 'Mozilla/5.0 (Windows NT 10.0; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6830, 2791342, '1546012889.062992', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF73545B26'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6831, 2791427, '1546016678.630041', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFC53248B6'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2677.24 Safari/537.36'),
(6832, 2791502, '1546018613.281166', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9BD3'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2798.42 Safari/537.36'),
(6833, 2791661, '1546022123.166543', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9B21'), 'Mozilla/5.0 (X11; Linux x86_64; rv:46.0) Gecko/20100101 Firefox/46.0'),
(6834, 2791715, '1546024349.356669', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFBD7097C0'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2822.91 Safari/537.36'),
(6835, 2791786, '1546027614.656316', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF73545B37'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2678.35 Safari/537.36'),
(6836, 2791834, '1546030053.385308', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF989F'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6837, 2792045, '1546032861.264531', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9B41'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2914.45 Safari/537.36'),
(6838, 2792069, '1546036294.595563', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9851'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),
(6839, 2792142, '1546037540.337875', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF55844752'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),
(6840, 2792222, '1546038140.615122', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFB168F24F'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6841, 2792237, '1546041210.933287', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFCA899BD5'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6842, 2792273, '1546043536.699463', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9B77'), 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.3; WOW64; Trident/4.0)'),
(6843, 2792284, '1546044995.768865', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBACA9966'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'),
(6844, 2792300, '1546046909.586288', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF99A5'), 'Mozilla/5.0 (Windows NT 5.1; Win64; x64; rv:46.0) Gecko/20100101 Firefox/46.0'),
(6845, 2792321, '1546049104.908731', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9A36'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0'),
(6846, 2792354, '1546052624.695039', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9B7D'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6847, 2792377, '1546054547.939201', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF9962'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2703.18 Safari/537.36'),
(6848, 2792458, '1546058505.220605', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF82001E46'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6849, 2792475, '1546059885.144924', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9962'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6850, 2792543, '1546064131.145937', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9B29'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2687.38 Safari/537.36'),
(6851, 2792585, '1546065063.385203', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFCA899B81'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2753.40 Safari/537.36'),
(6852, 2792668, '1546069692.658307', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFBB103765'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6853, 2792677, '1546070281.181301', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFB126BE9E'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2791.98 Safari/537.36'),
(6854, 2792823, '1546075432.141298', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFB168F2A4'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6855, 2792831, '1546075583.721629', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9BAB'), 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2856.50 Safari/537.36') ;
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(6856, 2792982, '1546080840.163309', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB168F291'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2731.55 Safari/537.36'),
(6857, 2792987, '1546080999.734911', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFCA8986AC'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.38 Safari/537.36'),
(6858, 2793174, '1546085903.620320', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF99B6'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6859, 2793187, '1546086437.381090', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFCA899BC1'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6860, 2793195, '1546086772.825268', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF95CAC30C'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(6861, 2793253, '1546091085.389783', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF99E8'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2626.65 Safari/537.36'),
(6862, 2793285, '1546091796.249851', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF7354633C'), 'Mozilla/5.0 (X11; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2647.79 Safari/537.36'),
(6863, 2793395, '1546096323.141217', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC533D199'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(6864, 2793428, '1546097295.779324', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9A67'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2956.12 Safari/537.36'),
(6865, 2793494, '1546101625.287609', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9A6D'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2917.39 Safari/537.36'),
(6866, 2793518, '1546102902.029482', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFB4B7F6AD'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6867, 2793587, '1546107053.030992', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9898'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2835.36 Safari/537.36'),
(6868, 2793616, '1546108730.833253', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC983F4BA'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2881.39 Safari/537.36'),
(6869, 2793647, '1546112376.897270', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF995D'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6870, 2793680, '1546114322.545185', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF99E4'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2647.32 Safari/537.36'),
(6871, 2793730, '1546117751.575389', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF985A'), 'Mozilla/5.0 (X11; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6872, 2793758, '1546120001.187173', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFC9479FA0'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2718.22 Safari/537.36'),
(6873, 2793797, '1546123121.184372', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFCA899A43'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6874, 2793827, '1546125619.877326', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFB168F2A4'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6875, 2793856, '1546127918.685895', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF51B187F0'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(6876, 2793860, '1546128476.088015', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFBAFBA6F8'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2854.49 Safari/537.36'),
(6877, 2793908, '1546131253.189653', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF99E3'), 'Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2856.88 Safari/537.36'),
(6878, 2793937, '1546133947.734304', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFCB99274D'), 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2804.55 Safari/537.36'),
(6879, 2794003, '1546136845.398122', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFD44511C3'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2851.13 Safari/537.36'),
(6880, 2794053, '1546139740.081475', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9A8F'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2637.12 Safari/537.36'),
(6881, 2794091, '1546142414.608358', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC533AE24'), 'Mozilla/5.0 (X11; Linux i686; rv:51.0) Gecko/20100101 Firefox/51.0'),
(6882, 2794151, '1546145050.193425', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB168F293'), 'Mozilla/5.0 (Windows NT 6.3; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6883, 2794363, '1546156136.680246', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF735463B3'), 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0)'),
(6884, 2794392, '1546158412.034715', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC08C5D57'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2767.89 Safari/537.36'),
(6885, 2794508, '1546161661.720094', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF2D7B2A92'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2790.59 Safari/537.36'),
(6886, 2794526, '1546163770.024199', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF79D30445'), 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2700.78 Safari/537.36'),
(6887, 2794560, '1546167139.467106', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFBDCC34ED'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6888, 2794591, '1546169069.687987', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB0DD2078'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(6889, 2794594, '1546169106.908071', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBB103755'), 'Mozilla/5.0 (Windows NT 6.1; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6890, 2794656, '1546172537.177223', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF73546394'), 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2737.86 Safari/537.36'),
(6891, 2794723, '1546174518.197812', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFC845461E'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko'),
(6892, 2794770, '1546178073.135631', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF73545CA5'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2689.85 Safari/537.36'),
(6893, 2794837, '1546179968.926584', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF67015D6B'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 10.0; WOW64; Trident/6.0)'),
(6894, 2794989, '1546183556.705279', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF82001EB0'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6895, 2795083, '1546185418.236366', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF735463B2'), 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 10.0; Trident/5.0)'),
(6896, 2795181, '1546189195.020391', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFC08C5D57'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6897, 2795220, '1546190903.603269', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFBB103758'), 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2986.22 Safari/537.36'),
(6898, 2795335, '1546194456.148715', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF54C1B596'), 'Mozilla/5.0 (Windows NT 5.1; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6899, 2795401, '1546196105.383879', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9890'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6900, 2795526, '1546199651.750730', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFBAB6547D'), 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)'),
(6901, 2795547, '1546201968.816934', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9A86'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6902, 2795562, '1546204862.429031', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFCA899AEB'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2971.33 Safari/537.36'),
(6903, 2795600, '1546207058.930764', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFCA898D61'), 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2830.0 Safari/537.36'),
(6904, 2795644, '1546209906.780596', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5A9CC53D'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(6905, 2795676, '1546212498.741723', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFCA898699'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2895.11 Safari/537.36'),
(6906, 2795902, '1546215466.062057', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB168F2A9'), 'Mozilla/5.0 (Windows NT 6.3; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6907, 2795950, '1546218084.430631', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC5D943CB'), 'Mozilla/5.0 (X11; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6908, 2795952, '1546218095.755228', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFCDD9F9C5'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2786.21 Safari/537.36'),
(6909, 2796024, '1546220856.393623', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFBB3A8639'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6910, 2796169, '1546223730.529689', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9B22'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2635.36 Safari/537.36'),
(6911, 2796347, '1546226357.858359', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9A72'), 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2672.58 Safari/537.36'),
(6912, 2796360, '1546226703.068717', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7659142C'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),
(6913, 2796524, '1546229321.605139', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFCED604BF'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2861.81 Safari/537.36'),
(6914, 2796592, '1546231564.785872', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF4077C304'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6915, 2796666, '1546234879.414917', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFB4B7F785'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2700.90 Safari/537.36'),
(6916, 2796766, '1546236816.395178', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9B69'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2855.78 Safari/537.36'),
(6917, 2796888, '1546240297.228124', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9962'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6918, 2796940, '1546242164.384036', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF98ED'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2671.23 Safari/537.36'),
(6919, 2797147, '1546245621.547939', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF29290A82'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2624.7 Safari/537.36'),
(6920, 2797179, '1546247216.386338', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFBD72438F'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2657.24 Safari/537.36'),
(6921, 2797245, '1546250349.417922', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFD8730FFC'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'),
(6922, 2797266, '1546251163.174519', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF58C9138F'), 'Mozilla/5.0 (Windows NT 5.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6923, 2797285, '1546252475.482593', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF67015D46'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2679.51 Safari/537.36'),
(6924, 2797653, '1546269366.497040', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8ACC475F'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6925, 2797729, '1546274622.464580', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF5BE1A38A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:46.0) Gecko/20100101 Firefox/46.0'),
(6926, 2797868, '1546281870.113045', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF4F6A6C99'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(6927, 2797935, '1546285470.254256', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF994C'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2650.83 Safari/537.36'),
(6928, 2798054, '1546290589.888781', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9890'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6929, 2798066, '1546291116.661757', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF1FB15FB5'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'),
(6930, 2798126, '1546295607.753393', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFCA8986B1'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2894.7 Safari/537.36'),
(6931, 2798301, '1546300918.614284', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF31ECD434'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6932, 2798422, '1546306221.361218', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFB168F1CA'), 'Mozilla/5.0 (Windows NT 5.1; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6933, 2798535, '1546311685.354293', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9A54'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6934, 2798697, '1546316816.852684', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFBB103757'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6935, 2798787, '1546321231.967704', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBA4AFE26'), 'Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),
(6936, 2798797, '1546322006.430360', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFC8583472'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6937, 2798959, '1546327342.517759', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9B63'), 'Mozilla/5.0 (Windows NT 6.2; rv:46.0) Gecko/20100101 Firefox/46.0'),
(6938, 2799082, '1546331156.394478', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBACA9916'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(6939, 2799166, '1546332495.437973', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF7667FDDC'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2901.21 Safari/537.36'),
(6940, 2799318, '1546337748.368053', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9BA7'), 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2751.64 Safari/537.36'),
(6941, 2799504, '1546343054.906817', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF29279B92'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2897.99 Safari/537.36'),
(6942, 2799612, '1546348608.590022', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF82001EDE'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6943, 2800017, '1546357159.719375', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFCA899A56'), 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2626.82 Safari/537.36'),
(6944, 2800184, '1546362557.652382', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF82001C4A'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6945, 2800287, '1546367729.294763', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFCAA0288A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2732.27 Safari/537.36'),
(6946, 2800397, '1546373122.453931', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8ACC465E'), 'Mozilla/5.0 (Windows NT 5.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6947, 2800484, '1546378511.813673', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5D367D52'), 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2788.32 Safari/537.36'),
(6948, 2800540, '1546383780.115071', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFCA898DF3'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2694.35 Safari/537.36'),
(6949, 2800799, '1546389117.446222', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFCA899B2F'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2779.78 Safari/537.36'),
(6950, 2801033, '1546394687.273458', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9AC8'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6951, 2801414, '1546400299.718985', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFBB543A56'), 'Mozilla/5.0 (Windows NT 10.0; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6952, 2801688, '1546405804.979383', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9BA1'), 'Mozilla/5.0 (X11; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0'),
(6953, 2802052, '1546412309.874955', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB8A82EA4'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'),
(6954, 2802221, '1546415727.340820', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF76AFCFD7'), 'Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),
(6955, 2802571, '1546422417.115105', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9B77'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko') ;
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(6956, 2802764, '1546427297.897003', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9A35'), 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2927.50 Safari/537.36'),
(6957, 2802902, '1546432386.456435', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF98EA'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6958, 2803024, '1546437534.427493', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF29297313'), 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2923.51 Safari/537.36'),
(6959, 2803158, '1546442928.673157', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF4F6A3069'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0'),
(6960, 2803313, '1546448416.912204', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCA899A10'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.38 Safari/537.36'),
(6961, 2803423, '1546453739.287601', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB2EDBC62'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(6962, 2803434, '1546454112.783977', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF735463F6'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6963, 2803508, '1546459879.231661', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9931'), 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.56 Safari/537.36'),
(6964, 2803605, '1546465593.567135', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9B1C'), 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 10.0; Trident/5.0)'),
(6965, 2803743, '1546471059.270365', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFC983F4CE'), 'Mozilla/5.0 (X11; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2738.79 Safari/537.36'),
(6966, 2803881, '1546476162.583405', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF77A0888A'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2901.49 Safari/537.36'),
(6967, 2804159, '1546481401.104390', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF99A5'), 'Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2828.95 Safari/537.36'),
(6968, 2804506, '1546486475.616335', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9A95'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6969, 2804839, '1546491702.887703', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCB99274B'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(6970, 2804962, '1546493951.059845', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF323EB05F'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(6971, 2805208, '1546497076.118057', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFD9A5CC7E'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2943.50 Safari/537.36'),
(6972, 2805478, '1546502487.251643', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9856'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 10.0; Trident/6.0)'),
(6973, 2805824, '1546507927.672737', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB10A6A8F'), 'Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2888.96 Safari/537.36'),
(6974, 2805891, '1546510447.795628', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF44B7BC21'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(6975, 2805969, '1546513477.780280', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFFCAA6C282'), 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2741.49 Safari/537.36'),
(6976, 2806085, '1546518891.156701', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9976'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2986.98 Safari/537.36'),
(6977, 2806326, '1546524033.708317', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF67015E51'), 'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)'),
(6978, 2806438, '1546529123.782234', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF9BCD'), 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.3; WOW64; Trident/5.0)'),
(6979, 2806559, '1546534339.803593', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFFBD72438F'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6980, 2806577, '1546535240.169420', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5D7D6328'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(6981, 2806641, '1546538870.691665', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF735463BD'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6982, 2806716, '1546543728.679799', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFCA898D2E'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2901.40 Safari/537.36'),
(6983, 2806778, '1546548534.241098', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFC5330126'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(6984, 2806914, '1546553175.538206', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5BE1A32C'), 'Mozilla/5.0 (Windows NT 6.2; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6985, 2807158, '1546557807.369044', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFCA899B5F'), 'Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2773.28 Safari/537.36'),
(6986, 2807256, '1546562510.093184', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9BCD'), 'Mozilla/5.0 (Windows NT 6.2; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(6987, 2807528, '1546572166.382329', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC533C910'), 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 5.1; Trident/6.0)'),
(6988, 2807787, '1546576773.217949', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9BE4'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2643.28 Safari/537.36'),
(6989, 2807921, '1546581051.407620', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF58C91356'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(6990, 2808066, '1546585405.945190', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF73545C93'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2803.39 Safari/537.36'),
(6991, 2808207, '1546589764.390491', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF31ECD635'), 'Mozilla/5.0 (Windows NT 5.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(6992, 2808335, '1546594108.575669', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF99B1'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2782.91 Safari/537.36'),
(6993, 2808541, '1546598219.878849', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF9EFF1521'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(6994, 2808595, '1546601806.797774', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF58C9138F'), 'Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6995, 2808973, '1546618699.841569', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFB168F1FB'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2952.53 Safari/537.36'),
(6996, 2809483, '1546635504.389895', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBEA76E3B'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:51.0) Gecko/20100101 Firefox/51.0'),
(6997, 2810130, '1546657269.955433', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC983F425'), 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2825.70 Safari/537.36'),
(6998, 2810238, '1546661508.660939', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9BB3'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:45.0) Gecko/20100101 Firefox/45.0'),
(6999, 2810336, '1546665777.484155', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF52C21106'), 'Mozilla/5.0 (Windows NT 5.1; rv:50.0) Gecko/20100101 Firefox/50.0'),
(7000, 2810467, '1546669915.095369', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF2927A319'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0'),
(7001, 2810606, '1546674027.828924', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF998E'), 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2699.87 Safari/537.36'),
(7002, 2810827, '1546678171.723453', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF99D4'), 'Mozilla/5.0 (Windows NT 5.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),
(7003, 2811036, '1546682331.892134', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFCA898D2E'), 'Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2847.67 Safari/537.36'),
(7004, 2811187, '1546686475.402431', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF98CE'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:48.0) Gecko/20100101 Firefox/48.0'),
(7005, 2811346, '1546690715.011514', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCA899A2E'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2920.6 Safari/537.36'),
(7006, 2811440, '1546694789.812890', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB635CEC6'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(7007, 2811444, '1546694969.272044', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9A76'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(7008, 2811730, '1546699158.189288', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF8FFF9A4D'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2871.9 Safari/537.36'),
(7009, 2811943, '1546703447.131898', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCA898612'), 'Mozilla/5.0 (Windows NT 6.2; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(7010, 2812151, '1546707583.405920', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF8FFF9A0D'), 'Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2775.46 Safari/537.36'),
(7011, 2812325, '1546714443.750070', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF996A'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; rv:11.0) like Gecko'),
(7012, 2812351, '1546716192.412773', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFFBB10271E'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:48.0) Gecko/20100101 Firefox/48.0'),
(7013, 2812503, '1546720404.535681', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9A1D'), 'Mozilla/5.0 (X11; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2986.86 Safari/537.36'),
(7014, 2812585, '1546724639.690076', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFFC858332E'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2944.20 Safari/537.36'),
(7015, 2812627, '1546728832.282313', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCA8986BE'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0'),
(7016, 2812694, '1546733070.150980', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB168F2B2'), 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:51.0) Gecko/20100101 Firefox/51.0'),
(7017, 2812762, '1546737324.758512', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF73545B2B'), 'Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko'),
(7018, 2812868, '1546741502.311581', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9BB1'), 'Mozilla/5.0 (X11; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2627.52 Safari/537.36'),
(7019, 2812973, '1546745745.540493', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9A1D'), 'Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2975.10 Safari/537.36'),
(7020, 2813222, '1546749896.609458', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9BC4'), 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:51.0) Gecko/20100101 Firefox/51.0'),
(7021, 2813351, '1546754039.848144', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9992'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0'),
(7022, 2813466, '1546758165.884456', 1, 'loginFailInvalidUsername', 'ranhilladmin', 0, UNHEX('00000000000000000000FFFF781DF247'), 'Mozilla/5.0 (X11; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0'),
(7023, 2813575, '1546762252.715147', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFF8FFF9BE7'), 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2770.7 Safari/537.36'),
(7024, 2813666, '1546766360.846377', 1, 'loginFailInvalidUsername', 'ranhill_admin', 0, UNHEX('00000000000000000000FFFF8FFF9A52'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0'),
(7025, 2813900, '1546770505.598933', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8FFF9A72'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:47.0) Gecko/20100101 Firefox/47.0'),
(7026, 2814017, '1546774597.233457', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF9A59'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0'),
(7027, 2814074, '1546778700.859543', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8ACC4593'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0'),
(7028, 2814136, '1546782839.443089', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF99C1'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2659.6 Safari/537.36'),
(7029, 2814289, '1546787035.791647', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF52C21184'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:51.0) Gecko/20100101 Firefox/51.0'),
(7030, 2814383, '1546791331.342297', 1, 'loginFailValidUsername', 'adminranhill', 1, UNHEX('00000000000000000000FFFF8FFF9B6E'), 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.3; WOW64; Trident/5.0)'),
(7031, 2814523, '1546795541.768343', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF9A7634AE'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(7032, 2814528, '1546795675.110761', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF99DE'), 'Mozilla/5.0 (X11; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2925.42 Safari/537.36'),
(7033, 2814646, '1546800052.294082', 1, 'loginFailInvalidUsername', 'ranhillranhill', 0, UNHEX('00000000000000000000FFFF8FFF9B1D'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2889.64 Safari/537.36'),
(7034, 2814747, '1546804241.495211', 1, 'loginFailInvalidUsername', 'ranhillcom.my', 0, UNHEX('00000000000000000000FFFFB12BF711'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0'),
(7035, 2818937, '1546907380.493555', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2D408B12'), 'Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),
(7036, 2824740, '1547031590.677299', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC0A9C668'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(7037, 2827663, '1547128296.080180', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF59BC7C77'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7038, 2827673, '1547128538.608542', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5FB3182C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7039, 2827681, '1547129242.180592', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF2E272E13'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7040, 2827762, '1547133207.883399', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2EAB968A'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),
(7041, 2827829, '1547135663.187733', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2570A427'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7042, 2827899, '1547137356.978401', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF52D07AC3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7043, 2827905, '1547137420.832153', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF050348BE'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7044, 2828047, '1547139420.678958', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFB0346204'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7045, 2828310, '1547150032.929458', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF5D99EC52'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7046, 2828337, '1547152572.965379', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF543462B5'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7047, 2828402, '1547155286.738441', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF50F068E2'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7048, 2828461, '1547158147.456366', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFBCA2A681'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7049, 2828947, '1547175639.143347', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF59B2E12F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7050, 2829281, '1547186873.183230', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5F541188'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7051, 2829293, '1547187100.055445', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF4D5BC04E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7052, 2829399, '1547189137.678124', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF5FAD22C0'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7053, 2829711, '1547192437.764749', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF3E7AF57A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7054, 2829819, '1547194792.732750', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF5C32C65A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7055, 2830342, '1547207867.283037', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBCA2A649'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0') ;
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(7056, 2830425, '1547211279.120928', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF6DA50741'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7057, 2830473, '1547212781.420078', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF66B0F484'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7058, 2830802, '1547219607.334280', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB2B8B047'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7059, 2831042, '1547226768.199405', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFB912709E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7060, 2831148, '1547229063.186912', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF676F531A'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(7061, 2831254, '1547234610.443936', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5F1C6AA5'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7062, 2831290, '1547236956.591096', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFBCA2A659'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7063, 2831330, '1547238765.388490', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF931EB65F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7064, 2831350, '1547240024.630197', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF4E5530F3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7065, 2832466, '1547284492.362930', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFB03BCFA4'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7066, 2832564, '1547286989.709123', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5FAE7CA9'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7067, 2832662, '1547290914.338249', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFB951F812'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7068, 2832664, '1547290929.454113', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5FA70327'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7069, 2832805, '1547294529.845064', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2EA53F9E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7070, 2832910, '1547298092.193783', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF02845311'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7071, 2832957, '1547299851.234042', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFD53B9E1E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7072, 2832959, '1547299856.643605', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF52977B10'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7073, 2832999, '1547301524.967916', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFD90F97EC'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7074, 2833041, '1547303296.918542', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB2ECF807'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7075, 2833119, '1547304987.485342', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFB06A0DE1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7076, 2833409, '1547313476.983100', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5F1B43C5'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7077, 2833679, '1547322977.379005', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFC31A5297'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7078, 2834633, '1547363619.528849', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFB22E7C0E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7079, 2834669, '1547364543.891654', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5FBD4EFC'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7080, 2834865, '1547373487.407564', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFB2F9F537'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7081, 2834956, '1547377907.555447', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFF4E55B243'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7082, 2835041, '1547380709.273644', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2E2732B9'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7083, 2835159, '1547384000.952313', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFD45A31DF'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7084, 2835304, '1547391776.401204', 1, 'loginFailInvalidUsername', 'www.ranhill.com', 0, UNHEX('00000000000000000000FFFFC31A5297'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7085, 2837119, '1547451476.247175', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC170D569'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),
(7086, 2842963, '1547640302.151247', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB956A46F'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),
(7087, 2843415, '1547656493.461639', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7D1BFBB4'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),
(7088, 2849255, '1547848567.842290', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF25E9559B'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(7089, 2850506, '1547936295.003093', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF0E664365'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(7090, 2852460, '1548021000.429639', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBCD3E276'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(7091, 2854465, '1548118232.798705', 0, 'loginOK', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7092, 2854501, '1548119321.203948', 0, 'logout', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7093, 2861063, '1548317975.503244', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBE80966E'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),
(7094, 2862484, '1548385152.591901', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB4D2C936'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(7095, 2865178, '1548458439.717340', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2E13641A'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),
(7096, 2866806, '1548547236.616777', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC9314AAA'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),
(7097, 2870644, '1548672410.656681', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2F3472F8'), 'Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),
(7098, 2871937, '1548723268.932066', 0, 'loginOK', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7099, 2872097, '1548725716.022757', 0, 'logout', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7100, 2872908, '1548742962.270106', 0, 'loginOK', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7101, 2872919, '1548743153.017082', 0, 'logout', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7102, 2873695, '1548758793.085283', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF028756EF'), 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),
(7103, 2875668, '1548818828.740525', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF3E6A7A5A'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),
(7104, 2877865, '1548868059.822430', 1, 'loginFailInvalidUsername', 'mahfuz', 0, UNHEX('00000000000000000000FFFF12B80D08'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7105, 2877867, '1548868064.084682', 1, 'loginFailInvalidUsername', 'mahfuz@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF12B80D08'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7106, 2877869, '1548868067.980952', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF12B80D08'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7107, 2877871, '1548868071.938001', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF12B80D08'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7108, 2877873, '1548868075.879505', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF12B80D08'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7109, 2877875, '1548868079.748438', 1, 'loginFailInvalidUsername', 'dihasayang', 0, UNHEX('00000000000000000000FFFF12B80D08'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7110, 2878053, '1548879429.712910', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF83C4C01F'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),
(7111, 2880091, '1548938825.003529', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFCAB3030E'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),
(7112, 2882073, '1549006888.456792', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF1B495ADA'), 'Mozilla/5.0 (Windows NT 5.2; WOW64; x64) AppleWebKit/532.91.44 (KHTML, like Gecko) Chrome/57.4.0360.5632 Safari/534.52 OPR/40.6.1182.6454'),
(7113, 2882092, '1549007613.223809', 1, 'loginFailInvalidUsername', 'jake', 0, UNHEX('00000000000000000000FFFF0EA9C890'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.69.16 (KHTML, like Gecko) Chrome/55.1.6750.0488 Safari/532.08 OPR/42.9.4037.9765'),
(7114, 2882109, '1549008175.684313', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF0EE7B992'), 'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/533.06.59 (KHTML, like Gecko) Version/5.6.1 Safari/532.14'),
(7115, 2882137, '1549009376.062155', 1, 'loginFailInvalidUsername', 'wpupdateuser', 0, UNHEX('00000000000000000000FFFF750404F5'), 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_41_98) AppleWebKit/532.82.39 (KHTML, like Gecko) Chrome/56.3.7063.2791 Safari/533.22 Edge/36.16121'),
(7116, 2882153, '1549009971.677248', 1, 'loginFailInvalidUsername', 'phukotler', 0, UNHEX('00000000000000000000FFFF0EBB0A23'), 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/534.08.61 (KHTML, like Gecko) Version/4.6.1 Safari/533.26'),
(7117, 2882176, '1549010630.002986', 1, 'loginFailInvalidUsername', 'testing', 0, UNHEX('00000000000000000000FFFF71AD0633'), 'Mozilla/5.0 (Windows NT 6.2; Win64) AppleWebKit/530.63.00 (KHTML, like Gecko) Chrome/55.0.5123.0851 Safari/531.93 OPR/41.9.3400.8138'),
(7118, 2882205, '1549011260.030310', 1, 'loginFailInvalidUsername', 'Admin', 0, UNHEX('00000000000000000000FFFF0EA28DAC'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.88.31 (KHTML, like Gecko) Chrome/56.3.8053.4325 Safari/534.49 OPR/44.5.0876.5048'),
(7119, 2882268, '1549012423.694228', 1, 'loginFailInvalidUsername', 'testuser', 0, UNHEX('00000000000000000000FFFF71A2A106'), 'Mozilla/5.0 (Windows NT 6.2; Win64) AppleWebKit/530.67.14 (KHTML, like Gecko) Chrome/55.0.5557.0285 Safari/531.97 OPR/41.9.4835.8562'),
(7120, 2882337, '1549013604.426973', 1, 'loginFailInvalidUsername', 'kenneth', 0, UNHEX('00000000000000000000FFFF0EA9D715'), 'Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/531.75.22 (KHTML, like Gecko) Chrome/55.1.6469.1197 Safari/532.05 OPR/42.0.5646.9374'),
(7121, 2882347, '1549014166.800377', 1, 'loginFailInvalidUsername', 'test123', 0, UNHEX('00000000000000000000FFFF71ADAC90'), 'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/532.80.37 (KHTML, like Gecko) Version/5.3.8 Safari/530.72'),
(7122, 2882385, '1549014760.091953', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF71AC16A0'), 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_57_00) AppleWebKit/534.16.69 (KHTML, like Gecko) Chrome/53.6.1700.7072 Safari/530.76 Edge/34.82504'),
(7123, 2882450, '1549016394.217448', 1, 'loginFailInvalidUsername', 'demo', 0, UNHEX('00000000000000000000FFFF71AC1991'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.73.26) Gecko/20184309 Firefox/45.73.26'),
(7124, 2882495, '1549017018.372951', 1, 'loginFailInvalidUsername', 'manager', 0, UNHEX('00000000000000000000FFFF0EF025F8'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.18.65 (KHTML, like Gecko) Chrome/53.6.1654.5382 Safari/534.57'),
(7125, 2882505, '1549017557.979218', 1, 'loginFailInvalidUsername', 'badmin', 0, UNHEX('00000000000000000000FFFF7B14E3CF'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/530.69.16 (KHTML, like Gecko) Chrome/55.1.5733.0461 Safari/532.08 OPR/42.9.4010.9748'),
(7126, 2882546, '1549019165.148554', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF71AD6B7D'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.13.60 (KHTML, like Gecko) Chrome/53.6.1116.5844 Safari/534.53'),
(7127, 2882547, '1549019170.493689', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF71AD6B7D'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.13.60 (KHTML, like Gecko) Chrome/53.6.1116.5844 Safari/534.53'),
(7128, 2882561, '1549019777.591684', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7B1410DE'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_35_88; rv:45.76.29) Gecko/20131578 Firefox/45.76.29'),
(7129, 2882604, '1549021068.048809', 1, 'loginFailInvalidUsername', '123123', 0, UNHEX('00000000000000000000FFFF71A0B548'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.60.13) Gecko/20172941 Firefox/45.60.13'),
(7130, 2882654, '1549024513.846790', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF71A3BA27'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.78.31 (KHTML, like Gecko) Chrome/56.3.8024.4396 Safari/534.49 OPR/44.4.0747.5019'),
(7131, 2882681, '1549025753.412350', 1, 'loginFailInvalidUsername', 'teste', 0, UNHEX('00000000000000000000FFFF71ACF6C0'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_35_72) AppleWebKit/531.76.23 (KHTML, like Gecko) Chrome/56.1.6409.1137 Safari/532.06 Edge/36.00587'),
(7132, 2882713, '1549027123.507937', 1, 'loginFailInvalidUsername', 'AnonymousFox', 0, UNHEX('00000000000000000000FFFF7B1049A6'), 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_57_09) AppleWebKit/534.05.68 (KHTML, like Gecko) Chrome/53.6.1705.6077 Safari/530.76 Edge/34.72563'),
(7133, 2882732, '1549028279.465396', 1, 'loginFailInvalidUsername', 'Admin', 0, UNHEX('00000000000000000000FFFF7461D3AA'), 'Mozilla/5.0 (Windows NT 5.0; rv:52.53.00) Gecko/20141527 Firefox/52.53.00'),
(7134, 2882753, '1549030002.281362', 1, 'loginFailInvalidUsername', 'testuser', 0, UNHEX('00000000000000000000FFFFABEEF327'), 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_35_82) AppleWebKit/531.76.23 (KHTML, like Gecko) Chrome/56.2.7469.1297 Safari/532.16 Edge/36.00189'),
(7135, 2882758, '1549030641.533116', 1, 'loginFailInvalidUsername', 'asdasd', 0, UNHEX('00000000000000000000FFFF71ADBC32'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.83.36 (KHTML, like Gecko) Chrome/56.3.9578.4841 Safari/534.43 OPR/44.5.0291.5563'),
(7136, 2882804, '1549033650.456779', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7500763E'), 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_41_04) AppleWebKit/533.09.52 (KHTML, like Gecko) Chrome/53.6.1126.6498 Safari/530.70 Edge/34.76765'),
(7137, 2882809, '1549034273.883966', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF1B482DB1'), 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_42_99) AppleWebKit/532.83.30 (KHTML, like Gecko) Chrome/56.2.7103.2931 Safari/533.23 Edge/36.17529'),
(7138, 2882824, '1549034913.959887', 1, 'loginFailInvalidUsername', 'Admin', 0, UNHEX('00000000000000000000FFFF0EF864A4'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_31_84) AppleWebKit/532.80.33 (KHTML, like Gecko) Chrome/57.4.9239.4501 Safari/534.51'),
(7139, 2882852, '1549036171.023189', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF0EA2B83F'), 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_45_98) AppleWebKit/533.94.57 (KHTML, like Gecko) Chrome/57.5.0509.6871 Safari/530.64 Edge/34.60502'),
(7140, 2882900, '1549038982.221500', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF0EBB022C'), 'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/532.82.39 (KHTML, like Gecko) Version/5.3.8 Safari/530.74'),
(7141, 2882938, '1549040603.850131', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFABF1568E'), 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_32_89) AppleWebKit/531.73.20 (KHTML, like Gecko) Chrome/56.1.6138.1866 Safari/532.12 Edge/36.07884'),
(7142, 2882963, '1549041254.449228', 1, 'loginFailInvalidUsername', 'guest', 0, UNHEX('00000000000000000000FFFF71ACD8E9'), 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:52.58.00) Gecko/20169698 Firefox/52.58.00'),
(7143, 2882987, '1549043045.900429', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF1B485253'), 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_46_99) AppleWebKit/533.95.58 (KHTML, like Gecko) Chrome/57.5.0718.6080 Safari/530.66 Edge/34.61598'),
(7144, 2883008, '1549044271.357502', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF71ADABA3'), 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:52.55.08) Gecko/20166320 Firefox/52.55.08'),
(7145, 2883015, '1549044894.431068', 1, 'loginFailInvalidUsername', 'testuser', 0, UNHEX('00000000000000000000FFFFDEFC2E16'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.17.64 (KHTML, like Gecko) Chrome/53.6.1587.5215 Safari/534.56'),
(7146, 2883016, '1549044894.453757', 1, 'loginFailInvalidUsername', 'testuser', 0, UNHEX('00000000000000000000FFFFDEFC2E16'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.17.64 (KHTML, like Gecko) Chrome/53.6.1587.5215 Safari/534.56'),
(7147, 2883079, '1549047160.797666', 1, 'loginFailInvalidUsername', 'demo', 0, UNHEX('00000000000000000000FFFF7B1517F3'), 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/533.95.42 (KHTML, like Gecko) Version/5.3.8 Safari/531.87'),
(7148, 2883087, '1549047790.475518', 1, 'loginFailInvalidUsername', 'admin1', 0, UNHEX('00000000000000000000FFFF71B8669C'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_39_82) AppleWebKit/532.98.41 (KHTML, like Gecko) Chrome/57.4.9095.5367 Safari/534.59'),
(7149, 2883101, '1549048952.386689', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF71A2BA85'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.10.67 (KHTML, like Gecko) Chrome/53.6.1822.5550 Safari/534.59'),
(7150, 2883102, '1549048952.386857', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF71A2BA85'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.10.67 (KHTML, like Gecko) Chrome/53.6.1822.5550 Safari/534.59'),
(7151, 2883143, '1549051744.957773', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7B109758'), 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.66.19) Gecko/20168977 Firefox/52.66.19'),
(7152, 2883147, '1549051914.306772', 1, 'loginFailInvalidUsername', 'affendy', 0, UNHEX('00000000000000000000FFFF362794E8'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7153, 2883149, '1549051934.267870', 1, 'loginFailInvalidUsername', 'affendy@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E654'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7154, 2883151, '1549051941.381244', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5776740C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7155, 2883153, '1549051949.072393', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC6506'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0') ;
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(7156, 2883163, '1549052324.369132', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF7B14DFEF'), 'Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/531.71.28 (KHTML, like Gecko) Chrome/55.1.6060.1798 Safari/532.01 OPR/42.0.5257.9985'),
(7157, 2883172, '1549053477.422262', 1, 'loginFailInvalidUsername', '123', 0, UNHEX('00000000000000000000FFFF0EE2E0C1'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_33_85) AppleWebKit/532.81.44 (KHTML, like Gecko) Chrome/57.4.9357.4629 Safari/534.52'),
(7158, 2883210, '1549054061.229196', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFFABF1A3EC'), 'Mozilla/5.0 (Windows NT 6.3) AppleWebKit/534.03.50 (KHTML, like Gecko) Chrome/57.4.9129.4857 Safari/534.32'),
(7159, 2883217, '1549054667.945552', 1, 'loginFailInvalidUsername', 'patricia', 0, UNHEX('00000000000000000000FFFF71A31026'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.87.30 (KHTML, like Gecko) Chrome/56.3.8923.4295 Safari/534.48 OPR/44.5.0746.5018'),
(7160, 2883226, '1549055420.095281', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF252EFCFD'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(7161, 2883229, '1549055834.331448', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF0EBB3D1F'), 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/535.13.76 (KHTML, like Gecko) Version/4.7.2 Safari/533.31'),
(7162, 2883279, '1549059310.490573', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF0EA1074D'), 'Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/532.87.30 (KHTML, like Gecko) Chrome/57.4.9879.4141 Safari/534.57 OPR/44.5.0692.6964'),
(7163, 2883286, '1549059984.578722', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF71B236C1'), 'Mozilla/5.0 (Windows NT 5.2; WOW64; x64) AppleWebKit/532.83.30 (KHTML, like Gecko) Version/5.2.7 Safari/530.75'),
(7164, 2883312, '1549061682.887160', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF0EA23A0E'), 'Mozilla/5.0 (Windows NT 5.2; WOW64; x64) AppleWebKit/532.84.31 (KHTML, like Gecko) Version/5.2.7 Safari/530.76'),
(7165, 2883321, '1549062305.236615', 1, 'loginFailInvalidUsername', 'demo', 0, UNHEX('00000000000000000000FFFFDEFC7032'), 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/535.21.74 (KHTML, like Gecko) Chrome/53.8.3329.8691 Safari/531.92'),
(7166, 2883330, '1549062928.766223', 1, 'loginFailInvalidUsername', '1234', 0, UNHEX('00000000000000000000FFFF746B1AB9'), 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/533.95.42 (KHTML, like Gecko) Version/5.4.8 Safari/531.87'),
(7167, 2883346, '1549064110.054822', 1, 'loginFailInvalidUsername', 'useradmww2', 0, UNHEX('00000000000000000000FFFFDEFC25F4'), 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/535.25.78 (KHTML, like Gecko) Chrome/53.7.3713.8085 Safari/531.86'),
(7168, 2883377, '1549065267.243180', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFDEFE22C6'), 'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/532.85.32 (KHTML, like Gecko) Version/5.3.7 Safari/530.78'),
(7169, 2883443, '1549067076.996743', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF75015242'), 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:52.51.04) Gecko/20163216 Firefox/52.51.04'),
(7170, 2883467, '1549067683.957753', 1, 'loginFailInvalidUsername', 'Admin', 0, UNHEX('00000000000000000000FFFF0EF8753F'), 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_31_88) AppleWebKit/532.82.29 (KHTML, like Gecko) Chrome/56.2.7017.1745 Safari/532.11 Edge/36.15668'),
(7171, 2883566, '1549070731.999910', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF0EA9EBC3'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.18.65 (KHTML, like Gecko) Chrome/53.6.0620.5358 Safari/534.57'),
(7172, 2883597, '1549071335.630513', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF7B1047C4'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_32_85) AppleWebKit/532.90.43 (KHTML, like Gecko) Chrome/57.4.0232.5504 Safari/534.51 Edge/34.67836'),
(7173, 2883612, '1549071963.143992', 1, 'loginFailInvalidUsername', 'testuser', 0, UNHEX('00000000000000000000FFFF0EBB45B0'), 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/534.07.54 (KHTML, like Gecko) Chrome/57.4.9528.4256 Safari/534.46'),
(7174, 2883664, '1549073761.764027', 1, 'loginFailInvalidUsername', 'editor', 0, UNHEX('00000000000000000000FFFF0EE7B8B9'), 'Mozilla/5.0 (Windows NT 6.0; rv:45.60.07) Gecko/20158896 Firefox/45.60.07'),
(7175, 2883710, '1549075033.505250', 1, 'loginFailInvalidUsername', 'prova', 0, UNHEX('00000000000000000000FFFF0EA284C6'), 'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/532.87.34 (KHTML, like Gecko) Version/5.3.7 Safari/530.70'),
(7176, 2883758, '1549076317.168031', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF71ADF109'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_23_70) AppleWebKit/530.65.12 (KHTML, like Gecko) Chrome/55.1.5399.0027 Safari/532.04 Edge/36.98494'),
(7177, 2883784, '1549077085.377291', 1, 'loginFailInvalidUsername', 'Admin', 0, UNHEX('00000000000000000000FFFF74651F9C'), 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/534.06.69 (KHTML, like Gecko) Version/4.6.1 Safari/532.23'),
(7178, 2883808, '1549077735.808802', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7B185BB5'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.11.68 (KHTML, like Gecko) Chrome/53.5.0979.5707 Safari/534.51'),
(7179, 2883848, '1549078966.758114', 1, 'loginFailInvalidUsername', 'guest', 0, UNHEX('00000000000000000000FFFF7B15699A'), 'Mozilla/5.0 (Windows NT 5.1; WOW64; x64) AppleWebKit/531.73.21 (KHTML, like Gecko) Chrome/55.1.6296.1924 Safari/532.03 OPR/42.0.5473.9101'),
(7180, 2883889, '1549080260.948136', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF7B1562FD'), 'Mozilla/5.0 (Windows NT 5.0; rv:52.57.04) Gecko/20145601 Firefox/52.57.04'),
(7181, 2883962, '1549082088.454208', 1, 'loginFailInvalidUsername', 'test1', 0, UNHEX('00000000000000000000FFFF7B180E99'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.75.38 (KHTML, like Gecko) Chrome/56.3.8714.4086 Safari/534.45 OPR/44.4.0437.5709'),
(7182, 2883998, '1549082808.576418', 1, 'loginFailInvalidUsername', 'schatzi', 0, UNHEX('00000000000000000000FFFFABEE3247'), 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/534.02.59 (KHTML, like Gecko) Chrome/57.4.9034.4761 Safari/534.41'),
(7183, 2884065, '1549084686.556280', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFABF040F7'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_22_85; rv:45.73.26) Gecko/20138305 Firefox/45.73.26'),
(7184, 2884092, '1549085349.555024', 1, 'loginFailInvalidUsername', '0x1999', 0, UNHEX('00000000000000000000FFFF0EBAF56E'), 'Mozilla/5.0 (Windows NT 5.0; rv:52.48.95) Gecko/20147718 Firefox/52.48.95'),
(7185, 2884126, '1549086678.632141', 1, 'loginFailInvalidUsername', 'dexter', 0, UNHEX('00000000000000000000FFFF0EEA993E'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/530.63.10 (KHTML, like Gecko) Chrome/55.1.5201.0938 Safari/532.03 OPR/41.9.4488.9116'),
(7186, 2884153, '1549087838.857813', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF0EBA38A6'), 'Mozilla/5.0 (Windows NT 5.0; rv:52.56.03) Gecko/20144590 Firefox/52.56.03'),
(7187, 2884173, '1549088493.044764', 1, 'loginFailInvalidUsername', 'wpmu', 0, UNHEX('00000000000000000000FFFF7B15472F'), 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.55.18) Gecko/20167021 Firefox/52.55.18'),
(7188, 2884203, '1549089673.534427', 1, 'loginFailInvalidUsername', 'user', 0, UNHEX('00000000000000000000FFFF0EACB1B5'), 'Mozilla/5.0 (Windows NT 5.2; WOW64; x64) AppleWebKit/531.75.22 (KHTML, like Gecko) Chrome/56.2.7321.1059 Safari/532.15 OPR/42.0.5609.0336'),
(7189, 2884228, '1549091463.057330', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF0EBAE153'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.10.67 (KHTML, like Gecko) Chrome/53.6.1866.5594 Safari/534.59'),
(7190, 2884242, '1549092124.839795', 1, 'loginFailInvalidUsername', '123', 0, UNHEX('00000000000000000000FFFF0EE8BBFC'), 'Mozilla/5.0 (Windows NT 6.2; Win64) AppleWebKit/530.60.17 (KHTML, like Gecko) Chrome/55.0.5842.0570 Safari/532.90 OPR/41.9.4129.9857'),
(7191, 2884245, '1549092665.534977', 1, 'loginFailInvalidUsername', 'magico', 0, UNHEX('00000000000000000000FFFF71A2A521'), 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/533.09.46 (KHTML, like Gecko) Chrome/57.4.9880.4518 Safari/533.39'),
(7192, 2884335, '1549094206.506693', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF71ADB5E3'), 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_44_97) AppleWebKit/533.93.46 (KHTML, like Gecko) Chrome/57.5.0570.5842 Safari/530.63 Edge/34.69209'),
(7193, 2884389, '1549094742.098252', 1, 'loginFailInvalidUsername', 'admin2', 0, UNHEX('00000000000000000000FFFF7506D528'), 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_25_72) AppleWebKit/530.67.14 (KHTML, like Gecko) Chrome/55.1.5573.0201 Safari/532.06 Edge/36.90231'),
(7194, 2884398, '1549095294.748582', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7B14151D'), 'Mozilla/5.0 (Windows NT 5.2; WOW64; x64) AppleWebKit/532.84.31 (KHTML, like Gecko) Version/5.2.7 Safari/530.76'),
(7195, 2884405, '1549095881.591863', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF0EBAC5D2'), 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.29.72 (KHTML, like Gecko) Chrome/54.8.3102.8474 Safari/531.90'),
(7196, 2884422, '1549097395.942675', 1, 'loginFailInvalidUsername', 'student', 0, UNHEX('00000000000000000000FFFF0EA99E62'), 'Mozilla/5.0 (Windows NT 6.0; rv:45.66.13) Gecko/20154390 Firefox/45.66.13'),
(7197, 2884426, '1549097952.796164', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF71ADFDA7'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.65.18) Gecko/20177942 Firefox/45.65.18'),
(7198, 2884452, '1549099279.313313', 1, 'loginFailInvalidUsername', 'safdar', 0, UNHEX('00000000000000000000FFFFC7F9E64B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7199, 2884457, '1549099311.916816', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC7F9E646'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7200, 2884459, '1549099319.537859', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC3E42DB0'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7201, 2884462, '1549099325.149312', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF332686BD'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7202, 2884464, '1549099330.119762', 1, 'loginFailInvalidUsername', '75mech77', 0, UNHEX('00000000000000000000FFFFB9DC6506'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7203, 2884479, '1549100404.900181', 1, 'loginFailInvalidUsername', 'dexter', 0, UNHEX('00000000000000000000FFFF0EBA2F49'), 'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/532.80.37 (KHTML, like Gecko) Version/5.3.8 Safari/530.72'),
(7204, 2884484, '1549100943.176541', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF71ACCFF4'), 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_58_01) AppleWebKit/534.07.60 (KHTML, like Gecko) Chrome/53.6.1905.6177 Safari/530.77 Edge/34.73550'),
(7205, 2884499, '1549101496.284871', 1, 'loginFailInvalidUsername', 'testtest', 0, UNHEX('00000000000000000000FFFF0EE2F5AB'), 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/534.08.61 (KHTML, like Gecko) Version/4.6.1 Safari/532.26'),
(7206, 2884543, '1549103216.308293', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF71AC1119'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.62.24) Gecko/20173707 Firefox/45.62.24'),
(7207, 2884550, '1549103877.069564', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF7B10475D'), 'Mozilla/5.0 (Windows NT 5.0; rv:52.47.94) Gecko/20145704 Firefox/52.47.94'),
(7208, 2884555, '1549104443.154123', 1, 'loginFailInvalidUsername', 'roottn', 0, UNHEX('00000000000000000000FFFF746272A6'), 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.71.24) Gecko/20183657 Firefox/45.71.24'),
(7209, 2884565, '1549105048.258723', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFABE44CED'), 'Mozilla/5.0 (Windows NT 5.2; WOW64; x64) AppleWebKit/532.89.36 (KHTML, like Gecko) Version/5.2.7 Safari/530.71'),
(7210, 2884574, '1549105656.906023', 1, 'loginFailInvalidUsername', 'test', 0, UNHEX('00000000000000000000FFFF7500A2A8'), 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_35_82) AppleWebKit/532.86.23 (KHTML, like Gecko) Chrome/56.2.7430.1167 Safari/532.15 Edge/36.19893'),
(7211, 2884590, '1549106188.666595', 1, 'loginFailInvalidUsername', 'editor', 0, UNHEX('00000000000000000000FFFF1B4C0EC5'), 'Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/534.17.60 (KHTML, like Gecko) Version/4.7.2 Safari/533.25'),
(7212, 2884607, '1549107131.867449', 1, 'loginFailInvalidUsername', '123456', 0, UNHEX('00000000000000000000FFFF71AD6CF9'), 'Mozilla/5.0 (Windows NT 6.2; WOW64; x64) AppleWebKit/531.83.36 (KHTML, like Gecko) Chrome/56.3.9589.4751 Safari/534.43 OPR/44.5.0202.5574'),
(7213, 2884716, '1549113046.799440', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBAD36E4E'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(7214, 2885920, '1549171009.128075', 1, 'loginFailInvalidUsername', 'aninie', 0, UNHEX('00000000000000000000FFFFD18D2DD4'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7215, 2885923, '1549171014.611895', 1, 'loginFailInvalidUsername', 'aninie@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF330F77BF'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7216, 2885925, '1549171029.582921', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC02A741B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7217, 2885927, '1549171034.542861', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFD18D2DD4'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7218, 2885929, '1549171042.208703', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC6623895'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7219, 2887183, '1549214207.257257', 1, 'loginFailInvalidUsername', 'amran', 0, UNHEX('00000000000000000000FFFFC7F9E644'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7220, 2887188, '1549214219.789601', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF330F5A93'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7221, 2887190, '1549214225.140318', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF555DDACC'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7222, 2887192, '1549214231.202639', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E650'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7223, 2887194, '1549214238.626181', 1, 'loginFailInvalidUsername', 'sunshine', 0, UNHEX('00000000000000000000FFFF334B42FA'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7224, 2887345, '1549225725.032461', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBE7C22DD'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(7225, 2888543, '1549268404.121236', 0, 'loginOK', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7226, 2888559, '1549269191.567611', 0, 'logout', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),
(7227, 2890276, '1549345815.673113', 1, 'loginFailInvalidUsername', 'testing', 0, UNHEX('00000000000000000000FFFF836CD174'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7228, 2891153, '1549381389.498437', 1, 'loginFailInvalidUsername', 'nurulhp', 0, UNHEX('00000000000000000000FFFFC2442C58'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7229, 2891158, '1549381435.216364', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF8BA23E69'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7230, 2891160, '1549381443.167161', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF4113A782'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7231, 2891162, '1549381449.606732', 1, 'loginFailInvalidUsername', '21776', 0, UNHEX('00000000000000000000FFFFB9DC650F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7232, 2891373, '1549393274.953201', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF80C75C85'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7233, 2891717, '1549413059.255932', 1, 'loginFailInvalidUsername', 'nizam.rpt', 0, UNHEX('00000000000000000000FFFFC02A7419'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7234, 2891725, '1549413085.236412', 1, 'loginFailInvalidUsername', 'syafiqadam03', 0, UNHEX('00000000000000000000FFFFB9A5A8E5'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7235, 2891957, '1549425439.437486', 1, 'loginFailInvalidUsername', 'ramizu', 0, UNHEX('00000000000000000000FFFFC02A7419'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7236, 2891959, '1549425443.334898', 1, 'loginFailInvalidUsername', 'ramizu@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC02A7419'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7237, 2891961, '1549425447.583431', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFAB19C14E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7238, 2891963, '1549425451.163856', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFAB19C14E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7239, 2891965, '1549425454.776541', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFAB19C14E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7240, 2891967, '1549425459.344634', 1, 'loginFailInvalidUsername', 'ramizu', 0, UNHEX('00000000000000000000FFFF330F3812'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7241, 2892328, '1549429206.035954', 1, 'loginFailInvalidUsername', 'muhad', 0, UNHEX('00000000000000000000FFFFB32B869C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7242, 2892330, '1549429221.690437', 1, 'loginFailInvalidUsername', 'muhad@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC02A7412'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7243, 2892332, '1549429229.094971', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF23007F34'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7244, 2892334, '1549429234.457805', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC6520'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7245, 2892336, '1549429241.256635', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF330F3553'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7246, 2892338, '1549429247.908808', 1, 'loginFailInvalidUsername', 'joh598', 0, UNHEX('00000000000000000000FFFFC7F9E647'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7247, 2893028, '1549454315.646689', 1, 'loginFailInvalidUsername', 'sharina', 0, UNHEX('00000000000000000000FFFFAC60760E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7248, 2893030, '1549454338.462201', 1, 'loginFailInvalidUsername', 'sharina@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9DC651C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7249, 2893032, '1549454342.959620', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF334DB1C2'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7250, 2893034, '1549454347.891285', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF334DB1C2'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7251, 2893036, '1549454351.537833', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF334DB1C2'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7252, 2893038, '1549454362.366298', 1, 'loginFailInvalidUsername', 'ruffedge', 0, UNHEX('00000000000000000000FFFFB9DC653A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7253, 2893422, '1549469647.624641', 1, 'loginFailInvalidUsername', 'nor.asyikin', 0, UNHEX('00000000000000000000FFFF55F8E3A3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7254, 2893424, '1549469654.259746', 1, 'loginFailInvalidUsername', 'nor.asyikin@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9DF3E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7255, 2893426, '1549469660.087200', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF334D0050'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0') ;
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(7256, 2893428, '1549469666.496533', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF55F8E3A3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7257, 2893430, '1549469671.565681', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC3B00317'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7258, 2893432, '1549469677.301197', 1, 'loginFailInvalidUsername', 'asyikin85', 0, UNHEX('00000000000000000000FFFF68DA3F4B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7259, 2893843, '1549487014.985049', 1, 'loginFailInvalidUsername', 'rashid@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC39015CE'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7260, 2893845, '1549487020.693669', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC7F9DF4E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7261, 2893847, '1549487027.083937', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC7F9DF4E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7262, 2893849, '1549487039.006700', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC651B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7263, 2893851, '1549487045.296871', 1, 'loginFailInvalidUsername', 'arsayu', 0, UNHEX('00000000000000000000FFFF362794EA'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7264, 2893947, '1549493400.216911', 1, 'loginFailInvalidUsername', 'ganl', 0, UNHEX('00000000000000000000FFFFB9687807'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7265, 2893949, '1549493405.525682', 1, 'loginFailInvalidUsername', 'ganl@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9687807'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7266, 2893951, '1549493411.084704', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC650D'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7267, 2893953, '1549493415.360969', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF4DF7B5A2'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7268, 2893955, '1549493419.093126', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6516'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7269, 2893957, '1549493422.598677', 1, 'loginFailInvalidUsername', 'bishop11', 0, UNHEX('00000000000000000000FFFFB9DC6516'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7270, 2894910, '1549514198.122039', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFC6015854'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7271, 2896719, '1549562525.045749', 1, 'loginFailInvalidUsername', 'judywong', 0, UNHEX('00000000000000000000FFFF68DA3F4B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7272, 2896721, '1549562531.345631', 1, 'loginFailInvalidUsername', 'judywong@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6521'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7273, 2896723, '1549562545.734115', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC7F9E647'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7274, 2896725, '1549562555.143250', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFD9B64EB1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7275, 2896727, '1549562567.896985', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E64A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7276, 2896866, '1549572676.471656', 1, 'loginFailInvalidUsername', 'iqbal', 0, UNHEX('00000000000000000000FFFFB9DC6518'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7277, 2896868, '1549572681.701416', 1, 'loginFailInvalidUsername', 'iqbal@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E64F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7278, 2896873, '1549572693.372888', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF8DFFA224'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7279, 2896875, '1549572719.251198', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6522'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7280, 2897578, '1549599886.173100', 1, 'loginFailInvalidUsername', 'azman.jaafar', 0, UNHEX('00000000000000000000FFFF55F8E3A5'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7281, 2897580, '1549599893.053767', 1, 'loginFailInvalidUsername', 'azman.jaafar@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB01FD0C1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7282, 2897582, '1549599898.179136', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5EE6D094'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7283, 2897584, '1549599908.498661', 1, 'loginFailInvalidUsername', '808108', 0, UNHEX('00000000000000000000FFFFD18D2DD4'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7284, 2897714, '1549603075.818497', 1, 'loginFailInvalidUsername', 'sitikhadijah', 0, UNHEX('00000000000000000000FFFFB2EFB049'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7285, 2897718, '1549603086.144743', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFD9B64EB1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7286, 2897720, '1549603091.756120', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF258B0868'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7287, 2897722, '1549603098.627731', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E642'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7288, 2897807, '1549606726.434156', 1, 'loginFailInvalidUsername', 'ana', 0, UNHEX('00000000000000000000FFFFB9F8A0E7'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7289, 2897809, '1549606731.212783', 1, 'loginFailInvalidUsername', 'ana@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF4246D9B3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7290, 2897811, '1549606736.594939', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF59F8A282'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7291, 2897813, '1549606742.209721', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF90D9402E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7292, 2898725, '1549631767.668194', 1, 'loginFailInvalidUsername', 'azlina', 0, UNHEX('00000000000000000000FFFFB9DC6514'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7293, 2898727, '1549631774.485080', 1, 'loginFailInvalidUsername', 'azlina@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6542'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7294, 2898729, '1549631792.551104', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6543'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7295, 2898731, '1549631798.463868', 1, 'loginFailInvalidUsername', 'khai4', 0, UNHEX('00000000000000000000FFFFB9222102'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7296, 2898801, '1549634292.108782', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC7F9E64F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7297, 2898803, '1549634323.161071', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF9E45C0C8'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7298, 2898805, '1549634338.270591', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF4DF7B5A5'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7299, 2898807, '1549634346.015065', 1, 'loginFailInvalidUsername', '123456', 0, UNHEX('00000000000000000000FFFF2EA5F59A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7300, 2899244, '1549642494.091774', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB6B7D87C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7301, 2899886, '1549676747.996263', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC64FD'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7302, 2900393, '1549698827.770012', 1, 'loginFailInvalidUsername', 'nadzru', 0, UNHEX('00000000000000000000FFFFCC55BF1E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7303, 2900395, '1549698834.596942', 1, 'loginFailInvalidUsername', 'nadzru@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9DC651A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7304, 2900401, '1549698877.333644', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6536'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7305, 2900403, '1549698881.928771', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6521'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7306, 2900888, '1549721102.853555', 1, 'loginFailInvalidUsername', 'rezal@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFAB19C14E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7307, 2900890, '1549721108.976605', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF1FDC00E1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7308, 2900894, '1549721132.294806', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF05C442A2'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7309, 2900896, '1549721136.827872', 1, 'loginFailInvalidUsername', 'LU8sdf', 0, UNHEX('00000000000000000000FFFF3E669444'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7310, 2900909, '1549721316.530898', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF1FDC00E1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7311, 2901338, '1549737327.727540', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9560DF2'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7312, 2901367, '1549739601.079647', 1, 'loginFailInvalidUsername', 'mohamedirwan', 0, UNHEX('00000000000000000000FFFF362794E8'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7313, 2901370, '1549739623.675472', 1, 'loginFailInvalidUsername', 'mohamedirwan@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF330F5202'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7314, 2901372, '1549739650.606345', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC653E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7315, 2901374, '1549739680.628510', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC7F9DF2A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7316, 2901376, '1549739688.144101', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF330F500E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7317, 2901458, '1549747058.582925', 1, 'loginFailInvalidUsername', 'vanithap', 0, UNHEX('00000000000000000000FFFF330FEA5A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7318, 2901460, '1549747085.936811', 1, 'loginFailInvalidUsername', 'vanithap@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E644'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7319, 2901469, '1549747122.096296', 1, 'loginFailInvalidUsername', 'vp196632', 0, UNHEX('00000000000000000000FFFF362797D8'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7320, 2901479, '1549747730.087729', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFC0F18C3A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7321, 2901576, '1549755817.151163', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E644'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7322, 2901614, '1549758545.604354', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF9978B518'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7323, 2901638, '1549759528.395220', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFBC84B002'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7324, 2901645, '1549759570.386196', 1, 'loginFailInvalidUsername', 'ranhill123', 0, UNHEX('00000000000000000000FFFFB9DC6521'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7325, 2901881, '1549769761.732240', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF52A55449'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7326, 2902643, '1549789830.403323', 1, 'loginFailInvalidUsername', 'azlan', 0, UNHEX('00000000000000000000FFFFB965D897'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7327, 2902647, '1549789839.939125', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF894AA760'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7328, 2902649, '1549789844.963063', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF4113A783'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7329, 2902651, '1549789854.853438', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC651A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7330, 2902653, '1549789863.600379', 1, 'loginFailInvalidUsername', 'asmnazl', 0, UNHEX('00000000000000000000FFFFC7F9E64E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7331, 2902686, '1549792458.877736', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF5F82ADB9'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7332, 2902918, '1549804568.403022', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2D775156'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7333, 2903156, '1549816724.412346', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF7A01C7A8'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7334, 2903641, '1549841565.687586', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFADD09B0A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7335, 2904293, '1549854228.130994', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF25BBB7F4'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7336, 2905036, '1549866752.481970', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFC6015854'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7337, 2905424, '1549872692.036947', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF5BDBEE5F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7338, 2905426, '1549872696.167637', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF5BDBEE5F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7339, 2905428, '1549872700.398593', 1, 'loginFailInvalidUsername', 'clkc6294', 0, UNHEX('00000000000000000000FFFF5BDBEE5F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7340, 2905751, '1549879975.133589', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF59287659'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7341, 2906366, '1549894050.656979', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF5F82ADB9'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7342, 2906387, '1549894691.875261', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB03E2628'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7343, 2906485, '1549900329.875032', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7DD7D74D'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7344, 2906688, '1549905213.044898', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF80C7F1D3'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7345, 2906772, '1549908452.356964', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF33FE9F4E'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7346, 2907027, '1549921527.934328', 1, 'loginFailInvalidUsername', 'noranita', 0, UNHEX('00000000000000000000FFFF676AC1E6'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7347, 2907028, '1549921531.443751', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF676AC1E6'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7348, 2907029, '1549921533.782234', 1, 'loginFailInvalidUsername', 'noranita@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF676AC1E6'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7349, 2907042, '1549922492.568571', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFC6015854'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7350, 2907396, '1549936594.315671', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF740C3066'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7351, 2908323, '1549950752.190444', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF4AD0D6A0'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7352, 2909113, '1549962857.102347', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF673529DC'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7353, 2909195, '1549964908.616920', 1, 'loginFailInvalidUsername', 'thachadet', 0, UNHEX('00000000000000000000FFFF4E6D1702'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7354, 2909197, '1549964912.929136', 1, 'loginFailInvalidUsername', 'thachadet@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF5BDBECAB'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7355, 2909511, '1549976159.077135', 1, 'loginFailInvalidUsername', 'azlina', 0, UNHEX('00000000000000000000FFFF010ABA80'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36') ;
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(7356, 2909512, '1549976161.067666', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF010ABA80'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7357, 2909513, '1549976163.045276', 1, 'loginFailInvalidUsername', 'azlina@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF010ABA80'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7358, 2909841, '1549985425.885424', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC0F1AAB5'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7359, 2910180, '1549997144.653137', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFC0F1AAB5'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7360, 2910495, '1550009049.097584', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF80C7DF04'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7361, 2910870, '1550023450.449193', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFA2D36DCF'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7362, 2911343, '1550029505.288228', 1, 'loginFailInvalidUsername', 'sunilnair', 0, UNHEX('00000000000000000000FFFFA3ACFB0A'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7363, 2911351, '1550029519.734509', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC662345D'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7364, 2911353, '1550029524.401151', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF51111B85'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7365, 2911357, '1550029535.204679', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E64E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7366, 2911367, '1550029549.795051', 1, 'loginFailInvalidUsername', '116688', 0, UNHEX('00000000000000000000FFFFD18D3396'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7367, 2911928, '1550037609.699270', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFA2D500F3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7368, 2911930, '1550037625.731601', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFA2D500F3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7369, 2912063, '1550040046.491155', 1, 'loginFailInvalidUsername', 'ramizu', 0, UNHEX('00000000000000000000FFFF670AAAFA'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7370, 2912064, '1550040048.275778', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF670AAAFA'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7371, 2912065, '1550040050.160303', 1, 'loginFailInvalidUsername', 'ramizu@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF670AAAFA'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7372, 2912806, '1550050552.353894', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBACAA15D'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7373, 2912943, '1550054479.812889', 1, 'loginFailInvalidUsername', 'norasni@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9DC651C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7374, 2912947, '1550054500.882938', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC3B00313'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7375, 2912951, '1550054514.638843', 1, 'loginFailInvalidUsername', '1062024', 0, UNHEX('00000000000000000000FFFFCFF44623'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7376, 2913284, '1550064717.368333', 1, 'loginFailInvalidUsername', 'aninie', 0, UNHEX('00000000000000000000FFFFD15F330B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7377, 2913286, '1550064723.761064', 1, 'loginFailInvalidUsername', 'aninie@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB2AF84E6'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7378, 2913288, '1550064729.325664', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF4DF7B5A2'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7379, 2913292, '1550064749.649680', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF57767467'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7380, 2913415, '1550066466.097919', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFD453913A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7381, 2913419, '1550066613.779643', 1, 'loginFailInvalidUsername', 'azh', 0, UNHEX('00000000000000000000FFFFD9730A84'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7382, 2913421, '1550066620.640865', 1, 'loginFailInvalidUsername', 'azh@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF362794E8'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7383, 2913423, '1550066625.799160', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB2AF84E4'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7384, 2913430, '1550066658.392057', 1, 'loginFailInvalidUsername', 'dupefymy', 0, UNHEX('00000000000000000000FFFF591F3905'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7385, 2913922, '1550085088.119647', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC6015854'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7386, 2914154, '1550099436.150082', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFBE0A0ABA'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7387, 2914957, '1550114549.305359', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7C9E0D6C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7388, 2915025, '1550115086.255788', 1, 'loginFailInvalidUsername', 'kohbs@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF4113A783'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7389, 2915770, '1550125253.228679', 1, 'loginFailInvalidUsername', 'amran', 0, UNHEX('00000000000000000000FFFF6562F70E'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7390, 2915771, '1550125255.839986', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF6562F70E'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7391, 2915772, '1550125259.646423', 1, 'loginFailInvalidUsername', 'amran@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF6562F70E'), 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36'),
(7392, 2916151, '1550129701.199628', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF18B69C96'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7393, 2917124, '1550158732.097499', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF6CB3DDFD'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7394, 2917552, '1550172833.324690', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF740C3067'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7395, 2917715, '1550187174.078234', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFB280BB4C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7396, 2918195, '1550201605.406831', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF6882887C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7397, 2918912, '1550216131.129145', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFD8DEC2A6'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7398, 2919535, '1550230672.858184', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF1BFE3F49'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7399, 2919712, '1550239191.967655', 1, 'loginFailInvalidUsername', 'zamani', 0, UNHEX('00000000000000000000FFFF52DF0EF5'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7400, 2919714, '1550239202.777921', 1, 'loginFailInvalidUsername', 'zamani@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E652'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7401, 2919716, '1550239209.021529', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF4113A783'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7402, 2919718, '1550239225.516407', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC7F9E655'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7403, 2919835, '1550245284.342347', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFB9560DF2'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7404, 2920045, '1550257989.839866', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC6516'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7405, 2920048, '1550257995.467988', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC651C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7406, 2920051, '1550258000.269763', 1, 'loginFailInvalidUsername', 'cda5947', 0, UNHEX('00000000000000000000FFFFB9DC651C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7407, 2920078, '1550260010.607229', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF670E3428'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7408, 2920144, '1550262540.825064', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC0A066AA'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7409, 2920146, '1550262544.681313', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC0A066AA'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7410, 2920239, '1550271633.688342', 1, 'loginFailInvalidUsername', 'hamka', 0, UNHEX('00000000000000000000FFFFAB19C119'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7411, 2920241, '1550271637.075604', 1, 'loginFailInvalidUsername', 'hamka@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFAB19C119'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7412, 2920243, '1550271640.687696', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFAB19C119'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7413, 2920245, '1550271644.721779', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC3B00317'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7414, 2920249, '1550271662.864229', 1, 'loginFailInvalidUsername', 'hamkalink', 0, UNHEX('00000000000000000000FFFF6D466417'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7415, 2920362, '1550275515.523308', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF1BFE3F49'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7416, 2920817, '1550291437.319284', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFA290284A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7417, 2920968, '1550297572.317909', 1, 'loginFailInvalidUsername', 'asnah@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC02A740D'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7418, 2920970, '1550297577.500949', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF2580DE1E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7419, 2920972, '1550297581.324768', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF2580DE1E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7420, 2920974, '1550297593.078791', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6545'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7421, 2921155, '1550307453.123273', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF672FC102'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7422, 2921161, '1550307657.423265', 1, 'loginFailInvalidUsername', 'fathi', 0, UNHEX('00000000000000000000FFFFA484335B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7423, 2921165, '1550307669.556077', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DECA7D'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7424, 2921167, '1550307692.252113', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC6538'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7425, 2921169, '1550307698.668660', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF4113A784'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7426, 2921292, '1550312690.841033', 1, 'loginFailInvalidUsername', 'm.narendran', 0, UNHEX('00000000000000000000FFFFB9DC6522'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7427, 2921294, '1550312700.417670', 1, 'loginFailInvalidUsername', 'm.narendran@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6546'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7428, 2921296, '1550312712.534142', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC6505'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7429, 2921298, '1550312718.632083', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFC15A0C77'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7430, 2921300, '1550312731.214698', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFA7632A59'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7431, 2921302, '1550312738.563452', 1, 'loginFailInvalidUsername', 'shabita', 0, UNHEX('00000000000000000000FFFFC291D1A1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7432, 2921633, '1550323664.146145', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC0BEDDE5'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7433, 2922045, '1550339796.439429', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFBE0A0ABA'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7434, 2922099, '1550343426.416123', 1, 'loginFailInvalidUsername', 'sumini', 0, UNHEX('00000000000000000000FFFFB9DC650C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7435, 2922101, '1550343453.360537', 1, 'loginFailInvalidUsername', 'sumini@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF330FBBD1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7436, 2922103, '1550343474.334883', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC6531'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7437, 2922105, '1550343501.814024', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF3625EA42'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7438, 2922107, '1550343509.052960', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF4E8E132B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7439, 2922109, '1550343514.530702', 1, 'loginFailInvalidUsername', 'sonia35', 0, UNHEX('00000000000000000000FFFFB9DC651F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7440, 2922225, '1550353130.501149', 1, 'loginFailInvalidUsername', 'sitikhadijah', 0, UNHEX('00000000000000000000FFFF59900C11'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7441, 2922227, '1550353138.550083', 1, 'loginFailInvalidUsername', 'sitikhadijah@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF8DFFA224'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7442, 2922229, '1550353145.597394', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFADF4D105'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7443, 2922232, '1550353161.916827', 1, 'loginFailInvalidUsername', 'khad83', 0, UNHEX('00000000000000000000FFFFB9813E3E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7444, 2922281, '1550355965.993764', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF80C7DF04'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7445, 2922294, '1550356549.309494', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF330F3812'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7446, 2922299, '1550356578.582313', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFC6609B03'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7447, 2922576, '1550368459.010457', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFAD52AD61'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7448, 2922685, '1550372424.338093', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF17FE8ABD'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7449, 2922748, '1550374843.984163', 1, 'loginFailInvalidUsername', 'tester', 0, UNHEX('00000000000000000000FFFFBEE41DDD'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7450, 2923204, '1550388967.793757', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB280BB4C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7451, 2923566, '1550404880.396988', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFD453913A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7452, 2924067, '1550420777.307790', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFDA16D499'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7453, 2924320, '1550436752.375629', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFC063E7A3'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7454, 2924862, '1550455204.025936', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB96457CE'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7455, 2924865, '1550455211.062901', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF68DA3F4B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0') ;
INSERT INTO `wp2o_wfLogins` ( `id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES
(7456, 2924872, '1550455231.205940', 1, 'loginFailInvalidUsername', 'fakohiqu', 0, UNHEX('00000000000000000000FFFFC7F9E654'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7457, 2927495, '1550517603.100262', 1, 'loginFailInvalidUsername', 'puspa@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF67ECC91B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7458, 2927500, '1550517619.413309', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC6518'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7459, 2927502, '1550517638.423324', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF330F2561'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7460, 2927504, '1550517644.112324', 1, 'loginFailInvalidUsername', 'zura2044', 0, UNHEX('00000000000000000000FFFFC3B00313'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7461, 2927532, '1550518843.893546', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF47CFC13C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7462, 2927702, '1550532312.453593', 1, 'loginFailInvalidUsername', 'saundrarajan', 0, UNHEX('00000000000000000000FFFFB9DC6505'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7463, 2927704, '1550532323.008281', 1, 'loginFailInvalidUsername', 'saundrarajan@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E651'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7464, 2927706, '1550532333.738440', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB2AF8F9C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7465, 2927712, '1550532357.135424', 1, 'loginFailInvalidUsername', 'vssr765675', 0, UNHEX('00000000000000000000FFFFC7F9E649'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7466, 2927777, '1550536222.026476', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFBBBEF732'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7467, 2928630, '1550550126.518216', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF50ACEA0F'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7468, 2929678, '1550565310.033196', 1, 'loginFailInvalidUsername', 'pauzi', 0, UNHEX('00000000000000000000FFFFC6623A87'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7469, 2929681, '1550565318.712306', 1, 'loginFailInvalidUsername', 'pauzi@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E64F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7470, 2929683, '1550565325.454606', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC6539'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7471, 2929684, '1550565327.315229', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF6202CA64'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7472, 2929686, '1550565333.517439', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF334B477B'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7473, 2929690, '1550565350.427925', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF334B42FA'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7474, 2929694, '1550565371.587441', 1, 'loginFailInvalidUsername', 'pauzi1', 0, UNHEX('00000000000000000000FFFFC7F9E640'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7475, 2930430, '1550584035.277212', 1, 'loginFailInvalidUsername', 'kim.leong', 0, UNHEX('00000000000000000000FFFFC7F9E657'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7476, 2930433, '1550584042.910364', 1, 'loginFailInvalidUsername', 'kim.leong@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB9DC651F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7477, 2930438, '1550584058.141829', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC7F9E650'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7478, 2930442, '1550584064.848116', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB00A63C8'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7479, 2930446, '1550584070.803998', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFCC55BF1E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7480, 2930448, '1550584076.480578', 1, 'loginFailInvalidUsername', 'wanlihong', 0, UNHEX('00000000000000000000FFFF90D95050'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7481, 2930868, '1550595315.821584', 1, 'loginFailInvalidUsername', 'diana', 0, UNHEX('00000000000000000000FFFFB9DC6519'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7482, 2930870, '1550595320.524932', 1, 'loginFailInvalidUsername', 'diana@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF55F8E3A4'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7483, 2930873, '1550595328.745787', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB96B2FD7'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7484, 2930875, '1550595336.144390', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB95695FE'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7485, 2930877, '1550595342.864200', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6534'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7486, 2931186, '1550601262.060179', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF45925112'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7487, 2931288, '1550608946.127608', 1, 'loginFailInvalidUsername', 'chandrasegaran', 0, UNHEX('00000000000000000000FFFFB9DC6507'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7488, 2931290, '1550608950.906163', 1, 'loginFailInvalidUsername', 'chandrasegaran@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC3B00314'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7489, 2931292, '1550608958.300460', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFD9AAC559'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7490, 2931294, '1550608967.116028', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC653E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7491, 2931296, '1550608981.275808', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF55F8E3A3'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7492, 2931298, '1550608997.287319', 1, 'loginFailInvalidUsername', 'qobogyco', 0, UNHEX('00000000000000000000FFFF330FE9FD'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7493, 2931312, '1550609293.057403', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF8838968E'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7494, 2931484, '1550619830.180924', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF43E7CC07'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7495, 2931618, '1550625049.699791', 1, 'loginFailInvalidUsername', 'asmani', 0, UNHEX('00000000000000000000FFFF339F04AC'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7496, 2931621, '1550625054.038117', 1, 'loginFailInvalidUsername', 'asmani@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF5778249D'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7497, 2931623, '1550625057.984899', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5276F280'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7498, 2931625, '1550625061.747884', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC6542'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7499, 2931627, '1550625066.338103', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9DC6542'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7500, 2931732, '1550626711.231652', 1, 'loginFailInvalidUsername', 'azmidasan', 0, UNHEX('00000000000000000000FFFFC7F9E657'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7501, 2931734, '1550626731.422836', 1, 'loginFailInvalidUsername', 'azmidasan@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFC7F9E643'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7502, 2931736, '1550626735.649875', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC6521'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7503, 2931738, '1550626743.581005', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF0596FE43'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7504, 2931740, '1550626750.195240', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFF6DC98564'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7505, 2932032, '1550629563.338543', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF7C9E0D6C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7506, 2933407, '1550646135.337498', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFD453913A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7507, 2933866, '1550651668.955611', 1, 'loginFailInvalidUsername', 'admin@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),
(7508, 2933867, '1550651729.105458', 0, 'loginOK', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),
(7509, 2933931, '1550652298.104619', 0, 'logout', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),
(7510, 2934088, '1550654122.288963', 1, 'loginFailInvalidUsername', 'sharinizah', 0, UNHEX('00000000000000000000FFFFB9C17DA8'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7511, 2934097, '1550654133.904328', 1, 'loginFailInvalidUsername', 'sharinizah@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFFB211AB66'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7512, 2934117, '1550654158.761872', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB9DC6545'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7513, 2934131, '1550654177.282731', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC651F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7514, 2934142, '1550654194.743068', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9687807'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7515, 2934155, '1550654209.510848', 1, 'loginFailInvalidUsername', 'ja16515', 0, UNHEX('00000000000000000000FFFFC7F9E645'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7516, 2934298, '1550654941.175606', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF675ADC28'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7517, 2934572, '1550659974.814410', 1, 'loginFailInvalidUsername', 'normona', 0, UNHEX('00000000000000000000FFFF1FDC00E1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7518, 2934575, '1550659979.182474', 1, 'loginFailInvalidUsername', 'normona@investors-watch.com/wp-staging/ranhill', 0, UNHEX('00000000000000000000FFFF1FDC00E1'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7519, 2934585, '1550659998.289709', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB9DC6530'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7520, 2934720, '1550662437.910114', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF670E3428'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7521, 2935109, '1550671456.953040', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFADF9062A'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7522, 2936141, '1550677763.937433', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFF4AD0D6A0'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7523, 2936232, '1550682674.148903', 1, 'loginFailInvalidUsername', 'julita', 0, UNHEX('00000000000000000000FFFFB9DC653E'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7524, 2936238, '1550682685.176078', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFC2476D2C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7525, 2936240, '1550682690.965580', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFF362794E9'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7526, 2936245, '1550682698.885565', 1, 'loginFailInvalidUsername', 'ranhill', 0, UNHEX('00000000000000000000FFFFB9813E3F'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7527, 2936393, '1550688667.133329', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF5B5AB142'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7528, 2936495, '1550694020.448644', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF672FC102'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7529, 2936531, '1550696446.648098', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFFB1345727'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7530, 2937014, '1550710961.236313', 1, 'loginFailInvalidUsername', 'com', 0, UNHEX('00000000000000000000FFFFC6015854'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7531, 2937151, '1550713359.058504', 1, 'loginFailInvalidUsername', 'administrator', 0, UNHEX('00000000000000000000FFFFB32B869C'), 'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),
(7532, 2937969, '1550722262.259571', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF18152F68'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7533, 2938393, '1550727658.473416', 0, 'loginOK', 'adminranhill', 1, UNHEX('00000000000000000000FFFFD3186516'), 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),
(7534, 2938467, '1550728532.701796', 1, 'loginFailInvalidUsername', 'admin', 0, UNHEX('00000000000000000000FFFF6882887C'), 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0') ;

#
# End of data contents of table `wp2o_wfLogins`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfNet404s`
#

DROP TABLE IF EXISTS `wp2o_wfNet404s`;


#
# Table structure of table `wp2o_wfNet404s`
#

CREATE TABLE `wp2o_wfNet404s` (
  `sig` binary(16) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `URI` varchar(1000) NOT NULL,
  PRIMARY KEY (`sig`),
  KEY `k1` (`ctime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfNet404s`
#
INSERT INTO `wp2o_wfNet404s` ( `sig`, `ctime`, `URI`) VALUES
(UNHEX('13DAF57037FA4C45F964739653930E04'), 1550727955, '/images/logo.png'),
(UNHEX('9C29A67BAC71506C394CB0CEE146190A'), 1550728324, '/font/stylesheet.css') ;

#
# End of data contents of table `wp2o_wfNet404s`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfNotifications`
#

DROP TABLE IF EXISTS `wp2o_wfNotifications`;


#
# Table structure of table `wp2o_wfNotifications`
#

CREATE TABLE `wp2o_wfNotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT '1000',
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfNotifications`
#
INSERT INTO `wp2o_wfNotifications` ( `id`, `new`, `category`, `priority`, `ctime`, `html`, `links`) VALUES
('network-GB', 1, 'release630', 400, 1488858459, '<div style="padding:1rem 0px;"><b>Announcing Wordfence 6.3.0 - Exciting Improvements</b><br>\nThis morning we are officially releasing Wordfence 6.3.0. If you have Wordfence auto-update enabled, your site may have already been updated automatically. This is a very exciting release for us with a host of improvements. The user interface has changed and we have added a new \'Dashboard\' menu option. You\'ll also notice the Wordfence menu structure has changed. <br><br>\n\nWe have tried to keep everything familiar, but easier to find and access. You can find the help documentation for the new dashboard <a href="https://docs.wordfence.com/en/Wordfence_Dashboard">here</a>.<br><br>\n\n<a href="https://www.wordfence.com/blog/2017/01/wordfence-6-3-0/">You can find the full announcement and details of the changes on our blog....</a></div>', '[]'),
('network-GC', 1, 'digest201701', 1000, 1488858459, '<div style="padding:1rem 0px;">\n		<p style="font-weight:bold;font-size:0.8rem;color:#11967A;margin-top: 0;">Recent Blog Highlights</p>\n		<div style="display:flex;flex-direction:row;max-width:100%;overflow-x:auto;flex-basis:auto;">\n			<div style="margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;">\n				<a href="https://www.wordfence.com/blog/2017/01/xmlrpc-wp-login-brute-force/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert" style="display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;">XMLRPC or WP-Login: Which do Brute Force Attackers Prefer</a>\n				<div style="font-size:0.9rem;color:#2d2d2d;">A close look at brute force attack targets yielded some surprising results.</div>\n			</div>\n			<div style="margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;">\n				<a href="https://www.wordfence.com/blog/2017/01/wordpress-security-plugin/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert" style="display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;">Do you Need a WordPress Security Plugin?</a>\n\n				<div style="font-size:0.9rem;color:#2d2d2d;">This easy to follow post makes the clear case for running both a malware scanner and firewall on your WordPress site.</div>\n			</div>\n\n			<div style="margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;">\n				<a href="https://www.wordfence.com/blog/2017/01/wordpress-botnet-monetization/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert" style="display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;">Analysis: Methods and Monetization of a Botnet Attacking WordPress</a>\n\n				<div style="font-size:0.9rem;color:#2d2d2d;">\n				A deep dive on the methods and profit motive of an active Botnet.\n				</div>\n			</div>\n\n			<div style="margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;">\n				<a href="https://www.wordfence.com/blog/2017/01/chrome-56-ssl-https-wordpress/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert" style="display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;">Imminent: Non-HTTPS Sites Labeled “Not Secure” by Chrome</a>\n\n				<div style="font-size:0.9rem;color:#2d2d2d;">\n				An overview of changes to Google Chrome that will impact non-https site owners.\n				</div>\n			</div>\n\n			<div style="margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;">\n				<a href="https://www.wordfence.com/blog/2017/01/gmail-phishing-data-uri/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert" style="display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;">Wide Impact: Highly Effective Gmail Phishing Technique Being Exploited</a>\n\n				<div style="font-size:0.9rem;color:#2d2d2d;">\n				We profile a new phishing technique that is fooling even experienced technical users.\n				</div>\n			</div>\n\n			<div style="margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;">\n				<a href="https://www.wordfence.com/blog/2017/01/how-wordpress-firewall-works/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert" style="display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;">How the Wordfence Firewall Works</a>\n\n				<div style="font-size:0.9rem;color:#2d2d2d;">\n				We explain how the Wordfence firewall protects your website from attacks.\n				</div>\n			</div>\n\n			<div style="margin: 0 0.5rem 1rem;padding: 1rem;border:1px solid #e9eff3;width:200px;flex-shrink:0;display:flex;flex-direction:column;margin-bottom:0.5rem;">\n				<a href="https://www.wordfence.com/blog/2017/01/december-2016-wordpress-attack-activity-report/?utm_source=plugin&amp;utm_campaign=bd020117&amp;utm_medium=pluginalert" style="display:block;font-weight:bold;text-decoration:none;color:#00709e;margin-bottom:1rem;">The December 2016 WordPress Attack Activity Report</a>\n\n				<div style="font-size:0.9rem;color:#2d2d2d;">\n				Stats and insights from Wordfence Network from December.\n				</div>\n                </div>\n		</div>\n	</div><script type="application/javascript">jQuery(\'.wf-dashboard-item-list-title\').css(\'min-width\', 0);</script>', '[]'),
('site-AEAAAAA', 1, 'wfplugin_updates', 1000, 1550656039, '<a href="https://www.investors-watch.com/wp-staging/ranhill/wp-admin/update-core.php">Updates are available for WordPress (v5.0.3), 11 plugins, and 3 themes</a>', '[]'),
('site-AUAAAAA', 1, 'wfplugin_scan', 500, 1550729219, '<a href="https://www.investors-watch.com/wp-staging/ranhill/wp-admin/admin.php?page=WordfenceScan">18 issues found in most recent scan</a>', '[]'),
('network-GD', 1, 'gravityscan', 300, 1498470371, '<p><strong>Say hello to Gravityscan, the free malware and vulnerability scanner for any website</strong></p>\n\n<p>Today we are excited to share a new product we have been working on for the last year. It is free to use, works on any website and you don’t need to install anything to use it. We think you’ll find it to be a great complement to the WordPress protection you’re already getting with Wordfence. And we know that for a lot of you WordPress isn’t the only platform you need to secure, so we built Gravityscan to work with all of your sites.</p>\n\n<p><a href="https://www.gravityscan.com?utm_source=plugin&utm_medium=pluginalert&utm_campaign=la061817" target="_blank" class="wf-btn wf-btn-primary">Scan your site now</a></p>', '[]'),
('network-GE', 1, 'siteaudit', 400, 1498470371, '<p><strong>Announcing New Site Security Audit Service</strong></p>\n<p>We are very excited to announce that we have officially launched a new WordPress Site Security Audit Service.</p>\n<p>We have been providing this service to select customers for several weeks prior to the official launch. We are now live with the service and making it available to all of our customers.</p>\n<p>We have written about the service on our blog, where we explain a few of the benefits of having our dedicated Security Services Team evaluate and secure your site.</p>\n<p><a href="https://www.wordfence.com/blog/2017/05/wordpress-security-audit/?utm_source=plugin&utm_medium=pluginalert&utm_campaign=sa052517" target="_blank">You can find the full announcement on our blog...</a></p>', '[]'),
('network-GF', 1, 'gravityscanbadge', 500, 1501321739, '<p><strong style="color:#00709E;">Introducing a Free Trust Badge With Blacklist and SEO Monitoring</strong></p>\n<p>Today we are excited to officially launch the Gravityscan trust badge program. As you know, Gravityscan is a project by the Wordfence team to bring malware and vulnerability scanning to all websites. Until now, daily monitoring had been a paid feature of Gravityscan, priced at around $120 per year.  The new badge program provides free daily security monitoring for any website.</p>\n<p>The Gravityscan trust badge checks your website daily against over 20 blacklists and ensures that your content does not contain links to malicious sites. The program also includes a comprehensive daily scan for malware.</p>\n<p>The Gravityscan trust badge also helps improve conversion rates and visitor confidence in your website. To learn more about this exciting and completely free program, you can find the <a href="https://www.gravityscan.com/blog/gravityscan-badge?utm_source=plugin&utm_medium=pluginalert&utm_campaign=072617" target="_blank">full details on the Gravityscan blog</a>.</p>\n<p class="wf-center"><a href="https://www.gravityscan.com/sign-up?plan=free-monitoring&utm_source=plugin&utm_medium=pluginalert&utm_campaign=072617" target="_blank" style="text-align: center;text-transform: uppercase;font-weight: bold;background-color: #11967A;height: 44px;line-height: 44px;padding: 0px 20px;color: #ffffff;text-decoration: none;display: inline-block;border-radius: 3px;">Get Free Trust Badge</a></p>', '[]'),
('network-GG', 1, 'blogpost082917', 400, 1505468757, '<p><strong>Better Data Means Better Protection</strong></p>\n<p>Mission-critical sites rely on the real-time protection provided by Wordfence Premium. Learn how the 30-strong team at Wordfence stays on top of the latest threats, providing Premium customers with the real-time threat intelligence they need to stay safe.</p>\n<p><a href="https://www.wordfence.com/blog/2017/08/benefits-wordfence-premium/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=bp082917" class="wf-btn wf-btn-callout wf-btn-primary" target="_blank">Learn More</a></p>', '[]') ;

#
# End of data contents of table `wp2o_wfNotifications`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfReverseCache`
#

DROP TABLE IF EXISTS `wp2o_wfReverseCache`;


#
# Table structure of table `wp2o_wfReverseCache`
#

CREATE TABLE `wp2o_wfReverseCache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


#
# Data contents of table `wp2o_wfReverseCache`
#
INSERT INTO `wp2o_wfReverseCache` ( `IP`, `host`, `lastUpdate`) VALUES
(UNHEX('00000000000000000000FFFF42F94219'), 'crawl-66-249-66-25.googlebot.com', 1550721994),
(UNHEX('00000000000000000000FFFF42F94217'), 'crawl-66-249-66-23.googlebot.com', 1550709927),
(UNHEX('00000000000000000000FFFF42F94218'), 'crawl-66-249-66-24.googlebot.com', 1550715659),
(UNHEX('00000000000000000000FFFF334D34A0'), 'ns3138484.ip-51-77-52.eu', 1550701467),
(UNHEX('00000000000000000000FFFF42F9425A'), 'crawl-66-249-66-90.googlebot.com', 1550693040),
(UNHEX('00000000000000000000FFFF42F94215'), 'crawl-66-249-66-21.googlebot.com', 1550682451),
(UNHEX('00000000000000000000FFFF42F94216'), 'crawl-66-249-66-22.googlebot.com', 1550682241),
(UNHEX('00000000000000000000FFFF42F94214'), 'crawl-66-249-66-20.googlebot.com', 1550682448),
(UNHEX('00000000000000000000FFFFD3186516'), 'cgw-211-24-101-22.bbrtl.time.net.my', 1550651729),
(UNHEX('00000000000000000000FFFF42F94719'), 'crawl-66-249-71-25.googlebot.com', 1550638564),
(UNHEX('00000000000000000000FFFF42F9471A'), 'crawl-66-249-71-26.googlebot.com', 1550625119),
(UNHEX('00000000000000000000FFFF42F94791'), 'crawl-66-249-71-145.googlebot.com', 1550577711),
(UNHEX('00000000000000000000FFFF42F94795'), 'crawl-66-249-71-149.googlebot.com', 1550577713),
(UNHEX('00000000000000000000FFFF42F94F27'), 'crawl-66-249-79-39.googlebot.com', 1550627156),
(UNHEX('00000000000000000000FFFF42F94718'), 'crawl-66-249-71-24.googlebot.com', 1550625121) ;

#
# End of data contents of table `wp2o_wfReverseCache`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfSNIPCache`
#

DROP TABLE IF EXISTS `wp2o_wfSNIPCache`;


#
# Table structure of table `wp2o_wfSNIPCache`
#

CREATE TABLE `wp2o_wfSNIPCache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=20390 DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfSNIPCache`
#

#
# End of data contents of table `wp2o_wfSNIPCache`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfScanners`
#

DROP TABLE IF EXISTS `wp2o_wfScanners`;


#
# Table structure of table `wp2o_wfScanners`
#

CREATE TABLE `wp2o_wfScanners` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


#
# Data contents of table `wp2o_wfScanners`
#
INSERT INTO `wp2o_wfScanners` ( `eMin`, `IP`, `hits`) VALUES
(25845484, UNHEX('00000000000000000000FFFFDA6F80B9'), 1),
(25845478, UNHEX('00000000000000000000FFFF3D5B38D6'), 1),
(25845477, UNHEX('00000000000000000000FFFF3D5B38D6'), 1),
(25845476, UNHEX('00000000000000000000FFFF3D5B38D6'), 2),
(25844253, UNHEX('00000000000000000000FFFF312C4C2A'), 1),
(25844239, UNHEX('00000000000000000000FFFFCF2E0D76'), 6),
(25844239, UNHEX('00000000000000000000FFFFCF2E0DA4'), 1),
(25844238, UNHEX('00000000000000000000FFFF732AA2B2'), 2),
(25844238, UNHEX('00000000000000000000FFFFCF2E0D76'), 13),
(25844238, UNHEX('00000000000000000000FFFF9D372768'), 1),
(25844238, UNHEX('00000000000000000000FFFFCF2E0DA4'), 5),
(25844238, UNHEX('00000000000000000000FFFFCF2E0DD6'), 10),
(25844237, UNHEX('00000000000000000000FFFFCF2E0DA4'), 10),
(25844237, UNHEX('00000000000000000000FFFFCF2E0DD6'), 13),
(25844237, UNHEX('00000000000000000000FFFF9D372768'), 5),
(25844236, UNHEX('00000000000000000000FFFFCF2E0DD6'), 6),
(25844236, UNHEX('00000000000000000000FFFF9D372768'), 3),
(25844236, UNHEX('00000000000000000000FFFFCF2E0DA4'), 3),
(25844236, UNHEX('00000000000000000000FFFFCF2E0D76'), 8),
(25844235, UNHEX('00000000000000000000FFFFCF2E0D76'), 3),
(25844235, UNHEX('00000000000000000000FFFFCF2E0DA4'), 12),
(25844235, UNHEX('00000000000000000000FFFF9D372768'), 13),
(25844234, UNHEX('00000000000000000000FFFF9D372768'), 2),
(25844201, UNHEX('00000000000000000000FFFF6FCEC61F'), 1),
(25844192, UNHEX('00000000000000000000FFFFD53B7E6E'), 1),
(25842798, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25842789, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25842780, UNHEX('00000000000000000000FFFFD213FEE5'), 1),
(25842771, UNHEX('00000000000000000000FFFF2EE5A892'), 1),
(25842766, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25842764, UNHEX('00000000000000000000FFFF6FCEDD16'), 1),
(25844174, UNHEX('00000000000000000000FFFFAF8F36DE'), 2),
(25844174, UNHEX('00000000000000000000FFFF933C1583'), 1),
(25844172, UNHEX('00000000000000000000FFFF732AA2B2'), 2),
(25844163, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844160, UNHEX('00000000000000000000FFFF71D2C40E'), 1),
(25844154, UNHEX('00000000000000000000FFFF904C3CC6'), 2),
(25844146, UNHEX('00000000000000000000FFFFAA82017A'), 1),
(25844142, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25842756, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25842753, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25842712, UNHEX('00000000000000000000FFFF933C1583'), 2),
(25845475, UNHEX('00000000000000000000FFFF3D5B38D6'), 3),
(25845474, UNHEX('00000000000000000000FFFFCAA21282'), 1),
(25845473, UNHEX('00000000000000000000FFFFCAA21282'), 2),
(25845472, UNHEX('00000000000000000000FFFFCAA21282'), 8),
(25845466, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25845465, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25845456, UNHEX('00000000000000000000FFFFB28CAFA9'), 1),
(25845455, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25845452, UNHEX('00000000000000000000FFFF73EFD489'), 1),
(25845445, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25845442, UNHEX('00000000000000000000FFFF7A6CF46E'), 1),
(25845441, UNHEX('00000000000000000000FFFF7A6CF46E'), 1),
(25845437, UNHEX('00000000000000000000FFFF9D372733'), 1),
(25845418, UNHEX('00000000000000000000FFFFD3187574'), 4),
(25845376, UNHEX('00000000000000000000FFFF67260F41'), 1),
(25844138, UNHEX('00000000000000000000FFFFCA4FCB43'), 1),
(25844137, UNHEX('00000000000000000000FFFFCA4FCB43'), 1),
(25844128, UNHEX('00000000000000000000FFFFD31875EB'), 1),
(25844128, UNHEX('00000000000000000000FFFFAF90D449'), 1),
(25844128, UNHEX('00000000000000000000FFFF3D067FB0'), 1),
(25844122, UNHEX('00000000000000000000FFFFC0630126'), 3),
(25844121, UNHEX('00000000000000000000FFFFC0630126'), 4),
(25844120, UNHEX('00000000000000000000FFFFC0630126'), 2),
(25844119, UNHEX('00000000000000000000FFFFC0630126'), 2),
(25844118, UNHEX('00000000000000000000FFFFAF91E02A'), 1),
(25844118, UNHEX('00000000000000000000FFFFC0630126'), 5),
(25844117, UNHEX('00000000000000000000FFFFC0630126'), 2),
(25844116, UNHEX('00000000000000000000FFFFC0630126'), 3),
(25844115, UNHEX('00000000000000000000FFFFC0630126'), 4),
(25844114, UNHEX('00000000000000000000FFFFC0630126'), 2),
(25844114, UNHEX('00000000000000000000FFFF797A340D'), 1),
(25844114, UNHEX('00000000000000000000FFFFAF91E02A'), 1),
(25844113, UNHEX('00000000000000000000FFFFC0630126'), 1),
(25844113, UNHEX('00000000000000000000FFFF797A340D'), 1),
(25844113, UNHEX('00000000000000000000FFFFAF91E02A'), 1),
(25844095, UNHEX('00000000000000000000FFFFCF2E0D76'), 1),
(25844090, UNHEX('00000000000000000000FFFF5DA03C16'), 1),
(25844090, UNHEX('00000000000000000000FFFFB9E59016'), 1),
(25844083, UNHEX('00000000000000000000FFFF334B81E7'), 2),
(25844069, UNHEX('00000000000000000000FFFFCB705202'), 1),
(25844068, UNHEX('00000000000000000000FFFFCB705202'), 1),
(25844067, UNHEX('00000000000000000000FFFFCB705202'), 1),
(25844064, UNHEX('00000000000000000000FFFF849362B3'), 5),
(25844047, UNHEX('00000000000000000000FFFF0ED7B08B'), 1),
(25844044, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25844038, UNHEX('00000000000000000000FFFF3C362961'), 2),
(25844036, UNHEX('00000000000000000000FFFF3624950D'), 1),
(25844035, UNHEX('00000000000000000000FFFF5DA03C16'), 1),
(25844023, UNHEX('00000000000000000000FFFFCB705201'), 1),
(25844022, UNHEX('00000000000000000000FFFFDB412C0A'), 1),
(25843989, UNHEX('00000000000000000000FFFF0E8E7405'), 12),
(25843988, UNHEX('00000000000000000000FFFF0E8E7405'), 1),
(25843981, UNHEX('00000000000000000000FFFF73EFD48B'), 1),
(25843976, UNHEX('00000000000000000000FFFFB7ABB829'), 2),
(25843975, UNHEX('00000000000000000000FFFFB7ABB829'), 1),
(25843960, UNHEX('00000000000000000000FFFF3D7178D2'), 3),
(25843958, UNHEX('00000000000000000000FFFF362494CB'), 1),
(25843940, UNHEX('00000000000000000000FFFF2EF628D6'), 3) ;
INSERT INTO `wp2o_wfScanners` ( `eMin`, `IP`, `hits`) VALUES
(25843927, UNHEX('00000000000000000000FFFF67260F41'), 1),
(25843924, UNHEX('00000000000000000000FFFF67260F41'), 1),
(25843919, UNHEX('00000000000000000000FFFFAF8A40B9'), 1),
(25843910, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843902, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843889, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25843888, UNHEX('00000000000000000000FFFF34094943'), 1),
(25843886, UNHEX('00000000000000000000FFFFD3186516'), 4),
(25843885, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25842701, UNHEX('00000000000000000000FFFF670893DD'), 1),
(25842696, UNHEX('00000000000000000000FFFF6BAC2C24'), 2),
(25842692, UNHEX('00000000000000000000FFFFB7AB5440'), 1),
(25842689, UNHEX('00000000000000000000FFFFD109D404'), 1),
(25842688, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25842687, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25842671, UNHEX('00000000000000000000FFFFD3193F02'), 1),
(25842657, UNHEX('00000000000000000000FFFFD3193F02'), 2),
(25842656, UNHEX('00000000000000000000FFFF36249549'), 1),
(25842644, UNHEX('00000000000000000000FFFFC73A56D1'), 2),
(25842643, UNHEX('00000000000000000000FFFFD109D404'), 2),
(25842642, UNHEX('00000000000000000000FFFFD109D404'), 4),
(25842640, UNHEX('00000000000000000000FFFFD109D404'), 1),
(25842636, UNHEX('00000000000000000000FFFFDCB56C6D'), 1),
(25845372, UNHEX('00000000000000000000FFFF73A45B54'), 3),
(25845372, UNHEX('00000000000000000000FFFF67260F41'), 1),
(25845348, UNHEX('00000000000000000000FFFFB7ABB903'), 4),
(25845347, UNHEX('00000000000000000000FFFFB7ABB903'), 4),
(25845298, UNHEX('00000000000000000000FFFF9D372733'), 1),
(25845296, UNHEX('00000000000000000000FFFF6E042D81'), 2),
(25845267, UNHEX('00000000000000000000FFFF79792BBC'), 1),
(25845266, UNHEX('00000000000000000000FFFF79792BBC'), 4),
(25845265, UNHEX('00000000000000000000FFFF79792BBC'), 5),
(25845257, UNHEX('00000000000000000000FFFF362494B1'), 1),
(25845242, UNHEX('00000000000000000000FFFF362494BA'), 1),
(25845237, UNHEX('00000000000000000000FFFF362496B7'), 1),
(25845235, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25845224, UNHEX('00000000000000000000FFFFCB7F7456'), 2),
(25845222, UNHEX('00000000000000000000FFFFCB7F7456'), 3),
(25845217, UNHEX('00000000000000000000FFFFC0E4CC75'), 1),
(25845216, UNHEX('00000000000000000000FFFFC0E4CC75'), 3),
(25845168, UNHEX('00000000000000000000FFFF5DA03C16'), 1),
(25845167, UNHEX('00000000000000000000FFFF6FCEDD06'), 1),
(25845167, UNHEX('00000000000000000000FFFF5DA03C16'), 1),
(25845147, UNHEX('00000000000000000000FFFF34094937'), 1),
(25843884, UNHEX('00000000000000000000FFFFD3186516'), 3),
(25845145, UNHEX('00000000000000000000FFFFCF2E0DDF'), 1),
(25845105, UNHEX('00000000000000000000FFFF76645774'), 4),
(25845101, UNHEX('00000000000000000000FFFF3A573FEC'), 1),
(25845100, UNHEX('00000000000000000000FFFF3A573FEC'), 3),
(25845095, UNHEX('00000000000000000000FFFF8649C79A'), 1),
(25845086, UNHEX('00000000000000000000FFFF68839370'), 1),
(25843883, UNHEX('00000000000000000000FFFFD3186516'), 1),
(25843882, UNHEX('00000000000000000000FFFF334B81E7'), 2),
(25843880, UNHEX('00000000000000000000FFFFD3186516'), 3),
(25843877, UNHEX('00000000000000000000FFFF334B81E7'), 2),
(25843876, UNHEX('00000000000000000000FFFF7B886FA9'), 1),
(25843857, UNHEX('00000000000000000000FFFF6E042D81'), 2),
(25843838, UNHEX('00000000000000000000FFFF797BBDB5'), 1),
(25843833, UNHEX('00000000000000000000FFFFDC6235E5'), 2),
(25843833, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843832, UNHEX('00000000000000000000FFFFCAB78712'), 1),
(25843832, UNHEX('00000000000000000000FFFFDC6235E5'), 5),
(25843831, UNHEX('00000000000000000000FFFFD3186516'), 2),
(25843827, UNHEX('00000000000000000000FFFF284DA78B'), 1),
(25843826, UNHEX('00000000000000000000FFFFCAB78712'), 1),
(25843822, UNHEX('00000000000000000000FFFFCAB78712'), 1),
(25843797, UNHEX('00000000000000000000FFFFB44C0F1F'), 1),
(25843795, UNHEX('00000000000000000000FFFF9D3727C7'), 1),
(25843792, UNHEX('00000000000000000000FFFF797B88B4'), 3),
(25843791, UNHEX('00000000000000000000FFFF797B88B4'), 3),
(25843790, UNHEX('00000000000000000000FFFF797B88B4'), 1),
(25843769, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25842813, UNHEX('00000000000000000000FFFFCF2E0DC0'), 1),
(25845080, UNHEX('00000000000000000000FFFF284DA732'), 1),
(25845058, UNHEX('00000000000000000000FFFF42F95396'), 1),
(25845055, UNHEX('00000000000000000000FFFF8649C79A'), 1),
(25845046, UNHEX('00000000000000000000FFFF12ED4676'), 2),
(25842803, UNHEX('00000000000000000000FFFF7C523C1A'), 2),
(25842800, UNHEX('00000000000000000000FFFF7C523C1A'), 4),
(25845034, UNHEX('00000000000000000000FFFF2501CC5C'), 1),
(25844982, UNHEX('00000000000000000000FFFF3AFC34B5'), 2),
(25844898, UNHEX('00000000000000000000FFFF9D372732'), 1),
(25843756, UNHEX('00000000000000000000FFFFD3193F02'), 2),
(25843755, UNHEX('00000000000000000000FFFFD3193F02'), 1),
(25843743, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843738, UNHEX('00000000000000000000FFFF9D3727C7'), 1),
(25843730, UNHEX('00000000000000000000FFFF6FCEC66B'), 1),
(25843725, UNHEX('00000000000000000000FFFF904C387C'), 2),
(25843724, UNHEX('00000000000000000000FFFF904C387C'), 1),
(25843689, UNHEX('00000000000000000000FFFF9D372758'), 1),
(25843682, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843682, UNHEX('00000000000000000000FFFF9D372758'), 1),
(25843664, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843650, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843646, UNHEX('00000000000000000000FFFF334B81E7'), 2),
(25843631, UNHEX('00000000000000000000FFFF3624954A'), 1),
(25843628, UNHEX('00000000000000000000FFFF3A573FEF'), 2),
(25843627, UNHEX('00000000000000000000FFFF3A573FEF'), 1),
(25843625, UNHEX('00000000000000000000FFFF3624955F'), 1),
(25843619, UNHEX('00000000000000000000FFFF334B81E7'), 1) ;
INSERT INTO `wp2o_wfScanners` ( `eMin`, `IP`, `hits`) VALUES
(25842635, UNHEX('00000000000000000000FFFF284DA751'), 1),
(25842626, UNHEX('00000000000000000000FFFF34094931'), 1),
(25842606, UNHEX('00000000000000000000FFFF9D372795'), 1),
(25842592, UNHEX('00000000000000000000FFFFAF90D6D2'), 3),
(25842579, UNHEX('00000000000000000000FFFF5291D2A3'), 1),
(25842578, UNHEX('00000000000000000000FFFF5291D2A3'), 1),
(25842575, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25842565, UNHEX('00000000000000000000FFFF36D1D5D8'), 1),
(25842547, UNHEX('00000000000000000000FFFF0ED7B011'), 1),
(25842519, UNHEX('00000000000000000000FFFF7D1342E4'), 1),
(25842517, UNHEX('00000000000000000000FFFF284DA714'), 1),
(25842500, UNHEX('00000000000000000000FFFFBCD5318A'), 5),
(25842499, UNHEX('00000000000000000000FFFFBCD5318A'), 7),
(25842491, UNHEX('00000000000000000000FFFF67260F42'), 1),
(25842481, UNHEX('00000000000000000000FFFF67260F42'), 1),
(25842480, UNHEX('00000000000000000000FFFF40D15981'), 1),
(25844884, UNHEX('00000000000000000000FFFF362494D6'), 1),
(25844867, UNHEX('00000000000000000000FFFF9D372732'), 1),
(25844747, UNHEX('00000000000000000000FFFF05BDAD96'), 1),
(25844736, UNHEX('00000000000000000000FFFF36249668'), 1),
(25844732, UNHEX('00000000000000000000FFFF3409493A'), 1),
(25844689, UNHEX('00000000000000000000FFFF6FCEC652'), 1),
(25844674, UNHEX('00000000000000000000FFFF3624968E'), 1),
(25844674, UNHEX('00000000000000000000FFFFB7ABB862'), 2),
(25844597, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844595, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844594, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844593, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844592, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844591, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844590, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844589, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844588, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844587, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844586, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844583, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25842476, UNHEX('00000000000000000000FFFF40D15981'), 1),
(25842475, UNHEX('00000000000000000000FFFFD109D404'), 1),
(25842475, UNHEX('00000000000000000000FFFF40D15981'), 1),
(25842474, UNHEX('00000000000000000000FFFF40D15981'), 2),
(25842472, UNHEX('00000000000000000000FFFF284DA7B4'), 1),
(25842456, UNHEX('00000000000000000000FFFFAF915CB2'), 2),
(25842455, UNHEX('00000000000000000000FFFFAF915CB2'), 2),
(25842451, UNHEX('00000000000000000000FFFFAF915CB2'), 2),
(25842415, UNHEX('00000000000000000000FFFF6E042D81'), 1),
(25842404, UNHEX('00000000000000000000FFFF8649C79A'), 1),
(25842396, UNHEX('00000000000000000000FFFFAF88DE71'), 1),
(25842395, UNHEX('00000000000000000000FFFFAF88DE71'), 1),
(25842385, UNHEX('00000000000000000000FFFFC62EC1DF'), 1),
(25842366, UNHEX('00000000000000000000FFFF3AB98F38'), 1),
(25842361, UNHEX('00000000000000000000FFFF3AB98F38'), 1),
(25842360, UNHEX('00000000000000000000FFFF3AB98F38'), 1),
(25842350, UNHEX('00000000000000000000FFFF8649C79A'), 1),
(25842346, UNHEX('00000000000000000000FFFF2AEC0A69'), 1),
(25842344, UNHEX('00000000000000000000FFFF284DA7B2'), 1),
(25842301, UNHEX('00000000000000000000FFFF450C48A2'), 1),
(25842299, UNHEX('00000000000000000000FFFF6FCEDD2C'), 1),
(25842285, UNHEX('00000000000000000000FFFF9D3727A9'), 1),
(25842266, UNHEX('00000000000000000000FFFF7B7D4761'), 1),
(25842244, UNHEX('00000000000000000000FFFFCBB4B989'), 1),
(25842242, UNHEX('00000000000000000000FFFFCBB4B989'), 2),
(25842235, UNHEX('00000000000000000000FFFF3A573DE1'), 1),
(25842234, UNHEX('00000000000000000000FFFF3A573DE1'), 3),
(25844578, UNHEX('00000000000000000000FFFF12BFEE3D'), 1),
(25844568, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844567, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844567, UNHEX('00000000000000000000FFFF2EE5A897'), 1),
(25844566, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844565, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844564, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844563, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844562, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844560, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844556, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844555, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844553, UNHEX('00000000000000000000FFFF81D54C74'), 4),
(25844552, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844551, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844550, UNHEX('00000000000000000000FFFF81D54C74'), 1),
(25844549, UNHEX('00000000000000000000FFFF81D54C74'), 3),
(25844547, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25844544, UNHEX('00000000000000000000FFFF81D54C74'), 2),
(25843608, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843486, UNHEX('00000000000000000000FFFF362494F5'), 1),
(25843486, UNHEX('00000000000000000000FFFF450C48A2'), 1),
(25843482, UNHEX('00000000000000000000FFFF34094943'), 1),
(25843334, UNHEX('00000000000000000000FFFFC72F578E'), 2),
(25843333, UNHEX('00000000000000000000FFFFC72F578E'), 6),
(25843332, UNHEX('00000000000000000000FFFFC72F578E'), 8),
(25843331, UNHEX('00000000000000000000FFFFC72F578E'), 21),
(25843330, UNHEX('00000000000000000000FFFFC72F578E'), 20),
(25843329, UNHEX('00000000000000000000FFFFC72F578E'), 24),
(25843328, UNHEX('00000000000000000000FFFFC72F578E'), 16),
(25843327, UNHEX('00000000000000000000FFFFC72F578E'), 4),
(25843311, UNHEX('00000000000000000000FFFF284DA72F'), 1),
(25843280, UNHEX('00000000000000000000FFFF36249483'), 1),
(25843275, UNHEX('00000000000000000000FFFF284DA72F'), 1),
(25843251, UNHEX('00000000000000000000FFFF6FCEC649'), 1),
(25843221, UNHEX('00000000000000000000FFFF3B641A27'), 1),
(25843210, UNHEX('00000000000000000000FFFF3624940C'), 1) ;
INSERT INTO `wp2o_wfScanners` ( `eMin`, `IP`, `hits`) VALUES
(25843203, UNHEX('00000000000000000000FFFF2BFB5137'), 1),
(25843192, UNHEX('00000000000000000000FFFF36249511'), 1),
(25843170, UNHEX('00000000000000000000FFFFD13AA323'), 1),
(25843169, UNHEX('00000000000000000000FFFFD13AA323'), 1),
(25843151, UNHEX('00000000000000000000FFFF36249426'), 1),
(25843129, UNHEX('00000000000000000000FFFF939E473D'), 3),
(25843128, UNHEX('00000000000000000000FFFF939E473D'), 5),
(25843126, UNHEX('00000000000000000000FFFFCFB4F5FD'), 4),
(25843124, UNHEX('00000000000000000000FFFF9D3727E3'), 1),
(25843123, UNHEX('00000000000000000000FFFF284DA785'), 1),
(25843073, UNHEX('00000000000000000000FFFF0EC0D75C'), 3),
(25843063, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843048, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25843045, UNHEX('00000000000000000000FFFF340948F6'), 1),
(25843044, UNHEX('00000000000000000000FFFF36249546'), 1),
(25843024, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25843002, UNHEX('00000000000000000000FFFF5DA03C16'), 1),
(25842204, UNHEX('00000000000000000000FFFF3409493A'), 1),
(25842183, UNHEX('00000000000000000000FFFF450C48BE'), 1),
(25842182, UNHEX('00000000000000000000FFFF284DA763'), 1),
(25842115, UNHEX('00000000000000000000FFFF36249539'), 1),
(25842104, UNHEX('00000000000000000000FFFF36249476'), 1),
(25842063, UNHEX('00000000000000000000FFFF3624954C'), 1),
(25842044, UNHEX('00000000000000000000FFFF3624942B'), 1),
(25842043, UNHEX('00000000000000000000FFFF8A80032F'), 1),
(25842018, UNHEX('00000000000000000000FFFF36249454'), 1),
(25841963, UNHEX('00000000000000000000FFFF73EFD4C2'), 1),
(25841910, UNHEX('00000000000000000000FFFFB9E59016'), 1),
(25841871, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25841859, UNHEX('00000000000000000000FFFFB9E59016'), 1),
(25841859, UNHEX('00000000000000000000FFFF5DA03C16'), 2),
(25841841, UNHEX('00000000000000000000FFFF9D3727CD'), 1),
(25841811, UNHEX('00000000000000000000FFFF6FCEDD11'), 1),
(25841789, UNHEX('00000000000000000000FFFF3409493A'), 1),
(25841784, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25841782, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25841781, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25841759, UNHEX('00000000000000000000FFFF334B81E7'), 2),
(25841753, UNHEX('00000000000000000000FFFFB009097D'), 1),
(25841742, UNHEX('00000000000000000000FFFFA5E174D2'), 1),
(25841490, UNHEX('00000000000000000000FFFF36249425'), 1),
(25841478, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25841476, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25841464, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25841463, UNHEX('00000000000000000000FFFF334B81E7'), 1),
(25844530, UNHEX('00000000000000000000FFFF71D23602'), 1),
(25844528, UNHEX('00000000000000000000FFFF71D23602'), 1),
(25842966, UNHEX('00000000000000000000FFFF284DA70B'), 1),
(25842947, UNHEX('00000000000000000000FFFF36249544'), 1),
(25842946, UNHEX('00000000000000000000FFFFB9E59016'), 1),
(25844519, UNHEX('00000000000000000000FFFF3ED2FCC4'), 1),
(25844491, UNHEX('00000000000000000000FFFF71D27AF7'), 1),
(25844485, UNHEX('00000000000000000000FFFFB7AB4A99'), 2),
(25844485, UNHEX('00000000000000000000FFFF9D372768'), 1),
(25844484, UNHEX('00000000000000000000FFFFB7ABB953'), 3),
(25844483, UNHEX('00000000000000000000FFFFB7ABB953'), 1),
(25844473, UNHEX('00000000000000000000FFFFD21307A1'), 2),
(25844461, UNHEX('00000000000000000000FFFF05FFFD1B'), 1),
(25844402, UNHEX('00000000000000000000FFFF362494D9'), 1),
(25844401, UNHEX('00000000000000000000FFFFA2D2C482'), 1),
(25844369, UNHEX('00000000000000000000FFFF284DA771'), 1),
(25844363, UNHEX('00000000000000000000FFFFA7623F82'), 6),
(25844362, UNHEX('00000000000000000000FFFFA7623F82'), 2),
(25844361, UNHEX('00000000000000000000FFFFA7623F82'), 4),
(25844359, UNHEX('00000000000000000000FFFFA7623F82'), 3),
(25844358, UNHEX('00000000000000000000FFFF9D37275F'), 1),
(25844346, UNHEX('00000000000000000000FFFFAF8F36DE'), 2),
(25844345, UNHEX('00000000000000000000FFFFADEA3087'), 2),
(25844332, UNHEX('00000000000000000000FFFF7DD1EBB1'), 1),
(25844309, UNHEX('00000000000000000000FFFFDA6F80B9'), 3),
(25844308, UNHEX('00000000000000000000FFFFDA6F80B9'), 2),
(25844305, UNHEX('00000000000000000000FFFF340948D5'), 1),
(25844299, UNHEX('00000000000000000000FFFFCAA50A83'), 2),
(25842915, UNHEX('00000000000000000000FFFF05FFFD1B'), 1),
(25842900, UNHEX('00000000000000000000FFFF797B88B4'), 2),
(25842899, UNHEX('00000000000000000000FFFF797B88B4'), 2),
(25842898, UNHEX('00000000000000000000FFFF797B88B4'), 2),
(25842890, UNHEX('00000000000000000000FFFF26633E5D'), 1),
(25842871, UNHEX('00000000000000000000FFFF7C523C1A'), 1),
(25842870, UNHEX('00000000000000000000FFFF7C523C1A'), 1),
(25842868, UNHEX('00000000000000000000FFFF7B88737C'), 1),
(25841439, UNHEX('00000000000000000000FFFFAF88E092'), 3),
(25841401, UNHEX('00000000000000000000FFFFC73A56D1'), 2),
(25844298, UNHEX('00000000000000000000FFFFCAA50A83'), 2) ;

#
# End of data contents of table `wp2o_wfScanners`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfStatus`
#

DROP TABLE IF EXISTS `wp2o_wfStatus`;


#
# Table structure of table `wp2o_wfStatus`
#

CREATE TABLE `wp2o_wfStatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=279497 DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfStatus`
#
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(277722, '1550309575.743577', 2, 'info', 'Scanned contents of 299 additional files at 4.82 per second'),
(277723, '1550309576.972180', 2, 'info', 'Scanned contents of 309 additional files at 4.88 per second'),
(277724, '1550309577.990790', 2, 'info', 'Scanned contents of 318 additional files at 4.94 per second'),
(277725, '1550309579.047055', 2, 'info', 'Scanned contents of 330 additional files at 5.05 per second'),
(277726, '1550309580.479653', 2, 'info', 'Scanned contents of 338 additional files at 5.06 per second'),
(277727, '1550309581.626140', 2, 'info', 'Scanned contents of 345 additional files at 5.08 per second'),
(277728, '1550309582.634258', 2, 'info', 'Scanned contents of 350 additional files at 5.08 per second'),
(277729, '1550309583.833433', 2, 'info', 'Scanned contents of 356 additional files at 5.07 per second'),
(277730, '1550309584.875028', 2, 'info', 'Scanned contents of 364 additional files at 5.11 per second'),
(277731, '1550309585.917026', 2, 'info', 'Scanned contents of 371 additional files at 5.14 per second'),
(277732, '1550309587.016698', 2, 'info', 'Scanned contents of 383 additional files at 5.22 per second'),
(277733, '1550309588.062521', 2, 'info', 'Scanned contents of 396 additional files at 5.32 per second'),
(277734, '1550309589.099720', 2, 'info', 'Scanned contents of 408 additional files at 5.41 per second'),
(277735, '1550309594.870581', 2, 'info', 'Scanned contents of 417 additional files at 5.14 per second'),
(277736, '1550309595.954412', 2, 'info', 'Scanned contents of 424 additional files at 5.15 per second'),
(277737, '1550309597.030084', 2, 'info', 'Scanned contents of 432 additional files at 5.18 per second'),
(277738, '1550309598.227893', 2, 'info', 'Scanned contents of 441 additional files at 5.22 per second'),
(277739, '1550309599.321117', 2, 'info', 'Scanned contents of 443 additional files at 5.17 per second'),
(277740, '1550309600.613821', 2, 'info', 'Scanned contents of 450 additional files at 5.18 per second'),
(277741, '1550309601.711793', 2, 'info', 'Scanned contents of 456 additional files at 5.18 per second'),
(277742, '1550309604.004967', 2, 'info', 'Scanned contents of 464 additional files at 5.14 per second'),
(277743, '1550309605.064868', 2, 'info', 'Scanned contents of 472 additional files at 5.16 per second'),
(277744, '1550309606.083059', 2, 'info', 'Scanned contents of 480 additional files at 5.19 per second'),
(277745, '1550309607.140075', 2, 'info', 'Scanned contents of 489 additional files at 5.23 per second'),
(277746, '1550309608.142421', 2, 'info', 'Scanned contents of 498 additional files at 5.27 per second'),
(277747, '1550309609.205052', 2, 'info', 'Scanned contents of 510 additional files at 5.34 per second'),
(277748, '1550309614.732137', 2, 'info', 'Scanned contents of 521 additional files at 5.16 per second'),
(277749, '1550309615.829239', 2, 'info', 'Scanned contents of 532 additional files at 5.21 per second'),
(277750, '1550309616.830750', 2, 'info', 'Scanned contents of 540 additional files at 5.24 per second'),
(277751, '1550309617.848900', 2, 'info', 'Scanned contents of 548 additional files at 5.26 per second'),
(277752, '1550309618.911310', 2, 'info', 'Scanned contents of 559 additional files at 5.31 per second'),
(277753, '1550309619.948715', 2, 'info', 'Scanned contents of 570 additional files at 5.36 per second'),
(277754, '1550309620.968501', 2, 'info', 'Scanned contents of 579 additional files at 5.40 per second'),
(277755, '1550309621.977340', 2, 'info', 'Scanned contents of 588 additional files at 5.43 per second'),
(277756, '1550309623.020468', 2, 'info', 'Scanned contents of 597 additional files at 5.46 per second'),
(277757, '1550309624.107309', 2, 'info', 'Scanned contents of 605 additional files at 5.48 per second'),
(277758, '1550309625.183916', 2, 'info', 'Scanned contents of 615 additional files at 5.52 per second'),
(277759, '1550309626.216678', 2, 'info', 'Scanned contents of 626 additional files at 5.56 per second'),
(277760, '1550309627.249011', 2, 'info', 'Scanned contents of 632 additional files at 5.56 per second'),
(277761, '1550309628.583627', 2, 'info', 'Scanned contents of 698 additional files at 6.07 per second'),
(277762, '1550309629.767463', 2, 'info', 'Scanned contents of 720 additional files at 6.20 per second'),
(277763, '1550309631.249984', 2, 'info', 'Scanned contents of 721 additional files at 6.13 per second'),
(277764, '1550309635.347466', 2, 'info', 'Scanned contents of 722 additional files at 5.93 per second'),
(277765, '1550309636.364036', 2, 'info', 'Scanned contents of 727 additional files at 5.93 per second'),
(277766, '1550309637.589042', 2, 'info', 'Scanned contents of 732 additional files at 5.91 per second'),
(277767, '1550309639.581625', 2, 'info', 'Scanned contents of 736 additional files at 5.85 per second'),
(277768, '1550309640.713304', 2, 'info', 'Scanned contents of 739 additional files at 5.82 per second'),
(277769, '1550309642.607684', 2, 'info', 'Scanned contents of 747 additional files at 5.79 per second'),
(277770, '1550309643.770790', 2, 'info', 'Scanned contents of 751 additional files at 5.77 per second'),
(277771, '1550309644.824870', 2, 'info', 'Scanned contents of 756 additional files at 5.76 per second'),
(277772, '1550309645.887330', 2, 'info', 'Scanned contents of 761 additional files at 5.76 per second'),
(277773, '1550309646.996111', 2, 'info', 'Scanned contents of 763 additional files at 5.72 per second'),
(277774, '1550309649.101246', 2, 'info', 'Scanned contents of 770 additional files at 5.69 per second'),
(277775, '1550309650.147884', 2, 'info', 'Scanned contents of 788 additional files at 5.77 per second'),
(277776, '1550309655.479683', 2, 'info', 'Scanned contents of 796 additional files at 5.61 per second'),
(277777, '1550309656.578849', 2, 'info', 'Scanned contents of 802 additional files at 5.61 per second'),
(277778, '1550309657.678519', 2, 'info', 'Scanned contents of 806 additional files at 5.60 per second'),
(277779, '1550309659.098803', 2, 'info', 'Scanned contents of 816 additional files at 5.61 per second'),
(277780, '1550309660.151987', 2, 'info', 'Scanned contents of 826 additional files at 5.64 per second'),
(277781, '1550309661.202294', 2, 'info', 'Scanned contents of 835 additional files at 5.66 per second'),
(277782, '1550309662.319509', 2, 'info', 'Scanned contents of 848 additional files at 5.71 per second'),
(277783, '1550309665.226700', 2, 'info', 'Scanned contents of 852 additional files at 5.62 per second'),
(277784, '1550309666.450149', 2, 'info', 'Scanned contents of 855 additional files at 5.60 per second'),
(277785, '1550309667.498708', 2, 'info', 'Scanned contents of 857 additional files at 5.57 per second'),
(277786, '1550309668.817314', 2, 'info', 'Scanned contents of 861 additional files at 5.55 per second'),
(277787, '1550309670.995062', 2, 'info', 'Scanned contents of 866 additional files at 5.50 per second'),
(277788, '1550309676.475505', 2, 'info', 'Scanned contents of 868 additional files at 5.33 per second'),
(277789, '1550309679.464656', 2, 'info', 'Scanned contents of 872 additional files at 5.26 per second'),
(277790, '1550309680.566590', 2, 'info', 'Scanned contents of 879 additional files at 5.27 per second'),
(277791, '1550309681.834079', 2, 'info', 'Scanned contents of 886 additional files at 5.27 per second'),
(277792, '1550309682.845046', 2, 'info', 'Scanned contents of 890 additional files at 5.26 per second'),
(277793, '1550309683.883388', 2, 'info', 'Scanned contents of 898 additional files at 5.28 per second'),
(277794, '1550309686.156505', 2, 'info', 'Scanned contents of 899 additional files at 5.21 per second'),
(277795, '1550309687.159942', 2, 'info', 'Scanned contents of 908 additional files at 5.23 per second'),
(277796, '1550309688.232851', 2, 'info', 'Scanned contents of 920 additional files at 5.27 per second'),
(277797, '1550309689.259054', 2, 'info', 'Scanned contents of 931 additional files at 5.30 per second'),
(277798, '1550309692.089239', 2, 'info', 'Scanned contents of 933 additional files at 5.23 per second'),
(277799, '1550309699.426902', 2, 'info', 'Scanned contents of 934 additional files at 5.03 per second'),
(277800, '1550309700.539622', 2, 'info', 'Scanned contents of 946 additional files at 5.06 per second'),
(277801, '1550309701.812723', 2, 'info', 'Scanned contents of 955 additional files at 5.08 per second'),
(277802, '1550309703.588344', 2, 'info', 'Scanned contents of 958 additional files at 5.04 per second'),
(277803, '1550309704.592993', 2, 'info', 'Scanned contents of 965 additional files at 5.05 per second'),
(277804, '1550309705.621721', 2, 'info', 'Scanned contents of 973 additional files at 5.07 per second'),
(277805, '1550309706.626000', 2, 'info', 'Scanned contents of 981 additional files at 5.08 per second'),
(277806, '1550309707.637396', 2, 'info', 'Scanned contents of 989 additional files at 5.10 per second'),
(277807, '1550309708.739497', 2, 'info', 'Scanned contents of 997 additional files at 5.11 per second'),
(277808, '1550309709.760147', 2, 'info', 'Scanned contents of 1006 additional files at 5.13 per second'),
(277809, '1550309724.477532', 2, 'info', 'Scanned contents of 1007 additional files at 4.78 per second'),
(277810, '1550309729.529261', 2, 'info', 'Scanned contents of 1008 additional files at 4.67 per second'),
(277811, '1550309729.538492', 2, 'info', 'Scanned contents of 1008 additional files at 4.67 per second'),
(277812, '1550309729.539326', 2, 'info', 'Asking Wordfence to check URL\'s against malware list.'),
(277813, '1550309729.591678', 2, 'info', 'Checking 278 host keys against Wordfence scanning servers.'),
(277814, '1550309730.623594', 2, 'info', 'Done host key check.'),
(277815, '1550309730.628210', 2, 'info', 'Checking 5 URLs from 5 sources.'),
(277816, '1550309731.468035', 2, 'info', 'Done URL check.'),
(277817, '1550309731.473014', 2, 'info', 'Done file contents scan'),
(277823, '1550309731.657260', 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(277824, '1550309731.658130', 2, 'info', 'Checking 3 host keys against Wordfence scanning servers.'),
(277825, '1550309732.433437', 2, 'info', 'Done host key check.'),
(277826, '1550309732.434600', 2, 'info', 'Done examining URLs') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(277831, '1550309732.467760', 2, 'info', 'Starting password strength check on 1 users.'),
(277834, '1550309732.483458', 2, 'info', 'Starting DNS scan for www.investors-watch.com/wp-staging/ranhill'),
(277835, '1550309732.553824', 2, 'info', 'Scanning DNS A record for www.investors-watch.com/wp-staging/ranhill'),
(277838, '1550309732.620911', 2, 'info', 'Total disk space: 609.9881GB -- Free disk space: 139.6384GB'),
(277839, '1550309732.621612', 2, 'info', 'The disk has 142989.70 MB space available'),
(277845, '1550309751.980632', 1, 'info', '-------------------'),
(277846, '1550309751.981029', 1, 'info', 'Scan Complete. Scanned 5766 files, 20 plugins, 4 themes, 111 pages, 1 comments and 29214 records in 6 minutes 47 seconds.'),
(277848, '1550309752.799283', 2, 'info', 'Wordfence used 35.06MB of memory for scan. Server peak memory usage was: 48.47MB'),
(277849, '1550360247.611458', 1, 'info', 'Scheduled Wordfence scan starting at Saturday 16th of February 2019 11:37:27 PM'),
(277859, '1550360259.697604', 1, 'info', 'Contacting Wordfence to initiate scan'),
(277860, '1550360260.808304', 2, 'info', 'Getting plugin list from WordPress'),
(277861, '1550360260.856259', 2, 'info', 'Found 20 plugins'),
(277862, '1550360260.858639', 2, 'info', 'Getting theme list from WordPress'),
(277863, '1550360260.940290', 2, 'info', 'Found 4 themes'),
(277873, '1550360264.661117', 2, 'info', '500 files indexed'),
(277874, '1550360265.458020', 2, 'info', '1000 files indexed'),
(277875, '1550360266.437948', 2, 'info', '1500 files indexed'),
(277876, '1550360267.128576', 2, 'info', '2000 files indexed'),
(277877, '1550360268.786834', 2, 'info', '2500 files indexed'),
(277878, '1550360269.912829', 2, 'info', '3000 files indexed'),
(277879, '1550360272.257211', 2, 'info', '3500 files indexed'),
(277880, '1550360272.641165', 2, 'info', '4000 files indexed'),
(277881, '1550360273.175037', 2, 'info', '4500 files indexed'),
(277882, '1550360275.955714', 2, 'info', '4966 files indexed'),
(277883, '1550360281.849909', 2, 'info', '5466 files indexed'),
(277884, '1550360282.037063', 2, 'info', '5766 files indexed'),
(277885, '1550360283.588364', 2, 'info', 'Analyzed 100 files containing 1.32 MB of data so far'),
(277886, '1550360284.949228', 2, 'info', 'Analyzed 200 files containing 2.46 MB of data so far'),
(277887, '1550360286.152956', 2, 'info', 'Analyzed 300 files containing 3.67 MB of data so far'),
(277888, '1550360287.768079', 2, 'info', 'Analyzed 400 files containing 5.6 MB of data so far'),
(277889, '1550360288.777024', 2, 'info', 'Analyzed 500 files containing 6.31 MB of data so far'),
(277890, '1550360290.091114', 2, 'info', 'Analyzed 600 files containing 7.21 MB of data so far'),
(277891, '1550360291.825099', 2, 'info', 'Analyzed 700 files containing 8.48 MB of data so far'),
(277892, '1550360293.994343', 2, 'info', 'Analyzed 800 files containing 10.21 MB of data so far'),
(277893, '1550360294.773762', 2, 'info', 'Analyzed 900 files containing 11.05 MB of data so far'),
(277894, '1550360297.924437', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(277895, '1550360298.641083', 2, 'info', 'Analyzed 1100 files containing 12.47 MB of data so far'),
(277896, '1550360300.016290', 2, 'info', 'Analyzed 1200 files containing 13.46 MB of data so far'),
(277897, '1550360301.293715', 2, 'info', 'Analyzed 1300 files containing 14.47 MB of data so far'),
(277898, '1550360304.203960', 2, 'info', 'Analyzed 1400 files containing 17.16 MB of data so far'),
(277899, '1550360305.090610', 2, 'info', 'Analyzed 1500 files containing 18.61 MB of data so far'),
(277900, '1550360306.686988', 2, 'info', 'Analyzed 1600 files containing 19.97 MB of data so far'),
(277901, '1550360308.682146', 2, 'info', 'Analyzed 1700 files containing 21.73 MB of data so far'),
(277902, '1550360310.568470', 2, 'info', 'Analyzed 1800 files containing 23.43 MB of data so far'),
(277903, '1550360312.080366', 2, 'info', 'Analyzed 1900 files containing 24.46 MB of data so far'),
(277904, '1550360315.796570', 2, 'info', 'Analyzed 2000 files containing 25.1 MB of data so far'),
(277905, '1550360316.628110', 2, 'info', 'Analyzed 2100 files containing 25.51 MB of data so far'),
(277906, '1550360317.479386', 2, 'info', 'Analyzed 2200 files containing 26.03 MB of data so far'),
(277907, '1550360318.390124', 2, 'info', 'Analyzed 2300 files containing 26.58 MB of data so far'),
(277908, '1550360319.230984', 2, 'info', 'Analyzed 2400 files containing 27.07 MB of data so far'),
(277909, '1550360320.241022', 2, 'info', 'Analyzed 2500 files containing 27.76 MB of data so far'),
(277910, '1550360321.491071', 2, 'info', 'Analyzed 2600 files containing 28.71 MB of data so far'),
(277911, '1550360321.865991', 2, 'info', 'Analyzed 2700 files containing 29.05 MB of data so far'),
(277912, '1550360322.348751', 2, 'info', 'Analyzed 2800 files containing 29.57 MB of data so far'),
(277913, '1550360322.804986', 2, 'info', 'Analyzed 2900 files containing 29.76 MB of data so far'),
(277914, '1550360323.366028', 2, 'info', 'Analyzed 3000 files containing 30.08 MB of data so far'),
(277915, '1550360324.277491', 2, 'info', 'Analyzed 3100 files containing 30.67 MB of data so far'),
(277916, '1550360327.633160', 2, 'info', 'Analyzed 3200 files containing 33.72 MB of data so far'),
(277917, '1550360328.680943', 2, 'info', 'Analyzed 3300 files containing 34.81 MB of data so far'),
(277918, '1550360329.397024', 2, 'info', 'Analyzed 3400 files containing 35.34 MB of data so far'),
(277919, '1550360332.216127', 2, 'info', 'Analyzed 3500 files containing 35.38 MB of data so far'),
(277920, '1550360332.935192', 2, 'info', 'Analyzed 3600 files containing 35.74 MB of data so far'),
(277921, '1550360336.277026', 2, 'info', 'Analyzed 3700 files containing 39.6 MB of data so far'),
(277922, '1550360337.213352', 2, 'info', 'Analyzed 3800 files containing 41.52 MB of data so far'),
(277923, '1550360339.791421', 2, 'info', 'Analyzed 3900 files containing 43.94 MB of data so far'),
(277924, '1550360342.497182', 2, 'info', 'Analyzed 4000 files containing 46.35 MB of data so far'),
(277925, '1550360343.637603', 2, 'info', 'Analyzed 4100 files containing 47.2 MB of data so far'),
(277926, '1550360345.941335', 2, 'info', 'Analyzed 4200 files containing 49.25 MB of data so far'),
(277927, '1550360346.652080', 2, 'info', 'Analyzed 4300 files containing 49.66 MB of data so far'),
(277928, '1550360350.955141', 2, 'info', 'Analyzed 4400 files containing 50.16 MB of data so far'),
(277929, '1550360351.649511', 2, 'info', 'Analyzed 4500 files containing 50.52 MB of data so far'),
(277930, '1550360352.608354', 2, 'info', 'Analyzed 4600 files containing 51.45 MB of data so far'),
(277931, '1550360353.119238', 2, 'info', 'Analyzed 4700 files containing 52.55 MB of data so far'),
(277932, '1550360353.703227', 2, 'info', 'Analyzed 4800 files containing 53.24 MB of data so far'),
(277933, '1550360355.431066', 2, 'info', 'Analyzed 4900 files containing 54.51 MB of data so far'),
(277934, '1550360358.489743', 2, 'info', 'Analyzed 5000 files containing 58.39 MB of data so far'),
(277935, '1550360359.336195', 2, 'info', 'Analyzed 5100 files containing 59.04 MB of data so far'),
(277936, '1550360360.475097', 2, 'info', 'Analyzed 5200 files containing 61.58 MB of data so far'),
(277937, '1550360361.590348', 2, 'info', 'Analyzed 5300 files containing 63.19 MB of data so far'),
(277938, '1550360362.360329', 2, 'info', 'Analyzed 5400 files containing 63.65 MB of data so far'),
(277939, '1550360363.933510', 2, 'info', 'Analyzed 5500 files containing 65.13 MB of data so far'),
(277940, '1550360365.422080', 2, 'info', 'Analyzed 5600 files containing 66.2 MB of data so far'),
(277941, '1550360369.962263', 2, 'info', 'Analyzed 5700 files containing 69.03 MB of data so far'),
(277942, '1550360370.175862', 2, 'info', 'Analyzed 5766 files containing 70.18 MB of data.'),
(277950, '1550360372.158587', 2, 'info', 'Starting scan of file contents'),
(277951, '1550360373.206885', 2, 'info', 'Scanned contents of 9 additional files at 8.60 per second'),
(277952, '1550360374.303953', 2, 'info', 'Scanned contents of 25 additional files at 11.66 per second'),
(277953, '1550360375.711216', 2, 'info', 'Scanned contents of 36 additional files at 10.14 per second'),
(277954, '1550360376.714398', 2, 'info', 'Scanned contents of 52 additional files at 11.42 per second'),
(277955, '1550360377.767861', 2, 'info', 'Scanned contents of 59 additional files at 10.52 per second'),
(277956, '1550360378.876198', 2, 'info', 'Scanned contents of 70 additional files at 10.42 per second'),
(277957, '1550360380.132452', 2, 'info', 'Scanned contents of 81 additional files at 10.16 per second'),
(277958, '1550360381.302887', 2, 'info', 'Scanned contents of 84 additional files at 9.19 per second'),
(277959, '1550360382.414296', 2, 'info', 'Scanned contents of 95 additional files at 9.26 per second'),
(277960, '1550360384.717950', 2, 'info', 'Scanned contents of 98 additional files at 7.80 per second'),
(277961, '1550360387.136855', 2, 'info', 'Scanned contents of 99 additional files at 6.61 per second'),
(277962, '1550360388.264613', 2, 'info', 'Scanned contents of 113 additional files at 7.02 per second'),
(277963, '1550360389.409870', 2, 'info', 'Scanned contents of 119 additional files at 6.90 per second'),
(277964, '1550360390.417089', 2, 'info', 'Scanned contents of 127 additional files at 6.96 per second'),
(277965, '1550360391.431870', 2, 'info', 'Scanned contents of 135 additional files at 7.00 per second') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(277966, '1550360392.519538', 2, 'info', 'Scanned contents of 144 additional files at 7.07 per second'),
(277967, '1550360393.556537', 2, 'info', 'Scanned contents of 155 additional files at 7.24 per second'),
(277968, '1550360395.760271', 2, 'info', 'Scanned contents of 170 additional files at 7.20 per second'),
(277969, '1550360397.260391', 2, 'info', 'Scanned contents of 187 additional files at 7.45 per second'),
(277970, '1550360398.285590', 2, 'info', 'Scanned contents of 203 additional files at 7.77 per second'),
(277971, '1550360399.292138', 2, 'info', 'Scanned contents of 209 additional files at 7.70 per second'),
(277972, '1550360400.449134', 2, 'info', 'Scanned contents of 216 additional files at 7.64 per second'),
(277973, '1550360401.466741', 2, 'info', 'Scanned contents of 233 additional files at 7.95 per second'),
(277974, '1550360402.514749', 2, 'info', 'Scanned contents of 245 additional files at 8.07 per second'),
(277975, '1550360405.591893', 2, 'info', 'Scanned contents of 250 additional files at 7.48 per second'),
(277976, '1550360406.787721', 2, 'info', 'Scanned contents of 264 additional files at 7.62 per second'),
(277977, '1550360407.803646', 2, 'info', 'Scanned contents of 278 additional files at 7.80 per second'),
(277978, '1550360408.824978', 2, 'info', 'Scanned contents of 294 additional files at 8.02 per second'),
(277979, '1550360409.944458', 2, 'info', 'Scanned contents of 309 additional files at 8.18 per second'),
(277980, '1550360410.975949', 2, 'info', 'Scanned contents of 324 additional files at 8.35 per second'),
(277981, '1550360412.114576', 2, 'info', 'Scanned contents of 338 additional files at 8.46 per second'),
(277982, '1550360413.140222', 2, 'info', 'Scanned contents of 348 additional files at 8.49 per second'),
(277983, '1550360414.146681', 2, 'info', 'Scanned contents of 356 additional files at 8.48 per second'),
(277984, '1550360415.177948', 2, 'info', 'Scanned contents of 367 additional files at 8.53 per second'),
(277985, '1550360416.220978', 2, 'info', 'Scanned contents of 388 additional files at 8.81 per second'),
(277986, '1550360417.221151', 2, 'info', 'Scanned contents of 405 additional files at 8.99 per second'),
(277987, '1550360418.322608', 2, 'info', 'Scanned contents of 420 additional files at 9.10 per second'),
(277988, '1550360419.338424', 2, 'info', 'Scanned contents of 436 additional files at 9.24 per second'),
(277989, '1550360420.339807', 2, 'info', 'Scanned contents of 443 additional files at 9.19 per second'),
(277990, '1550360423.735319', 2, 'info', 'Scanned contents of 451 additional files at 8.74 per second'),
(277991, '1550360424.755306', 2, 'info', 'Scanned contents of 459 additional files at 8.73 per second'),
(277992, '1550360425.970931', 2, 'info', 'Scanned contents of 464 additional files at 8.62 per second'),
(277993, '1550360427.081538', 2, 'info', 'Scanned contents of 474 additional files at 8.63 per second'),
(277994, '1550360428.185829', 2, 'info', 'Scanned contents of 483 additional files at 8.62 per second'),
(277995, '1550360429.212223', 2, 'info', 'Scanned contents of 497 additional files at 8.71 per second'),
(277996, '1550360430.257403', 2, 'info', 'Scanned contents of 514 additional files at 8.85 per second'),
(277997, '1550360431.291449', 2, 'info', 'Scanned contents of 531 additional files at 8.98 per second'),
(277998, '1550360432.349201', 2, 'info', 'Scanned contents of 545 additional files at 9.05 per second'),
(277999, '1550360433.375929', 2, 'info', 'Scanned contents of 559 additional files at 9.13 per second'),
(278000, '1550360434.390036', 2, 'info', 'Scanned contents of 572 additional files at 9.19 per second'),
(278001, '1550360435.433950', 2, 'info', 'Scanned contents of 583 additional files at 9.21 per second'),
(278002, '1550360436.484797', 2, 'info', 'Scanned contents of 594 additional files at 9.23 per second'),
(278003, '1550360437.489664', 2, 'info', 'Scanned contents of 608 additional files at 9.31 per second'),
(278004, '1550360438.702216', 2, 'info', 'Scanned contents of 626 additional files at 9.41 per second'),
(278005, '1550360441.682407', 2, 'info', 'Scanned contents of 631 additional files at 9.08 per second'),
(278006, '1550360442.792368', 2, 'info', 'Scanned contents of 700 additional files at 9.91 per second'),
(278007, '1550360444.469260', 2, 'info', 'Scanned contents of 721 additional files at 9.97 per second'),
(278008, '1550360445.982485', 2, 'info', 'Scanned contents of 732 additional files at 9.92 per second'),
(278009, '1550360447.144397', 2, 'info', 'Scanned contents of 736 additional files at 9.82 per second'),
(278010, '1550360448.980018', 2, 'info', 'Scanned contents of 747 additional files at 9.72 per second'),
(278011, '1550360450.100602', 2, 'info', 'Scanned contents of 756 additional files at 9.70 per second'),
(278012, '1550360451.168881', 2, 'info', 'Scanned contents of 763 additional files at 9.66 per second'),
(278013, '1550360452.604114', 2, 'info', 'Scanned contents of 772 additional files at 9.60 per second'),
(278014, '1550360453.672849', 2, 'info', 'Scanned contents of 800 additional files at 9.81 per second'),
(278015, '1550360454.744432', 2, 'info', 'Scanned contents of 813 additional files at 9.84 per second'),
(278016, '1550360455.768337', 2, 'info', 'Scanned contents of 826 additional files at 9.88 per second'),
(278017, '1550360456.791007', 2, 'info', 'Scanned contents of 841 additional files at 9.94 per second'),
(278018, '1550360459.310382', 2, 'info', 'Scanned contents of 846 additional files at 9.71 per second'),
(278019, '1550360461.285078', 2, 'info', 'Scanned contents of 852 additional files at 9.56 per second'),
(278020, '1550360462.581537', 2, 'info', 'Scanned contents of 856 additional files at 9.47 per second'),
(278021, '1550360463.677059', 2, 'info', 'Scanned contents of 865 additional files at 9.45 per second'),
(278022, '1550360464.864363', 2, 'info', 'Scanned contents of 868 additional files at 9.36 per second'),
(278023, '1550360466.902773', 2, 'info', 'Scanned contents of 872 additional files at 9.20 per second'),
(278024, '1550360467.982464', 2, 'info', 'Scanned contents of 884 additional files at 9.23 per second'),
(278025, '1550360468.983104', 2, 'info', 'Scanned contents of 892 additional files at 9.21 per second'),
(278026, '1550360470.632221', 2, 'info', 'Scanned contents of 899 additional files at 9.13 per second'),
(278027, '1550360471.686323', 2, 'info', 'Scanned contents of 920 additional files at 9.24 per second'),
(278028, '1550360473.865433', 2, 'info', 'Scanned contents of 933 additional files at 9.17 per second'),
(278029, '1550360474.865703', 2, 'info', 'Scanned contents of 950 additional files at 9.25 per second'),
(278030, '1550360478.614758', 2, 'info', 'Scanned contents of 954 additional files at 8.96 per second'),
(278031, '1550360479.712937', 2, 'info', 'Scanned contents of 958 additional files at 8.91 per second'),
(278032, '1550360480.785746', 2, 'info', 'Scanned contents of 972 additional files at 8.95 per second'),
(278033, '1550360481.800992', 2, 'info', 'Scanned contents of 989 additional files at 9.02 per second'),
(278034, '1550360482.930358', 2, 'info', 'Scanned contents of 1006 additional files at 9.08 per second'),
(278035, '1550360491.575758', 2, 'info', 'Scanned contents of 1007 additional files at 8.43 per second'),
(278036, '1550360491.775001', 2, 'info', 'Scanned contents of 1008 additional files at 8.43 per second'),
(278037, '1550360491.775388', 2, 'info', 'Asking Wordfence to check URL\'s against malware list.'),
(278038, '1550360491.796729', 2, 'info', 'Checking 278 host keys against Wordfence scanning servers.'),
(278039, '1550360492.751151', 2, 'info', 'Done host key check.'),
(278040, '1550360492.752854', 2, 'info', 'Checking 5 URLs from 5 sources.'),
(278041, '1550360493.548669', 2, 'info', 'Done URL check.'),
(278042, '1550360493.551950', 2, 'info', 'Done file contents scan'),
(278048, '1550360493.654889', 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(278049, '1550360493.655399', 2, 'info', 'Checking 3 host keys against Wordfence scanning servers.'),
(278050, '1550360494.407177', 2, 'info', 'Done host key check.'),
(278051, '1550360494.407741', 2, 'info', 'Done examining URLs'),
(278056, '1550360496.555701', 2, 'info', 'Starting password strength check on 1 users.'),
(278059, '1550360496.564031', 2, 'info', 'Starting DNS scan for www.investors-watch.com/wp-staging/ranhill'),
(278060, '1550360496.652037', 2, 'info', 'Scanning DNS A record for www.investors-watch.com/wp-staging/ranhill'),
(278063, '1550360496.720637', 2, 'info', 'Total disk space: 609.9881GB -- Free disk space: 139.8774GB'),
(278064, '1550360496.720937', 2, 'info', 'The disk has 143234.45 MB space available'),
(278070, '1550360511.123033', 1, 'info', '-------------------'),
(278071, '1550360511.123427', 1, 'info', 'Scan Complete. Scanned 5766 files, 20 plugins, 4 themes, 111 pages, 1 comments and 28591 records in 4 minutes 21 seconds.'),
(278073, '1550360511.902178', 2, 'info', 'Wordfence used 35.03MB of memory for scan. Server peak memory usage was: 48.43MB'),
(278074, '1550403413.073310', 1, 'info', 'Scheduled Wordfence scan starting at Sunday 17th of February 2019 11:36:53 AM'),
(278084, '1550403440.323310', 1, 'info', 'Contacting Wordfence to initiate scan'),
(278085, '1550403441.150197', 2, 'info', 'Getting plugin list from WordPress'),
(278086, '1550403442.126279', 2, 'info', 'Found 20 plugins'),
(278087, '1550403442.129110', 2, 'info', 'Getting theme list from WordPress'),
(278088, '1550403442.181318', 2, 'info', 'Found 4 themes'),
(278098, '1550403445.766532', 2, 'info', '500 files indexed'),
(278099, '1550403446.027618', 2, 'info', '1000 files indexed'),
(278100, '1550403446.208850', 2, 'info', '1500 files indexed'),
(278101, '1550403446.380635', 2, 'info', '2000 files indexed'),
(278102, '1550403446.716353', 2, 'info', '2500 files indexed') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278103, '1550403447.124126', 2, 'info', '3000 files indexed'),
(278104, '1550403448.308224', 2, 'info', '3500 files indexed'),
(278105, '1550403448.497920', 2, 'info', '4000 files indexed'),
(278106, '1550403448.702666', 2, 'info', '4500 files indexed'),
(278107, '1550403450.666734', 2, 'info', '5000 files indexed'),
(278108, '1550403450.841759', 2, 'info', '5500 files indexed'),
(278109, '1550403450.928643', 2, 'info', '5766 files indexed'),
(278110, '1550403452.649412', 2, 'info', 'Analyzed 100 files containing 1.32 MB of data so far'),
(278111, '1550403454.005001', 2, 'info', 'Analyzed 200 files containing 2.46 MB of data so far'),
(278112, '1550403455.168175', 2, 'info', 'Analyzed 300 files containing 3.67 MB of data so far'),
(278113, '1550403456.793404', 2, 'info', 'Analyzed 400 files containing 5.6 MB of data so far'),
(278114, '1550403463.222002', 2, 'info', 'Analyzed 500 files containing 6.31 MB of data so far'),
(278115, '1550403464.433754', 2, 'info', 'Analyzed 600 files containing 7.21 MB of data so far'),
(278116, '1550403466.241028', 2, 'info', 'Analyzed 700 files containing 8.48 MB of data so far'),
(278117, '1550403468.340581', 2, 'info', 'Analyzed 800 files containing 10.21 MB of data so far'),
(278118, '1550403469.290876', 2, 'info', 'Analyzed 900 files containing 11.05 MB of data so far'),
(278119, '1550403470.222515', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(278120, '1550403470.982046', 2, 'info', 'Analyzed 1100 files containing 12.47 MB of data so far'),
(278121, '1550403472.430744', 2, 'info', 'Analyzed 1200 files containing 13.46 MB of data so far'),
(278122, '1550403473.757368', 2, 'info', 'Analyzed 1300 files containing 14.47 MB of data so far'),
(278123, '1550403476.707976', 2, 'info', 'Analyzed 1400 files containing 17.16 MB of data so far'),
(278124, '1550403480.235670', 2, 'info', 'Analyzed 1500 files containing 18.61 MB of data so far'),
(278125, '1550403481.776997', 2, 'info', 'Analyzed 1600 files containing 19.97 MB of data so far'),
(278126, '1550403483.793676', 2, 'info', 'Analyzed 1700 files containing 21.73 MB of data so far'),
(278127, '1550403485.695192', 2, 'info', 'Analyzed 1800 files containing 23.43 MB of data so far'),
(278128, '1550403487.045003', 2, 'info', 'Analyzed 1900 files containing 24.46 MB of data so far'),
(278129, '1550403488.045818', 2, 'info', 'Analyzed 2000 files containing 25.1 MB of data so far'),
(278130, '1550403488.743517', 2, 'info', 'Analyzed 2100 files containing 25.51 MB of data so far'),
(278131, '1550403489.615447', 2, 'info', 'Analyzed 2200 files containing 26.03 MB of data so far'),
(278132, '1550403490.457299', 2, 'info', 'Analyzed 2300 files containing 26.58 MB of data so far'),
(278133, '1550403491.454576', 2, 'info', 'Analyzed 2400 files containing 27.07 MB of data so far'),
(278134, '1550403492.607034', 2, 'info', 'Analyzed 2500 files containing 27.76 MB of data so far'),
(278135, '1550403494.177004', 2, 'info', 'Analyzed 2600 files containing 28.71 MB of data so far'),
(278136, '1550403494.471999', 2, 'info', 'Analyzed 2700 files containing 29.05 MB of data so far'),
(278137, '1550403494.925620', 2, 'info', 'Analyzed 2800 files containing 29.57 MB of data so far'),
(278138, '1550403497.739122', 2, 'info', 'Analyzed 2900 files containing 29.76 MB of data so far'),
(278139, '1550403498.374353', 2, 'info', 'Analyzed 3000 files containing 30.08 MB of data so far'),
(278140, '1550403499.271100', 2, 'info', 'Analyzed 3100 files containing 30.67 MB of data so far'),
(278141, '1550403502.490244', 2, 'info', 'Analyzed 3200 files containing 33.72 MB of data so far'),
(278142, '1550403503.557500', 2, 'info', 'Analyzed 3300 files containing 34.81 MB of data so far'),
(278143, '1550403504.412977', 2, 'info', 'Analyzed 3400 files containing 35.34 MB of data so far'),
(278144, '1550403504.803983', 2, 'info', 'Analyzed 3500 files containing 35.38 MB of data so far'),
(278145, '1550403505.510029', 2, 'info', 'Analyzed 3600 files containing 35.74 MB of data so far'),
(278146, '1550403509.601323', 2, 'info', 'Analyzed 3700 files containing 39.6 MB of data so far'),
(278147, '1550403510.734281', 2, 'info', 'Analyzed 3800 files containing 41.52 MB of data so far'),
(278148, '1550403515.602674', 2, 'info', 'Analyzed 3900 files containing 43.94 MB of data so far'),
(278149, '1550403518.280099', 2, 'info', 'Analyzed 4000 files containing 46.35 MB of data so far'),
(278150, '1550403519.372273', 2, 'info', 'Analyzed 4100 files containing 47.2 MB of data so far'),
(278151, '1550403521.625233', 2, 'info', 'Analyzed 4200 files containing 49.25 MB of data so far'),
(278152, '1550403522.293177', 2, 'info', 'Analyzed 4300 files containing 49.66 MB of data so far'),
(278153, '1550403523.114022', 2, 'info', 'Analyzed 4400 files containing 50.16 MB of data so far'),
(278154, '1550403523.796039', 2, 'info', 'Analyzed 4500 files containing 50.52 MB of data so far'),
(278155, '1550403524.758624', 2, 'info', 'Analyzed 4600 files containing 51.45 MB of data so far'),
(278156, '1550403525.520351', 2, 'info', 'Analyzed 4700 files containing 52.55 MB of data so far'),
(278157, '1550403526.542907', 2, 'info', 'Analyzed 4800 files containing 53.24 MB of data so far'),
(278158, '1550403528.233396', 2, 'info', 'Analyzed 4900 files containing 54.51 MB of data so far'),
(278159, '1550403533.663315', 2, 'info', 'Analyzed 5000 files containing 58.39 MB of data so far'),
(278160, '1550403534.432170', 2, 'info', 'Analyzed 5100 files containing 59.04 MB of data so far'),
(278161, '1550403536.055879', 2, 'info', 'Analyzed 5200 files containing 61.58 MB of data so far'),
(278162, '1550403537.195302', 2, 'info', 'Analyzed 5300 files containing 63.19 MB of data so far'),
(278163, '1550403537.945026', 2, 'info', 'Analyzed 5400 files containing 63.65 MB of data so far'),
(278164, '1550403539.727901', 2, 'info', 'Analyzed 5500 files containing 65.13 MB of data so far'),
(278165, '1550403541.288479', 2, 'info', 'Analyzed 5600 files containing 66.2 MB of data so far'),
(278166, '1550403544.432503', 2, 'info', 'Analyzed 5700 files containing 69.03 MB of data so far'),
(278167, '1550403545.782436', 2, 'info', 'Analyzed 5766 files containing 70.18 MB of data.'),
(278175, '1550403548.162038', 2, 'info', 'Starting scan of file contents'),
(278176, '1550403559.570296', 2, 'info', 'Scanned contents of 8 additional files at 7.79 per second'),
(278177, '1550403560.645105', 2, 'info', 'Scanned contents of 25 additional files at 11.90 per second'),
(278178, '1550403562.191010', 2, 'info', 'Scanned contents of 36 additional files at 9.87 per second'),
(278179, '1550403563.204885', 2, 'info', 'Scanned contents of 53 additional files at 11.37 per second'),
(278180, '1550403564.213475', 2, 'info', 'Scanned contents of 59 additional files at 10.41 per second'),
(278181, '1550403565.273979', 2, 'info', 'Scanned contents of 70 additional files at 10.40 per second'),
(278182, '1550403566.530485', 2, 'info', 'Scanned contents of 81 additional files at 10.14 per second'),
(278183, '1550403567.776164', 2, 'info', 'Scanned contents of 84 additional files at 9.10 per second'),
(278184, '1550403568.815251', 2, 'info', 'Scanned contents of 95 additional files at 9.25 per second'),
(278185, '1550403571.442337', 2, 'info', 'Scanned contents of 98 additional files at 7.60 per second'),
(278186, '1550403572.545055', 2, 'info', 'Scanned contents of 113 additional files at 8.07 per second'),
(278187, '1550403573.707150', 2, 'info', 'Scanned contents of 119 additional files at 7.85 per second'),
(278188, '1550403577.568683', 2, 'info', 'Scanned contents of 123 additional files at 6.47 per second'),
(278189, '1550403578.833661', 2, 'info', 'Scanned contents of 134 additional files at 6.60 per second'),
(278190, '1550403579.943881', 2, 'info', 'Scanned contents of 144 additional files at 6.73 per second'),
(278191, '1550403580.975468', 2, 'info', 'Scanned contents of 156 additional files at 6.95 per second'),
(278192, '1550403583.373213', 2, 'info', 'Scanned contents of 170 additional files at 6.85 per second'),
(278193, '1550403585.083298', 2, 'info', 'Scanned contents of 187 additional files at 7.05 per second'),
(278194, '1550403586.138070', 2, 'info', 'Scanned contents of 202 additional files at 7.32 per second'),
(278195, '1550403587.193244', 2, 'info', 'Scanned contents of 207 additional files at 7.23 per second'),
(278196, '1550403588.645834', 2, 'info', 'Scanned contents of 216 additional files at 7.18 per second'),
(278197, '1550403589.702503', 2, 'info', 'Scanned contents of 232 additional files at 7.45 per second'),
(278198, '1550403590.753392', 2, 'info', 'Scanned contents of 246 additional files at 7.64 per second'),
(278199, '1550403591.796064', 2, 'info', 'Scanned contents of 260 additional files at 7.82 per second'),
(278200, '1550403595.128158', 2, 'info', 'Scanned contents of 265 additional files at 7.24 per second'),
(278201, '1550403596.133474', 2, 'info', 'Scanned contents of 279 additional files at 7.42 per second'),
(278202, '1550403597.223258', 2, 'info', 'Scanned contents of 296 additional files at 7.65 per second'),
(278203, '1550403598.352613', 2, 'info', 'Scanned contents of 310 additional files at 7.79 per second'),
(278204, '1550403599.369363', 2, 'info', 'Scanned contents of 326 additional files at 7.99 per second'),
(278205, '1550403600.423860', 2, 'info', 'Scanned contents of 338 additional files at 8.07 per second'),
(278206, '1550403601.430319', 2, 'info', 'Scanned contents of 347 additional files at 8.09 per second'),
(278207, '1550403602.467023', 2, 'info', 'Scanned contents of 352 additional files at 8.01 per second'),
(278208, '1550403603.487491', 2, 'info', 'Scanned contents of 356 additional files at 7.92 per second'),
(278209, '1550403604.704455', 2, 'info', 'Scanned contents of 365 additional files at 7.91 per second') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278210, '1550403605.711521', 2, 'info', 'Scanned contents of 381 additional files at 8.08 per second'),
(278211, '1550403606.757037', 2, 'info', 'Scanned contents of 399 additional files at 8.28 per second'),
(278212, '1550403607.773571', 2, 'info', 'Scanned contents of 413 additional files at 8.39 per second'),
(278213, '1550403608.855348', 2, 'info', 'Scanned contents of 427 additional files at 8.49 per second'),
(278214, '1550403609.857964', 2, 'info', 'Scanned contents of 441 additional files at 8.59 per second'),
(278215, '1550403610.864509', 2, 'info', 'Scanned contents of 448 additional files at 8.56 per second'),
(278216, '1550403613.833003', 2, 'info', 'Scanned contents of 451 additional files at 8.16 per second'),
(278217, '1550403615.006500', 2, 'info', 'Scanned contents of 461 additional files at 8.16 per second'),
(278218, '1550403616.054090', 2, 'info', 'Scanned contents of 465 additional files at 8.09 per second'),
(278219, '1550403617.082342', 2, 'info', 'Scanned contents of 474 additional files at 8.10 per second'),
(278220, '1550403618.192667', 2, 'info', 'Scanned contents of 483 additional files at 8.10 per second'),
(278221, '1550403619.224248', 2, 'info', 'Scanned contents of 496 additional files at 8.17 per second'),
(278222, '1550403620.248955', 2, 'info', 'Scanned contents of 514 additional files at 8.33 per second'),
(278223, '1550403621.270972', 2, 'info', 'Scanned contents of 530 additional files at 8.45 per second'),
(278224, '1550403622.314137', 2, 'info', 'Scanned contents of 544 additional files at 8.53 per second'),
(278225, '1550403623.320662', 2, 'info', 'Scanned contents of 559 additional files at 8.63 per second'),
(278226, '1550403624.414745', 2, 'info', 'Scanned contents of 575 additional files at 8.73 per second'),
(278227, '1550403625.423596', 2, 'info', 'Scanned contents of 591 additional files at 8.84 per second'),
(278228, '1550403626.424871', 2, 'info', 'Scanned contents of 604 additional files at 8.90 per second'),
(278229, '1550403627.432606', 2, 'info', 'Scanned contents of 619 additional files at 8.99 per second'),
(278230, '1550403628.649148', 2, 'info', 'Scanned contents of 630 additional files at 8.99 per second'),
(278231, '1550403631.515073', 2, 'info', 'Scanned contents of 634 additional files at 8.69 per second'),
(278232, '1550403632.516521', 2, 'info', 'Scanned contents of 710 additional files at 9.60 per second'),
(278233, '1550403634.277138', 2, 'info', 'Scanned contents of 721 additional files at 9.52 per second'),
(278234, '1550403635.914778', 2, 'info', 'Scanned contents of 732 additional files at 9.46 per second'),
(278235, '1550403637.226410', 2, 'info', 'Scanned contents of 736 additional files at 9.35 per second'),
(278236, '1550403638.264656', 2, 'info', 'Scanned contents of 744 additional files at 9.33 per second'),
(278237, '1550403639.329952', 2, 'info', 'Scanned contents of 747 additional files at 9.25 per second'),
(278238, '1550403640.344818', 2, 'info', 'Scanned contents of 753 additional files at 9.21 per second'),
(278239, '1550403641.636819', 2, 'info', 'Scanned contents of 762 additional files at 9.17 per second'),
(278240, '1550403642.898918', 2, 'info', 'Scanned contents of 770 additional files at 9.13 per second'),
(278241, '1550403643.913268', 2, 'info', 'Scanned contents of 792 additional files at 9.28 per second'),
(278242, '1550403644.949870', 2, 'info', 'Scanned contents of 802 additional files at 9.28 per second'),
(278243, '1550403646.015123', 2, 'info', 'Scanned contents of 813 additional files at 9.29 per second'),
(278244, '1550403647.046752', 2, 'info', 'Scanned contents of 826 additional files at 9.33 per second'),
(278245, '1550403649.560868', 2, 'info', 'Scanned contents of 827 additional files at 9.09 per second'),
(278246, '1550403650.593528', 2, 'info', 'Scanned contents of 844 additional files at 9.17 per second'),
(278247, '1550403652.793834', 2, 'info', 'Scanned contents of 852 additional files at 9.04 per second'),
(278248, '1550403654.137933', 2, 'info', 'Scanned contents of 856 additional files at 8.95 per second'),
(278249, '1550403655.201088', 2, 'info', 'Scanned contents of 865 additional files at 8.95 per second'),
(278250, '1550403656.360389', 2, 'info', 'Scanned contents of 868 additional files at 8.87 per second'),
(278251, '1550403658.506094', 2, 'info', 'Scanned contents of 872 additional files at 8.72 per second'),
(278252, '1550403659.524197', 2, 'info', 'Scanned contents of 882 additional files at 8.73 per second'),
(278253, '1550403660.713016', 2, 'info', 'Scanned contents of 890 additional files at 8.71 per second'),
(278254, '1550403662.872235', 2, 'info', 'Scanned contents of 899 additional files at 8.62 per second'),
(278255, '1550403663.965410', 2, 'info', 'Scanned contents of 920 additional files at 8.73 per second'),
(278256, '1550403664.994851', 2, 'info', 'Scanned contents of 932 additional files at 8.76 per second'),
(278257, '1550403666.271028', 2, 'info', 'Scanned contents of 933 additional files at 8.66 per second'),
(278258, '1550403668.604402', 2, 'info', 'Scanned contents of 934 additional files at 8.49 per second'),
(278259, '1550403669.642873', 2, 'info', 'Scanned contents of 950 additional files at 8.55 per second'),
(278260, '1550403670.733166', 2, 'info', 'Scanned contents of 957 additional files at 8.53 per second'),
(278261, '1550403671.770228', 2, 'info', 'Scanned contents of 968 additional files at 8.55 per second'),
(278262, '1550403672.794323', 2, 'info', 'Scanned contents of 984 additional files at 8.61 per second'),
(278263, '1550403673.843659', 2, 'info', 'Scanned contents of 1001 additional files at 8.68 per second'),
(278264, '1550403683.780261', 2, 'info', 'Scanned contents of 1007 additional files at 8.04 per second'),
(278265, '1550403686.458913', 2, 'info', 'Scanned contents of 1008 additional files at 7.88 per second'),
(278266, '1550403686.459717', 2, 'info', 'Asking Wordfence to check URL\'s against malware list.'),
(278267, '1550403686.461925', 2, 'info', 'Checking 278 host keys against Wordfence scanning servers.'),
(278268, '1550403687.678834', 2, 'info', 'Done host key check.'),
(278269, '1550403687.681979', 2, 'info', 'Checking 5 URLs from 5 sources.'),
(278270, '1550403688.451677', 2, 'info', 'Done URL check.'),
(278271, '1550403688.458048', 2, 'info', 'Done file contents scan'),
(278277, '1550403688.604626', 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(278278, '1550403688.605169', 2, 'info', 'Checking 3 host keys against Wordfence scanning servers.'),
(278279, '1550403689.366132', 2, 'info', 'Done host key check.'),
(278280, '1550403689.366881', 2, 'info', 'Done examining URLs'),
(278285, '1550403689.390856', 2, 'info', 'Starting password strength check on 1 users.'),
(278288, '1550403689.406081', 2, 'info', 'Starting DNS scan for www.investors-watch.com/wp-staging/ranhill'),
(278289, '1550403689.589457', 2, 'info', 'Scanning DNS A record for www.investors-watch.com/wp-staging/ranhill'),
(278292, '1550403689.626164', 2, 'info', 'Total disk space: 609.9881GB -- Free disk space: 139.3980GB'),
(278293, '1550403689.626435', 2, 'info', 'The disk has 142743.54 MB space available'),
(278294, '1550403689.626753', 10, 'info', 'SUM_ENDOK:Scanning to check available disk space'),
(278295, '1550403689.630276', 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(278296, '1550403704.718448', 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(278297, '1550403707.174578', 10, 'info', 'SUM_START:Scanning for admin users not created through WordPress'),
(278298, '1550403707.176485', 10, 'info', 'SUM_ENDOK:Scanning for admin users not created through WordPress'),
(278299, '1550403707.188681', 1, 'info', '-------------------'),
(278300, '1550403707.189018', 1, 'info', 'Scan Complete. Scanned 5766 files, 20 plugins, 4 themes, 111 pages, 1 comments and 27308 records in 4 minutes 36 seconds.'),
(278301, '1550403707.189289', 10, 'info', 'SUM_FINAL:Scan complete. You have 19 new issues to fix. See below.'),
(278302, '1550403707.971586', 2, 'info', 'Wordfence used 35.08MB of memory for scan. Server peak memory usage was: 48.48MB'),
(278303, '1550439768.935117', 1, 'info', 'Scheduled Wordfence scan starting at Sunday 17th of February 2019 09:42:48 PM'),
(278304, '1550439774.227480', 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(278305, '1550439774.242047', 10, 'info', 'SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),
(278306, '1550439776.244418', 10, 'info', 'SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),
(278307, '1550439778.246848', 10, 'info', 'SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),
(278308, '1550439780.249373', 10, 'info', 'SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),
(278309, '1550439782.252791', 10, 'info', 'SUM_START:Scanning your site for the HeartBleed vulnerability'),
(278310, '1550439783.051408', 10, 'info', 'SUM_ENDBAD:Scanning your site for the HeartBleed vulnerability'),
(278311, '1550439783.054821', 10, 'info', 'SUM_START:Checking for the most secure way to get IPs'),
(278312, '1550439783.056563', 10, 'info', 'SUM_ENDOK:Checking for the most secure way to get IPs'),
(278313, '1550439783.058717', 1, 'info', 'Contacting Wordfence to initiate scan'),
(278314, '1550439784.146056', 2, 'info', 'Getting plugin list from WordPress'),
(278315, '1550439785.263330', 2, 'info', 'Found 20 plugins'),
(278316, '1550439785.265155', 2, 'info', 'Getting theme list from WordPress'),
(278317, '1550439785.460249', 2, 'info', 'Found 4 themes'),
(278318, '1550439785.587954', 10, 'info', 'SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),
(278319, '1550439787.702566', 10, 'info', 'SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),
(278320, '1550439787.706147', 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(278321, '1550439789.237843', 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(278322, '1550439789.241283', 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278323, '1550439789.241557', 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(278324, '1550439789.241792', 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(278325, '1550439789.243043', 10, 'info', 'SUM_START:Scanning for known malware files'),
(278326, '1550439789.244346', 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(278327, '1550439789.640737', 2, 'info', '500 files indexed'),
(278328, '1550439791.782835', 2, 'info', '1000 files indexed'),
(278329, '1550439793.798162', 2, 'info', '1500 files indexed'),
(278330, '1550439794.729654', 2, 'info', '2000 files indexed'),
(278331, '1550439797.708379', 2, 'info', '2500 files indexed'),
(278332, '1550439799.425990', 2, 'info', '3000 files indexed'),
(278333, '1550439800.472084', 2, 'info', '3269 files indexed'),
(278334, '1550439805.081011', 2, 'info', '3769 files indexed'),
(278335, '1550439806.294756', 2, 'info', '4269 files indexed'),
(278336, '1550439808.673158', 2, 'info', '4769 files indexed'),
(278337, '1550439812.163729', 2, 'info', '5269 files indexed'),
(278338, '1550439812.626685', 2, 'info', '5766 files indexed'),
(278339, '1550439814.215472', 2, 'info', 'Analyzed 100 files containing 1.32 MB of data so far'),
(278340, '1550439815.594841', 2, 'info', 'Analyzed 200 files containing 2.46 MB of data so far'),
(278341, '1550439816.781009', 2, 'info', 'Analyzed 300 files containing 3.67 MB of data so far'),
(278342, '1550439820.957720', 2, 'info', 'Analyzed 400 files containing 5.6 MB of data so far'),
(278343, '1550439821.977753', 2, 'info', 'Analyzed 500 files containing 6.31 MB of data so far'),
(278344, '1550439823.530699', 2, 'info', 'Analyzed 600 files containing 7.21 MB of data so far'),
(278345, '1550439825.643633', 2, 'info', 'Analyzed 700 files containing 8.48 MB of data so far'),
(278346, '1550439828.061202', 2, 'info', 'Analyzed 800 files containing 10.21 MB of data so far'),
(278347, '1550439829.176330', 2, 'info', 'Analyzed 900 files containing 11.05 MB of data so far'),
(278348, '1550439830.427958', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(278349, '1550439831.298780', 2, 'info', 'Analyzed 1100 files containing 12.47 MB of data so far'),
(278350, '1550439832.743166', 2, 'info', 'Analyzed 1200 files containing 13.46 MB of data so far'),
(278351, '1550439839.196645', 2, 'info', 'Analyzed 1300 files containing 14.47 MB of data so far'),
(278352, '1550439844.045868', 2, 'info', 'Analyzed 1400 files containing 17.16 MB of data so far'),
(278353, '1550439845.497625', 2, 'info', 'Analyzed 1500 files containing 18.61 MB of data so far'),
(278354, '1550439847.166650', 2, 'info', 'Analyzed 1600 files containing 19.97 MB of data so far'),
(278355, '1550439849.254207', 2, 'info', 'Analyzed 1700 files containing 21.73 MB of data so far'),
(278356, '1550439851.760844', 2, 'info', 'Analyzed 1800 files containing 23.43 MB of data so far'),
(278357, '1550439865.179918', 2, 'info', 'Analyzed 1900 files containing 24.46 MB of data so far'),
(278358, '1550439866.705873', 2, 'info', 'Analyzed 2000 files containing 25.1 MB of data so far'),
(278359, '1550439867.582496', 2, 'info', 'Analyzed 2100 files containing 25.51 MB of data so far'),
(278360, '1550439868.711720', 2, 'info', 'Analyzed 2200 files containing 26.03 MB of data so far'),
(278361, '1550439869.767815', 2, 'info', 'Analyzed 2300 files containing 26.58 MB of data so far'),
(278362, '1550439871.341663', 2, 'info', 'Analyzed 2400 files containing 27.07 MB of data so far'),
(278363, '1550439873.527239', 2, 'info', 'Analyzed 2500 files containing 27.76 MB of data so far'),
(278364, '1550439876.190644', 2, 'info', 'Analyzed 2600 files containing 28.71 MB of data so far'),
(278365, '1550439876.572845', 2, 'info', 'Analyzed 2700 files containing 29.05 MB of data so far'),
(278366, '1550439877.077284', 2, 'info', 'Analyzed 2800 files containing 29.57 MB of data so far'),
(278367, '1550439877.885697', 2, 'info', 'Analyzed 2900 files containing 29.76 MB of data so far'),
(278368, '1550439878.497614', 2, 'info', 'Analyzed 3000 files containing 30.08 MB of data so far'),
(278369, '1550439881.758732', 2, 'info', 'Analyzed 3100 files containing 30.67 MB of data so far'),
(278370, '1550439885.045847', 2, 'info', 'Analyzed 3200 files containing 33.72 MB of data so far'),
(278371, '1550439886.168859', 2, 'info', 'Analyzed 3300 files containing 34.81 MB of data so far'),
(278372, '1550439887.049002', 2, 'info', 'Analyzed 3400 files containing 35.34 MB of data so far'),
(278373, '1550439887.456117', 2, 'info', 'Analyzed 3500 files containing 35.38 MB of data so far'),
(278374, '1550439888.238952', 2, 'info', 'Analyzed 3600 files containing 35.74 MB of data so far'),
(278375, '1550439892.395394', 2, 'info', 'Analyzed 3700 files containing 39.6 MB of data so far'),
(278376, '1550439893.756071', 2, 'info', 'Analyzed 3800 files containing 41.52 MB of data so far'),
(278377, '1550439896.446586', 2, 'info', 'Analyzed 3900 files containing 43.94 MB of data so far'),
(278378, '1550439902.188046', 2, 'info', 'Analyzed 4000 files containing 46.35 MB of data so far'),
(278379, '1550439903.661828', 2, 'info', 'Analyzed 4100 files containing 47.2 MB of data so far'),
(278380, '1550439906.111456', 2, 'info', 'Analyzed 4200 files containing 49.25 MB of data so far'),
(278381, '1550439906.888029', 2, 'info', 'Analyzed 4300 files containing 49.66 MB of data so far'),
(278382, '1550439907.782065', 2, 'info', 'Analyzed 4400 files containing 50.16 MB of data so far'),
(278383, '1550439908.493938', 2, 'info', 'Analyzed 4500 files containing 50.52 MB of data so far'),
(278384, '1550439909.753418', 2, 'info', 'Analyzed 4600 files containing 51.45 MB of data so far'),
(278385, '1550439910.697305', 2, 'info', 'Analyzed 4700 files containing 52.55 MB of data so far'),
(278386, '1550439912.549750', 2, 'info', 'Analyzed 4800 files containing 53.24 MB of data so far'),
(278387, '1550439917.431453', 2, 'info', 'Analyzed 4900 files containing 54.51 MB of data so far'),
(278388, '1550439920.798058', 2, 'info', 'Analyzed 5000 files containing 58.39 MB of data so far'),
(278389, '1550439921.823434', 2, 'info', 'Analyzed 5100 files containing 59.04 MB of data so far'),
(278390, '1550439923.585148', 2, 'info', 'Analyzed 5200 files containing 61.58 MB of data so far'),
(278391, '1550439925.086707', 2, 'info', 'Analyzed 5300 files containing 63.19 MB of data so far'),
(278392, '1550439926.027486', 2, 'info', 'Analyzed 5400 files containing 63.65 MB of data so far'),
(278393, '1550439927.870286', 2, 'info', 'Analyzed 5500 files containing 65.13 MB of data so far'),
(278394, '1550439929.817929', 2, 'info', 'Analyzed 5600 files containing 66.2 MB of data so far'),
(278395, '1550439935.679740', 2, 'info', 'Analyzed 5700 files containing 69.03 MB of data so far'),
(278396, '1550439935.967571', 2, 'info', 'Analyzed 5766 files containing 70.18 MB of data.'),
(278397, '1550439935.967894', 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository'),
(278398, '1550439935.969576', 10, 'info', 'SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),
(278399, '1550439935.971073', 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(278400, '1550439935.987714', 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs'),
(278401, '1550439935.988811', 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(278402, '1550439935.992268', 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(278403, '1550439935.993705', 10, 'info', 'SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),
(278404, '1550439937.850493', 2, 'info', 'Starting scan of file contents'),
(278405, '1550439938.925287', 2, 'info', 'Scanned contents of 8 additional files at 7.45 per second'),
(278406, '1550439939.946310', 2, 'info', 'Scanned contents of 22 additional files at 10.50 per second'),
(278407, '1550439942.031725', 2, 'info', 'Scanned contents of 36 additional files at 8.61 per second'),
(278408, '1550439943.053989', 2, 'info', 'Scanned contents of 49 additional files at 9.42 per second'),
(278409, '1550439944.280489', 2, 'info', 'Scanned contents of 58 additional files at 9.02 per second'),
(278410, '1550439945.368470', 2, 'info', 'Scanned contents of 69 additional files at 9.18 per second'),
(278411, '1550439946.735208', 2, 'info', 'Scanned contents of 81 additional files at 9.12 per second'),
(278412, '1550439948.051396', 2, 'info', 'Scanned contents of 84 additional files at 8.24 per second'),
(278413, '1550439949.216549', 2, 'info', 'Scanned contents of 95 additional files at 8.36 per second'),
(278414, '1550439951.743647', 2, 'info', 'Scanned contents of 98 additional files at 7.05 per second'),
(278415, '1550439955.249250', 2, 'info', 'Scanned contents of 99 additional files at 5.69 per second'),
(278416, '1550439956.487659', 2, 'info', 'Scanned contents of 113 additional files at 6.06 per second'),
(278417, '1550439957.763865', 2, 'info', 'Scanned contents of 119 additional files at 5.98 per second'),
(278418, '1550439958.851205', 2, 'info', 'Scanned contents of 127 additional files at 6.05 per second'),
(278419, '1550439959.903667', 2, 'info', 'Scanned contents of 134 additional files at 6.08 per second'),
(278420, '1550439961.074543', 2, 'info', 'Scanned contents of 144 additional files at 6.20 per second'),
(278421, '1550439962.160284', 2, 'info', 'Scanned contents of 155 additional files at 6.38 per second'),
(278422, '1550439964.575974', 2, 'info', 'Scanned contents of 170 additional files at 6.36 per second') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278423, '1550439966.075152', 2, 'info', 'Scanned contents of 187 additional files at 6.63 per second'),
(278424, '1550439967.108958', 2, 'info', 'Scanned contents of 202 additional files at 6.90 per second'),
(278425, '1550439968.127044', 2, 'info', 'Scanned contents of 209 additional files at 6.90 per second'),
(278426, '1550439969.269792', 2, 'info', 'Scanned contents of 216 additional files at 6.88 per second'),
(278427, '1550439970.278397', 2, 'info', 'Scanned contents of 232 additional files at 7.15 per second'),
(278428, '1550439973.426784', 2, 'info', 'Scanned contents of 244 additional files at 6.86 per second'),
(278429, '1550439974.482039', 2, 'info', 'Scanned contents of 259 additional files at 7.07 per second'),
(278430, '1550439975.671871', 2, 'info', 'Scanned contents of 270 additional files at 7.14 per second'),
(278431, '1550439976.709418', 2, 'info', 'Scanned contents of 285 additional files at 7.33 per second'),
(278432, '1550439977.724148', 2, 'info', 'Scanned contents of 302 additional files at 7.57 per second'),
(278433, '1550439978.729761', 2, 'info', 'Scanned contents of 314 additional files at 7.68 per second'),
(278434, '1550439979.762331', 2, 'info', 'Scanned contents of 332 additional files at 7.92 per second'),
(278435, '1550439980.805534', 2, 'info', 'Scanned contents of 342 additional files at 7.96 per second'),
(278436, '1550439981.849674', 2, 'info', 'Scanned contents of 350 additional files at 7.95 per second'),
(278437, '1550439982.900652', 2, 'info', 'Scanned contents of 357 additional files at 7.92 per second'),
(278438, '1550439983.906596', 2, 'info', 'Scanned contents of 369 additional files at 8.01 per second'),
(278439, '1550439984.938816', 2, 'info', 'Scanned contents of 387 additional files at 8.22 per second'),
(278440, '1550439985.962883', 2, 'info', 'Scanned contents of 405 additional files at 8.42 per second'),
(278441, '1550439987.013357', 2, 'info', 'Scanned contents of 420 additional files at 8.54 per second'),
(278442, '1550439988.030091', 2, 'info', 'Scanned contents of 436 additional files at 8.69 per second'),
(278443, '1550439989.031852', 2, 'info', 'Scanned contents of 444 additional files at 8.68 per second'),
(278444, '1550439991.423005', 2, 'info', 'Scanned contents of 445 additional files at 8.31 per second'),
(278445, '1550439992.516126', 2, 'info', 'Scanned contents of 452 additional files at 8.27 per second'),
(278446, '1550439993.530959', 2, 'info', 'Scanned contents of 462 additional files at 8.30 per second'),
(278447, '1550439994.706624', 2, 'info', 'Scanned contents of 466 additional files at 8.20 per second'),
(278448, '1550439995.794914', 2, 'info', 'Scanned contents of 477 additional files at 8.23 per second'),
(278449, '1550439996.824083', 2, 'info', 'Scanned contents of 489 additional files at 8.29 per second'),
(278450, '1550439997.884273', 2, 'info', 'Scanned contents of 505 additional files at 8.41 per second'),
(278451, '1550439998.908729', 2, 'info', 'Scanned contents of 522 additional files at 8.55 per second'),
(278452, '1550439999.962598', 2, 'info', 'Scanned contents of 537 additional files at 8.65 per second'),
(278453, '1550440000.986291', 2, 'info', 'Scanned contents of 552 additional files at 8.74 per second'),
(278454, '1550440002.040949', 2, 'info', 'Scanned contents of 569 additional files at 8.86 per second'),
(278455, '1550440003.042700', 2, 'info', 'Scanned contents of 586 additional files at 8.99 per second'),
(278456, '1550440004.043616', 2, 'info', 'Scanned contents of 600 additional files at 9.06 per second'),
(278457, '1550440005.096007', 2, 'info', 'Scanned contents of 617 additional files at 9.18 per second'),
(278458, '1550440006.117598', 2, 'info', 'Scanned contents of 628 additional files at 9.20 per second'),
(278459, '1550440009.307711', 2, 'info', 'Scanned contents of 637 additional files at 8.91 per second'),
(278460, '1550440010.311168', 2, 'info', 'Scanned contents of 718 additional files at 9.91 per second'),
(278461, '1550440011.582941', 2, 'info', 'Scanned contents of 721 additional files at 9.78 per second'),
(278462, '1550440013.174447', 2, 'info', 'Scanned contents of 732 additional files at 9.72 per second'),
(278463, '1550440014.405720', 2, 'info', 'Scanned contents of 736 additional files at 9.61 per second'),
(278464, '1550440016.465560', 2, 'info', 'Scanned contents of 747 additional files at 9.50 per second'),
(278465, '1550440017.549116', 2, 'info', 'Scanned contents of 752 additional files at 9.44 per second'),
(278466, '1550440018.808575', 2, 'info', 'Scanned contents of 762 additional files at 9.41 per second'),
(278467, '1550440020.012016', 2, 'info', 'Scanned contents of 770 additional files at 9.37 per second'),
(278468, '1550440021.087339', 2, 'info', 'Scanned contents of 793 additional files at 9.53 per second'),
(278469, '1550440022.136269', 2, 'info', 'Scanned contents of 803 additional files at 9.53 per second'),
(278470, '1550440023.160996', 2, 'info', 'Scanned contents of 817 additional files at 9.58 per second'),
(278471, '1550440024.185443', 2, 'info', 'Scanned contents of 833 additional files at 9.65 per second'),
(278472, '1550440027.469747', 2, 'info', 'Scanned contents of 848 additional files at 9.46 per second'),
(278473, '1550440029.366407', 2, 'info', 'Scanned contents of 852 additional files at 9.31 per second'),
(278474, '1550440030.581133', 2, 'info', 'Scanned contents of 856 additional files at 9.23 per second'),
(278475, '1550440031.622363', 2, 'info', 'Scanned contents of 865 additional files at 9.22 per second'),
(278476, '1550440032.807517', 2, 'info', 'Scanned contents of 868 additional files at 9.14 per second'),
(278477, '1550440034.961404', 2, 'info', 'Scanned contents of 872 additional files at 8.98 per second'),
(278478, '1550440036.050786', 2, 'info', 'Scanned contents of 883 additional files at 8.99 per second'),
(278479, '1550440037.136156', 2, 'info', 'Scanned contents of 891 additional files at 8.97 per second'),
(278480, '1550440038.730373', 2, 'info', 'Scanned contents of 899 additional files at 8.91 per second'),
(278481, '1550440039.748434', 2, 'info', 'Scanned contents of 921 additional files at 9.04 per second'),
(278482, '1550440040.798654', 2, 'info', 'Scanned contents of 932 additional files at 9.05 per second'),
(278483, '1550440042.078841', 2, 'info', 'Scanned contents of 933 additional files at 8.95 per second'),
(278484, '1550440045.389185', 2, 'info', 'Scanned contents of 950 additional files at 8.83 per second'),
(278485, '1550440046.457335', 2, 'info', 'Scanned contents of 957 additional files at 8.81 per second'),
(278486, '1550440047.491246', 2, 'info', 'Scanned contents of 969 additional files at 8.84 per second'),
(278487, '1550440048.530483', 2, 'info', 'Scanned contents of 983 additional files at 8.88 per second'),
(278488, '1550440049.577118', 2, 'info', 'Scanned contents of 1002 additional files at 8.97 per second'),
(278489, '1550440058.780676', 2, 'info', 'Scanned contents of 1007 additional files at 8.33 per second'),
(278490, '1550440058.983934', 2, 'info', 'Scanned contents of 1008 additional files at 8.32 per second'),
(278491, '1550440058.984365', 2, 'info', 'Asking Wordfence to check URL\'s against malware list.'),
(278492, '1550440059.007991', 2, 'info', 'Checking 278 host keys against Wordfence scanning servers.'),
(278493, '1550440060.002686', 2, 'info', 'Done host key check.'),
(278494, '1550440060.004311', 2, 'info', 'Checking 5 URLs from 5 sources.'),
(278495, '1550440060.775000', 2, 'info', 'Done URL check.'),
(278496, '1550440060.779740', 2, 'info', 'Done file contents scan'),
(278497, '1550440060.792294', 10, 'info', 'SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),
(278498, '1550440060.795278', 10, 'info', 'SUM_ENDOK:Scanning files for URLs in Google\'s Safe Browsing List'),
(278499, '1550440060.800351', 10, 'info', 'SUM_START:Scanning for publicly accessible quarantined files'),
(278500, '1550440060.800862', 10, 'info', 'SUM_ENDOK:Scanning for publicly accessible quarantined files'),
(278501, '1550440060.804752', 10, 'info', 'SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List'),
(278502, '1550440060.901614', 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(278503, '1550440060.902418', 2, 'info', 'Checking 3 host keys against Wordfence scanning servers.'),
(278504, '1550440061.687990', 2, 'info', 'Done host key check.'),
(278505, '1550440061.689057', 2, 'info', 'Done examining URLs'),
(278506, '1550440061.691619', 10, 'info', 'SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),
(278507, '1550440063.815704', 10, 'info', 'SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),
(278508, '1550440063.837188', 10, 'info', 'SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),
(278509, '1550440063.841814', 10, 'info', 'SUM_START:Scanning for weak passwords'),
(278510, '1550440063.842409', 2, 'info', 'Starting password strength check on 1 users.'),
(278511, '1550440063.848678', 10, 'info', 'SUM_ENDOK:Scanning for weak passwords'),
(278512, '1550440063.852629', 10, 'info', 'SUM_START:Scanning DNS for unauthorized changes'),
(278513, '1550440063.853094', 2, 'info', 'Starting DNS scan for www.investors-watch.com/wp-staging/ranhill'),
(278514, '1550440064.137171', 2, 'info', 'Scanning DNS A record for www.investors-watch.com/wp-staging/ranhill'),
(278515, '1550440064.341140', 10, 'info', 'SUM_ENDOK:Scanning DNS for unauthorized changes'),
(278516, '1550440064.345043', 10, 'info', 'SUM_START:Scanning to check available disk space'),
(278517, '1550440064.345445', 2, 'info', 'Total disk space: 609.9881GB -- Free disk space: 137.2712GB'),
(278518, '1550440064.345854', 2, 'info', 'The disk has 140565.73 MB space available'),
(278519, '1550440064.346166', 10, 'info', 'SUM_ENDOK:Scanning to check available disk space'),
(278520, '1550440064.350117', 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(278521, '1550440079.546560', 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(278522, '1550440081.827864', 10, 'info', 'SUM_START:Scanning for admin users not created through WordPress') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278523, '1550440081.829709', 10, 'info', 'SUM_ENDOK:Scanning for admin users not created through WordPress'),
(278524, '1550440081.915300', 1, 'info', '-------------------'),
(278525, '1550440081.915746', 1, 'info', 'Scan Complete. Scanned 5766 files, 20 plugins, 4 themes, 111 pages, 1 comments and 28592 records in 5 minutes 7 seconds.'),
(278526, '1550440081.916035', 10, 'info', 'SUM_FINAL:Scan complete. You have 19 new issues to fix. See below.'),
(278527, '1550440082.701931', 2, 'info', 'Wordfence used 35.05MB of memory for scan. Server peak memory usage was: 48.46MB'),
(278528, '1550498587.006287', 1, 'info', 'Scheduled Wordfence scan starting at Monday 18th of February 2019 02:03:07 PM'),
(278529, '1550498592.404521', 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(278530, '1550498592.418897', 10, 'info', 'SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),
(278531, '1550498594.421452', 10, 'info', 'SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),
(278532, '1550498596.423835', 10, 'info', 'SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),
(278533, '1550498598.426525', 10, 'info', 'SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),
(278534, '1550498600.430099', 10, 'info', 'SUM_START:Scanning your site for the HeartBleed vulnerability'),
(278535, '1550498601.167553', 10, 'info', 'SUM_ENDBAD:Scanning your site for the HeartBleed vulnerability'),
(278536, '1550498601.173598', 10, 'info', 'SUM_START:Checking for the most secure way to get IPs'),
(278537, '1550498604.867126', 10, 'info', 'SUM_ENDOK:Checking for the most secure way to get IPs'),
(278538, '1550498604.870257', 1, 'info', 'Contacting Wordfence to initiate scan'),
(278539, '1550498605.547603', 2, 'info', 'Getting plugin list from WordPress'),
(278540, '1550498605.655858', 2, 'info', 'Found 20 plugins'),
(278541, '1550498605.658559', 2, 'info', 'Getting theme list from WordPress'),
(278542, '1550498605.666304', 2, 'info', 'Found 4 themes'),
(278543, '1550498605.720111', 10, 'info', 'SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),
(278544, '1550498607.403153', 10, 'info', 'SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),
(278545, '1550498607.407315', 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(278546, '1550498608.830350', 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(278547, '1550498608.835170', 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository'),
(278548, '1550498608.835937', 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(278549, '1550498608.836364', 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(278550, '1550498608.838499', 10, 'info', 'SUM_START:Scanning for known malware files'),
(278551, '1550498608.840642', 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(278552, '1550498612.942784', 2, 'info', '500 files indexed'),
(278553, '1550498613.299005', 2, 'info', '1000 files indexed'),
(278554, '1550498613.516447', 2, 'info', '1500 files indexed'),
(278555, '1550498613.760947', 2, 'info', '2000 files indexed'),
(278556, '1550498614.358365', 2, 'info', '2500 files indexed'),
(278557, '1550498615.058468', 2, 'info', '3000 files indexed'),
(278558, '1550498616.558896', 2, 'info', '3500 files indexed'),
(278559, '1550498616.768406', 2, 'info', '4000 files indexed'),
(278560, '1550498617.002112', 2, 'info', '4500 files indexed'),
(278561, '1550498619.411545', 2, 'info', '5000 files indexed'),
(278562, '1550498619.858464', 2, 'info', '5500 files indexed'),
(278563, '1550498619.984523', 2, 'info', '5766 files indexed'),
(278564, '1550498621.529659', 2, 'info', 'Analyzed 100 files containing 1.32 MB of data so far'),
(278565, '1550498622.940929', 2, 'info', 'Analyzed 200 files containing 2.46 MB of data so far'),
(278566, '1550498623.969076', 2, 'info', 'Analyzed 300 files containing 3.67 MB of data so far'),
(278567, '1550498625.630304', 2, 'info', 'Analyzed 400 files containing 5.6 MB of data so far'),
(278568, '1550498626.656030', 2, 'info', 'Analyzed 500 files containing 6.31 MB of data so far'),
(278569, '1550498631.839569', 2, 'info', 'Analyzed 600 files containing 7.21 MB of data so far'),
(278570, '1550498633.999796', 2, 'info', 'Analyzed 700 files containing 8.48 MB of data so far'),
(278571, '1550498636.143039', 2, 'info', 'Analyzed 800 files containing 10.21 MB of data so far'),
(278572, '1550498636.835361', 2, 'info', 'Analyzed 900 files containing 11.05 MB of data so far'),
(278573, '1550498637.789562', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(278574, '1550498638.746506', 2, 'info', 'Analyzed 1100 files containing 12.47 MB of data so far'),
(278575, '1550498640.040729', 2, 'info', 'Analyzed 1200 files containing 13.46 MB of data so far'),
(278576, '1550498641.361098', 2, 'info', 'Analyzed 1300 files containing 14.47 MB of data so far'),
(278577, '1550498644.815587', 2, 'info', 'Analyzed 1400 files containing 17.16 MB of data so far'),
(278578, '1550498645.872511', 2, 'info', 'Analyzed 1500 files containing 18.61 MB of data so far'),
(278579, '1550498651.506884', 2, 'info', 'Analyzed 1600 files containing 19.97 MB of data so far'),
(278580, '1550498653.559703', 2, 'info', 'Analyzed 1700 files containing 21.73 MB of data so far'),
(278581, '1550498655.472943', 2, 'info', 'Analyzed 1800 files containing 23.43 MB of data so far'),
(278582, '1550498657.062761', 2, 'info', 'Analyzed 1900 files containing 24.46 MB of data so far'),
(278583, '1550498658.292909', 2, 'info', 'Analyzed 2000 files containing 25.1 MB of data so far'),
(278584, '1550498659.192103', 2, 'info', 'Analyzed 2100 files containing 25.51 MB of data so far'),
(278585, '1550498660.167940', 2, 'info', 'Analyzed 2200 files containing 26.03 MB of data so far'),
(278586, '1550498661.171591', 2, 'info', 'Analyzed 2300 files containing 26.58 MB of data so far'),
(278587, '1550498662.160844', 2, 'info', 'Analyzed 2400 files containing 27.07 MB of data so far'),
(278588, '1550498663.315789', 2, 'info', 'Analyzed 2500 files containing 27.76 MB of data so far'),
(278589, '1550498669.741446', 2, 'info', 'Analyzed 2600 files containing 28.71 MB of data so far'),
(278590, '1550498670.232976', 2, 'info', 'Analyzed 2700 files containing 29.05 MB of data so far'),
(278591, '1550498672.853329', 2, 'info', 'Analyzed 2800 files containing 29.57 MB of data so far'),
(278592, '1550498673.622937', 2, 'info', 'Analyzed 2900 files containing 29.76 MB of data so far'),
(278593, '1550498674.324832', 2, 'info', 'Analyzed 3000 files containing 30.08 MB of data so far'),
(278594, '1550498675.300940', 2, 'info', 'Analyzed 3100 files containing 30.67 MB of data so far'),
(278595, '1550498678.657717', 2, 'info', 'Analyzed 3200 files containing 33.72 MB of data so far'),
(278596, '1550498679.760163', 2, 'info', 'Analyzed 3300 files containing 34.81 MB of data so far'),
(278597, '1550498680.658866', 2, 'info', 'Analyzed 3400 files containing 35.34 MB of data so far'),
(278598, '1550498681.076004', 2, 'info', 'Analyzed 3500 files containing 35.38 MB of data so far'),
(278599, '1550498681.861830', 2, 'info', 'Analyzed 3600 files containing 35.74 MB of data so far'),
(278600, '1550498689.654287', 2, 'info', 'Analyzed 3700 files containing 39.6 MB of data so far'),
(278601, '1550498690.794797', 2, 'info', 'Analyzed 3800 files containing 41.52 MB of data so far'),
(278602, '1550498693.572652', 2, 'info', 'Analyzed 3900 files containing 43.94 MB of data so far'),
(278603, '1550498697.714918', 2, 'info', 'Analyzed 4000 files containing 46.35 MB of data so far'),
(278604, '1550498699.104088', 2, 'info', 'Analyzed 4100 files containing 47.2 MB of data so far'),
(278605, '1550498702.025933', 2, 'info', 'Analyzed 4200 files containing 49.25 MB of data so far'),
(278606, '1550498703.314913', 2, 'info', 'Analyzed 4300 files containing 49.66 MB of data so far'),
(278607, '1550498704.469394', 2, 'info', 'Analyzed 4400 files containing 50.16 MB of data so far'),
(278608, '1550498708.992191', 2, 'info', 'Analyzed 4500 files containing 50.52 MB of data so far'),
(278609, '1550498710.053278', 2, 'info', 'Analyzed 4600 files containing 51.45 MB of data so far'),
(278610, '1550498710.807027', 2, 'info', 'Analyzed 4700 files containing 52.55 MB of data so far'),
(278611, '1550498711.810780', 2, 'info', 'Analyzed 4800 files containing 53.24 MB of data so far'),
(278612, '1550498713.806654', 2, 'info', 'Analyzed 4900 files containing 54.51 MB of data so far'),
(278613, '1550498717.099915', 2, 'info', 'Analyzed 5000 files containing 58.39 MB of data so far'),
(278614, '1550498717.983477', 2, 'info', 'Analyzed 5100 files containing 59.04 MB of data so far'),
(278615, '1550498719.391880', 2, 'info', 'Analyzed 5200 files containing 61.58 MB of data so far'),
(278616, '1550498720.753711', 2, 'info', 'Analyzed 5300 files containing 63.19 MB of data so far'),
(278617, '1550498721.732231', 2, 'info', 'Analyzed 5400 files containing 63.65 MB of data so far'),
(278618, '1550498727.470037', 2, 'info', 'Analyzed 5500 files containing 65.13 MB of data so far'),
(278619, '1550498729.047922', 2, 'info', 'Analyzed 5600 files containing 66.2 MB of data so far'),
(278620, '1550498731.258616', 2, 'info', 'Analyzed 5700 files containing 69.03 MB of data so far'),
(278621, '1550498731.593133', 2, 'info', 'Analyzed 5766 files containing 70.18 MB of data.'),
(278622, '1550498731.593678', 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278623, '1550498731.595748', 10, 'info', 'SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),
(278624, '1550498731.597684', 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(278625, '1550498731.619805', 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs'),
(278626, '1550498731.620826', 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(278627, '1550498731.624725', 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(278628, '1550498731.626193', 10, 'info', 'SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),
(278629, '1550498733.607901', 2, 'info', 'Starting scan of file contents'),
(278630, '1550498734.661324', 2, 'info', 'Scanned contents of 5 additional files at 4.75 per second'),
(278631, '1550498735.952437', 2, 'info', 'Scanned contents of 12 additional files at 5.12 per second'),
(278632, '1550498736.985399', 2, 'info', 'Scanned contents of 28 additional files at 8.29 per second'),
(278633, '1550498738.340708', 2, 'info', 'Scanned contents of 36 additional files at 7.61 per second'),
(278634, '1550498739.422714', 2, 'info', 'Scanned contents of 49 additional files at 8.43 per second'),
(278635, '1550498740.616865', 2, 'info', 'Scanned contents of 58 additional files at 8.28 per second'),
(278636, '1550498741.854282', 2, 'info', 'Scanned contents of 69 additional files at 8.37 per second'),
(278637, '1550498742.903275', 2, 'info', 'Scanned contents of 76 additional files at 8.18 per second'),
(278638, '1550498746.965000', 2, 'info', 'Scanned contents of 79 additional files at 5.92 per second'),
(278639, '1550498748.480306', 2, 'info', 'Scanned contents of 83 additional files at 5.58 per second'),
(278640, '1550498749.568662', 2, 'info', 'Scanned contents of 90 additional files at 5.64 per second'),
(278641, '1550498750.944608', 2, 'info', 'Scanned contents of 96 additional files at 5.54 per second'),
(278642, '1550498753.400586', 2, 'info', 'Scanned contents of 98 additional files at 4.95 per second'),
(278643, '1550498754.468133', 2, 'info', 'Scanned contents of 111 additional files at 5.32 per second'),
(278644, '1550498755.768952', 2, 'info', 'Scanned contents of 115 additional files at 5.19 per second'),
(278645, '1550498756.839636', 2, 'info', 'Scanned contents of 120 additional files at 5.17 per second'),
(278646, '1550498757.984414', 2, 'info', 'Scanned contents of 127 additional files at 5.21 per second'),
(278647, '1550498759.023193', 2, 'info', 'Scanned contents of 133 additional files at 5.23 per second'),
(278648, '1550498760.058847', 2, 'info', 'Scanned contents of 140 additional files at 5.29 per second'),
(278649, '1550498761.346964', 2, 'info', 'Scanned contents of 146 additional files at 5.26 per second'),
(278650, '1550498766.148635', 2, 'info', 'Scanned contents of 154 additional files at 4.73 per second'),
(278651, '1550498767.155897', 2, 'info', 'Scanned contents of 164 additional files at 4.89 per second'),
(278652, '1550498769.282124', 2, 'info', 'Scanned contents of 170 additional files at 4.77 per second'),
(278653, '1550498771.236910', 2, 'info', 'Scanned contents of 187 additional files at 4.97 per second'),
(278654, '1550498772.730108', 2, 'info', 'Scanned contents of 201 additional files at 5.14 per second'),
(278655, '1550498773.860070', 2, 'info', 'Scanned contents of 206 additional files at 5.12 per second'),
(278656, '1550498775.036814', 2, 'info', 'Scanned contents of 215 additional files at 5.19 per second'),
(278657, '1550498776.050521', 2, 'info', 'Scanned contents of 217 additional files at 5.11 per second'),
(278658, '1550498777.094655', 2, 'info', 'Scanned contents of 230 additional files at 5.29 per second'),
(278659, '1550498778.114906', 2, 'info', 'Scanned contents of 239 additional files at 5.37 per second'),
(278660, '1550498779.208924', 2, 'info', 'Scanned contents of 249 additional files at 5.46 per second'),
(278661, '1550498780.302736', 2, 'info', 'Scanned contents of 260 additional files at 5.57 per second'),
(278662, '1550498781.441150', 2, 'info', 'Scanned contents of 270 additional files at 5.64 per second'),
(278663, '1550498786.561923', 2, 'info', 'Scanned contents of 278 additional files at 5.25 per second'),
(278664, '1550498787.572442', 2, 'info', 'Scanned contents of 288 additional files at 5.34 per second'),
(278665, '1550498788.574292', 2, 'info', 'Scanned contents of 299 additional files at 5.44 per second'),
(278666, '1550498789.858722', 2, 'info', 'Scanned contents of 309 additional files at 5.49 per second'),
(278667, '1550498790.935241', 2, 'info', 'Scanned contents of 317 additional files at 5.53 per second'),
(278668, '1550498792.013464', 2, 'info', 'Scanned contents of 329 additional files at 5.63 per second'),
(278669, '1550498793.497600', 2, 'info', 'Scanned contents of 338 additional files at 5.64 per second'),
(278670, '1550498794.828043', 2, 'info', 'Scanned contents of 345 additional files at 5.64 per second'),
(278671, '1550498795.857681', 2, 'info', 'Scanned contents of 352 additional files at 5.65 per second'),
(278672, '1550498796.926257', 2, 'info', 'Scanned contents of 356 additional files at 5.62 per second'),
(278673, '1550498797.967856', 2, 'info', 'Scanned contents of 362 additional files at 5.62 per second'),
(278674, '1550498798.972944', 2, 'info', 'Scanned contents of 371 additional files at 5.68 per second'),
(278675, '1550498800.023046', 2, 'info', 'Scanned contents of 383 additional files at 5.77 per second'),
(278676, '1550498801.067321', 2, 'info', 'Scanned contents of 399 additional files at 5.91 per second'),
(278677, '1550498802.183065', 2, 'info', 'Scanned contents of 410 additional files at 5.98 per second'),
(278678, '1550498806.115624', 2, 'info', 'Scanned contents of 411 additional files at 5.67 per second'),
(278679, '1550498807.124985', 2, 'info', 'Scanned contents of 425 additional files at 5.78 per second'),
(278680, '1550498808.185971', 2, 'info', 'Scanned contents of 439 additional files at 5.89 per second'),
(278681, '1550498809.205175', 2, 'info', 'Scanned contents of 444 additional files at 5.87 per second'),
(278682, '1550498810.212770', 2, 'info', 'Scanned contents of 451 additional files at 5.89 per second'),
(278683, '1550498811.283833', 2, 'info', 'Scanned contents of 459 additional files at 5.91 per second'),
(278684, '1550498812.516687', 2, 'info', 'Scanned contents of 464 additional files at 5.88 per second'),
(278685, '1550498813.521927', 2, 'info', 'Scanned contents of 472 additional files at 5.91 per second'),
(278686, '1550498814.594753', 2, 'info', 'Scanned contents of 480 additional files at 5.93 per second'),
(278687, '1550498815.646722', 2, 'info', 'Scanned contents of 488 additional files at 5.95 per second'),
(278688, '1550498816.691380', 2, 'info', 'Scanned contents of 498 additional files at 5.99 per second'),
(278689, '1550498817.720449', 2, 'info', 'Scanned contents of 510 additional files at 6.06 per second'),
(278690, '1550498818.860954', 2, 'info', 'Scanned contents of 520 additional files at 6.10 per second'),
(278691, '1550498819.878481', 2, 'info', 'Scanned contents of 530 additional files at 6.14 per second'),
(278692, '1550498820.906339', 2, 'info', 'Scanned contents of 541 additional files at 6.20 per second'),
(278693, '1550498821.938817', 2, 'info', 'Scanned contents of 552 additional files at 6.25 per second'),
(278694, '1550504470.606696', 1, 'info', 'Scheduled Wordfence scan starting at Monday 18th of February 2019 03:41:10 PM'),
(278695, '1550587755.638116', 1, 'info', 'Scheduled Wordfence scan starting at Tuesday 19th of February 2019 02:49:15 PM'),
(278696, '1550587759.856588', 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(278697, '1550587759.900523', 10, 'info', 'SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),
(278698, '1550587761.902413', 10, 'info', 'SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),
(278699, '1550587763.904347', 10, 'info', 'SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),
(278700, '1550587765.906294', 10, 'info', 'SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),
(278701, '1550587767.910215', 10, 'info', 'SUM_START:Scanning your site for the HeartBleed vulnerability'),
(278702, '1550587768.573037', 10, 'info', 'SUM_ENDBAD:Scanning your site for the HeartBleed vulnerability'),
(278703, '1550587768.576557', 10, 'info', 'SUM_START:Checking for the most secure way to get IPs'),
(278704, '1550587768.578560', 10, 'info', 'SUM_ENDOK:Checking for the most secure way to get IPs'),
(278705, '1550587768.580832', 1, 'info', 'Contacting Wordfence to initiate scan'),
(278706, '1550587769.800857', 2, 'info', 'Getting plugin list from WordPress'),
(278707, '1550587770.640805', 2, 'info', 'Found 20 plugins'),
(278708, '1550587770.643228', 2, 'info', 'Getting theme list from WordPress'),
(278709, '1550587770.760276', 2, 'info', 'Found 4 themes'),
(278710, '1550587770.777931', 10, 'info', 'SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),
(278711, '1550587772.550631', 10, 'info', 'SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),
(278712, '1550587772.553779', 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(278713, '1550587773.940581', 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(278714, '1550587773.943963', 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository'),
(278715, '1550587773.944275', 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(278716, '1550587773.944512', 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(278717, '1550587773.945952', 10, 'info', 'SUM_START:Scanning for known malware files'),
(278718, '1550587773.947741', 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(278719, '1550587774.133235', 2, 'info', '500 files indexed'),
(278720, '1550587774.839984', 2, 'info', '1000 files indexed'),
(278721, '1550587775.368645', 2, 'info', '1500 files indexed'),
(278722, '1550587775.783425', 2, 'info', '2000 files indexed') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278723, '1550587776.708086', 2, 'info', '2500 files indexed'),
(278724, '1550587777.343987', 2, 'info', '3000 files indexed'),
(278725, '1550587779.008687', 2, 'info', '3500 files indexed'),
(278726, '1550587779.317560', 2, 'info', '4000 files indexed'),
(278727, '1550587779.708938', 2, 'info', '4500 files indexed'),
(278728, '1550587782.165070', 2, 'info', '5000 files indexed'),
(278729, '1550587782.405786', 2, 'info', '5500 files indexed'),
(278730, '1550587782.534019', 2, 'info', '5765 files indexed'),
(278731, '1550587784.078930', 2, 'info', 'Analyzed 100 files containing 1.32 MB of data so far'),
(278732, '1550587785.434249', 2, 'info', 'Analyzed 200 files containing 2.46 MB of data so far'),
(278733, '1550587789.117750', 2, 'info', 'Analyzed 300 files containing 3.67 MB of data so far'),
(278734, '1550587790.748257', 2, 'info', 'Analyzed 400 files containing 5.6 MB of data so far'),
(278735, '1550587791.713559', 2, 'info', 'Analyzed 500 files containing 6.31 MB of data so far'),
(278736, '1550587792.874762', 2, 'info', 'Analyzed 600 files containing 7.21 MB of data so far'),
(278737, '1550587794.649182', 2, 'info', 'Analyzed 700 files containing 8.48 MB of data so far'),
(278738, '1550587796.850679', 2, 'info', 'Analyzed 800 files containing 10.21 MB of data so far'),
(278739, '1550587797.654395', 2, 'info', 'Analyzed 900 files containing 11.05 MB of data so far'),
(278740, '1550587798.559528', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(278741, '1550587799.297210', 2, 'info', 'Analyzed 1100 files containing 12.47 MB of data so far'),
(278742, '1550587800.599226', 2, 'info', 'Analyzed 1200 files containing 13.46 MB of data so far'),
(278743, '1550587802.228514', 2, 'info', 'Analyzed 1300 files containing 14.47 MB of data so far'),
(278744, '1550587807.650831', 2, 'info', 'Analyzed 1400 files containing 17.16 MB of data so far'),
(278745, '1550587808.566945', 2, 'info', 'Analyzed 1500 files containing 18.61 MB of data so far'),
(278746, '1550587810.118154', 2, 'info', 'Analyzed 1600 files containing 19.97 MB of data so far'),
(278747, '1550587812.099265', 2, 'info', 'Analyzed 1700 files containing 21.73 MB of data so far'),
(278748, '1550587813.982437', 2, 'info', 'Analyzed 1800 files containing 23.43 MB of data so far'),
(278749, '1550587815.433236', 2, 'info', 'Analyzed 1900 files containing 24.46 MB of data so far'),
(278750, '1550587816.413428', 2, 'info', 'Analyzed 2000 files containing 25.1 MB of data so far'),
(278751, '1550587817.254199', 2, 'info', 'Analyzed 2100 files containing 25.51 MB of data so far'),
(278752, '1550587818.066517', 2, 'info', 'Analyzed 2200 files containing 26.03 MB of data so far'),
(278753, '1550587818.881572', 2, 'info', 'Analyzed 2300 files containing 26.58 MB of data so far'),
(278754, '1550587819.710345', 2, 'info', 'Analyzed 2400 files containing 27.07 MB of data so far'),
(278755, '1550587820.693192', 2, 'info', 'Analyzed 2500 files containing 27.76 MB of data so far'),
(278756, '1550587824.352364', 2, 'info', 'Analyzed 2600 files containing 28.71 MB of data so far'),
(278757, '1550587824.670319', 2, 'info', 'Analyzed 2700 files containing 29.05 MB of data so far'),
(278758, '1550587825.118086', 2, 'info', 'Analyzed 2800 files containing 29.57 MB of data so far'),
(278759, '1550587825.821145', 2, 'info', 'Analyzed 2900 files containing 29.76 MB of data so far'),
(278760, '1550587826.362268', 2, 'info', 'Analyzed 3000 files containing 30.08 MB of data so far'),
(278761, '1550587829.102247', 2, 'info', 'Analyzed 3100 files containing 30.67 MB of data so far'),
(278762, '1550587832.333473', 2, 'info', 'Analyzed 3200 files containing 33.72 MB of data so far'),
(278763, '1550587833.372928', 2, 'info', 'Analyzed 3300 files containing 34.81 MB of data so far'),
(278764, '1550587834.062214', 2, 'info', 'Analyzed 3400 files containing 35.34 MB of data so far'),
(278765, '1550587834.454215', 2, 'info', 'Analyzed 3500 files containing 35.38 MB of data so far'),
(278766, '1550587835.161271', 2, 'info', 'Analyzed 3600 files containing 35.74 MB of data so far'),
(278767, '1550587841.866223', 2, 'info', 'Analyzed 3700 files containing 39.6 MB of data so far'),
(278768, '1550587842.843760', 2, 'info', 'Analyzed 3800 files containing 41.53 MB of data so far'),
(278769, '1550587845.491391', 2, 'info', 'Analyzed 3900 files containing 43.94 MB of data so far'),
(278770, '1550587848.243252', 2, 'info', 'Analyzed 4000 files containing 46.35 MB of data so far'),
(278771, '1550587849.347173', 2, 'info', 'Analyzed 4100 files containing 47.2 MB of data so far'),
(278772, '1550587851.616210', 2, 'info', 'Analyzed 4200 files containing 49.25 MB of data so far'),
(278773, '1550587852.384616', 2, 'info', 'Analyzed 4300 files containing 49.66 MB of data so far'),
(278774, '1550587853.273618', 2, 'info', 'Analyzed 4400 files containing 50.16 MB of data so far'),
(278775, '1550587853.959722', 2, 'info', 'Analyzed 4500 files containing 50.53 MB of data so far'),
(278776, '1550587854.924394', 2, 'info', 'Analyzed 4600 files containing 51.46 MB of data so far'),
(278777, '1550587855.528575', 2, 'info', 'Analyzed 4700 files containing 52.55 MB of data so far'),
(278778, '1550587856.133025', 2, 'info', 'Analyzed 4800 files containing 53.24 MB of data so far'),
(278779, '1550587860.286210', 2, 'info', 'Analyzed 4900 files containing 54.51 MB of data so far'),
(278780, '1550587863.327352', 2, 'info', 'Analyzed 5000 files containing 58.39 MB of data so far'),
(278781, '1550587864.085223', 2, 'info', 'Analyzed 5100 files containing 59.05 MB of data so far'),
(278782, '1550587865.435286', 2, 'info', 'Analyzed 5200 files containing 61.59 MB of data so far'),
(278783, '1550587866.532485', 2, 'info', 'Analyzed 5300 files containing 63.19 MB of data so far'),
(278784, '1550587867.311368', 2, 'info', 'Analyzed 5400 files containing 63.65 MB of data so far'),
(278785, '1550587868.881459', 2, 'info', 'Analyzed 5500 files containing 65.14 MB of data so far'),
(278786, '1550587870.354806', 2, 'info', 'Analyzed 5600 files containing 66.21 MB of data so far'),
(278787, '1550587872.396844', 2, 'info', 'Analyzed 5700 files containing 69.05 MB of data so far'),
(278788, '1550587872.698739', 2, 'info', 'Analyzed 5765 files containing 70.18 MB of data.'),
(278789, '1550587872.699153', 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository'),
(278790, '1550587872.701346', 10, 'info', 'SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),
(278791, '1550587872.703247', 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(278792, '1550587872.730211', 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs'),
(278793, '1550587872.731314', 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(278794, '1550587872.735296', 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(278795, '1550587872.737192', 10, 'info', 'SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),
(278796, '1550587874.458397', 2, 'info', 'Starting scan of file contents'),
(278797, '1550629736.794252', 1, 'info', 'Scheduled Wordfence scan starting at Wednesday 20th of February 2019 02:28:56 AM'),
(278798, '1550682647.448415', 1, 'info', 'Scheduled Wordfence scan starting at Wednesday 20th of February 2019 05:10:47 PM'),
(278799, '1550682649.742095', 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(278800, '1550682649.772635', 10, 'info', 'SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),
(278801, '1550682651.775065', 10, 'info', 'SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),
(278802, '1550682653.777028', 10, 'info', 'SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),
(278803, '1550682655.779188', 10, 'info', 'SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),
(278804, '1550682657.782594', 10, 'info', 'SUM_START:Scanning your site for the HeartBleed vulnerability'),
(278805, '1550682658.474935', 10, 'info', 'SUM_ENDBAD:Scanning your site for the HeartBleed vulnerability'),
(278806, '1550682658.478147', 10, 'info', 'SUM_START:Checking for the most secure way to get IPs'),
(278807, '1550682658.479820', 10, 'info', 'SUM_ENDOK:Checking for the most secure way to get IPs'),
(278808, '1550682658.481843', 1, 'info', 'Contacting Wordfence to initiate scan'),
(278809, '1550682659.770852', 2, 'info', 'Getting plugin list from WordPress'),
(278810, '1550682659.838233', 2, 'info', 'Found 20 plugins'),
(278811, '1550682659.840492', 2, 'info', 'Getting theme list from WordPress'),
(278812, '1550682659.848770', 2, 'info', 'Found 4 themes'),
(278813, '1550682659.857268', 10, 'info', 'SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),
(278814, '1550682661.531037', 10, 'info', 'SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),
(278815, '1550682661.534260', 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(278816, '1550682662.869910', 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(278817, '1550682662.873021', 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository'),
(278818, '1550682662.873519', 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(278819, '1550682662.873803', 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(278820, '1550682662.875157', 10, 'info', 'SUM_START:Scanning for known malware files'),
(278821, '1550682662.876584', 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(278822, '1550682663.223436', 2, 'info', '500 files indexed') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278823, '1550682664.784272', 2, 'info', '1000 files indexed'),
(278824, '1550682666.978035', 2, 'info', '1500 files indexed'),
(278825, '1550682667.988168', 2, 'info', '2000 files indexed'),
(278826, '1550682670.095248', 2, 'info', '2500 files indexed'),
(278827, '1550682671.654425', 2, 'info', '3000 files indexed'),
(278828, '1550682674.862902', 2, 'info', '3331 files indexed'),
(278829, '1550682678.620056', 2, 'info', '3831 files indexed'),
(278830, '1550682680.115642', 2, 'info', '4331 files indexed'),
(278831, '1550682683.074452', 2, 'info', '4831 files indexed'),
(278832, '1550682687.244583', 2, 'info', '5331 files indexed'),
(278833, '1550682687.705862', 2, 'info', '5764 files indexed'),
(278834, '1550682689.593074', 2, 'info', 'Analyzed 100 files containing 1.34 MB of data so far'),
(278835, '1550682690.769167', 2, 'info', 'Analyzed 200 files containing 2.45 MB of data so far'),
(278836, '1550682691.750172', 2, 'info', 'Analyzed 300 files containing 3.68 MB of data so far'),
(278837, '1550682697.341207', 2, 'info', 'Analyzed 400 files containing 5.59 MB of data so far'),
(278838, '1550682698.480335', 2, 'info', 'Analyzed 500 files containing 6.3 MB of data so far'),
(278839, '1550682700.083628', 2, 'info', 'Analyzed 600 files containing 7.2 MB of data so far'),
(278840, '1550682702.617126', 2, 'info', 'Analyzed 700 files containing 8.47 MB of data so far'),
(278841, '1550682705.617548', 2, 'info', 'Analyzed 800 files containing 10.31 MB of data so far'),
(278842, '1550682706.772092', 2, 'info', 'Analyzed 900 files containing 11.04 MB of data so far'),
(278843, '1550682707.906378', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(278844, '1550682708.940632', 2, 'info', 'Analyzed 1100 files containing 12.46 MB of data so far'),
(278845, '1550682710.489960', 2, 'info', 'Analyzed 1200 files containing 13.47 MB of data so far'),
(278846, '1550682715.411653', 2, 'info', 'Analyzed 1300 files containing 14.46 MB of data so far'),
(278847, '1550682718.818373', 2, 'info', 'Analyzed 1400 files containing 17.15 MB of data so far'),
(278848, '1550682719.968004', 2, 'info', 'Analyzed 1500 files containing 18.63 MB of data so far'),
(278849, '1550682721.639464', 2, 'info', 'Analyzed 1600 files containing 19.96 MB of data so far'),
(278850, '1550682723.678116', 2, 'info', 'Analyzed 1700 files containing 21.72 MB of data so far'),
(278851, '1550682726.444927', 2, 'info', 'Analyzed 1800 files containing 23.42 MB of data so far'),
(278852, '1550682728.292589', 2, 'info', 'Analyzed 1900 files containing 24.45 MB of data so far'),
(278853, '1550682732.101194', 2, 'info', 'Analyzed 2000 files containing 25.08 MB of data so far'),
(278854, '1550682733.143297', 2, 'info', 'Analyzed 2100 files containing 25.5 MB of data so far'),
(278855, '1550682734.446131', 2, 'info', 'Analyzed 2200 files containing 26.02 MB of data so far'),
(278856, '1550682735.608919', 2, 'info', 'Analyzed 2300 files containing 26.57 MB of data so far'),
(278857, '1550682737.131434', 2, 'info', 'Analyzed 2400 files containing 27.06 MB of data so far'),
(278858, '1550682738.798545', 2, 'info', 'Analyzed 2500 files containing 27.77 MB of data so far'),
(278859, '1550682740.037307', 2, 'info', 'Analyzed 2600 files containing 28.7 MB of data so far'),
(278860, '1550682740.325395', 2, 'info', 'Analyzed 2700 files containing 29.04 MB of data so far'),
(278861, '1550682740.823116', 2, 'info', 'Analyzed 2800 files containing 29.56 MB of data so far'),
(278862, '1550682741.366355', 2, 'info', 'Analyzed 2900 files containing 29.75 MB of data so far'),
(278863, '1550682741.963142', 2, 'info', 'Analyzed 3000 files containing 30.06 MB of data so far'),
(278864, '1550682742.858434', 2, 'info', 'Analyzed 3100 files containing 30.66 MB of data so far'),
(278865, '1550682745.543988', 2, 'info', 'Analyzed 3200 files containing 33.7 MB of data so far'),
(278866, '1550682749.914147', 2, 'info', 'Analyzed 3300 files containing 34.8 MB of data so far'),
(278867, '1550682750.684122', 2, 'info', 'Analyzed 3400 files containing 35.33 MB of data so far'),
(278868, '1550682751.088116', 2, 'info', 'Analyzed 3500 files containing 35.37 MB of data so far'),
(278869, '1550682751.801339', 2, 'info', 'Analyzed 3600 files containing 35.73 MB of data so far'),
(278870, '1550682756.964821', 2, 'info', 'Analyzed 3700 files containing 39.59 MB of data so far'),
(278871, '1550682757.886172', 2, 'info', 'Analyzed 3800 files containing 41.52 MB of data so far'),
(278872, '1550682760.739848', 2, 'info', 'Analyzed 3900 files containing 43.93 MB of data so far'),
(278873, '1550682763.829299', 2, 'info', 'Analyzed 4000 files containing 46.33 MB of data so far'),
(278874, '1550682767.577284', 2, 'info', 'Analyzed 4100 files containing 47.18 MB of data so far'),
(278875, '1550682769.995299', 2, 'info', 'Analyzed 4200 files containing 49.24 MB of data so far'),
(278876, '1550682770.902164', 2, 'info', 'Analyzed 4300 files containing 49.65 MB of data so far'),
(278877, '1550682771.856529', 2, 'info', 'Analyzed 4400 files containing 50.15 MB of data so far'),
(278878, '1550682772.582142', 2, 'info', 'Analyzed 4500 files containing 50.52 MB of data so far'),
(278879, '1550682773.845368', 2, 'info', 'Analyzed 4600 files containing 51.5 MB of data so far'),
(278880, '1550682774.417452', 2, 'info', 'Analyzed 4700 files containing 52.54 MB of data so far'),
(278881, '1550682775.217375', 2, 'info', 'Analyzed 4800 files containing 53.23 MB of data so far'),
(278882, '1550682777.708257', 2, 'info', 'Analyzed 4900 files containing 54.5 MB of data so far'),
(278883, '1550682780.812141', 2, 'info', 'Analyzed 5000 files containing 58.38 MB of data so far'),
(278884, '1550682781.572869', 2, 'info', 'Analyzed 5100 files containing 59.06 MB of data so far'),
(278885, '1550682785.983088', 2, 'info', 'Analyzed 5200 files containing 61.59 MB of data so far'),
(278886, '1550682787.381752', 2, 'info', 'Analyzed 5300 files containing 63.18 MB of data so far'),
(278887, '1550682788.347013', 2, 'info', 'Analyzed 5400 files containing 63.64 MB of data so far'),
(278888, '1550682789.724667', 2, 'info', 'Analyzed 5500 files containing 65.13 MB of data so far'),
(278889, '1550682791.786137', 2, 'info', 'Analyzed 5600 files containing 66.21 MB of data so far'),
(278890, '1550682793.866091', 2, 'info', 'Analyzed 5700 files containing 69.09 MB of data so far'),
(278891, '1550682794.320185', 2, 'info', 'Analyzed 5764 files containing 70.16 MB of data.'),
(278892, '1550682794.320526', 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository'),
(278893, '1550682794.322236', 10, 'info', 'SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),
(278894, '1550682794.324430', 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(278895, '1550682794.344537', 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs'),
(278896, '1550682794.345583', 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(278897, '1550682794.348992', 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(278898, '1550682794.350420', 10, 'info', 'SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),
(278899, '1550682795.969441', 2, 'info', 'Starting scan of file contents'),
(278900, '1550682796.978680', 2, 'info', 'Scanned contents of 9 additional files at 8.93 per second'),
(278901, '1550682798.027870', 2, 'info', 'Scanned contents of 26 additional files at 12.64 per second'),
(278902, '1550682799.307373', 2, 'info', 'Scanned contents of 35 additional files at 10.49 per second'),
(278903, '1550682802.319369', 2, 'info', 'Scanned contents of 49 additional files at 7.72 per second'),
(278904, '1550682803.385128', 2, 'info', 'Scanned contents of 58 additional files at 7.82 per second'),
(278905, '1550682804.471472', 2, 'info', 'Scanned contents of 71 additional files at 8.35 per second'),
(278906, '1550682805.520945', 2, 'info', 'Scanned contents of 80 additional files at 8.38 per second'),
(278907, '1550682806.665947', 2, 'info', 'Scanned contents of 83 additional files at 7.76 per second'),
(278908, '1550682807.768216', 2, 'info', 'Scanned contents of 94 additional files at 7.97 per second'),
(278909, '1550682810.043377', 2, 'info', 'Scanned contents of 97 additional files at 6.89 per second'),
(278910, '1550682811.256354', 2, 'info', 'Scanned contents of 112 additional files at 7.33 per second'),
(278911, '1550682812.461536', 2, 'info', 'Scanned contents of 118 additional files at 7.16 per second'),
(278912, '1550682813.469035', 2, 'info', 'Scanned contents of 125 additional files at 7.14 per second'),
(278913, '1550682814.733815', 2, 'info', 'Scanned contents of 133 additional files at 7.09 per second'),
(278914, '1550682815.747386', 2, 'info', 'Scanned contents of 143 additional files at 7.23 per second'),
(278915, '1550682816.781134', 2, 'info', 'Scanned contents of 156 additional files at 7.50 per second'),
(278916, '1550682818.901450', 2, 'info', 'Scanned contents of 169 additional files at 7.37 per second'),
(278917, '1550682821.351253', 2, 'info', 'Scanned contents of 170 additional files at 6.70 per second'),
(278918, '1550682822.724036', 2, 'info', 'Scanned contents of 186 additional files at 6.95 per second'),
(278919, '1550682823.737100', 2, 'info', 'Scanned contents of 200 additional files at 7.20 per second'),
(278920, '1550682824.803783', 2, 'info', 'Scanned contents of 206 additional files at 7.14 per second'),
(278921, '1550682826.215431', 2, 'info', 'Scanned contents of 215 additional files at 7.11 per second'),
(278922, '1550682827.236554', 2, 'info', 'Scanned contents of 233 additional files at 7.45 per second') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(278923, '1550682828.243029', 2, 'info', 'Scanned contents of 246 additional files at 7.62 per second'),
(278924, '1550682829.264775', 2, 'info', 'Scanned contents of 262 additional files at 7.87 per second'),
(278925, '1550682830.350838', 2, 'info', 'Scanned contents of 273 additional files at 7.94 per second'),
(278926, '1550682831.379998', 2, 'info', 'Scanned contents of 290 additional files at 8.19 per second'),
(278927, '1550682832.412185', 2, 'info', 'Scanned contents of 306 additional files at 8.40 per second'),
(278928, '1550682833.442971', 2, 'info', 'Scanned contents of 319 additional files at 8.51 per second'),
(278929, '1550682834.679595', 2, 'info', 'Scanned contents of 337 additional files at 8.71 per second'),
(278930, '1550682835.724915', 2, 'info', 'Scanned contents of 347 additional files at 8.73 per second'),
(278931, '1550682836.800106', 2, 'info', 'Scanned contents of 355 additional files at 8.69 per second'),
(278932, '1550682839.304354', 2, 'info', 'Scanned contents of 357 additional files at 8.24 per second'),
(278933, '1550682840.351785', 2, 'info', 'Scanned contents of 372 additional files at 8.38 per second'),
(278934, '1550682841.366453', 2, 'info', 'Scanned contents of 391 additional files at 8.61 per second'),
(278935, '1550682842.434316', 2, 'info', 'Scanned contents of 409 additional files at 8.80 per second'),
(278936, '1550682843.506825', 2, 'info', 'Scanned contents of 425 additional files at 8.94 per second'),
(278937, '1550682844.536874', 2, 'info', 'Scanned contents of 441 additional files at 9.08 per second'),
(278938, '1550682845.836438', 2, 'info', 'Scanned contents of 449 additional files at 9.00 per second'),
(278939, '1550682846.944450', 2, 'info', 'Scanned contents of 458 additional files at 8.99 per second'),
(278940, '1550682848.074376', 2, 'info', 'Scanned contents of 463 additional files at 8.89 per second'),
(278941, '1550682849.103807', 2, 'info', 'Scanned contents of 473 additional files at 8.90 per second'),
(278942, '1550682850.259335', 2, 'info', 'Scanned contents of 482 additional files at 8.88 per second'),
(278943, '1550682851.291835', 2, 'info', 'Scanned contents of 497 additional files at 8.98 per second'),
(278944, '1550682852.356174', 2, 'info', 'Scanned contents of 515 additional files at 9.13 per second'),
(278945, '1550682853.396763', 2, 'info', 'Scanned contents of 531 additional files at 9.25 per second'),
(278946, '1550682854.468333', 2, 'info', 'Scanned contents of 546 additional files at 9.33 per second'),
(278947, '1550682857.310120', 2, 'info', 'Scanned contents of 557 additional files at 9.08 per second'),
(278948, '1550682858.405053', 2, 'info', 'Scanned contents of 573 additional files at 9.18 per second'),
(278949, '1550682859.438048', 2, 'info', 'Scanned contents of 590 additional files at 9.30 per second'),
(278950, '1550682860.494765', 2, 'info', 'Scanned contents of 604 additional files at 9.36 per second'),
(278951, '1550682861.576455', 2, 'info', 'Scanned contents of 622 additional files at 9.48 per second'),
(278952, '1550682862.594859', 2, 'info', 'Scanned contents of 629 additional files at 9.44 per second'),
(278953, '1550682863.687438', 2, 'info', 'Scanned contents of 698 additional files at 10.31 per second'),
(278954, '1550682865.392438', 2, 'info', 'Scanned contents of 719 additional files at 10.36 per second'),
(278955, '1550682866.979501', 2, 'info', 'Scanned contents of 730 additional files at 10.28 per second'),
(278956, '1550682868.308679', 2, 'info', 'Scanned contents of 734 additional files at 10.15 per second'),
(278957, '1550682869.375776', 2, 'info', 'Scanned contents of 742 additional files at 10.11 per second'),
(278958, '1550682870.423288', 2, 'info', 'Scanned contents of 745 additional files at 10.01 per second'),
(278959, '1550682871.481300', 2, 'info', 'Scanned contents of 753 additional files at 9.97 per second'),
(278960, '1550682872.523199', 2, 'info', 'Scanned contents of 760 additional files at 9.93 per second'),
(278961, '1550682875.346172', 2, 'info', 'Scanned contents of 767 additional files at 9.66 per second'),
(278962, '1550682876.539917', 2, 'info', 'Scanned contents of 770 additional files at 9.56 per second'),
(278963, '1550682877.582554', 2, 'info', 'Scanned contents of 796 additional files at 9.75 per second'),
(278964, '1550682878.683079', 2, 'info', 'Scanned contents of 808 additional files at 9.77 per second'),
(278965, '1550682879.736800', 2, 'info', 'Scanned contents of 823 additional files at 9.83 per second'),
(278966, '1550682880.750198', 2, 'info', 'Scanned contents of 838 additional files at 9.88 per second'),
(278967, '1550682881.796092', 2, 'info', 'Scanned contents of 849 additional files at 9.89 per second'),
(278968, '1550682883.132484', 2, 'info', 'Scanned contents of 850 additional files at 9.75 per second'),
(278969, '1550682884.371829', 2, 'info', 'Scanned contents of 854 additional files at 9.66 per second'),
(278970, '1550682885.409567', 2, 'info', 'Scanned contents of 863 additional files at 9.65 per second'),
(278971, '1550682886.607337', 2, 'info', 'Scanned contents of 866 additional files at 9.55 per second'),
(278972, '1550682888.657779', 2, 'info', 'Scanned contents of 870 additional files at 9.39 per second'),
(278973, '1550682889.680836', 2, 'info', 'Scanned contents of 881 additional files at 9.40 per second'),
(278974, '1550682890.752238', 2, 'info', 'Scanned contents of 889 additional files at 9.38 per second'),
(278975, '1550682893.510932', 2, 'info', 'Scanned contents of 893 additional files at 9.16 per second'),
(278976, '1550682894.796486', 2, 'info', 'Scanned contents of 897 additional files at 9.08 per second'),
(278977, '1550682895.798634', 2, 'info', 'Scanned contents of 918 additional files at 9.20 per second'),
(278978, '1550682896.803889', 2, 'info', 'Scanned contents of 930 additional files at 9.22 per second'),
(278979, '1550682898.150543', 2, 'info', 'Scanned contents of 931 additional files at 9.11 per second'),
(278980, '1550682899.156883', 2, 'info', 'Scanned contents of 949 additional files at 9.20 per second'),
(278981, '1550682900.391060', 2, 'info', 'Scanned contents of 956 additional files at 9.16 per second'),
(278982, '1550682901.456394', 2, 'info', 'Scanned contents of 970 additional files at 9.20 per second'),
(278983, '1550682902.501081', 2, 'info', 'Scanned contents of 980 additional files at 9.20 per second'),
(278984, '1550682903.539022', 2, 'info', 'Scanned contents of 997 additional files at 9.27 per second'),
(278985, '1550682912.868900', 2, 'info', 'Scanned contents of 1005 additional files at 8.60 per second'),
(278986, '1550682915.316053', 2, 'info', 'Scanned contents of 1006 additional files at 8.43 per second'),
(278987, '1550682915.320304', 2, 'info', 'Scanned contents of 1006 additional files at 8.43 per second'),
(278988, '1550682915.320628', 2, 'info', 'Asking Wordfence to check URL\'s against malware list.'),
(278989, '1550682915.349964', 2, 'info', 'Checking 278 host keys against Wordfence scanning servers.'),
(278990, '1550682916.245850', 2, 'info', 'Done host key check.'),
(278991, '1550682916.247869', 2, 'info', 'Checking 5 URLs from 5 sources.'),
(278992, '1550682916.903468', 2, 'info', 'Done URL check.'),
(278993, '1550682916.906600', 2, 'info', 'Done file contents scan'),
(278994, '1550682916.914638', 10, 'info', 'SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),
(278995, '1550682916.917638', 10, 'info', 'SUM_ENDOK:Scanning files for URLs in Google\'s Safe Browsing List'),
(278996, '1550682916.920960', 10, 'info', 'SUM_START:Scanning for publicly accessible quarantined files'),
(278997, '1550682916.921249', 10, 'info', 'SUM_ENDOK:Scanning for publicly accessible quarantined files'),
(278998, '1550682916.924290', 10, 'info', 'SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List'),
(278999, '1550682916.985972', 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(279000, '1550682916.986460', 2, 'info', 'Checking 3 host keys against Wordfence scanning servers.'),
(279001, '1550682917.670425', 2, 'info', 'Done host key check.'),
(279002, '1550682917.671051', 2, 'info', 'Done examining URLs'),
(279003, '1550682917.673159', 10, 'info', 'SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),
(279004, '1550682917.676900', 10, 'info', 'SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),
(279005, '1550682917.685930', 10, 'info', 'SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),
(279006, '1550682917.691372', 10, 'info', 'SUM_START:Scanning for weak passwords'),
(279007, '1550682917.692080', 2, 'info', 'Starting password strength check on 1 users.'),
(279008, '1550682917.697310', 10, 'info', 'SUM_ENDOK:Scanning for weak passwords'),
(279009, '1550682917.700746', 10, 'info', 'SUM_START:Scanning DNS for unauthorized changes'),
(279010, '1550682917.701146', 2, 'info', 'Starting DNS scan for www.investors-watch.com/wp-staging/ranhill'),
(279011, '1550682917.819955', 2, 'info', 'Scanning DNS A record for www.investors-watch.com/wp-staging/ranhill'),
(279012, '1550682918.043197', 10, 'info', 'SUM_ENDOK:Scanning DNS for unauthorized changes'),
(279013, '1550682918.048459', 10, 'info', 'SUM_START:Scanning to check available disk space'),
(279014, '1550682918.049021', 2, 'info', 'Total disk space: 609.9881GB -- Free disk space: 135.3311GB'),
(279015, '1550682918.049431', 2, 'info', 'The disk has 138579.06 MB space available'),
(279016, '1550682918.049863', 10, 'info', 'SUM_ENDOK:Scanning to check available disk space'),
(279017, '1550682918.055142', 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(279018, '1550682932.171044', 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(279019, '1550682934.259870', 10, 'info', 'SUM_START:Scanning for admin users not created through WordPress'),
(279020, '1550682934.261992', 10, 'info', 'SUM_ENDOK:Scanning for admin users not created through WordPress'),
(279021, '1550682934.272664', 1, 'info', '-------------------'),
(279022, '1550682934.273021', 1, 'info', 'Scan Complete. Scanned 5764 files, 20 plugins, 4 themes, 111 pages, 1 comments and 28853 records in 4 minutes 45 seconds.') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(279023, '1550682934.273259', 10, 'info', 'SUM_FINAL:Scan complete. You have 18 new issues to fix. See below.'),
(279024, '1550682934.965261', 2, 'info', 'Wordfence used 35.08MB of memory for scan. Server peak memory usage was: 48.50MB'),
(279025, '1550700795.820180', 1, 'info', 'Scheduled Wordfence scan starting at Wednesday 20th of February 2019 10:13:15 PM'),
(279026, '1550700797.905071', 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(279027, '1550700797.907240', 10, 'info', 'SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),
(279028, '1550700799.909032', 10, 'info', 'SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),
(279029, '1550700801.910863', 10, 'info', 'SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),
(279030, '1550700803.912699', 10, 'info', 'SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),
(279031, '1550700805.916727', 10, 'info', 'SUM_START:Scanning your site for the HeartBleed vulnerability'),
(279032, '1550700806.616140', 10, 'info', 'SUM_ENDBAD:Scanning your site for the HeartBleed vulnerability'),
(279033, '1550700806.619651', 10, 'info', 'SUM_START:Checking for the most secure way to get IPs'),
(279034, '1550700806.621479', 10, 'info', 'SUM_ENDOK:Checking for the most secure way to get IPs'),
(279035, '1550700806.623815', 1, 'info', 'Contacting Wordfence to initiate scan'),
(279036, '1550700807.537350', 2, 'info', 'Getting plugin list from WordPress'),
(279037, '1550700807.645721', 2, 'info', 'Found 20 plugins'),
(279038, '1550700807.647421', 2, 'info', 'Getting theme list from WordPress'),
(279039, '1550700807.652066', 2, 'info', 'Found 4 themes'),
(279040, '1550700807.660926', 10, 'info', 'SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),
(279041, '1550700809.422682', 10, 'info', 'SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),
(279042, '1550700809.425887', 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(279043, '1550700810.809204', 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(279044, '1550700810.812240', 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository'),
(279045, '1550700810.812527', 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(279046, '1550700810.812789', 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(279047, '1550700810.814052', 10, 'info', 'SUM_START:Scanning for known malware files'),
(279048, '1550700810.815384', 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(279049, '1550700811.065750', 2, 'info', '500 files indexed'),
(279050, '1550700811.580377', 2, 'info', '1000 files indexed'),
(279051, '1550700811.895305', 2, 'info', '1500 files indexed'),
(279052, '1550700812.175466', 2, 'info', '2000 files indexed'),
(279053, '1550700812.784464', 2, 'info', '2500 files indexed'),
(279054, '1550700813.460122', 2, 'info', '3000 files indexed'),
(279055, '1550700815.300362', 2, 'info', '3500 files indexed'),
(279056, '1550700815.609575', 2, 'info', '4000 files indexed'),
(279057, '1550700816.004589', 2, 'info', '4500 files indexed'),
(279058, '1550700818.852897', 2, 'info', '5000 files indexed'),
(279059, '1550700819.272375', 2, 'info', '5500 files indexed'),
(279060, '1550700819.473182', 2, 'info', '5764 files indexed'),
(279061, '1550700819.670626', 2, 'info', 'Analyzed 100 files containing 1.34 MB of data so far'),
(279062, '1550700819.843472', 2, 'info', 'Analyzed 200 files containing 2.45 MB of data so far'),
(279063, '1550700820.018738', 2, 'info', 'Analyzed 300 files containing 3.68 MB of data so far'),
(279064, '1550700820.219010', 2, 'info', 'Analyzed 400 files containing 5.59 MB of data so far'),
(279065, '1550700820.388399', 2, 'info', 'Analyzed 500 files containing 6.3 MB of data so far'),
(279066, '1550700820.562157', 2, 'info', 'Analyzed 600 files containing 7.2 MB of data so far'),
(279067, '1550700820.759391', 2, 'info', 'Analyzed 700 files containing 8.47 MB of data so far'),
(279068, '1550700820.964359', 2, 'info', 'Analyzed 800 files containing 10.31 MB of data so far'),
(279069, '1550700821.130269', 2, 'info', 'Analyzed 900 files containing 11.04 MB of data so far'),
(279070, '1550700821.272035', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(279071, '1550700821.436271', 2, 'info', 'Analyzed 1100 files containing 12.46 MB of data so far'),
(279072, '1550700821.620795', 2, 'info', 'Analyzed 1200 files containing 13.47 MB of data so far'),
(279073, '1550700821.813028', 2, 'info', 'Analyzed 1300 files containing 14.46 MB of data so far'),
(279074, '1550700822.060657', 2, 'info', 'Analyzed 1400 files containing 17.15 MB of data so far'),
(279075, '1550700822.220652', 2, 'info', 'Analyzed 1500 files containing 18.63 MB of data so far'),
(279076, '1550700822.400099', 2, 'info', 'Analyzed 1600 files containing 19.96 MB of data so far'),
(279077, '1550700822.598006', 2, 'info', 'Analyzed 1700 files containing 21.72 MB of data so far'),
(279078, '1550700825.089278', 2, 'info', 'Analyzed 1800 files containing 23.42 MB of data so far'),
(279079, '1550700825.277833', 2, 'info', 'Analyzed 1900 files containing 24.45 MB of data so far'),
(279080, '1550700825.438754', 2, 'info', 'Analyzed 2000 files containing 25.08 MB of data so far'),
(279081, '1550700825.617853', 2, 'info', 'Analyzed 2100 files containing 25.5 MB of data so far'),
(279082, '1550700825.769573', 2, 'info', 'Analyzed 2200 files containing 26.02 MB of data so far'),
(279083, '1550700825.946883', 2, 'info', 'Analyzed 2300 files containing 26.57 MB of data so far'),
(279084, '1550700826.164056', 2, 'info', 'Analyzed 2400 files containing 27.06 MB of data so far'),
(279085, '1550700826.390139', 2, 'info', 'Analyzed 2500 files containing 27.77 MB of data so far'),
(279086, '1550700826.606474', 2, 'info', 'Analyzed 2600 files containing 28.7 MB of data so far'),
(279087, '1550700826.751674', 2, 'info', 'Analyzed 2700 files containing 29.04 MB of data so far'),
(279088, '1550700826.918524', 2, 'info', 'Analyzed 2800 files containing 29.56 MB of data so far'),
(279089, '1550700827.073336', 2, 'info', 'Analyzed 2900 files containing 29.75 MB of data so far'),
(279090, '1550700827.227057', 2, 'info', 'Analyzed 3000 files containing 30.06 MB of data so far'),
(279091, '1550700827.414124', 2, 'info', 'Analyzed 3100 files containing 30.66 MB of data so far'),
(279092, '1550700827.631393', 2, 'info', 'Analyzed 3200 files containing 33.7 MB of data so far'),
(279093, '1550700827.823257', 2, 'info', 'Analyzed 3300 files containing 34.8 MB of data so far'),
(279094, '1550700827.996711', 2, 'info', 'Analyzed 3400 files containing 35.33 MB of data so far'),
(279095, '1550700828.151612', 2, 'info', 'Analyzed 3500 files containing 35.37 MB of data so far'),
(279096, '1550700828.315045', 2, 'info', 'Analyzed 3600 files containing 35.73 MB of data so far'),
(279097, '1550700828.644253', 2, 'info', 'Analyzed 3700 files containing 39.59 MB of data so far'),
(279098, '1550700828.840619', 2, 'info', 'Analyzed 3800 files containing 41.52 MB of data so far'),
(279099, '1550700829.046710', 2, 'info', 'Analyzed 3900 files containing 43.93 MB of data so far'),
(279100, '1550700829.262129', 2, 'info', 'Analyzed 4000 files containing 46.33 MB of data so far'),
(279101, '1550700829.447416', 2, 'info', 'Analyzed 4100 files containing 47.18 MB of data so far'),
(279102, '1550700829.683302', 2, 'info', 'Analyzed 4200 files containing 49.24 MB of data so far'),
(279103, '1550700829.844460', 2, 'info', 'Analyzed 4300 files containing 49.65 MB of data so far'),
(279104, '1550700830.060236', 2, 'info', 'Analyzed 4400 files containing 50.15 MB of data so far'),
(279105, '1550700830.234140', 2, 'info', 'Analyzed 4500 files containing 50.52 MB of data so far'),
(279106, '1550700830.408087', 2, 'info', 'Analyzed 4600 files containing 51.5 MB of data so far'),
(279107, '1550700830.585100', 2, 'info', 'Analyzed 4700 files containing 52.54 MB of data so far'),
(279108, '1550700830.766936', 2, 'info', 'Analyzed 4800 files containing 53.23 MB of data so far'),
(279109, '1550700830.990194', 2, 'info', 'Analyzed 4900 files containing 54.5 MB of data so far'),
(279110, '1550700831.246595', 2, 'info', 'Analyzed 5000 files containing 58.38 MB of data so far'),
(279111, '1550700831.428761', 2, 'info', 'Analyzed 5100 files containing 59.06 MB of data so far'),
(279112, '1550700831.650328', 2, 'info', 'Analyzed 5200 files containing 61.59 MB of data so far'),
(279113, '1550700831.885656', 2, 'info', 'Analyzed 5300 files containing 63.18 MB of data so far'),
(279114, '1550700832.083311', 2, 'info', 'Analyzed 5400 files containing 63.64 MB of data so far'),
(279115, '1550700832.319887', 2, 'info', 'Analyzed 5500 files containing 65.13 MB of data so far'),
(279116, '1550700832.521682', 2, 'info', 'Analyzed 5600 files containing 66.21 MB of data so far'),
(279117, '1550700832.736080', 2, 'info', 'Analyzed 5700 files containing 69.09 MB of data so far'),
(279118, '1550700832.879474', 2, 'info', 'Analyzed 5764 files containing 70.16 MB of data.'),
(279119, '1550700832.879937', 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository'),
(279120, '1550700832.881687', 10, 'info', 'SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),
(279121, '1550700832.883213', 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(279122, '1550700832.904111', 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(279123, '1550700832.905114', 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(279124, '1550700832.908369', 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(279125, '1550700832.909808', 10, 'info', 'SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),
(279126, '1550700834.600667', 2, 'info', 'Starting scan of file contents'),
(279127, '1550700835.675608', 2, 'info', 'Scanned contents of 10 additional files at 9.31 per second'),
(279128, '1550700836.694885', 2, 'info', 'Scanned contents of 29 additional files at 13.86 per second'),
(279129, '1550700837.830826', 2, 'info', 'Scanned contents of 35 additional files at 10.84 per second'),
(279130, '1550700838.864149', 2, 'info', 'Scanned contents of 53 additional files at 12.43 per second'),
(279131, '1550700839.927026', 2, 'info', 'Scanned contents of 62 additional files at 11.64 per second'),
(279132, '1550700842.254338', 2, 'info', 'Scanned contents of 65 additional files at 8.49 per second'),
(279133, '1550700843.309667', 2, 'info', 'Scanned contents of 74 additional files at 8.50 per second'),
(279134, '1550700844.860949', 2, 'info', 'Scanned contents of 82 additional files at 7.99 per second'),
(279135, '1550700845.942387', 2, 'info', 'Scanned contents of 91 additional files at 8.02 per second'),
(279136, '1550700848.576147', 2, 'info', 'Scanned contents of 97 additional files at 6.94 per second'),
(279137, '1550700849.772873', 2, 'info', 'Scanned contents of 112 additional files at 7.38 per second'),
(279138, '1550700850.981288', 2, 'info', 'Scanned contents of 118 additional files at 7.20 per second'),
(279139, '1550700852.025351', 2, 'info', 'Scanned contents of 124 additional files at 7.12 per second'),
(279140, '1550700853.252544', 2, 'info', 'Scanned contents of 133 additional files at 7.13 per second'),
(279141, '1550700854.255184', 2, 'info', 'Scanned contents of 143 additional files at 7.28 per second'),
(279142, '1550700855.299089', 2, 'info', 'Scanned contents of 156 additional files at 7.54 per second'),
(279143, '1550700857.543790', 2, 'info', 'Scanned contents of 169 additional files at 7.37 per second'),
(279144, '1550700860.753944', 2, 'info', 'Scanned contents of 174 additional files at 6.65 per second'),
(279145, '1550700861.899684', 2, 'info', 'Scanned contents of 187 additional files at 6.85 per second'),
(279146, '1550700863.479248', 2, 'info', 'Scanned contents of 205 additional files at 7.10 per second'),
(279147, '1550700864.807040', 2, 'info', 'Scanned contents of 215 additional files at 7.12 per second'),
(279148, '1550700865.828934', 2, 'info', 'Scanned contents of 234 additional files at 7.49 per second'),
(279149, '1550700866.876501', 2, 'info', 'Scanned contents of 248 additional files at 7.68 per second'),
(279150, '1550700868.150745', 2, 'info', 'Scanned contents of 263 additional files at 7.84 per second'),
(279151, '1550700869.169895', 2, 'info', 'Scanned contents of 278 additional files at 8.04 per second'),
(279152, '1550700870.246393', 2, 'info', 'Scanned contents of 295 additional files at 8.28 per second'),
(279153, '1550700871.254831', 2, 'info', 'Scanned contents of 309 additional files at 8.43 per second'),
(279154, '1550700872.308744', 2, 'info', 'Scanned contents of 325 additional files at 8.62 per second'),
(279155, '1550700873.315327', 2, 'info', 'Scanned contents of 337 additional files at 8.70 per second'),
(279156, '1550700874.439682', 2, 'info', 'Scanned contents of 347 additional files at 8.71 per second'),
(279157, '1550700875.542708', 2, 'info', 'Scanned contents of 355 additional files at 8.67 per second'),
(279158, '1550700878.374512', 2, 'info', 'Scanned contents of 361 additional files at 8.25 per second'),
(279159, '1550700879.445714', 2, 'info', 'Scanned contents of 375 additional files at 8.36 per second'),
(279160, '1550700880.479531', 2, 'info', 'Scanned contents of 394 additional files at 8.59 per second'),
(279161, '1550700881.508129', 2, 'info', 'Scanned contents of 410 additional files at 8.74 per second'),
(279162, '1550700882.632994', 2, 'info', 'Scanned contents of 425 additional files at 8.85 per second'),
(279163, '1550700883.641552', 2, 'info', 'Scanned contents of 440 additional files at 8.97 per second'),
(279164, '1550700884.655132', 2, 'info', 'Scanned contents of 448 additional files at 8.95 per second'),
(279165, '1550700885.772444', 2, 'info', 'Scanned contents of 453 additional files at 8.85 per second'),
(279166, '1550700887.399347', 2, 'info', 'Scanned contents of 463 additional files at 8.77 per second'),
(279167, '1550700888.454880', 2, 'info', 'Scanned contents of 473 additional files at 8.78 per second'),
(279168, '1550700889.631425', 2, 'info', 'Scanned contents of 482 additional files at 8.76 per second'),
(279169, '1550700890.644040', 2, 'info', 'Scanned contents of 497 additional files at 8.87 per second'),
(279170, '1550700891.674189', 2, 'info', 'Scanned contents of 512 additional files at 8.97 per second'),
(279171, '1550700892.677607', 2, 'info', 'Scanned contents of 527 additional files at 9.07 per second'),
(279172, '1550700893.681180', 2, 'info', 'Scanned contents of 538 additional files at 9.11 per second'),
(279173, '1550700896.479571', 2, 'info', 'Scanned contents of 544 additional files at 8.79 per second'),
(279174, '1550700897.571887', 2, 'info', 'Scanned contents of 561 additional files at 8.91 per second'),
(279175, '1550700898.622907', 2, 'info', 'Scanned contents of 579 additional files at 9.04 per second'),
(279176, '1550700899.630148', 2, 'info', 'Scanned contents of 594 additional files at 9.13 per second'),
(279177, '1550700900.667639', 2, 'info', 'Scanned contents of 608 additional files at 9.20 per second'),
(279178, '1550700901.753006', 2, 'info', 'Scanned contents of 623 additional files at 9.28 per second'),
(279179, '1550700902.882942', 2, 'info', 'Scanned contents of 628 additional files at 9.20 per second'),
(279180, '1550700904.028110', 2, 'info', 'Scanned contents of 696 additional files at 10.03 per second'),
(279181, '1550700905.892565', 2, 'info', 'Scanned contents of 719 additional files at 10.09 per second'),
(279182, '1550700907.378396', 2, 'info', 'Scanned contents of 730 additional files at 10.03 per second'),
(279183, '1550700908.540586', 2, 'info', 'Scanned contents of 734 additional files at 9.93 per second'),
(279184, '1550700910.332784', 2, 'info', 'Scanned contents of 745 additional files at 9.84 per second'),
(279185, '1550700911.409418', 2, 'info', 'Scanned contents of 753 additional files at 9.80 per second'),
(279186, '1550700914.354518', 2, 'info', 'Scanned contents of 759 additional files at 9.52 per second'),
(279187, '1550700916.002178', 2, 'info', 'Scanned contents of 768 additional files at 9.43 per second'),
(279188, '1550700917.106976', 2, 'info', 'Scanned contents of 791 additional files at 9.59 per second'),
(279189, '1550700918.290776', 2, 'info', 'Scanned contents of 804 additional files at 9.61 per second'),
(279190, '1550700919.305511', 2, 'info', 'Scanned contents of 819 additional files at 9.67 per second'),
(279191, '1550700920.339085', 2, 'info', 'Scanned contents of 834 additional files at 9.73 per second'),
(279192, '1550700921.410053', 2, 'info', 'Scanned contents of 847 additional files at 9.76 per second'),
(279193, '1550700923.048596', 2, 'info', 'Scanned contents of 850 additional files at 9.61 per second'),
(279194, '1550700924.290893', 2, 'info', 'Scanned contents of 854 additional files at 9.52 per second'),
(279195, '1550700925.432920', 2, 'info', 'Scanned contents of 863 additional files at 9.50 per second'),
(279196, '1550700926.645306', 2, 'info', 'Scanned contents of 866 additional files at 9.41 per second'),
(279197, '1550700928.690093', 2, 'info', 'Scanned contents of 870 additional files at 9.25 per second'),
(279198, '1550700929.764050', 2, 'info', 'Scanned contents of 881 additional files at 9.26 per second'),
(279199, '1550700932.716116', 2, 'info', 'Scanned contents of 885 additional files at 9.02 per second'),
(279200, '1550700933.723005', 2, 'info', 'Scanned contents of 896 additional files at 9.04 per second'),
(279201, '1550700934.854700', 2, 'info', 'Scanned contents of 897 additional files at 8.95 per second'),
(279202, '1550700935.856458', 2, 'info', 'Scanned contents of 919 additional files at 9.08 per second'),
(279203, '1550700938.130474', 2, 'info', 'Scanned contents of 931 additional files at 8.99 per second'),
(279204, '1550700939.174943', 2, 'info', 'Scanned contents of 949 additional files at 9.07 per second'),
(279205, '1550700940.223679', 2, 'info', 'Scanned contents of 955 additional files at 9.04 per second'),
(279206, '1550700941.277145', 2, 'info', 'Scanned contents of 968 additional files at 9.07 per second'),
(279207, '1550700942.307250', 2, 'info', 'Scanned contents of 986 additional files at 9.15 per second'),
(279208, '1550700943.337369', 2, 'info', 'Scanned contents of 1004 additional files at 9.23 per second'),
(279209, '1550700951.802316', 2, 'info', 'Scanned contents of 1005 additional files at 8.58 per second'),
(279210, '1550700954.153024', 2, 'info', 'Scanned contents of 1006 additional files at 8.41 per second'),
(279211, '1550700954.157288', 2, 'info', 'Scanned contents of 1006 additional files at 8.41 per second'),
(279212, '1550700954.157618', 2, 'info', 'Asking Wordfence to check URL\'s against malware list.'),
(279213, '1550700954.185570', 2, 'info', 'Checking 278 host keys against Wordfence scanning servers.'),
(279214, '1550700955.008569', 2, 'info', 'Done host key check.'),
(279215, '1550700955.011391', 2, 'info', 'Checking 5 URLs from 5 sources.'),
(279216, '1550700955.734970', 2, 'info', 'Done URL check.'),
(279217, '1550700955.738050', 2, 'info', 'Done file contents scan'),
(279218, '1550700955.746340', 10, 'info', 'SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),
(279219, '1550700955.748407', 10, 'info', 'SUM_ENDOK:Scanning files for URLs in Google\'s Safe Browsing List'),
(279220, '1550700955.751658', 10, 'info', 'SUM_START:Scanning for publicly accessible quarantined files'),
(279221, '1550700955.751975', 10, 'info', 'SUM_ENDOK:Scanning for publicly accessible quarantined files'),
(279222, '1550700955.755151', 10, 'info', 'SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(279223, '1550700955.828579', 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(279224, '1550700955.829163', 2, 'info', 'Checking 3 host keys against Wordfence scanning servers.'),
(279225, '1550700956.506887', 2, 'info', 'Done host key check.'),
(279226, '1550700956.507449', 2, 'info', 'Done examining URLs'),
(279227, '1550700956.509888', 10, 'info', 'SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),
(279228, '1550700956.513460', 10, 'info', 'SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),
(279229, '1550700956.517505', 10, 'info', 'SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),
(279230, '1550700956.520908', 10, 'info', 'SUM_START:Scanning for weak passwords'),
(279231, '1550700956.521356', 2, 'info', 'Starting password strength check on 1 users.'),
(279232, '1550700956.526750', 10, 'info', 'SUM_ENDOK:Scanning for weak passwords'),
(279233, '1550700956.530170', 10, 'info', 'SUM_START:Scanning DNS for unauthorized changes'),
(279234, '1550700956.530568', 2, 'info', 'Starting DNS scan for www.investors-watch.com/wp-staging/ranhill'),
(279235, '1550700956.779055', 2, 'info', 'Scanning DNS A record for www.investors-watch.com/wp-staging/ranhill'),
(279236, '1550700956.848410', 10, 'info', 'SUM_ENDOK:Scanning DNS for unauthorized changes'),
(279237, '1550700956.852119', 10, 'info', 'SUM_START:Scanning to check available disk space'),
(279238, '1550700956.852479', 2, 'info', 'Total disk space: 609.9881GB -- Free disk space: 133.3832GB'),
(279239, '1550700956.852780', 2, 'info', 'The disk has 136584.45 MB space available'),
(279240, '1550700956.853050', 10, 'info', 'SUM_ENDOK:Scanning to check available disk space'),
(279241, '1550700956.856403', 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(279242, '1550700959.460768', 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(279243, '1550700959.464129', 10, 'info', 'SUM_START:Scanning for admin users not created through WordPress'),
(279244, '1550700959.465900', 10, 'info', 'SUM_ENDOK:Scanning for admin users not created through WordPress'),
(279245, '1550700959.476726', 1, 'info', '-------------------'),
(279246, '1550700959.477042', 1, 'info', 'Scan Complete. Scanned 5764 files, 20 plugins, 4 themes, 111 pages, 1 comments and 29063 records in 2 minutes 42 seconds.'),
(279247, '1550700959.477316', 10, 'info', 'SUM_FINAL:Scan complete. You have 18 new issues to fix. See below.'),
(279248, '1550700960.163330', 2, 'info', 'Wordfence used 33.40MB of memory for scan. Server peak memory usage was: 46.82MB'),
(279249, '1550729009.338047', 1, 'info', 'Scheduled Wordfence scan starting at Thursday 21st of February 2019 06:03:29 AM'),
(279250, '1550729011.905094', 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(279251, '1550729011.907903', 10, 'info', 'SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),
(279252, '1550729013.909998', 10, 'info', 'SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),
(279253, '1550729015.917605', 10, 'info', 'SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),
(279254, '1550729017.920613', 10, 'info', 'SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),
(279255, '1550729019.924829', 10, 'info', 'SUM_START:Scanning your site for the HeartBleed vulnerability'),
(279256, '1550729020.634508', 10, 'info', 'SUM_ENDBAD:Scanning your site for the HeartBleed vulnerability'),
(279257, '1550729020.638216', 10, 'info', 'SUM_START:Checking for the most secure way to get IPs'),
(279258, '1550729020.640251', 10, 'info', 'SUM_ENDOK:Checking for the most secure way to get IPs'),
(279259, '1550729020.642941', 1, 'info', 'Contacting Wordfence to initiate scan'),
(279260, '1550729021.581006', 2, 'info', 'Getting plugin list from WordPress'),
(279261, '1550729021.634206', 2, 'info', 'Found 20 plugins'),
(279262, '1550729021.636895', 2, 'info', 'Getting theme list from WordPress'),
(279263, '1550729021.640453', 2, 'info', 'Found 4 themes'),
(279264, '1550729021.646200', 10, 'info', 'SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),
(279265, '1550729023.334623', 10, 'info', 'SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),
(279266, '1550729023.338623', 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(279267, '1550729024.718287', 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(279268, '1550729024.721332', 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository'),
(279269, '1550729024.721607', 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(279270, '1550729024.721893', 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(279271, '1550729024.723195', 10, 'info', 'SUM_START:Scanning for known malware files'),
(279272, '1550729024.724677', 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(279273, '1550729024.936004', 2, 'info', '500 files indexed'),
(279274, '1550729025.315490', 2, 'info', '1000 files indexed'),
(279275, '1550729025.528873', 2, 'info', '1500 files indexed'),
(279276, '1550729025.693420', 2, 'info', '2000 files indexed'),
(279277, '1550729026.101243', 2, 'info', '2500 files indexed'),
(279278, '1550729026.545796', 2, 'info', '3000 files indexed'),
(279279, '1550729027.871757', 2, 'info', '3500 files indexed'),
(279280, '1550729028.055524', 2, 'info', '4000 files indexed'),
(279281, '1550729028.243594', 2, 'info', '4500 files indexed'),
(279282, '1550729031.531316', 2, 'info', '5000 files indexed'),
(279283, '1550729031.699021', 2, 'info', '5500 files indexed'),
(279284, '1550729031.782495', 2, 'info', '5764 files indexed'),
(279285, '1550729031.949537', 2, 'info', 'Analyzed 100 files containing 1.34 MB of data so far'),
(279286, '1550729032.121958', 2, 'info', 'Analyzed 200 files containing 2.45 MB of data so far'),
(279287, '1550729032.372592', 2, 'info', 'Analyzed 300 files containing 3.68 MB of data so far'),
(279288, '1550729032.645017', 2, 'info', 'Analyzed 400 files containing 5.59 MB of data so far'),
(279289, '1550729033.088909', 2, 'info', 'Analyzed 500 files containing 6.3 MB of data so far'),
(279290, '1550729033.396456', 2, 'info', 'Analyzed 600 files containing 7.2 MB of data so far'),
(279291, '1550729033.738298', 2, 'info', 'Analyzed 700 files containing 8.47 MB of data so far'),
(279292, '1550729034.093583', 2, 'info', 'Analyzed 800 files containing 10.31 MB of data so far'),
(279293, '1550729034.324316', 2, 'info', 'Analyzed 900 files containing 11.04 MB of data so far'),
(279294, '1550729035.235627', 2, 'info', 'Analyzed 1000 files containing 12.14 MB of data so far'),
(279295, '1550729035.377089', 2, 'info', 'Analyzed 1100 files containing 12.46 MB of data so far'),
(279296, '1550729035.522688', 2, 'info', 'Analyzed 1200 files containing 13.47 MB of data so far'),
(279297, '1550729035.683327', 2, 'info', 'Analyzed 1300 files containing 14.46 MB of data so far'),
(279298, '1550729035.897094', 2, 'info', 'Analyzed 1400 files containing 17.15 MB of data so far'),
(279299, '1550729036.134286', 2, 'info', 'Analyzed 1500 files containing 18.63 MB of data so far'),
(279300, '1550729036.327285', 2, 'info', 'Analyzed 1600 files containing 19.96 MB of data so far'),
(279301, '1550729036.549831', 2, 'info', 'Analyzed 1700 files containing 21.72 MB of data so far'),
(279302, '1550729039.467247', 2, 'info', 'Analyzed 1800 files containing 23.42 MB of data so far'),
(279303, '1550729039.665962', 2, 'info', 'Analyzed 1900 files containing 24.45 MB of data so far'),
(279304, '1550729039.867138', 2, 'info', 'Analyzed 2000 files containing 25.08 MB of data so far'),
(279305, '1550729040.058472', 2, 'info', 'Analyzed 2100 files containing 25.5 MB of data so far'),
(279306, '1550729040.268101', 2, 'info', 'Analyzed 2200 files containing 26.02 MB of data so far'),
(279307, '1550729040.448114', 2, 'info', 'Analyzed 2300 files containing 26.57 MB of data so far'),
(279308, '1550729040.624298', 2, 'info', 'Analyzed 2400 files containing 27.06 MB of data so far'),
(279309, '1550729040.818341', 2, 'info', 'Analyzed 2500 files containing 27.77 MB of data so far'),
(279310, '1550729041.016060', 2, 'info', 'Analyzed 2600 files containing 28.7 MB of data so far'),
(279311, '1550729041.188376', 2, 'info', 'Analyzed 2700 files containing 29.04 MB of data so far'),
(279312, '1550729041.405106', 2, 'info', 'Analyzed 2800 files containing 29.56 MB of data so far'),
(279313, '1550729041.619915', 2, 'info', 'Analyzed 2900 files containing 29.75 MB of data so far'),
(279314, '1550729041.874318', 2, 'info', 'Analyzed 3000 files containing 30.06 MB of data so far'),
(279315, '1550729042.107058', 2, 'info', 'Analyzed 3100 files containing 30.66 MB of data so far'),
(279316, '1550729042.319354', 2, 'info', 'Analyzed 3200 files containing 33.7 MB of data so far'),
(279317, '1550729042.554618', 2, 'info', 'Analyzed 3300 files containing 34.8 MB of data so far'),
(279318, '1550729042.804708', 2, 'info', 'Analyzed 3400 files containing 35.33 MB of data so far'),
(279319, '1550729042.997586', 2, 'info', 'Analyzed 3500 files containing 35.37 MB of data so far'),
(279320, '1550729043.202609', 2, 'info', 'Analyzed 3600 files containing 35.73 MB of data so far'),
(279321, '1550729043.442037', 2, 'info', 'Analyzed 3700 files containing 39.59 MB of data so far'),
(279322, '1550729043.660416', 2, 'info', 'Analyzed 3800 files containing 41.52 MB of data so far') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(279323, '1550729043.962866', 2, 'info', 'Analyzed 3900 files containing 43.93 MB of data so far'),
(279324, '1550729044.182137', 2, 'info', 'Analyzed 4000 files containing 46.33 MB of data so far'),
(279325, '1550729044.364115', 2, 'info', 'Analyzed 4100 files containing 47.18 MB of data so far'),
(279326, '1550729044.556505', 2, 'info', 'Analyzed 4200 files containing 49.24 MB of data so far'),
(279327, '1550729044.745468', 2, 'info', 'Analyzed 4300 files containing 49.65 MB of data so far'),
(279328, '1550729044.954860', 2, 'info', 'Analyzed 4400 files containing 50.15 MB of data so far'),
(279329, '1550729045.151566', 2, 'info', 'Analyzed 4500 files containing 50.52 MB of data so far'),
(279330, '1550729045.356986', 2, 'info', 'Analyzed 4600 files containing 51.5 MB of data so far'),
(279331, '1550729045.519255', 2, 'info', 'Analyzed 4700 files containing 52.54 MB of data so far'),
(279332, '1550729045.698516', 2, 'info', 'Analyzed 4800 files containing 53.23 MB of data so far'),
(279333, '1550729045.900040', 2, 'info', 'Analyzed 4900 files containing 54.5 MB of data so far'),
(279334, '1550729046.124933', 2, 'info', 'Analyzed 5000 files containing 58.38 MB of data so far'),
(279335, '1550729046.307545', 2, 'info', 'Analyzed 5100 files containing 59.06 MB of data so far'),
(279336, '1550729046.492898', 2, 'info', 'Analyzed 5200 files containing 61.59 MB of data so far'),
(279337, '1550729046.726683', 2, 'info', 'Analyzed 5300 files containing 63.18 MB of data so far'),
(279338, '1550729046.956526', 2, 'info', 'Analyzed 5400 files containing 63.64 MB of data so far'),
(279339, '1550729047.167515', 2, 'info', 'Analyzed 5500 files containing 65.13 MB of data so far'),
(279340, '1550729047.334357', 2, 'info', 'Analyzed 5600 files containing 66.21 MB of data so far'),
(279341, '1550729047.552865', 2, 'info', 'Analyzed 5700 files containing 69.09 MB of data so far'),
(279342, '1550729047.683821', 2, 'info', 'Analyzed 5764 files containing 70.16 MB of data.'),
(279343, '1550729047.684130', 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository'),
(279344, '1550729047.685657', 10, 'info', 'SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),
(279345, '1550729047.687190', 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(279346, '1550729047.708655', 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs'),
(279347, '1550729047.709896', 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(279348, '1550729047.713609', 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(279349, '1550729047.715173', 10, 'info', 'SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),
(279350, '1550729049.516080', 2, 'info', 'Starting scan of file contents'),
(279351, '1550729050.553282', 2, 'info', 'Scanned contents of 8 additional files at 7.73 per second'),
(279352, '1550729051.598068', 2, 'info', 'Scanned contents of 23 additional files at 11.06 per second'),
(279353, '1550729053.366151', 2, 'info', 'Scanned contents of 35 additional files at 9.09 per second'),
(279354, '1550729054.416667', 2, 'info', 'Scanned contents of 52 additional files at 10.61 per second'),
(279355, '1550729057.779568', 2, 'info', 'Scanned contents of 58 additional files at 7.02 per second'),
(279356, '1550729058.796269', 2, 'info', 'Scanned contents of 70 additional files at 7.54 per second'),
(279357, '1550729059.987402', 2, 'info', 'Scanned contents of 80 additional files at 7.64 per second'),
(279358, '1550729061.259962', 2, 'info', 'Scanned contents of 83 additional files at 7.07 per second'),
(279359, '1550729062.398204', 2, 'info', 'Scanned contents of 94 additional files at 7.30 per second'),
(279360, '1550729064.670468', 2, 'info', 'Scanned contents of 97 additional files at 6.40 per second'),
(279361, '1550729065.704047', 2, 'info', 'Scanned contents of 111 additional files at 6.86 per second'),
(279362, '1550729066.815444', 2, 'info', 'Scanned contents of 116 additional files at 6.71 per second'),
(279363, '1550729067.937605', 2, 'info', 'Scanned contents of 122 additional files at 6.62 per second'),
(279364, '1550729069.199182', 2, 'info', 'Scanned contents of 133 additional files at 6.76 per second'),
(279365, '1550729070.351695', 2, 'info', 'Scanned contents of 143 additional files at 6.86 per second'),
(279366, '1550729071.358074', 2, 'info', 'Scanned contents of 154 additional files at 7.05 per second'),
(279367, '1550729074.227623', 2, 'info', 'Scanned contents of 169 additional files at 6.84 per second'),
(279368, '1550729077.369185', 2, 'info', 'Scanned contents of 170 additional files at 6.10 per second'),
(279369, '1550729078.875113', 2, 'info', 'Scanned contents of 186 additional files at 6.34 per second'),
(279370, '1550729079.973313', 2, 'info', 'Scanned contents of 201 additional files at 6.60 per second'),
(279371, '1550729081.023428', 2, 'info', 'Scanned contents of 207 additional files at 6.57 per second'),
(279372, '1550729082.465043', 2, 'info', 'Scanned contents of 215 additional files at 6.53 per second'),
(279373, '1550729083.557622', 2, 'info', 'Scanned contents of 231 additional files at 6.79 per second'),
(279374, '1550729084.645528', 2, 'info', 'Scanned contents of 244 additional files at 6.95 per second'),
(279375, '1550729085.654168', 2, 'info', 'Scanned contents of 256 additional files at 7.08 per second'),
(279376, '1550729086.740302', 2, 'info', 'Scanned contents of 268 additional files at 7.20 per second'),
(279377, '1550729087.764454', 2, 'info', 'Scanned contents of 276 additional files at 7.22 per second'),
(279378, '1550729088.880381', 2, 'info', 'Scanned contents of 282 additional files at 7.16 per second'),
(279379, '1550729089.882135', 2, 'info', 'Scanned contents of 291 additional files at 7.21 per second'),
(279380, '1550729091.009514', 2, 'info', 'Scanned contents of 296 additional files at 7.13 per second'),
(279381, '1550729092.030374', 2, 'info', 'Scanned contents of 303 additional files at 7.13 per second'),
(279382, '1550729093.103691', 2, 'info', 'Scanned contents of 307 additional files at 7.04 per second'),
(279383, '1550729099.811006', 2, 'info', 'Scanned contents of 308 additional files at 6.12 per second'),
(279384, '1550729100.968485', 2, 'info', 'Scanned contents of 315 additional files at 6.12 per second'),
(279385, '1550729102.380193', 2, 'info', 'Scanned contents of 318 additional files at 6.02 per second'),
(279386, '1550729103.450495', 2, 'info', 'Scanned contents of 323 additional files at 5.99 per second'),
(279387, '1550729104.615770', 2, 'info', 'Scanned contents of 330 additional files at 5.99 per second'),
(279388, '1550729105.714296', 2, 'info', 'Scanned contents of 335 additional files at 5.96 per second'),
(279389, '1550729106.736334', 2, 'info', 'Scanned contents of 341 additional files at 5.96 per second'),
(279390, '1550729107.821194', 2, 'info', 'Scanned contents of 349 additional files at 5.99 per second'),
(279391, '1550729109.023423', 2, 'info', 'Scanned contents of 356 additional files at 5.98 per second'),
(279392, '1550729110.064687', 2, 'info', 'Scanned contents of 365 additional files at 6.03 per second'),
(279393, '1550729111.101283', 2, 'info', 'Scanned contents of 381 additional files at 6.19 per second'),
(279394, '1550729112.148834', 2, 'info', 'Scanned contents of 398 additional files at 6.35 per second'),
(279395, '1550729113.170117', 2, 'info', 'Scanned contents of 412 additional files at 6.47 per second'),
(279396, '1550729114.226030', 2, 'info', 'Scanned contents of 425 additional files at 6.57 per second'),
(279397, '1550729118.473179', 2, 'info', 'Scanned contents of 436 additional files at 6.32 per second'),
(279398, '1550729119.633027', 2, 'info', 'Scanned contents of 442 additional files at 6.30 per second'),
(279399, '1550729120.845501', 2, 'info', 'Scanned contents of 450 additional files at 6.31 per second'),
(279400, '1550729121.945239', 2, 'info', 'Scanned contents of 458 additional files at 6.32 per second'),
(279401, '1550729123.353244', 2, 'info', 'Scanned contents of 463 additional files at 6.27 per second'),
(279402, '1550729124.430237', 2, 'info', 'Scanned contents of 472 additional files at 6.30 per second'),
(279403, '1550729125.450953', 2, 'info', 'Scanned contents of 480 additional files at 6.32 per second'),
(279404, '1550729126.452842', 2, 'info', 'Scanned contents of 488 additional files at 6.34 per second'),
(279405, '1550729127.504568', 2, 'info', 'Scanned contents of 499 additional files at 6.40 per second'),
(279406, '1550729128.594132', 2, 'info', 'Scanned contents of 510 additional files at 6.45 per second'),
(279407, '1550729129.626788', 2, 'info', 'Scanned contents of 519 additional files at 6.48 per second'),
(279408, '1550729130.663772', 2, 'info', 'Scanned contents of 531 additional files at 6.54 per second'),
(279409, '1550729131.676044', 2, 'info', 'Scanned contents of 544 additional files at 6.62 per second'),
(279410, '1550729132.716410', 2, 'info', 'Scanned contents of 557 additional files at 6.69 per second'),
(279411, '1550729133.770355', 2, 'info', 'Scanned contents of 571 additional files at 6.78 per second'),
(279412, '1550729136.660760', 2, 'info', 'Scanned contents of 575 additional files at 6.60 per second'),
(279413, '1550729137.662240', 2, 'info', 'Scanned contents of 589 additional files at 6.68 per second'),
(279414, '1550729138.674791', 2, 'info', 'Scanned contents of 600 additional files at 6.73 per second'),
(279415, '1550729139.762159', 2, 'info', 'Scanned contents of 609 additional files at 6.75 per second'),
(279416, '1550729140.764688', 2, 'info', 'Scanned contents of 619 additional files at 6.78 per second'),
(279417, '1550729141.767115', 2, 'info', 'Scanned contents of 626 additional files at 6.79 per second'),
(279418, '1550729142.924990', 2, 'info', 'Scanned contents of 634 additional files at 6.79 per second'),
(279419, '1550729143.926282', 2, 'info', 'Scanned contents of 703 additional files at 7.45 per second'),
(279420, '1550729146.031286', 2, 'info', 'Scanned contents of 719 additional files at 7.45 per second'),
(279421, '1550729147.048302', 2, 'info', 'Scanned contents of 729 additional files at 7.47 per second'),
(279422, '1550729148.163229', 2, 'info', 'Scanned contents of 732 additional files at 7.42 per second') ;
INSERT INTO `wp2o_wfStatus` ( `id`, `ctime`, `level`, `type`, `msg`) VALUES
(279423, '1550729149.461987', 2, 'info', 'Scanned contents of 734 additional files at 7.34 per second'),
(279424, '1550729150.611420', 2, 'info', 'Scanned contents of 739 additional files at 7.31 per second'),
(279425, '1550729151.985611', 2, 'info', 'Scanned contents of 745 additional files at 7.27 per second'),
(279426, '1550729155.536668', 2, 'info', 'Scanned contents of 747 additional files at 7.05 per second'),
(279427, '1550729156.685563', 2, 'info', 'Scanned contents of 754 additional files at 7.04 per second'),
(279428, '1550729157.982286', 2, 'info', 'Scanned contents of 760 additional files at 7.01 per second'),
(279429, '1550729159.858345', 2, 'info', 'Scanned contents of 768 additional files at 6.96 per second'),
(279430, '1550729160.870901', 2, 'info', 'Scanned contents of 786 additional files at 7.06 per second'),
(279431, '1550729161.952358', 2, 'info', 'Scanned contents of 795 additional files at 7.07 per second'),
(279432, '1550729162.978586', 2, 'info', 'Scanned contents of 801 additional files at 7.06 per second'),
(279433, '1550729164.451409', 2, 'info', 'Scanned contents of 814 additional files at 7.08 per second'),
(279434, '1550729165.476449', 2, 'info', 'Scanned contents of 824 additional files at 7.11 per second'),
(279435, '1550729166.544509', 2, 'info', 'Scanned contents of 835 additional files at 7.14 per second'),
(279436, '1550729167.885679', 2, 'info', 'Scanned contents of 847 additional files at 7.16 per second'),
(279437, '1550729169.944546', 2, 'info', 'Scanned contents of 850 additional files at 7.06 per second'),
(279438, '1550729171.367656', 2, 'info', 'Scanned contents of 854 additional files at 7.01 per second'),
(279439, '1550729174.251647', 2, 'info', 'Scanned contents of 855 additional files at 6.85 per second'),
(279440, '1550729175.319912', 2, 'info', 'Scanned contents of 861 additional files at 6.84 per second'),
(279441, '1550729176.545314', 2, 'info', 'Scanned contents of 865 additional files at 6.81 per second'),
(279442, '1550729177.555587', 2, 'info', 'Scanned contents of 868 additional files at 6.78 per second'),
(279443, '1550729179.934899', 2, 'info', 'Scanned contents of 870 additional files at 6.67 per second'),
(279444, '1550729180.947707', 2, 'info', 'Scanned contents of 877 additional files at 6.67 per second'),
(279445, '1550729181.993067', 2, 'info', 'Scanned contents of 884 additional files at 6.67 per second'),
(279446, '1550729183.016294', 2, 'info', 'Scanned contents of 889 additional files at 6.66 per second'),
(279447, '1550729185.134816', 2, 'info', 'Scanned contents of 897 additional files at 6.61 per second'),
(279448, '1550729186.153795', 2, 'info', 'Scanned contents of 911 additional files at 6.67 per second'),
(279449, '1550729187.235000', 2, 'info', 'Scanned contents of 927 additional files at 6.73 per second'),
(279450, '1550729189.562953', 2, 'info', 'Scanned contents of 931 additional files at 6.65 per second'),
(279451, '1550729192.627637', 2, 'info', 'Scanned contents of 939 additional files at 6.56 per second'),
(279452, '1550729194.087864', 2, 'info', 'Scanned contents of 953 additional files at 6.59 per second'),
(279453, '1550729195.095379', 2, 'info', 'Scanned contents of 959 additional files at 6.59 per second'),
(279454, '1550729196.114810', 2, 'info', 'Scanned contents of 970 additional files at 6.62 per second'),
(279455, '1550729197.162799', 2, 'info', 'Scanned contents of 981 additional files at 6.64 per second'),
(279456, '1550729198.194027', 2, 'info', 'Scanned contents of 996 additional files at 6.70 per second'),
(279457, '1550729208.915667', 2, 'info', 'Scanned contents of 1005 additional files at 6.30 per second'),
(279458, '1550729213.366271', 2, 'info', 'Scanned contents of 1006 additional files at 6.14 per second'),
(279459, '1550729213.373821', 2, 'info', 'Scanned contents of 1006 additional files at 6.14 per second'),
(279460, '1550729213.374338', 2, 'info', 'Asking Wordfence to check URL\'s against malware list.'),
(279461, '1550729213.397813', 2, 'info', 'Checking 278 host keys against Wordfence scanning servers.'),
(279462, '1550729214.318951', 2, 'info', 'Done host key check.'),
(279463, '1550729214.322423', 2, 'info', 'Checking 5 URLs from 5 sources.'),
(279464, '1550729214.996963', 2, 'info', 'Done URL check.'),
(279465, '1550729215.309393', 2, 'info', 'Done file contents scan'),
(279466, '1550729215.318646', 10, 'info', 'SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),
(279467, '1550729215.320846', 10, 'info', 'SUM_ENDOK:Scanning files for URLs in Google\'s Safe Browsing List'),
(279468, '1550729215.325028', 10, 'info', 'SUM_START:Scanning for publicly accessible quarantined files'),
(279469, '1550729215.325504', 10, 'info', 'SUM_ENDOK:Scanning for publicly accessible quarantined files'),
(279470, '1550729215.331001', 10, 'info', 'SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List'),
(279471, '1550729215.399798', 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(279472, '1550729215.400429', 2, 'info', 'Checking 3 host keys against Wordfence scanning servers.'),
(279473, '1550729216.057157', 2, 'info', 'Done host key check.'),
(279474, '1550729216.057904', 2, 'info', 'Done examining URLs'),
(279475, '1550729216.060959', 10, 'info', 'SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),
(279476, '1550729216.067164', 10, 'info', 'SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),
(279477, '1550729216.076656', 10, 'info', 'SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),
(279478, '1550729216.081680', 10, 'info', 'SUM_START:Scanning for weak passwords'),
(279479, '1550729216.082462', 2, 'info', 'Starting password strength check on 1 users.'),
(279480, '1550729216.089234', 10, 'info', 'SUM_ENDOK:Scanning for weak passwords'),
(279481, '1550729216.095796', 10, 'info', 'SUM_START:Scanning DNS for unauthorized changes'),
(279482, '1550729216.096331', 2, 'info', 'Starting DNS scan for www.investors-watch.com/wp-staging/ranhill'),
(279483, '1550729216.214779', 2, 'info', 'Scanning DNS A record for www.investors-watch.com/wp-staging/ranhill'),
(279484, '1550729216.431322', 10, 'info', 'SUM_ENDOK:Scanning DNS for unauthorized changes'),
(279485, '1550729216.438291', 10, 'info', 'SUM_START:Scanning to check available disk space'),
(279486, '1550729216.438838', 2, 'info', 'Total disk space: 609.9881GB -- Free disk space: 134.9717GB'),
(279487, '1550729216.439216', 2, 'info', 'The disk has 138211.00 MB space available'),
(279488, '1550729216.439603', 10, 'info', 'SUM_ENDOK:Scanning to check available disk space'),
(279489, '1550729216.444726', 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(279490, '1550729219.109872', 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(279491, '1550729219.114473', 10, 'info', 'SUM_START:Scanning for admin users not created through WordPress'),
(279492, '1550729219.116233', 10, 'info', 'SUM_ENDOK:Scanning for admin users not created through WordPress'),
(279493, '1550729219.131044', 1, 'info', '-------------------'),
(279494, '1550729219.131483', 1, 'info', 'Scan Complete. Scanned 5764 files, 20 plugins, 4 themes, 111 pages, 0 comments and 30572 records in 3 minutes 28 seconds.'),
(279495, '1550729219.131889', 10, 'info', 'SUM_FINAL:Scan complete. You have 18 new issues to fix. See below.'),
(279496, '1550729219.799490', 2, 'info', 'Wordfence used 33.40MB of memory for scan. Server peak memory usage was: 46.82MB') ;

#
# End of data contents of table `wp2o_wfStatus`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfThrottleLog`
#

DROP TABLE IF EXISTS `wp2o_wfThrottleLog`;


#
# Table structure of table `wp2o_wfThrottleLog`
#

CREATE TABLE `wp2o_wfThrottleLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `startTime` int(10) unsigned NOT NULL,
  `endTime` int(10) unsigned NOT NULL,
  `timesThrottled` int(10) unsigned NOT NULL,
  `lastReason` varchar(255) NOT NULL,
  PRIMARY KEY (`IP`),
  KEY `k2` (`endTime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


#
# Data contents of table `wp2o_wfThrottleLog`
#

#
# End of data contents of table `wp2o_wfThrottleLog`
# --------------------------------------------------------



#
# Delete any existing table `wp2o_wfVulnScanners`
#

DROP TABLE IF EXISTS `wp2o_wfVulnScanners`;


#
# Table structure of table `wp2o_wfVulnScanners`
#

CREATE TABLE `wp2o_wfVulnScanners` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


#
# Data contents of table `wp2o_wfVulnScanners`
#

#
# End of data contents of table `wp2o_wfVulnScanners`
# --------------------------------------------------------

#
# Add constraints back in and apply any alter data queries.
#

