File: //restore/20230201.alford.sql
-- MariaDB dump 10.19 Distrib 10.5.18-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: alford
-- ------------------------------------------------------
-- Server version 10.5.18-MariaDB-1:10.5.18+maria~ubu2004
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `alford`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `alford` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */;
USE `alford`;
--
-- Table structure for table `sd_aiowps_events`
--
DROP TABLE IF EXISTS `sd_aiowps_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_aiowps_events` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`event_type` varchar(150) NOT NULL DEFAULT '',
`username` varchar(150) DEFAULT NULL,
`user_id` bigint(20) DEFAULT NULL,
`event_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ip_or_host` varchar(100) DEFAULT NULL,
`referer_info` varchar(255) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
`country_code` varchar(50) DEFAULT NULL,
`event_data` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_aiowps_events`
--
LOCK TABLES `sd_aiowps_events` WRITE;
/*!40000 ALTER TABLE `sd_aiowps_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_aiowps_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_aiowps_failed_logins`
--
DROP TABLE IF EXISTS `sd_aiowps_failed_logins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_aiowps_failed_logins` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`user_login` varchar(150) NOT NULL,
`failed_login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`login_attempt_ip` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_aiowps_failed_logins`
--
LOCK TABLES `sd_aiowps_failed_logins` WRITE;
/*!40000 ALTER TABLE `sd_aiowps_failed_logins` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_aiowps_failed_logins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_aiowps_global_meta`
--
DROP TABLE IF EXISTS `sd_aiowps_global_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_aiowps_global_meta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`meta_key1` varchar(255) NOT NULL,
`meta_key2` varchar(255) NOT NULL,
`meta_key3` varchar(255) NOT NULL,
`meta_key4` varchar(255) NOT NULL,
`meta_key5` varchar(255) NOT NULL,
`meta_value1` varchar(255) NOT NULL,
`meta_value2` text NOT NULL,
`meta_value3` text NOT NULL,
`meta_value4` longtext NOT NULL,
`meta_value5` longtext NOT NULL,
PRIMARY KEY (`meta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_aiowps_global_meta`
--
LOCK TABLES `sd_aiowps_global_meta` WRITE;
/*!40000 ALTER TABLE `sd_aiowps_global_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_aiowps_global_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_aiowps_login_activity`
--
DROP TABLE IF EXISTS `sd_aiowps_login_activity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_aiowps_login_activity` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`user_login` varchar(150) NOT NULL,
`login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`logout_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`login_ip` varchar(100) NOT NULL DEFAULT '',
`login_country` varchar(150) NOT NULL DEFAULT '',
`browser_type` varchar(150) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_aiowps_login_activity`
--
LOCK TABLES `sd_aiowps_login_activity` WRITE;
/*!40000 ALTER TABLE `sd_aiowps_login_activity` DISABLE KEYS */;
INSERT INTO `sd_aiowps_login_activity` VALUES (1,1,'alford','2017-08-09 13:00:54','0000-00-00 00:00:00','217.206.184.92','','');
/*!40000 ALTER TABLE `sd_aiowps_login_activity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_aiowps_login_lockdown`
--
DROP TABLE IF EXISTS `sd_aiowps_login_lockdown`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_aiowps_login_lockdown` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`user_login` varchar(150) NOT NULL,
`lockdown_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`release_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`failed_login_ip` varchar(100) NOT NULL DEFAULT '',
`lock_reason` varchar(128) NOT NULL DEFAULT '',
`unlock_key` varchar(128) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=257 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_aiowps_login_lockdown`
--
LOCK TABLES `sd_aiowps_login_lockdown` WRITE;
/*!40000 ALTER TABLE `sd_aiowps_login_lockdown` DISABLE KEYS */;
INSERT INTO `sd_aiowps_login_lockdown` VALUES (1,0,'admin','2017-10-31 21:16:20','2017-10-31 22:16:20','115.28.240.*','login_fail',''),(2,1,'alford','2017-11-01 22:50:46','2017-11-01 23:50:46','192.187.122.*','login_fail',''),(3,1,'alford','2017-11-01 23:51:18','2017-11-02 00:51:18','192.187.122.*','login_fail',''),(4,1,'alford','2017-11-02 11:42:07','2017-11-02 12:42:07','204.12.198.*','login_fail',''),(5,0,'admin','2017-11-02 15:40:41','2017-11-02 16:40:41','74.208.42.*','login_fail',''),(6,1,'alford','2017-11-03 14:04:51','2017-11-03 15:04:51','146.185.223.*','login_fail',''),(7,1,'alford','2017-11-05 00:11:38','2017-11-05 01:11:38','173.208.244.*','login_fail',''),(8,1,'alford','2017-11-05 07:02:46','2017-11-05 08:02:46','81.177.48.*','login_fail',''),(9,0,'bruce','2017-11-05 19:49:54','2017-11-05 20:49:54','35.190.183.*','login_fail',''),(10,1,'alford','2017-11-09 06:50:03','2017-11-09 07:50:03','178.137.82.*','login_fail',''),(11,1,'alford','2017-11-09 16:09:27','2017-11-09 17:09:27','69.197.188.*','login_fail',''),(12,1,'alford','2017-11-09 17:10:17','2017-11-09 18:10:17','69.197.188.*','login_fail',''),(13,1,'alford','2017-11-10 23:36:33','2017-11-11 00:36:33','63.141.240.*','login_fail',''),(14,0,'yerbabuena','2017-11-12 22:27:08','2017-11-12 23:27:08','185.189.112.*','login_fail',''),(15,1,'alford','2017-11-15 03:58:27','2017-11-15 04:58:27','146.185.223.*','login_fail',''),(16,0,'admin','2017-11-15 09:11:24','2017-11-15 10:11:24','185.175.158.*','login_fail',''),(17,1,'alford','2017-11-15 23:32:53','2017-11-16 00:32:53','178.137.82.*','login_fail',''),(18,1,'alford','2017-11-17 09:14:28','2017-11-17 10:14:28','198.204.225.*','login_fail',''),(19,1,'alford','2017-11-17 10:15:41','2017-11-17 11:15:41','198.204.225.*','login_fail',''),(20,1,'alford','2017-11-17 11:16:35','2017-11-17 12:16:35','198.204.225.*','login_fail',''),(21,1,'alford','2017-11-17 12:17:25','2017-11-17 13:17:25','198.204.225.*','login_fail',''),(22,0,'alford,','2017-11-17 13:18:10','2017-11-17 14:18:10','198.204.225.*','login_fail',''),(23,1,'alford','2017-11-17 19:50:07','2017-11-17 20:50:07','13.84.148.*','login_fail',''),(24,0,'Admin','2017-11-21 12:02:54','2017-11-21 13:02:54','37.156.246.*','login_fail',''),(25,0,'Admin','2017-11-21 17:04:29','2017-11-21 18:04:29','37.156.246.*','login_fail',''),(26,0,'admin','2017-11-21 17:44:03','2017-11-21 18:44:03','185.189.112.*','login_fail',''),(27,1,'alford','2017-11-26 18:09:50','2017-11-26 19:09:50','69.197.163.*','login_fail',''),(28,1,'alford','2017-11-26 19:10:36','2017-11-26 20:10:36','69.197.163.*','login_fail',''),(29,0,'org','2017-11-28 21:59:07','2017-11-28 22:59:07','63.141.239.*','login_fail',''),(30,0,'south','2017-11-28 22:59:53','2017-11-28 23:59:53','63.141.239.*','login_fail',''),(31,0,'joshua','2017-11-29 00:00:39','2017-11-29 01:00:39','63.141.239.*','login_fail',''),(32,0,'birdie','2017-11-29 01:01:28','2017-11-29 02:01:28','63.141.239.*','login_fail',''),(33,1,'alford','2017-11-30 07:25:37','2017-11-30 08:25:37','195.22.125.*','login_fail',''),(34,1,'alford','2017-11-30 17:16:50','2017-11-30 18:16:50','193.201.224.*','login_fail',''),(35,1,'alford','2017-12-01 08:05:56','2017-12-01 09:05:56','74.91.23.*','login_fail',''),(36,1,'alford','2017-12-06 11:15:14','2017-12-06 12:15:14','198.50.159.*','login_fail',''),(37,0,'alexis-ruiz','2017-12-08 16:49:25','2017-12-08 17:49:25','185.189.112.*','login_fail',''),(38,1,'alford','2017-12-09 22:38:33','2017-12-09 23:38:33','192.187.100.*','login_fail',''),(39,1,'alford','2017-12-15 04:35:04','2017-12-15 05:35:04','146.185.223.*','login_fail',''),(40,1,'alford','2017-12-18 06:50:15','2017-12-18 07:50:15','192.187.108.*','login_fail',''),(41,0,'org','2017-12-19 03:19:42','2017-12-19 04:19:42','63.141.239.*','login_fail',''),(42,0,'xp','2017-12-19 04:20:29','2017-12-19 05:20:29','63.141.239.*','login_fail',''),(43,0,'blowjob','2017-12-19 05:21:19','2017-12-19 06:21:19','63.141.239.*','login_fail',''),(44,0,'london','2017-12-19 06:22:18','2017-12-19 07:22:18','63.141.239.*','login_fail',''),(45,0,'newyork','2017-12-19 07:23:12','2017-12-19 08:23:12','63.141.239.*','login_fail',''),(46,0,'admin','2017-12-21 13:17:52','2017-12-21 14:17:52','82.165.70.*','login_fail',''),(47,0,'speed-kondeshita','2017-12-23 21:19:10','2017-12-23 22:19:10','35.196.223.*','login_fail',''),(48,1,'alford','2017-12-27 16:29:15','2017-12-27 17:29:15','192.187.108.*','login_fail',''),(49,1,'alford','2017-12-27 17:30:03','2017-12-27 18:30:03','192.187.108.*','login_fail',''),(50,1,'alford','2017-12-29 05:08:39','2017-12-29 06:08:39','146.185.223.*','login_fail',''),(51,1,'alford','2017-12-30 05:18:06','2017-12-30 06:18:06','146.185.223.*','login_fail',''),(52,0,'admin','2018-01-06 22:38:46','2018-01-06 23:38:46','108.61.207.*','login_fail',''),(53,1,'alford','2018-01-09 14:37:46','2018-01-09 15:37:46','193.201.224.*','login_fail',''),(54,1,'alford','2018-01-11 01:38:53','2018-01-11 02:38:53','176.8.89.*','login_fail',''),(55,1,'alford','2018-01-21 01:18:21','2018-01-21 02:18:21','51.4.207.*','login_fail',''),(56,1,'alford','2018-01-22 04:59:23','2018-01-22 05:59:23','146.185.223.*','login_fail',''),(57,1,'alford','2018-01-22 17:20:30','2018-01-22 18:20:30','146.185.223.*','login_fail',''),(58,1,'alford','2018-01-25 07:43:04','2018-01-25 08:43:04','46.118.155.*','login_fail',''),(59,1,'alford','2018-01-27 06:30:49','2018-01-27 07:30:49','192.95.3.*','login_fail',''),(60,1,'alford','2018-01-27 07:31:31','2018-01-27 08:31:31','192.95.3.*','login_fail',''),(61,0,'admin','2018-01-29 01:25:12','2018-01-29 02:25:12','91.210.147.*','login_fail',''),(62,0,'admin','2018-01-29 02:40:14','2018-01-29 03:40:14','91.210.147.*','login_fail',''),(63,0,'admin','2018-01-29 03:45:39','2018-01-29 04:45:39','91.210.147.*','login_fail',''),(64,1,'alford','2018-01-29 05:34:08','2018-01-29 06:34:08','176.8.89.*','login_fail',''),(65,1,'alford','2018-01-29 10:35:41','2018-01-29 11:35:41','91.210.145.*','login_fail',''),(66,0,'Admin','2018-01-30 20:08:24','2018-01-30 21:08:24','37.156.246.*','login_fail',''),(67,0,'Admin','2018-01-31 03:13:09','2018-01-31 04:13:09','37.156.246.*','login_fail',''),(68,0,'Admin','2018-01-31 22:41:05','2018-01-31 23:41:05','37.156.246.*','login_fail',''),(69,0,'Admin','2018-01-31 23:41:44','2018-02-01 00:41:44','37.156.246.*','login_fail',''),(70,0,'admin','2018-02-01 00:42:28','2018-02-01 01:42:28','37.156.246.*','login_fail',''),(71,0,'Admin','2018-02-01 01:43:01','2018-02-01 02:43:01','37.156.246.*','login_fail',''),(72,0,'admin','2018-02-01 02:43:39','2018-02-01 03:43:39','37.156.246.*','login_fail',''),(73,0,'Admin','2018-02-01 03:44:18','2018-02-01 04:44:18','37.156.246.*','login_fail',''),(74,0,'Admin','2018-02-01 04:45:00','2018-02-01 05:45:00','37.156.246.*','login_fail',''),(75,0,'admin','2018-02-01 05:45:32','2018-02-01 06:45:32','37.156.246.*','login_fail',''),(76,0,'Admin','2018-02-01 06:49:53','2018-02-01 07:49:53','37.156.246.*','login_fail',''),(77,0,'admin','2018-02-01 07:50:36','2018-02-01 08:50:36','37.156.246.*','login_fail',''),(78,0,'Admin','2018-02-01 08:51:11','2018-02-01 09:51:11','37.156.246.*','login_fail',''),(79,0,'admin','2018-02-01 09:51:47','2018-02-01 10:51:47','37.156.246.*','login_fail',''),(80,0,'admin','2018-02-01 10:02:50','2018-02-01 11:02:50','182.92.224.*','login_fail',''),(81,1,'alford','2018-02-02 00:28:25','2018-02-02 01:28:25','201.18.18.*','login_fail',''),(82,1,'alford','2018-02-09 04:00:11','2018-02-09 05:00:11','195.22.127.*','login_fail',''),(83,1,'alford','2018-02-09 05:00:44','2018-02-09 06:00:44','195.22.127.*','login_fail',''),(84,1,'alford','2018-02-10 22:25:03','2018-02-10 23:25:03','37.59.178.*','login_fail',''),(85,1,'alford','2018-02-11 00:45:49','2018-02-11 01:45:49','103.243.24.*','login_fail',''),(86,1,'alford','2018-02-11 01:50:57','2018-02-11 02:50:57','185.81.157.*','login_fail',''),(87,1,'alford','2018-02-11 21:24:35','2018-02-11 22:24:35','41.79.76.*','login_fail',''),(88,1,'alford','2018-02-12 08:54:02','2018-02-12 09:54:02','195.22.125.*','login_fail',''),(89,1,'alford','2018-02-12 09:55:25','2018-02-12 10:55:25','195.22.125.*','login_fail',''),(90,1,'alford','2018-02-12 10:57:10','2018-02-12 11:57:10','195.22.125.*','login_fail',''),(91,1,'alford','2018-02-12 11:58:19','2018-02-12 12:58:19','195.22.125.*','login_fail',''),(92,1,'alford','2018-02-12 13:00:46','2018-02-12 14:00:46','195.22.125.*','login_fail',''),(93,1,'alford','2018-02-12 14:02:02','2018-02-12 15:02:02','195.22.125.*','login_fail',''),(94,1,'alford','2018-02-12 15:04:00','2018-02-12 16:04:00','195.22.125.*','login_fail',''),(95,1,'alford','2018-02-12 16:06:42','2018-02-12 17:06:42','195.22.125.*','login_fail',''),(96,1,'alford','2018-02-12 17:08:38','2018-02-12 18:08:38','195.22.125.*','login_fail',''),(97,1,'alford','2018-02-12 18:10:53','2018-02-12 19:10:53','195.22.125.*','login_fail',''),(98,1,'alford','2018-02-12 19:12:17','2018-02-12 20:12:17','195.22.125.*','login_fail',''),(99,0,'admin','2018-02-12 20:13:09','2018-02-12 21:13:09','195.22.125.*','login_fail',''),(100,1,'alford','2018-02-16 06:43:47','2018-02-16 07:43:47','146.185.223.*','login_fail',''),(101,1,'alford','2018-02-16 09:38:54','2018-02-16 10:38:54','185.29.8.*','login_fail',''),(102,1,'alford','2018-02-17 13:36:37','2018-02-17 14:36:37','91.207.57.*','login_fail',''),(103,1,'alford','2018-02-18 11:20:46','2018-02-18 12:20:46','195.22.125.*','login_fail',''),(104,1,'alford','2018-02-18 12:21:29','2018-02-18 13:21:29','195.22.125.*','login_fail',''),(105,1,'alford','2018-02-18 18:50:55','2018-02-18 19:50:55','185.81.157.*','login_fail',''),(106,1,'alford','2018-02-18 19:51:41','2018-02-18 20:51:41','185.81.157.*','login_fail',''),(107,1,'alford','2018-02-22 23:34:40','2018-02-23 00:34:40','37.59.178.*','login_fail',''),(108,1,'alford','2018-02-23 00:35:55','2018-02-23 01:35:55','37.59.178.*','login_fail',''),(109,1,'alford','2018-02-23 01:36:44','2018-02-23 02:36:44','37.59.178.*','login_fail',''),(110,0,'alford Content-Length: 0 Content-Type: text','2018-02-23 02:48:24','2018-02-23 03:48:24','5.188.10.*','login_fail',''),(111,1,'alford','2018-02-25 05:56:05','2018-02-25 06:56:05','146.185.223.*','login_fail',''),(112,1,'alford','2018-02-25 06:02:08','2018-02-25 07:02:08','178.137.165.*','login_fail',''),(113,1,'alford','2018-02-26 18:40:18','2018-02-26 19:40:18','185.29.8.*','login_fail',''),(114,1,'alford','2018-02-27 17:52:25','2018-02-27 18:52:25','109.234.161.*','login_fail',''),(115,1,'alford','2018-02-27 18:53:12','2018-02-27 19:53:12','109.234.161.*','login_fail',''),(116,1,'alford','2018-02-28 20:33:45','2018-02-28 21:33:45','195.22.125.*','login_fail',''),(117,1,'alford','2018-02-28 21:34:33','2018-02-28 22:34:33','195.22.125.*','login_fail',''),(118,1,'alford','2018-03-03 07:46:16','2018-03-03 08:46:16','35.203.84.*','login_fail',''),(119,1,'alford','2018-03-04 01:01:15','2018-03-04 02:01:15','178.137.165.*','login_fail',''),(120,1,'alford','2018-03-04 17:43:35','2018-03-04 18:43:35','193.201.224.*','login_fail',''),(121,1,'alford','2018-03-04 23:11:20','2018-03-05 00:11:20','172.245.5.*','login_fail',''),(122,1,'alford','2018-03-05 15:15:36','2018-03-05 16:15:36','198.20.91.*','login_fail',''),(123,1,'alford','2018-03-05 16:16:32','2018-03-05 17:16:32','198.20.91.*','login_fail',''),(124,0,'admin','2018-03-07 15:59:05','2018-03-07 16:59:05','35.198.95.*','login_fail',''),(125,0,'iccadmin','2018-03-07 20:01:01','2018-03-07 21:01:01','35.198.95.*','login_fail',''),(126,1,'alford','2018-03-08 05:03:45','2018-03-08 06:03:45','46.118.115.*','login_fail',''),(127,0,'alford Content-Length: 0 Content-Type: text','2018-03-08 23:24:22','2018-03-09 00:24:22','5.188.10.*','login_fail',''),(128,1,'alford','2018-03-09 12:01:41','2018-03-09 13:01:41','185.234.218.*','login_fail',''),(129,1,'alford','2018-03-09 13:02:42','2018-03-09 14:02:42','185.234.218.*','login_fail',''),(130,1,'alford','2018-03-09 14:03:31','2018-03-09 15:03:31','185.234.218.*','login_fail',''),(131,1,'alford','2018-03-09 15:04:45','2018-03-09 16:04:45','185.234.218.*','login_fail',''),(132,1,'alford','2018-03-09 16:06:18','2018-03-09 17:06:18','185.234.218.*','login_fail',''),(133,1,'alford','2018-03-09 17:07:45','2018-03-09 18:07:45','185.234.218.*','login_fail',''),(134,1,'alford','2018-03-09 18:08:42','2018-03-09 19:08:42','185.234.218.*','login_fail',''),(135,1,'alford','2018-03-09 19:09:22','2018-03-09 20:09:22','185.234.218.*','login_fail',''),(136,1,'alford','2018-03-10 14:03:03','2018-03-10 15:03:03','172.245.5.*','login_fail',''),(137,1,'alford','2018-03-13 09:24:08','2018-03-13 10:24:08','64.235.37.*','login_fail',''),(138,1,'alford','2018-03-21 03:18:17','2018-03-21 04:18:17','144.217.210.*','login_fail',''),(139,1,'alford','2018-03-21 04:19:08','2018-03-21 05:19:08','144.217.210.*','login_fail',''),(140,1,'alford','2018-03-21 06:14:00','2018-03-21 07:14:00','144.217.210.*','login_fail',''),(141,1,'alford','2018-03-21 07:14:49','2018-03-21 08:14:49','144.217.210.*','login_fail',''),(142,1,'alford','2018-03-23 23:54:49','2018-03-24 00:54:49','94.138.213.*','login_fail',''),(143,1,'alford','2018-03-24 00:55:38','2018-03-24 01:55:38','94.138.213.*','login_fail',''),(144,1,'alford','2018-03-24 01:56:22','2018-03-24 02:56:22','94.138.213.*','login_fail',''),(145,1,'alford','2018-03-24 02:57:00','2018-03-24 03:57:00','94.138.213.*','login_fail',''),(146,1,'alford','2018-03-24 03:57:42','2018-03-24 04:57:42','94.138.213.*','login_fail',''),(147,1,'alford','2018-03-24 22:22:04','2018-03-24 23:22:04','144.217.210.*','login_fail',''),(148,1,'alford','2018-03-24 22:46:32','2018-03-24 23:46:32','51.15.90.*','login_fail',''),(149,1,'alford','2018-03-24 23:22:51','2018-03-25 00:22:51','144.217.210.*','login_fail',''),(150,0,'org','2018-03-24 23:42:08','2018-03-25 00:42:08','185.234.218.*','login_fail',''),(151,1,'alford','2018-03-24 23:47:11','2018-03-25 00:47:11','51.15.90.*','login_fail',''),(152,0,'987654321','2018-03-25 00:43:06','2018-03-25 01:43:06','185.234.218.*','login_fail',''),(153,1,'alford','2018-03-25 00:47:47','2018-03-25 01:47:47','51.15.90.*','login_fail',''),(154,0,'tabrekseyssel','2018-10-30 21:17:24','2018-10-30 22:17:24','185.143.221.*','login_fail',''),(155,0,'markbourne','2018-11-01 11:52:40','2018-11-01 12:52:40','37.115.184.*','login_fail',''),(156,0,'itd','2018-11-01 21:17:52','2018-11-01 22:17:52','13.78.24.*','login_fail',''),(157,0,'admin','2018-11-03 08:10:57','2018-11-03 09:10:57','13.78.24.*','login_fail',''),(158,0,'annelie-2','2018-11-06 11:39:45','2018-11-06 12:39:45','165.225.170.*','login_fail',''),(159,0,'camielle','2018-11-07 16:22:11','2018-11-07 17:22:11','54.36.65.*','login_fail',''),(160,0,'ktsmr72hsn','2018-11-22 12:29:27','2018-11-22 13:29:27','51.75.193.*','login_fail',''),(161,0,'lisbeth','2018-11-23 16:46:52','2018-11-23 17:46:52','185.143.221.*','login_fail',''),(162,0,'ddmarbutyahoo-com','2018-11-26 17:48:57','2018-11-26 18:48:57','176.8.89.*','login_fail',''),(163,0,'c12742015','2018-11-27 23:36:33','2018-11-28 00:36:33','185.197.75.*','login_fail',''),(164,0,'aleza','2018-11-29 02:06:32','2018-11-29 03:06:32','185.197.75.*','login_fail',''),(165,0,'webmaster','2018-12-02 02:59:19','2018-12-02 03:59:19','37.115.191.*','login_fail',''),(166,0,'admin','2018-12-05 21:25:04','2018-12-05 22:25:04','37.115.188.*','login_fail',''),(167,0,'alfonso','2018-12-06 09:14:44','2018-12-06 10:14:44','194.113.106.*','login_fail',''),(168,0,'DimDim','2018-12-13 23:34:35','2018-12-14 00:34:35','185.197.74.*','login_fail',''),(169,1,'alford','2018-12-15 06:06:35','2018-12-15 07:06:35','5.62.43.*','login_fail',''),(170,0,'admin','2018-12-15 15:05:27','2018-12-15 16:05:27','185.197.74.*','login_fail',''),(171,0,'admin','2018-12-15 15:32:16','2018-12-15 16:32:16','62.210.157.*','login_fail',''),(172,0,'definet','2018-12-23 12:03:49','2018-12-23 13:03:49','194.113.106.*','login_fail',''),(173,0,'admin','2018-12-23 16:31:31','2018-12-23 17:31:31','134.249.141.*','login_fail',''),(174,0,'web27829552','2018-12-25 01:45:36','2018-12-25 02:45:36','37.115.184.*','login_fail',''),(175,0,'jozo','2018-12-31 02:21:09','2018-12-31 03:21:09','46.119.126.*','login_fail',''),(176,0,'delos_dx4ici','2019-01-07 04:51:42','2019-01-07 05:51:42','46.118.126.*','login_fail',''),(177,0,'mphelan','2019-01-09 04:49:06','2019-01-09 05:49:06','46.119.121.*','login_fail',''),(178,0,'moon','2019-01-17 07:55:53','2019-01-17 08:55:53','46.148.20.*','login_fail',''),(179,0,'zelir-admin','2019-01-18 01:50:45','2019-01-18 02:50:45','46.118.155.*','login_fail',''),(180,1,'alford','2019-01-19 13:16:19','2019-01-19 14:16:19','95.0.235.*','login_fail',''),(181,1,'alford','2019-01-19 13:33:42','2019-01-19 14:33:42','140.227.210.*','login_fail',''),(182,0,'webmaster','2019-01-20 08:06:58','2019-01-20 09:06:58','194.113.106.*','login_fail',''),(183,0,'ishkaster','2019-01-22 00:20:05','2019-01-22 01:20:05','194.113.106.*','login_fail',''),(184,0,'inmadministrator','2019-01-22 19:55:32','2019-01-22 20:55:32','47.91.104.*','login_fail',''),(185,0,'peppeomin','2019-01-23 11:49:00','2019-01-23 12:49:00','158.69.19.*','login_fail',''),(186,0,'admin','2019-01-27 06:01:37','2019-01-27 07:01:37','176.8.89.*','login_fail',''),(187,0,'martin','2019-02-04 04:33:01','2019-02-04 05:33:01','194.113.106.*','login_fail',''),(188,0,'acikkapi','2019-02-04 18:09:58','2019-02-04 19:09:58','37.115.184.*','login_fail',''),(189,0,'owas','2019-02-04 18:27:53','2019-02-04 19:27:53','37.115.191.*','login_fail',''),(190,0,'admin','2019-02-05 13:49:30','2019-02-05 14:49:30','46.118.155.*','login_fail',''),(191,0,'org','2019-02-05 21:27:45','2019-02-05 22:27:45','185.234.217.*','login_fail',''),(192,0,'admin@linvillegrading.com','2019-02-06 03:19:02','2019-02-06 04:19:02','54.36.65.*','login_fail',''),(193,0,'wilddemoncat','2019-02-06 08:15:19','2019-02-06 09:15:19','54.36.119.*','login_fail',''),(194,0,'webmaster','2019-02-06 09:50:19','2019-02-06 10:50:19','46.118.126.*','login_fail',''),(195,0,'admin-pilar','2019-02-08 21:17:31','2019-02-08 22:17:31','46.118.155.*','login_fail',''),(196,0,'f5bahia','2019-02-09 04:34:57','2019-02-09 05:34:57','37.115.184.*','login_fail',''),(197,0,'bechris','2019-02-09 09:49:11','2019-02-09 10:49:11','46.118.126.*','login_fail',''),(198,0,'adam','2019-02-14 06:58:09','2019-02-14 07:58:09','212.32.245.*','login_fail',''),(199,0,'boldconsultancyadmin','2019-02-14 10:10:28','2019-02-14 11:10:28','212.32.245.*','login_fail',''),(200,0,'go2people','2019-02-14 12:16:48','2019-02-14 13:16:48','46.118.155.*','login_fail',''),(201,0,'bandm','2019-02-14 12:28:50','2019-02-14 13:28:50','212.32.245.*','login_fail',''),(202,1,'alford','2019-02-18 05:48:36','2019-02-18 06:48:36','144.48.241.*','login_fail',''),(203,0,'webadmin','2019-02-18 11:10:50','2019-02-18 12:10:50','54.36.65.*','login_fail',''),(204,0,'admin','2019-02-18 18:13:00','2019-02-18 19:13:00','94.23.156.*','login_fail',''),(205,0,'admin','2019-02-19 22:38:14','2019-02-19 23:38:14','54.36.65.*','login_fail',''),(206,0,'admin','2019-02-21 23:47:39','2019-02-22 00:47:39','194.93.59.*','login_fail',''),(207,0,'owner','2019-02-22 15:48:25','2019-02-22 16:48:25','37.115.184.*','login_fail',''),(208,0,'wsadmin','2019-02-23 23:34:32','2019-02-24 00:34:32','194.93.59.*','login_fail',''),(209,0,'administrator','2019-02-27 06:20:00','2019-02-27 07:20:00','94.23.156.*','login_fail',''),(210,0,'alba-pinero','2019-03-02 16:48:39','2019-03-02 17:48:39','18.182.62.*','login_fail',''),(211,0,'acfl_admin','2019-03-02 23:42:49','2019-03-03 00:42:49','54.36.65.*','login_fail',''),(212,0,'kiwi','2019-03-06 17:02:54','2019-03-06 18:02:54','94.23.156.*','login_fail',''),(213,0,'admin','2019-03-08 00:43:16','2019-03-08 01:43:16','194.113.106.*','login_fail',''),(214,0,'root','2019-03-09 06:01:26','2019-03-09 07:01:26','188.165.247.*','login_fail',''),(215,0,'19admin','2019-03-09 11:39:25','2019-03-09 12:39:25','188.165.247.*','login_fail',''),(216,0,'admin','2019-03-09 20:00:59','2019-03-09 21:00:59','35.199.23.*','login_fail',''),(217,0,'wc_admin','2019-03-09 21:31:24','2019-03-09 22:31:24','188.165.247.*','login_fail',''),(218,0,'admin','2019-03-12 16:45:43','2019-03-12 17:45:43','94.23.157.*','login_fail',''),(219,0,'adminolga','2019-03-12 18:01:36','2019-03-12 19:01:36','176.31.246.*','login_fail',''),(220,0,'admin','2019-03-13 10:37:30','2019-03-13 11:37:30','176.31.246.*','login_fail',''),(221,0,'admin','2019-03-14 02:01:20','2019-03-14 03:01:20','130.61.49.*','login_fail',''),(222,0,'suswarming','2019-03-17 14:56:20','2019-03-17 15:56:20','94.23.157.*','login_fail',''),(223,0,'admin','2019-03-17 22:13:07','2019-03-17 23:13:07','198.100.148.*','login_fail',''),(224,0,'admin','2019-03-18 00:09:37','2019-03-18 01:09:37','94.23.157.*','login_fail',''),(225,0,'alfer','2019-03-18 13:37:23','2019-03-18 14:37:23','151.80.246.*','login_fail',''),(226,1,'alford','2019-03-19 19:39:30','2019-03-19 20:39:30','103.56.112.*','login_fail',''),(227,0,'dave','2019-03-19 22:46:12','2019-03-19 23:46:12','151.80.246.*','login_fail',''),(228,0,'website_netweek','2019-03-22 00:26:18','2019-03-22 01:26:18','188.165.247.*','login_fail',''),(229,0,'admin','2019-03-24 12:34:16','2019-03-24 13:34:16','188.165.247.*','login_fail',''),(230,0,'4dm1n','2019-03-26 00:46:52','2019-03-26 01:46:52','176.31.246.*','login_fail',''),(231,0,'viktorskoglund','2019-03-26 09:05:03','2019-03-26 10:05:03','176.31.246.*','login_fail',''),(232,0,'yokoyama_industry','2019-03-26 13:03:20','2019-03-26 14:03:20','198.27.67.*','login_fail',''),(233,0,'alexmoblog','2019-03-27 08:36:45','2019-03-27 09:36:45','40.113.101.*','login_fail',''),(234,0,'gcawards','2019-03-27 18:46:57','2019-03-27 19:46:57','94.23.157.*','login_fail',''),(235,0,'deciodef','2019-03-27 18:52:01','2019-03-27 19:52:01','46.105.101.*','login_fail',''),(236,0,'admin','2019-03-27 20:09:40','2019-03-27 21:09:40','94.23.157.*','login_fail',''),(237,0,'admin','2019-03-27 20:47:14','2019-03-27 21:47:14','46.118.155.*','login_fail',''),(238,0,'admin','2019-03-27 23:16:29','2019-03-28 00:16:29','94.23.199.*','login_fail',''),(239,0,'admin','2019-03-28 00:33:48','2019-03-28 01:33:48','151.80.246.*','login_fail',''),(240,0,'acollapse','2019-03-28 02:28:28','2019-03-28 03:28:28','94.23.157.*','login_fail',''),(241,0,'admin','2019-03-28 02:33:56','2019-03-28 03:33:56','37.59.54.*','login_fail',''),(242,0,'nordicse','2019-03-28 03:05:11','2019-03-28 04:05:11','194.93.59.*','login_fail',''),(243,0,'admin','2019-03-28 07:50:19','2019-03-28 08:50:19','151.80.246.*','login_fail',''),(244,0,'webvit','2019-03-28 11:57:47','2019-03-28 12:57:47','94.23.157.*','login_fail',''),(245,0,'shabina','2019-03-28 13:15:44','2019-03-28 14:15:44','46.105.101.*','login_fail',''),(246,0,'master_platzger','2019-03-28 16:58:23','2019-03-28 17:58:23','151.80.246.*','login_fail',''),(247,0,'acampla','2019-03-28 18:59:16','2019-03-28 19:59:16','37.59.54.*','login_fail',''),(248,0,'thiago','2019-03-29 10:53:41','2019-03-29 11:53:41','151.80.246.*','login_fail',''),(249,0,'superadmin','2019-03-29 15:46:46','2019-03-29 16:46:46','158.69.249.*','login_fail',''),(250,0,'admin','2019-03-29 19:58:19','2019-03-29 20:58:19','46.105.101.*','login_fail',''),(251,0,'psalteri','2019-03-30 04:47:27','2019-03-30 05:47:27','37.59.54.*','login_fail',''),(252,0,'rpm-admin','2019-03-30 09:01:39','2019-03-30 10:01:39','134.249.55.*','login_fail',''),(253,0,'decisionone1','2019-03-30 17:42:41','2019-03-30 18:42:41','46.105.101.*','login_fail',''),(254,0,'alexart_admin','2019-03-30 18:38:29','2019-03-30 19:38:29','151.80.246.*','login_fail',''),(255,0,'admin1','2019-03-30 23:58:51','2019-03-31 00:58:51','37.59.54.*','login_fail',''),(256,0,'admin','2019-03-31 00:51:44','2019-03-31 01:51:44','198.27.67.*','login_fail','');
/*!40000 ALTER TABLE `sd_aiowps_login_lockdown` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_aiowps_permanent_block`
--
DROP TABLE IF EXISTS `sd_aiowps_permanent_block`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_aiowps_permanent_block` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`blocked_ip` varchar(100) NOT NULL DEFAULT '',
`block_reason` varchar(128) NOT NULL DEFAULT '',
`country_origin` varchar(50) NOT NULL DEFAULT '',
`blocked_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`unblock` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_aiowps_permanent_block`
--
LOCK TABLES `sd_aiowps_permanent_block` WRITE;
/*!40000 ALTER TABLE `sd_aiowps_permanent_block` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_aiowps_permanent_block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_commentmeta`
--
DROP TABLE IF EXISTS `sd_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_commentmeta`
--
LOCK TABLES `sd_commentmeta` WRITE;
/*!40000 ALTER TABLE `sd_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_comments`
--
DROP TABLE IF EXISTS `sd_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) 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 NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_comments`
--
LOCK TABLES `sd_comments` WRITE;
/*!40000 ALTER TABLE `sd_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_links`
--
DROP TABLE IF EXISTS `sd_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) 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) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_links`
--
LOCK TABLES `sd_links` WRITE;
/*!40000 ALTER TABLE `sd_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_lockdowns`
--
DROP TABLE IF EXISTS `sd_lockdowns`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_lockdowns` (
`lockdown_ID` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`lockdown_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`release_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`lockdown_IP` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`lockdown_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=401 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_lockdowns`
--
LOCK TABLES `sd_lockdowns` WRITE;
/*!40000 ALTER TABLE `sd_lockdowns` DISABLE KEYS */;
INSERT INTO `sd_lockdowns` VALUES (1,1,'2017-08-10 00:24:51','2017-08-10 01:24:51','62.210.172.88'),(2,1,'2017-08-10 01:27:04','2017-08-10 02:27:04','62.210.172.88'),(3,1,'2017-08-10 01:49:45','2017-08-10 02:49:45','201.18.18.173'),(4,1,'2017-08-11 20:57:32','2017-08-11 21:57:32','111.125.109.177'),(5,1,'2017-08-12 07:48:20','2017-08-12 08:48:20','220.179.250.175'),(6,1,'2017-08-12 07:49:32','2017-08-12 08:49:32','202.103.21.51'),(7,1,'2017-08-12 07:51:02','2017-08-12 08:51:02','61.143.130.162'),(8,1,'2017-08-12 07:51:37','2017-08-12 08:51:37','171.34.40.5'),(9,1,'2017-08-12 07:53:51','2017-08-12 08:53:51','1.85.57.94'),(10,1,'2017-08-15 02:43:44','2017-08-15 03:43:44','119.254.80.142'),(11,1,'2017-08-15 02:45:55','2017-08-15 03:45:55','61.158.188.21'),(12,1,'2017-08-15 02:47:21','2017-08-15 03:47:21','60.222.227.195'),(13,1,'2017-08-15 02:49:23','2017-08-15 03:49:23','218.201.14.134'),(14,1,'2017-08-15 02:49:52','2017-08-15 03:49:52','61.177.148.58'),(15,1,'2017-08-17 07:31:46','2017-08-17 08:31:46','62.210.244.130'),(16,1,'2017-08-17 08:45:19','2017-08-17 09:45:19','62.210.244.130'),(17,1,'2017-08-17 10:11:48','2017-08-17 11:11:48','62.210.244.130'),(18,1,'2017-08-17 11:25:48','2017-08-17 12:25:48','62.210.244.130'),(19,1,'2017-08-18 12:02:56','2017-08-18 13:02:56','35.202.173.130'),(20,1,'2017-08-20 02:57:28','2017-08-20 03:57:28','51.255.138.90'),(21,1,'2017-08-20 18:38:43','2017-08-20 19:38:43','47.29.3.170'),(22,1,'2017-08-23 06:04:43','2017-08-23 07:04:43','173.230.252.58'),(23,1,'2017-08-23 10:11:05','2017-08-23 11:11:05','204.12.226.250'),(24,1,'2017-08-25 02:05:31','2017-08-25 03:05:31','69.197.145.178'),(25,1,'2017-08-25 03:56:27','2017-08-25 04:56:27','187.188.182.116'),(26,1,'2017-08-25 03:57:56','2017-08-25 04:57:56','1.9.26.62'),(27,1,'2017-08-25 03:58:55','2017-08-25 04:58:55','189.206.5.120'),(28,1,'2017-08-25 03:59:42','2017-08-25 04:59:42','60.29.145.218'),(29,1,'2017-08-25 04:01:55','2017-08-25 05:01:55','202.97.141.101'),(30,1,'2017-08-25 04:02:19','2017-08-25 05:02:19','218.56.45.28'),(31,1,'2017-08-25 04:02:34','2017-08-25 05:02:34','58.20.185.12'),(32,1,'2017-08-27 07:45:18','2017-08-27 08:45:18','62.210.105.116'),(33,1,'2017-08-29 09:42:45','2017-08-29 10:42:45','60.166.48.158'),(34,1,'2017-08-29 09:44:41','2017-08-29 10:44:41','116.113.86.246'),(35,1,'2017-08-29 09:46:05','2017-08-29 10:46:05','111.26.198.30'),(36,1,'2017-08-29 10:00:13','2017-08-29 11:00:13','113.200.246.58'),(37,1,'2017-08-29 10:03:06','2017-08-29 11:03:06','218.24.236.4'),(38,1,'2017-08-29 10:05:14','2017-08-29 11:05:14','122.227.168.230'),(39,1,'2017-08-29 10:06:58','2017-08-29 11:06:58','120.42.52.82'),(40,1,'2017-08-29 10:09:06','2017-08-29 11:09:06','222.92.223.234'),(41,1,'2017-08-29 10:09:50','2017-08-29 11:09:50','121.14.67.3'),(42,1,'2017-08-29 10:11:42','2017-08-29 11:11:42','220.178.151.125'),(43,1,'2017-08-29 10:13:25','2017-08-29 11:13:25','111.206.163.56'),(44,1,'2017-08-29 10:19:26','2017-08-29 11:19:26','88.247.42.66'),(45,1,'2017-08-29 10:20:09','2017-08-29 11:20:09','113.195.181.115'),(46,1,'2017-08-29 10:22:05','2017-08-29 11:22:05','190.13.106.107'),(47,1,'2017-08-29 10:24:20','2017-08-29 11:24:20','220.175.154.205'),(48,1,'2017-08-29 10:25:19','2017-08-29 11:25:19','61.136.82.164'),(49,1,'2017-08-29 10:27:47','2017-08-29 11:27:47','218.23.240.146'),(50,1,'2017-08-29 10:34:09','2017-08-29 11:34:09','220.171.28.146'),(51,1,'2017-08-29 10:36:09','2017-08-29 11:36:09','183.234.60.38'),(52,1,'2017-08-29 10:36:36','2017-08-29 11:36:36','220.164.2.77'),(53,1,'2017-08-29 10:38:24','2017-08-29 11:38:24','58.19.204.129'),(54,1,'2017-08-29 10:40:32','2017-08-29 11:40:32','220.170.196.198'),(55,1,'2017-08-29 10:43:26','2017-08-29 11:43:26','188.94.227.38'),(56,1,'2017-08-29 10:44:34','2017-08-29 11:44:34','219.159.70.68'),(57,1,'2017-08-29 10:46:19','2017-08-29 11:46:19','1.9.26.62'),(58,1,'2017-08-29 10:48:17','2017-08-29 11:48:17','205.217.247.204'),(59,1,'2017-08-29 10:48:33','2017-08-29 11:48:33','58.56.145.94'),(60,1,'2017-08-29 10:49:05','2017-08-29 11:49:05','61.161.135.34'),(61,1,'2017-08-29 10:50:57','2017-08-29 11:50:57','124.254.6.6'),(62,1,'2017-08-29 10:51:28','2017-08-29 11:51:28','211.141.155.131'),(63,1,'2017-08-29 10:53:31','2017-08-29 11:53:31','218.95.153.90'),(64,1,'2017-08-29 10:57:49','2017-08-29 11:57:49','122.226.183.155'),(65,1,'2017-08-29 10:59:40','2017-08-29 11:59:40','58.49.17.174'),(66,1,'2017-08-29 11:02:16','2017-08-29 12:02:16','221.210.83.24'),(67,1,'2017-08-29 11:04:30','2017-08-29 12:04:30','183.166.187.168'),(68,1,'2017-08-29 11:06:44','2017-08-29 12:06:44','115.238.247.228'),(69,1,'2017-08-29 11:09:35','2017-08-29 12:09:35','114.80.137.198'),(70,1,'2017-08-29 11:09:46','2017-08-29 12:09:46','111.85.223.234'),(71,1,'2017-08-29 11:12:10','2017-08-29 12:12:10','60.171.155.26'),(72,1,'2017-08-29 11:12:38','2017-08-29 12:12:38','122.227.185.67'),(73,1,'2017-08-29 11:14:32','2017-08-29 12:14:32','183.240.196.120'),(74,1,'2017-08-29 11:17:37','2017-08-29 12:17:37','221.224.25.26'),(75,1,'2017-08-29 11:20:10','2017-08-29 12:20:10','58.220.234.18'),(76,1,'2017-08-29 11:22:58','2017-08-29 12:22:58','222.185.255.227'),(77,1,'2017-08-29 11:25:15','2017-08-29 12:25:15','183.220.53.39'),(78,1,'2017-08-29 11:27:29','2017-08-29 12:27:29','14.32.77.156'),(79,1,'2017-08-29 11:29:50','2017-08-29 12:29:50','61.153.215.122'),(80,1,'2017-08-29 11:32:20','2017-08-29 12:32:20','221.203.154.50'),(81,1,'2017-08-29 11:34:40','2017-08-29 12:34:40','223.220.248.78'),(82,1,'2017-08-29 11:37:29','2017-08-29 12:37:29','58.18.170.107'),(83,1,'2017-08-29 11:39:26','2017-08-29 12:39:26','218.22.66.30'),(84,1,'2017-08-29 11:42:11','2017-08-29 12:42:11','220.178.102.138'),(85,1,'2017-08-29 11:43:14','2017-08-29 12:43:14','218.3.204.172'),(86,1,'2017-08-29 11:45:31','2017-08-29 12:45:31','60.170.110.89'),(87,1,'2017-08-29 11:47:30','2017-08-29 12:47:30','219.159.70.68'),(88,1,'2017-08-29 11:49:37','2017-08-29 12:49:37','116.113.96.22'),(89,1,'2017-08-29 11:52:02','2017-08-29 12:52:02','124.128.246.178'),(90,1,'2017-08-29 11:54:06','2017-08-29 12:54:06','222.180.100.198'),(91,1,'2017-08-29 11:56:15','2017-08-29 12:56:15','210.82.28.41'),(92,1,'2017-08-29 11:58:07','2017-08-29 12:58:07','58.49.127.246'),(93,1,'2017-08-29 11:59:50','2017-08-29 12:59:50','42.115.91.161'),(94,1,'2017-08-29 12:00:36','2017-08-29 13:00:36','113.195.181.52'),(95,1,'2017-08-29 12:03:26','2017-08-29 13:03:26','61.136.104.131'),(96,1,'2017-08-29 12:05:41','2017-08-29 13:05:41','60.13.253.189'),(97,1,'2017-08-29 12:08:02','2017-08-29 13:08:02','61.233.18.34'),(98,1,'2017-08-29 12:10:18','2017-08-29 13:10:18','61.180.4.114'),(99,1,'2017-08-29 12:12:49','2017-08-29 13:12:49','222.92.142.226'),(100,1,'2017-08-29 12:13:49','2017-08-29 13:13:49','61.134.52.164'),(101,1,'2017-08-29 12:15:06','2017-08-29 13:15:06','60.216.97.206'),(102,1,'2017-08-29 12:20:27','2017-08-29 13:20:27','220.130.116.125'),(103,1,'2017-08-29 12:22:40','2017-08-29 13:22:40','118.121.233.54'),(104,1,'2017-08-29 12:24:45','2017-08-29 13:24:45','60.172.231.12'),(105,1,'2017-08-29 12:27:48','2017-08-29 13:27:48','122.227.62.206'),(106,1,'2017-08-29 12:30:44','2017-08-29 13:30:44','222.247.60.178'),(107,1,'2017-08-29 12:32:49','2017-08-29 13:32:49','222.189.41.46'),(108,1,'2017-08-29 12:34:04','2017-08-29 13:34:04','80.245.123.14'),(109,1,'2017-08-29 12:35:08','2017-08-29 13:35:08','61.177.148.58'),(110,1,'2017-08-29 12:37:15','2017-08-29 13:37:15','218.64.63.195'),(111,1,'2017-08-29 12:39:36','2017-08-29 13:39:36','124.117.228.42'),(112,1,'2017-08-29 12:40:11','2017-08-29 13:40:11','220.115.251.187'),(113,1,'2017-08-29 12:40:37','2017-08-29 13:40:37','218.95.159.106'),(114,1,'2017-08-29 12:40:53','2017-08-29 13:40:53','1.85.7.26'),(115,1,'2017-08-29 12:43:42','2017-08-29 13:43:42','112.25.188.48'),(116,1,'2017-08-29 12:45:47','2017-08-29 13:45:47','185.19.177.1'),(117,1,'2017-08-29 12:46:55','2017-08-29 13:46:55','61.187.123.74'),(118,1,'2017-08-29 12:49:06','2017-08-29 13:49:06','203.192.199.98'),(119,1,'2017-08-29 12:50:40','2017-08-29 13:50:40','76.73.237.38'),(120,1,'2017-08-29 12:51:40','2017-08-29 13:51:40','222.209.223.91'),(121,1,'2017-08-29 12:53:23','2017-08-29 13:53:23','125.212.247.115'),(122,1,'2017-08-29 12:56:04','2017-08-29 13:56:04','222.92.204.50'),(123,1,'2017-08-29 21:01:13','2017-08-29 22:01:13','183.87.114.130'),(124,1,'2017-08-29 22:01:36','2017-08-29 23:01:36','51.255.138.90'),(125,1,'2017-08-30 09:59:46','2017-08-30 10:59:46','183.87.114.130'),(126,1,'2017-09-02 05:45:19','2017-09-02 06:45:19','58.244.173.130'),(127,1,'2017-09-02 05:58:23','2017-09-02 06:58:23','220.165.28.189'),(128,1,'2017-09-06 07:18:37','2017-09-06 08:18:37','58.244.173.130'),(129,1,'2017-09-06 07:21:13','2017-09-06 08:21:13','112.91.108.190'),(130,1,'2017-09-06 07:22:28','2017-09-06 08:22:28','110.249.218.124'),(131,1,'2017-09-06 07:24:02','2017-09-06 08:24:02','218.58.105.206'),(132,1,'2017-09-06 07:26:03','2017-09-06 08:26:03','195.34.238.52'),(133,1,'2017-09-06 07:40:28','2017-09-06 08:40:28','218.201.83.148'),(134,1,'2017-09-06 07:43:32','2017-09-06 08:43:32','222.33.117.102'),(135,1,'2017-09-06 07:45:52','2017-09-06 08:45:52','101.1.3.116'),(136,1,'2017-09-06 07:46:13','2017-09-06 08:46:13','58.17.124.12'),(137,1,'2017-09-06 07:47:11','2017-09-06 08:47:11','101.66.245.14'),(138,1,'2017-09-06 07:49:38','2017-09-06 08:49:38','111.39.250.51'),(139,1,'2017-09-06 07:51:51','2017-09-06 08:51:51','201.20.79.76'),(140,1,'2017-09-06 07:52:52','2017-09-06 08:52:52','119.10.51.233'),(141,1,'2017-09-06 07:54:03','2017-09-06 08:54:03','61.180.38.132'),(142,1,'2017-09-06 08:07:03','2017-09-06 09:07:03','185.12.124.66'),(143,1,'2017-09-06 08:08:34','2017-09-06 09:08:34','211.103.24.181'),(144,1,'2017-09-06 08:20:33','2017-09-06 09:20:33','117.28.250.42'),(145,1,'2017-09-06 08:23:33','2017-09-06 09:23:33','219.154.17.116'),(146,1,'2017-09-06 08:26:28','2017-09-06 09:26:28','222.218.17.187'),(147,1,'2017-09-06 08:27:24','2017-09-06 09:27:24','222.41.213.234'),(148,1,'2017-09-15 22:57:16','2017-09-15 23:57:16','51.15.50.133'),(149,1,'2017-09-18 18:41:59','2017-09-18 19:41:59','82.165.140.254'),(150,1,'2017-09-19 03:48:46','2017-09-19 04:48:46','91.200.12.86'),(151,1,'2017-09-19 03:48:46','2017-09-19 04:48:46','91.200.12.86'),(152,1,'2017-09-20 03:10:18','2017-09-20 04:10:18','107.150.58.197'),(153,1,'2017-09-20 14:11:36','2017-09-20 15:11:36','204.246.238.131'),(154,1,'2017-09-20 14:12:04','2017-09-20 15:12:04','117.35.207.102'),(155,1,'2017-09-20 14:12:49','2017-09-20 15:12:49','120.194.149.41'),(156,1,'2017-09-20 14:14:32','2017-09-20 15:14:32','218.22.198.212'),(157,1,'2017-09-20 14:16:53','2017-09-20 15:16:53','119.10.51.233'),(158,1,'2017-09-20 14:18:20','2017-09-20 15:18:20','220.164.2.91'),(159,1,'2017-09-20 14:18:52','2017-09-20 15:18:52','220.180.156.161'),(160,1,'2017-09-25 21:56:36','2017-09-25 22:56:36','201.18.18.173'),(161,1,'2017-09-30 08:34:34','2017-09-30 09:34:34','60.30.224.189'),(162,1,'2017-09-30 08:35:37','2017-09-30 09:35:37','218.22.187.66'),(163,1,'2017-09-30 08:38:07','2017-09-30 09:38:07','218.64.165.194'),(164,1,'2017-10-04 16:50:39','2017-10-04 17:50:39','119.146.33.84'),(165,1,'2017-10-04 16:52:09','2017-10-04 17:52:09','218.29.52.2'),(166,1,'2017-10-04 16:53:42','2017-10-04 17:53:42','117.4.88.156'),(167,1,'2017-10-08 01:17:11','2017-10-08 02:17:11','119.6.162.142'),(168,1,'2017-10-08 01:19:31','2017-10-08 02:19:31','218.29.52.2'),(169,1,'2017-10-08 01:20:46','2017-10-08 02:20:46','117.159.84.141'),(170,1,'2017-10-08 19:34:02','2017-10-08 20:34:02','201.18.18.173'),(171,1,'2017-10-09 00:24:39','2017-10-09 01:24:39','83.143.240.3'),(172,1,'2017-10-10 08:56:30','2017-10-10 09:56:30','195.181.160.66'),(173,1,'2017-10-10 13:25:01','2017-10-10 14:25:01','154.70.132.49'),(174,1,'2017-10-10 13:26:33','2017-10-10 14:26:33','58.240.2.38'),(175,1,'2017-10-10 13:28:11','2017-10-10 14:28:11','58.213.133.18'),(176,1,'2017-10-10 13:30:20','2017-10-10 14:30:20','59.39.92.162'),(177,1,'2017-10-10 13:32:53','2017-10-10 14:32:53','61.143.130.162'),(178,1,'2017-10-13 19:59:16','2017-10-13 20:59:16','176.8.91.190'),(179,1,'2017-10-15 02:55:03','2017-10-15 03:55:03','201.18.18.173'),(180,1,'2017-10-15 04:13:08','2017-10-15 05:13:08','60.2.15.52'),(181,1,'2017-10-15 04:14:35','2017-10-15 05:14:35','117.159.84.145'),(182,1,'2017-10-15 04:16:26','2017-10-15 05:16:26','221.176.176.126'),(183,1,'2017-10-15 04:18:28','2017-10-15 05:18:28','218.26.163.125'),(184,1,'2017-10-16 17:32:20','2017-10-16 18:32:20','122.189.240.46'),(185,1,'2017-10-16 17:33:52','2017-10-16 18:33:52','221.4.197.154'),(186,1,'2017-10-16 17:37:04','2017-10-16 18:37:04','220.179.61.160'),(187,1,'2017-10-16 17:39:57','2017-10-16 18:39:57','218.206.132.194'),(188,1,'2017-10-16 17:43:35','2017-10-16 18:43:35','115.238.34.226'),(189,1,'2017-10-16 17:46:07','2017-10-16 18:46:07','213.138.74.85'),(190,1,'2017-10-16 17:48:28','2017-10-16 18:48:28','220.130.116.125'),(191,1,'2017-10-16 17:51:47','2017-10-16 18:51:47','111.75.167.157'),(192,1,'2017-10-16 17:54:23','2017-10-16 18:54:23','58.18.137.83'),(193,1,'2017-10-16 17:57:29','2017-10-16 18:57:29','178.234.35.26'),(194,1,'2017-10-16 17:59:19','2017-10-16 18:59:19','118.163.143.170'),(195,1,'2017-10-16 18:03:17','2017-10-16 19:03:17','218.206.210.194'),(196,1,'2017-10-16 18:06:07','2017-10-16 19:06:07','202.137.141.81'),(197,1,'2017-10-16 18:06:34','2017-10-16 19:06:34','61.164.219.43'),(198,1,'2017-10-16 18:07:02','2017-10-16 19:07:02','14.45.111.165'),(199,1,'2017-10-16 18:11:14','2017-10-16 19:11:14','110.249.218.124'),(200,1,'2017-10-16 18:12:53','2017-10-16 19:12:53','60.190.194.134'),(201,1,'2017-10-16 18:14:40','2017-10-16 19:14:40','220.173.107.124'),(202,1,'2017-10-16 18:15:12','2017-10-16 19:15:12','122.195.155.194'),(203,1,'2017-10-16 18:17:54','2017-10-16 19:17:54','115.239.244.198'),(204,1,'2017-10-16 18:18:53','2017-10-16 19:18:53','211.118.26.122'),(205,1,'2017-10-17 05:19:06','2017-10-17 06:19:06','37.115.188.137'),(206,1,'2017-10-17 14:04:30','2017-10-17 15:04:30','173.208.236.122'),(207,1,'2017-10-18 04:27:12','2017-10-18 05:27:12','173.208.236.122'),(208,1,'2017-10-22 15:25:10','2017-10-22 16:25:10','79.1.2.237'),(209,1,'2017-10-22 15:26:39','2017-10-22 16:26:39','221.192.141.2'),(210,1,'2017-10-22 15:28:51','2017-10-22 16:28:51','112.113.241.17'),(211,1,'2017-10-22 15:30:55','2017-10-22 16:30:55','61.50.130.146'),(212,1,'2017-10-22 15:33:31','2017-10-22 16:33:31','221.12.137.6'),(213,1,'2017-10-22 15:42:04','2017-10-22 16:42:04','60.174.192.240'),(214,1,'2017-10-22 15:47:29','2017-10-22 16:47:29','116.249.127.11'),(215,1,'2017-10-22 15:53:53','2017-10-22 16:53:53','221.203.154.50'),(216,1,'2017-10-22 15:57:34','2017-10-22 16:57:34','61.182.27.121'),(217,1,'2017-10-22 15:58:49','2017-10-22 16:58:49','202.110.93.154'),(218,1,'2017-10-22 15:59:33','2017-10-22 16:59:33','94.140.71.166'),(219,1,'2017-10-22 16:01:28','2017-10-22 17:01:28','109.202.17.76'),(220,1,'2017-10-22 16:04:23','2017-10-22 17:04:23','221.210.46.222'),(221,1,'2017-10-22 16:08:30','2017-10-22 17:08:30','58.56.145.94'),(222,1,'2017-10-22 16:11:51','2017-10-22 17:11:51','218.108.16.154'),(223,1,'2017-10-22 16:14:04','2017-10-22 17:14:04','182.73.67.202'),(224,1,'2017-10-22 16:15:21','2017-10-22 17:15:21','211.118.26.122'),(225,1,'2017-10-22 16:19:11','2017-10-22 17:19:11','58.17.221.4'),(226,1,'2017-10-22 16:19:49','2017-10-22 17:19:49','221.4.205.30'),(227,1,'2017-10-22 16:24:26','2017-10-22 17:24:26','218.29.138.10'),(228,1,'2017-10-22 16:26:49','2017-10-22 17:26:49','218.22.187.66'),(229,1,'2017-10-22 16:28:46','2017-10-22 17:28:46','122.189.240.46'),(230,1,'2017-10-22 16:29:13','2017-10-22 17:29:13','221.228.229.49'),(231,1,'2017-10-22 16:30:49','2017-10-22 17:30:49','60.216.106.162'),(232,1,'2017-10-22 16:32:10','2017-10-22 17:32:10','112.218.211.227'),(233,1,'2017-10-22 16:34:05','2017-10-22 17:34:05','220.197.206.78'),(234,1,'2017-10-22 16:37:31','2017-10-22 17:37:31','220.169.102.6'),(235,1,'2017-10-22 16:38:46','2017-10-22 17:38:46','125.46.81.195'),(236,1,'2017-10-22 16:40:59','2017-10-22 17:40:59','61.167.79.135'),(237,1,'2017-10-22 16:45:18','2017-10-22 17:45:18','157.122.183.219'),(238,1,'2017-10-22 16:48:22','2017-10-22 17:48:22','121.14.67.3'),(239,1,'2017-10-22 16:50:44','2017-10-22 17:50:44','1.9.26.62'),(240,1,'2017-10-22 16:53:07','2017-10-22 17:53:07','119.55.121.74'),(241,1,'2017-10-22 16:55:01','2017-10-22 17:55:01','220.225.7.54'),(242,1,'2017-10-22 16:59:52','2017-10-22 17:59:52','222.217.221.179'),(243,1,'2017-10-22 17:00:51','2017-10-22 18:00:51','79.134.198.229'),(244,1,'2017-10-22 17:03:28','2017-10-22 18:03:28','222.222.219.154'),(245,1,'2017-10-22 17:08:28','2017-10-22 18:08:28','219.159.70.68'),(246,1,'2017-10-22 17:09:35','2017-10-22 18:09:35','61.134.83.10'),(247,1,'2017-10-22 17:10:25','2017-10-22 18:10:25','125.65.244.38'),(248,1,'2017-10-22 17:16:14','2017-10-22 18:16:14','165.227.204.31'),(249,1,'2017-10-22 17:18:12','2017-10-22 18:18:12','202.137.141.81'),(250,1,'2017-10-22 17:21:05','2017-10-22 18:21:05','60.173.149.237'),(251,1,'2017-10-22 17:22:46','2017-10-22 18:22:46','222.172.14.14'),(252,1,'2017-10-22 17:24:35','2017-10-22 18:24:35','218.28.135.178'),(253,1,'2017-10-22 17:25:55','2017-10-22 18:25:55','61.186.219.33'),(254,1,'2017-10-22 17:26:53','2017-10-22 18:26:53','60.166.60.26'),(255,1,'2017-10-22 17:27:44','2017-10-22 18:27:44','218.6.146.70'),(256,1,'2017-10-22 17:29:21','2017-10-22 18:29:21','203.242.126.4'),(257,1,'2017-10-22 17:30:40','2017-10-22 18:30:40','60.221.235.109'),(258,1,'2017-10-22 17:34:04','2017-10-22 18:34:04','221.1.177.2'),(259,1,'2017-10-22 17:37:34','2017-10-22 18:37:34','123.198.242.173'),(260,1,'2017-10-22 17:38:01','2017-10-22 18:38:01','115.238.72.250'),(261,1,'2017-10-22 17:39:50','2017-10-22 18:39:50','58.210.126.206'),(262,1,'2017-10-22 17:41:02','2017-10-22 18:41:02','60.10.41.203'),(263,1,'2017-10-22 17:47:04','2017-10-22 18:47:04','220.182.53.3'),(264,1,'2017-10-22 17:48:49','2017-10-22 18:48:49','218.21.38.238'),(265,1,'2017-10-22 17:51:53','2017-10-22 18:51:53','60.215.144.50'),(266,1,'2017-10-22 17:55:41','2017-10-22 18:55:41','61.53.66.4'),(267,1,'2017-10-22 17:57:21','2017-10-22 18:57:21','140.118.125.64'),(268,1,'2017-10-22 17:58:05','2017-10-22 18:58:05','163.23.78.226'),(269,1,'2017-10-22 17:58:54','2017-10-22 18:58:54','124.65.222.38'),(270,1,'2017-10-24 21:00:25','2017-10-24 22:00:25','178.137.82.201'),(271,1,'2017-10-25 11:57:45','2017-10-25 12:57:45','107.150.60.34'),(272,1,'2017-10-28 08:39:48','2017-10-28 09:39:48','91.200.12.86'),(273,1,'2017-10-28 08:39:49','2017-10-28 09:39:49','91.200.12.86'),(274,1,'2017-10-28 18:08:45','2017-10-28 19:08:45','201.18.18.173'),(275,1,'2017-11-01 22:50:46','2017-11-01 23:50:46','192.187.122.42'),(276,1,'2017-11-01 23:51:18','2017-11-02 00:51:18','192.187.122.42'),(277,1,'2017-11-02 11:42:07','2017-11-02 12:42:07','204.12.198.90'),(278,1,'2017-11-03 14:04:52','2017-11-03 15:04:52','146.185.223.5'),(279,1,'2017-11-05 00:11:38','2017-11-05 01:11:38','173.208.244.34'),(280,1,'2017-11-05 07:02:49','2017-11-05 08:02:49','81.177.48.244'),(281,1,'2017-11-09 06:50:03','2017-11-09 07:50:03','178.137.82.201'),(282,1,'2017-11-09 16:09:27','2017-11-09 17:09:27','69.197.188.82'),(283,1,'2017-11-09 17:10:17','2017-11-09 18:10:17','69.197.188.82'),(284,1,'2017-11-10 23:36:33','2017-11-11 00:36:33','63.141.240.122'),(285,1,'2017-11-15 03:58:27','2017-11-15 04:58:27','146.185.223.5'),(286,1,'2017-11-15 23:32:55','2017-11-16 00:32:55','178.137.82.201'),(287,1,'2017-11-17 09:14:28','2017-11-17 10:14:28','198.204.225.202'),(288,1,'2017-11-17 10:15:41','2017-11-17 11:15:41','198.204.225.202'),(289,1,'2017-11-17 11:16:36','2017-11-17 12:16:36','198.204.225.202'),(290,1,'2017-11-17 12:17:25','2017-11-17 13:17:25','198.204.225.202'),(291,1,'2017-11-17 19:50:08','2017-11-17 20:50:08','13.84.148.243'),(292,1,'2017-11-26 18:09:51','2017-11-26 19:09:51','69.197.163.242'),(293,1,'2017-11-26 19:10:36','2017-11-26 20:10:36','69.197.163.242'),(294,1,'2017-11-30 07:25:37','2017-11-30 08:25:37','195.22.125.34'),(295,1,'2017-11-30 17:16:50','2017-11-30 18:16:50','193.201.224.28'),(296,1,'2017-12-01 08:05:56','2017-12-01 09:05:56','74.91.23.194'),(297,1,'2017-12-06 11:15:14','2017-12-06 12:15:14','198.50.159.10'),(298,1,'2017-12-09 22:38:33','2017-12-09 23:38:33','192.187.100.82'),(299,1,'2017-12-15 04:35:04','2017-12-15 05:35:04','146.185.223.5'),(300,1,'2017-12-18 06:50:16','2017-12-18 07:50:16','192.187.108.186'),(301,1,'2017-12-27 16:29:15','2017-12-27 17:29:15','192.187.108.186'),(302,1,'2017-12-27 17:30:03','2017-12-27 18:30:03','192.187.108.186'),(303,1,'2017-12-29 05:08:40','2017-12-29 06:08:40','146.185.223.5'),(304,1,'2017-12-30 05:18:07','2017-12-30 06:18:07','146.185.223.5'),(305,1,'2018-01-09 14:37:47','2018-01-09 15:37:47','193.201.224.28'),(306,1,'2018-01-11 01:38:54','2018-01-11 02:38:54','176.8.89.80'),(307,1,'2018-01-21 01:18:22','2018-01-21 02:18:22','51.4.207.124'),(308,1,'2018-01-22 04:59:24','2018-01-22 05:59:24','146.185.223.5'),(309,1,'2018-01-22 17:20:32','2018-01-22 18:20:32','146.185.223.5'),(310,1,'2018-01-25 07:43:04','2018-01-25 08:43:04','46.118.155.165'),(311,1,'2018-01-27 06:30:49','2018-01-27 07:30:49','192.95.3.69'),(312,1,'2018-01-27 07:31:31','2018-01-27 08:31:31','192.95.3.69'),(313,1,'2018-01-29 05:34:08','2018-01-29 06:34:08','176.8.89.80'),(314,1,'2018-01-29 10:35:41','2018-01-29 11:35:41','91.210.145.233'),(315,1,'2018-02-02 00:28:26','2018-02-02 01:28:26','201.18.18.173'),(316,1,'2018-02-09 04:00:11','2018-02-09 05:00:11','195.22.127.169'),(317,1,'2018-02-09 05:00:44','2018-02-09 06:00:44','195.22.127.169'),(318,1,'2018-02-10 22:25:04','2018-02-10 23:25:04','37.59.178.104'),(319,1,'2018-02-11 00:45:49','2018-02-11 01:45:49','103.243.24.64'),(320,1,'2018-02-11 01:50:57','2018-02-11 02:50:57','185.81.157.102'),(321,1,'2018-02-11 21:24:35','2018-02-11 22:24:35','41.79.76.6'),(322,1,'2018-02-12 08:54:02','2018-02-12 09:54:02','195.22.125.223'),(323,1,'2018-02-12 09:55:25','2018-02-12 10:55:25','195.22.125.223'),(324,1,'2018-02-12 10:57:10','2018-02-12 11:57:10','195.22.125.223'),(325,1,'2018-02-12 11:58:19','2018-02-12 12:58:19','195.22.125.223'),(326,1,'2018-02-12 13:00:46','2018-02-12 14:00:46','195.22.125.223'),(327,1,'2018-02-12 14:02:02','2018-02-12 15:02:02','195.22.125.223'),(328,1,'2018-02-12 15:04:00','2018-02-12 16:04:00','195.22.125.223'),(329,1,'2018-02-12 16:06:43','2018-02-12 17:06:43','195.22.125.223'),(330,1,'2018-02-12 17:08:38','2018-02-12 18:08:38','195.22.125.223'),(331,1,'2018-02-12 18:10:54','2018-02-12 19:10:54','195.22.125.223'),(332,1,'2018-02-12 19:12:17','2018-02-12 20:12:17','195.22.125.223'),(333,1,'2018-02-16 06:43:48','2018-02-16 07:43:48','146.185.223.251'),(334,1,'2018-02-16 09:38:54','2018-02-16 10:38:54','185.29.8.10'),(335,1,'2018-02-17 13:36:37','2018-02-17 14:36:37','91.207.57.100'),(336,1,'2018-02-18 11:20:47','2018-02-18 12:20:47','195.22.125.8'),(337,1,'2018-02-18 12:21:29','2018-02-18 13:21:29','195.22.125.8'),(338,1,'2018-02-18 18:50:55','2018-02-18 19:50:55','185.81.157.102'),(339,1,'2018-02-18 19:51:41','2018-02-18 20:51:41','185.81.157.102'),(340,1,'2018-02-22 23:34:41','2018-02-23 00:34:41','37.59.178.104'),(341,1,'2018-02-23 00:35:56','2018-02-23 01:35:56','37.59.178.104'),(342,1,'2018-02-23 01:36:46','2018-02-23 02:36:46','37.59.178.104'),(343,1,'2018-02-25 05:56:06','2018-02-25 06:56:06','146.185.223.240'),(344,1,'2018-02-25 06:02:10','2018-02-25 07:02:10','178.137.165.32'),(345,1,'2018-02-26 18:40:19','2018-02-26 19:40:19','185.29.8.10'),(346,1,'2018-02-27 17:52:27','2018-02-27 18:52:27','109.234.161.33'),(347,1,'2018-02-27 18:53:13','2018-02-27 19:53:13','109.234.161.33'),(348,1,'2018-02-28 20:33:45','2018-02-28 21:33:45','195.22.125.222'),(349,1,'2018-02-28 21:34:33','2018-02-28 22:34:33','195.22.125.222'),(350,1,'2018-03-03 07:46:18','2018-03-03 08:46:18','35.203.84.237'),(351,1,'2018-03-04 01:01:16','2018-03-04 02:01:16','178.137.165.32'),(352,1,'2018-03-04 17:43:36','2018-03-04 18:43:36','193.201.224.28'),(353,1,'2018-03-04 23:11:20','2018-03-05 00:11:20','172.245.5.115'),(354,1,'2018-03-05 15:15:37','2018-03-05 16:15:37','198.20.91.191'),(355,1,'2018-03-05 16:16:34','2018-03-05 17:16:34','198.20.91.191'),(356,1,'2018-03-08 05:03:45','2018-03-08 06:03:45','46.118.115.22'),(357,1,'2018-03-09 12:01:41','2018-03-09 13:01:41','185.234.218.247'),(358,1,'2018-03-09 13:02:42','2018-03-09 14:02:42','185.234.218.247'),(359,1,'2018-03-09 14:03:32','2018-03-09 15:03:32','185.234.218.247'),(360,1,'2018-03-09 15:04:45','2018-03-09 16:04:45','185.234.218.247'),(361,1,'2018-03-09 16:06:18','2018-03-09 17:06:18','185.234.218.247'),(362,1,'2018-03-09 17:07:45','2018-03-09 18:07:45','185.234.218.247'),(363,1,'2018-03-09 18:08:43','2018-03-09 19:08:43','185.234.218.247'),(364,1,'2018-03-09 19:09:22','2018-03-09 20:09:22','185.234.218.247'),(365,1,'2018-03-10 14:03:03','2018-03-10 15:03:03','172.245.5.115'),(366,1,'2018-03-13 09:24:08','2018-03-13 10:24:08','64.235.37.19'),(367,1,'2018-03-21 03:18:17','2018-03-21 04:18:17','144.217.210.86'),(368,1,'2018-03-21 04:19:08','2018-03-21 05:19:08','144.217.210.86'),(369,1,'2018-03-21 06:14:00','2018-03-21 07:14:00','144.217.210.86'),(370,1,'2018-03-21 07:14:49','2018-03-21 08:14:49','144.217.210.86'),(371,1,'2018-03-23 23:54:49','2018-03-24 00:54:49','94.138.213.187'),(372,1,'2018-03-24 00:55:39','2018-03-24 01:55:39','94.138.213.187'),(373,1,'2018-03-24 01:56:22','2018-03-24 02:56:22','94.138.213.187'),(374,1,'2018-03-24 02:57:00','2018-03-24 03:57:00','94.138.213.187'),(375,1,'2018-03-24 03:57:43','2018-03-24 04:57:43','94.138.213.187'),(376,1,'2018-03-24 22:22:04','2018-03-24 23:22:04','144.217.210.86'),(377,1,'2018-03-24 22:46:32','2018-03-24 23:46:32','51.15.90.156'),(378,1,'2018-03-24 23:22:51','2018-03-25 00:22:51','144.217.210.86'),(379,1,'2018-03-24 23:47:11','2018-03-25 00:47:11','51.15.90.156'),(380,1,'2018-03-25 00:47:47','2018-03-25 01:47:47','51.15.90.156'),(381,1,'2018-03-31 04:30:54','2018-03-31 05:30:54','178.137.165.32'),(382,1,'2018-03-31 05:31:42','2018-03-31 06:31:42','178.137.165.32'),(383,1,'2018-04-01 22:35:46','2018-04-01 23:35:46','178.137.165.32'),(384,1,'2018-04-04 07:00:04','2018-04-04 08:00:04','84.199.29.242'),(385,1,'2018-06-03 03:13:30','2018-06-03 04:13:30','37.187.88.203'),(386,1,'2018-12-15 06:06:35','2018-12-15 07:06:35','5.62.43.52'),(387,1,'2018-12-26 07:39:11','2018-12-26 08:39:11','182.52.31.122'),(388,1,'2018-12-26 09:49:25','2018-12-26 10:49:25','103.91.69.51'),(389,1,'2018-12-26 10:13:01','2018-12-26 11:13:01','128.199.244.175'),(390,1,'2018-12-26 11:16:58','2018-12-26 12:16:58','125.25.80.31'),(391,1,'2018-12-26 11:24:36','2018-12-26 12:24:36','83.169.38.236'),(392,1,'2019-01-19 13:14:49','2019-01-19 14:14:49','104.248.166.0'),(393,1,'2019-01-19 13:16:19','2019-01-19 14:16:19','95.0.235.61'),(394,1,'2019-01-19 13:33:42','2019-01-19 14:33:42','140.227.210.205'),(395,1,'2019-01-19 13:48:54','2019-01-19 14:48:54','46.29.195.210'),(396,1,'2019-01-19 14:20:25','2019-01-19 15:20:25','176.62.188.158'),(397,1,'2019-01-19 14:50:46','2019-01-19 15:50:46','36.91.133.63'),(398,1,'2019-02-18 05:48:36','2019-02-18 06:48:36','144.48.241.192'),(399,1,'2019-03-19 19:39:30','2019-03-19 20:39:30','103.56.112.223'),(400,1,'2019-05-27 19:26:25','2019-05-27 20:26:25','39.108.235.98');
/*!40000 ALTER TABLE `sd_lockdowns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_login_fails`
--
DROP TABLE IF EXISTS `sd_login_fails`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_login_fails` (
`login_attempt_ID` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`login_attempt_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`login_attempt_IP` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`login_attempt_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=6848 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_login_fails`
--
LOCK TABLES `sd_login_fails` WRITE;
/*!40000 ALTER TABLE `sd_login_fails` DISABLE KEYS */;
INSERT INTO `sd_login_fails` VALUES (1,1,'2017-08-09 13:55:15','89.130.241.120'),(2,1,'2017-08-09 13:55:16','89.130.241.120'),(3,1,'2017-08-09 14:00:26','217.206.184.92'),(4,1,'2017-08-09 14:01:14','103.211.19.100'),(5,1,'2017-08-09 14:01:16','103.211.19.100'),(6,1,'2017-08-09 14:07:00','39.33.123.39'),(7,1,'2017-08-09 14:07:13','165.255.86.214'),(8,1,'2017-08-09 14:07:14','165.255.86.214'),(9,1,'2017-08-09 14:07:23','39.33.123.39'),(10,1,'2017-08-09 14:14:03','36.255.86.145'),(11,1,'2017-08-09 14:14:05','36.255.86.145'),(12,1,'2017-08-09 14:25:58','124.104.33.217'),(13,1,'2017-08-09 14:26:00','124.104.33.217'),(14,1,'2017-08-09 14:34:33','179.7.165.199'),(15,1,'2017-08-09 14:34:34','179.7.165.199'),(16,1,'2017-08-09 14:44:15','180.94.91.140'),(17,1,'2017-08-09 14:44:16','180.94.91.140'),(18,1,'2017-08-09 14:54:59','186.215.198.243'),(19,1,'2017-08-09 15:43:36','39.43.16.90'),(20,1,'2017-08-09 15:43:38','39.43.16.90'),(21,1,'2017-08-09 16:01:38','201.231.78.111'),(22,1,'2017-08-09 16:01:40','201.231.78.111'),(23,1,'2017-08-09 16:22:27','39.50.18.95'),(24,1,'2017-08-09 16:22:29','39.50.18.95'),(25,1,'2017-08-09 16:24:19','39.44.124.126'),(26,1,'2017-08-09 16:36:56','177.13.248.95'),(27,1,'2017-08-09 16:36:58','177.13.248.95'),(28,1,'2017-08-09 16:53:32','95.76.167.169'),(29,1,'2017-08-09 16:53:33','95.76.167.169'),(30,1,'2017-08-09 17:08:01','206.214.8.121'),(31,1,'2017-08-09 17:31:16','110.189.17.27'),(32,1,'2017-08-09 17:31:18','110.189.17.27'),(33,1,'2017-08-09 17:40:52','37.228.247.148'),(34,1,'2017-08-09 17:40:53','37.228.247.148'),(35,1,'2017-08-09 17:44:27','86.127.10.68'),(36,1,'2017-08-09 17:44:28','86.127.10.68'),(37,1,'2017-08-09 18:05:20','109.92.91.40'),(38,1,'2017-08-09 18:05:21','109.92.91.40'),(39,1,'2017-08-09 18:26:16','87.110.83.217'),(40,1,'2017-08-09 18:26:17','87.110.83.217'),(41,1,'2017-08-09 18:28:43','116.75.24.205'),(42,1,'2017-08-09 18:28:44','116.75.24.205'),(43,1,'2017-08-09 18:32:26','193.165.236.149'),(44,1,'2017-08-09 18:32:27','193.165.236.149'),(45,1,'2017-08-09 18:59:55','191.35.46.230'),(46,1,'2017-08-09 18:59:56','191.35.46.230'),(47,1,'2017-08-09 19:04:10','175.156.143.15'),(48,1,'2017-08-09 19:04:12','175.156.143.15'),(49,1,'2017-08-09 19:08:29','189.111.87.66'),(50,1,'2017-08-09 19:08:31','189.111.87.66'),(51,1,'2017-08-09 19:13:15','185.7.168.241'),(52,1,'2017-08-09 19:13:16','185.7.168.241'),(53,1,'2017-08-09 19:38:02','82.46.41.97'),(54,1,'2017-08-09 19:38:03','82.46.41.97'),(55,1,'2017-08-09 19:39:22','70.78.176.181'),(56,1,'2017-08-09 19:39:24','70.78.176.181'),(57,1,'2017-08-09 19:40:06','212.14.52.2'),(58,1,'2017-08-09 19:40:07','212.14.52.2'),(59,1,'2017-08-09 20:04:14','39.53.57.104'),(60,1,'2017-08-09 20:04:16','39.53.57.104'),(61,1,'2017-08-09 20:39:28','217.35.64.145'),(62,1,'2017-08-09 20:39:29','217.35.64.145'),(63,1,'2017-08-09 21:07:45','105.110.36.44'),(64,1,'2017-08-09 21:07:47','105.110.36.44'),(65,1,'2017-08-09 21:17:28','94.96.64.201'),(66,1,'2017-08-09 21:17:29','94.96.64.201'),(67,1,'2017-08-09 21:21:35','94.154.56.216'),(68,1,'2017-08-09 21:21:36','94.154.56.216'),(69,1,'2017-08-09 21:27:08','178.222.193.241'),(70,1,'2017-08-09 21:27:09','178.222.193.241'),(71,1,'2017-08-09 21:29:49','86.66.159.230'),(72,1,'2017-08-09 21:29:50','86.66.159.230'),(73,1,'2017-08-09 21:48:26','85.72.165.97'),(74,1,'2017-08-09 21:48:27','85.72.165.97'),(75,1,'2017-08-09 21:49:08','188.25.223.10'),(76,1,'2017-08-09 21:49:09','188.25.223.10'),(77,1,'2017-08-09 21:49:30','103.50.107.66'),(78,1,'2017-08-09 21:49:33','103.50.107.66'),(79,1,'2017-08-09 22:13:31','73.120.24.189'),(80,1,'2017-08-09 22:13:33','73.120.24.189'),(81,1,'2017-08-09 22:29:47','84.56.42.7'),(82,1,'2017-08-09 22:29:48','84.56.42.7'),(83,1,'2017-08-09 22:33:44','78.85.182.99'),(84,1,'2017-08-09 22:33:45','78.85.182.99'),(85,1,'2017-08-09 22:58:52','41.68.158.121'),(86,1,'2017-08-09 22:58:54','41.68.158.121'),(87,1,'2017-08-09 23:04:44','50.70.238.180'),(88,1,'2017-08-09 23:04:45','50.70.238.180'),(89,1,'2017-08-09 23:42:22','177.53.65.254'),(90,1,'2017-08-09 23:42:24','177.53.65.254'),(91,1,'2017-08-09 23:56:23','46.116.75.181'),(92,1,'2017-08-09 23:56:24','46.116.75.181'),(93,1,'2017-08-10 00:00:11','80.182.1.218'),(94,1,'2017-08-10 00:00:12','80.182.1.218'),(95,1,'2017-08-10 00:23:06','62.210.172.88'),(96,1,'2017-08-10 00:24:00','62.210.172.88'),(97,1,'2017-08-10 00:24:51','62.210.172.88'),(98,1,'2017-08-10 00:26:05','180.253.89.25'),(99,1,'2017-08-10 00:26:07','180.253.89.25'),(100,1,'2017-08-10 00:47:28','124.188.130.133'),(101,1,'2017-08-10 00:47:29','124.188.130.133'),(102,1,'2017-08-10 01:19:01','109.122.76.160'),(103,1,'2017-08-10 01:19:02','109.122.76.160'),(104,1,'2017-08-10 01:23:07','130.105.204.106'),(105,1,'2017-08-10 01:23:08','130.105.204.106'),(106,1,'2017-08-10 01:25:08','62.210.172.88'),(107,1,'2017-08-10 01:26:04','62.210.172.88'),(108,1,'2017-08-10 01:27:04','62.210.172.88'),(109,1,'2017-08-10 01:45:30','182.65.103.235'),(110,1,'2017-08-10 01:45:31','182.65.103.235'),(111,1,'2017-08-10 01:49:40','201.18.18.173'),(112,1,'2017-08-10 01:49:42','201.18.18.173'),(113,1,'2017-08-10 01:49:45','201.18.18.173'),(114,1,'2017-08-10 02:37:34','176.240.42.71'),(115,1,'2017-08-10 02:37:35','176.240.42.71'),(116,1,'2017-08-10 02:50:43','186.52.136.118'),(117,1,'2017-08-10 02:50:45','186.52.136.118'),(118,1,'2017-08-10 02:56:49','179.216.46.228'),(119,1,'2017-08-10 02:56:51','179.216.46.228'),(120,1,'2017-08-10 02:57:31','179.53.110.255'),(121,1,'2017-08-10 02:57:41','179.53.110.255'),(122,1,'2017-08-10 03:10:22','67.215.34.210'),(123,1,'2017-08-10 03:10:24','67.215.34.210'),(124,1,'2017-08-10 03:23:55','176.52.33.92'),(125,1,'2017-08-10 03:23:56','176.52.33.92'),(126,1,'2017-08-10 03:38:57','93.121.133.53'),(127,1,'2017-08-10 03:38:58','93.121.133.53'),(128,1,'2017-08-10 04:24:39','187.189.217.36'),(129,1,'2017-08-10 04:24:40','187.189.217.36'),(130,1,'2017-08-10 06:03:00','176.222.39.160'),(131,1,'2017-08-10 06:03:01','176.222.39.160'),(132,1,'2017-08-10 06:13:34','31.130.35.165'),(133,1,'2017-08-10 06:13:35','31.130.35.165'),(134,1,'2017-08-10 06:21:31','124.253.92.227'),(135,1,'2017-08-10 06:21:33','124.253.92.227'),(136,1,'2017-08-10 06:28:11','145.236.216.111'),(137,1,'2017-08-10 06:28:12','145.236.216.111'),(138,1,'2017-08-10 06:36:28','39.33.144.93'),(139,1,'2017-08-10 06:36:30','39.33.144.93'),(140,1,'2017-08-10 06:56:19','112.211.30.20'),(141,1,'2017-08-10 06:56:21','112.211.30.20'),(142,1,'2017-08-10 06:58:44','59.89.80.86'),(143,1,'2017-08-10 06:58:46','59.89.80.86'),(144,1,'2017-08-10 07:31:05','122.176.161.180'),(145,1,'2017-08-10 07:31:09','122.162.160.55'),(146,1,'2017-08-10 07:32:00','139.190.254.201'),(147,1,'2017-08-10 07:32:02','139.190.254.201'),(148,1,'2017-08-10 07:48:18','125.166.219.13'),(149,1,'2017-08-10 07:48:20','125.166.219.13'),(150,1,'2017-08-10 08:20:40','131.161.176.4'),(151,1,'2017-08-10 08:20:42','131.161.176.4'),(152,1,'2017-08-10 08:32:51','151.250.114.89'),(153,1,'2017-08-10 08:32:52','151.250.114.89'),(154,1,'2017-08-10 08:35:53','105.48.11.102'),(155,1,'2017-08-10 08:35:55','105.48.11.102'),(156,1,'2017-08-10 08:46:11','213.215.80.115'),(157,1,'2017-08-10 08:46:12','213.215.80.115'),(158,1,'2017-08-10 08:47:40','121.214.75.71'),(159,1,'2017-08-10 08:47:42','121.214.75.71'),(160,1,'2017-08-10 08:51:21','101.63.105.173'),(161,1,'2017-08-10 08:51:24','101.63.105.173'),(162,1,'2017-08-10 08:56:33','134.35.185.121'),(163,1,'2017-08-10 08:56:34','134.35.185.121'),(164,1,'2017-08-10 08:59:34','190.237.35.222'),(165,1,'2017-08-10 08:59:35','190.237.35.222'),(166,1,'2017-08-10 09:14:34','111.94.177.189'),(167,1,'2017-08-10 09:14:36','111.94.177.189'),(168,1,'2017-08-10 09:36:20','213.17.85.202'),(169,1,'2017-08-10 09:36:21','213.17.85.202'),(170,1,'2017-08-10 09:39:46','2.86.137.71'),(171,1,'2017-08-10 09:39:47','2.86.137.71'),(172,1,'2017-08-10 10:01:04','84.81.117.27'),(173,1,'2017-08-10 10:01:05','84.81.117.27'),(174,1,'2017-08-10 10:03:07','123.0.16.10'),(175,1,'2017-08-10 10:03:10','123.0.16.10'),(176,1,'2017-08-10 10:14:04','91.75.29.6'),(177,1,'2017-08-10 10:14:05','91.75.29.6'),(178,1,'2017-08-10 10:42:45','180.247.89.15'),(179,1,'2017-08-10 10:42:46','180.247.89.15'),(180,1,'2017-08-10 11:10:16','47.11.198.140'),(181,1,'2017-08-10 11:10:18','47.11.198.140'),(182,1,'2017-08-10 11:10:50','175.138.150.197'),(183,1,'2017-08-10 11:10:51','175.138.150.197'),(184,1,'2017-08-10 11:11:58','109.175.103.84'),(185,1,'2017-08-10 11:11:59','109.175.97.148'),(186,1,'2017-08-10 11:19:38','187.60.243.234'),(187,1,'2017-08-10 11:19:40','187.60.243.234'),(188,1,'2017-08-10 11:59:40','112.211.71.1'),(189,1,'2017-08-10 11:59:42','112.211.71.1'),(190,1,'2017-08-10 12:18:01','103.36.122.220'),(191,1,'2017-08-10 12:18:03','103.36.122.220'),(192,1,'2017-08-10 12:22:37','41.202.219.74'),(193,1,'2017-08-10 12:22:39','41.202.219.74'),(194,1,'2017-08-10 12:40:50','210.186.54.205'),(195,1,'2017-08-10 12:40:53','210.186.54.205'),(196,1,'2017-08-10 12:48:20','189.85.156.249'),(197,1,'2017-08-10 12:48:22','189.85.156.249'),(198,1,'2017-08-10 13:26:31','125.160.215.141'),(199,1,'2017-08-10 13:26:33','125.160.215.141'),(200,1,'2017-08-10 13:28:18','24.21.192.221'),(201,1,'2017-08-10 13:28:19','24.21.192.221'),(202,1,'2017-08-10 13:29:12','41.239.92.130'),(203,1,'2017-08-10 13:29:13','41.239.92.130'),(204,1,'2017-08-10 13:36:00','78.15.147.57'),(205,1,'2017-08-10 13:36:01','78.15.147.57'),(206,1,'2017-08-10 13:38:56','223.186.162.103'),(207,1,'2017-08-10 13:38:58','223.186.162.103'),(208,1,'2017-08-10 13:45:11','5.178.139.145'),(209,1,'2017-08-10 13:45:12','5.178.139.145'),(210,1,'2017-08-10 13:55:14','122.3.229.71'),(211,1,'2017-08-10 13:55:16','122.3.229.71'),(212,1,'2017-08-10 14:16:51','130.105.204.15'),(213,1,'2017-08-10 14:16:53','130.105.204.15'),(214,1,'2017-08-10 14:18:37','191.243.232.230'),(215,1,'2017-08-10 14:18:39','191.243.232.230'),(216,1,'2017-08-10 14:50:47','93.150.242.122'),(217,1,'2017-08-10 14:50:48','93.150.242.122'),(218,1,'2017-08-10 15:09:30','27.4.55.173'),(219,1,'2017-08-10 15:09:31','27.4.55.173'),(220,1,'2017-08-10 15:20:25','182.176.160.39'),(221,1,'2017-08-10 15:20:27','182.176.160.39'),(222,1,'2017-08-10 15:54:14','220.240.65.60'),(223,1,'2017-08-10 15:54:15','220.240.65.60'),(224,1,'2017-08-10 16:23:57','208.70.95.141'),(225,1,'2017-08-10 16:23:59','208.70.95.141'),(226,1,'2017-08-10 16:30:49','5.48.126.80'),(227,1,'2017-08-10 16:30:50','5.48.126.80'),(228,1,'2017-08-10 16:42:09','122.57.17.186'),(229,1,'2017-08-10 16:42:11','122.57.17.186'),(230,1,'2017-08-10 16:44:33','188.192.223.155'),(231,1,'2017-08-10 16:44:35','188.192.223.155'),(232,1,'2017-08-10 16:53:54','49.228.94.104'),(233,1,'2017-08-10 16:53:56','49.228.94.104'),(234,1,'2017-08-10 16:58:50','139.5.240.219'),(235,1,'2017-08-10 16:58:51','139.5.240.219'),(236,1,'2017-08-10 17:05:41','125.99.76.46'),(237,1,'2017-08-10 17:05:42','125.99.76.46'),(238,1,'2017-08-10 17:17:46','105.100.59.54'),(239,1,'2017-08-10 17:17:47','105.100.59.54'),(240,1,'2017-08-10 17:48:47','86.45.24.91'),(241,1,'2017-08-10 17:48:48','86.45.24.91'),(242,1,'2017-08-10 18:07:47','82.8.220.63'),(243,1,'2017-08-10 18:07:48','82.8.220.63'),(244,1,'2017-08-10 18:27:58','176.233.103.25'),(245,1,'2017-08-10 18:27:59','176.233.103.25'),(246,1,'2017-08-10 18:52:35','39.43.250.1'),(247,1,'2017-08-10 18:52:37','39.43.250.1'),(248,1,'2017-08-10 19:02:28','95.251.113.189'),(249,1,'2017-08-10 19:02:29','95.251.113.189'),(250,1,'2017-08-10 19:11:20','191.32.229.92'),(251,1,'2017-08-10 19:11:22','191.32.229.92'),(252,1,'2017-08-10 19:34:48','177.189.16.10'),(253,1,'2017-08-10 19:34:49','177.189.16.10'),(254,1,'2017-08-10 19:39:00','39.40.121.116'),(255,1,'2017-08-10 19:39:01','39.40.121.116'),(256,1,'2017-08-10 19:40:01','71.93.230.185'),(257,1,'2017-08-10 19:40:02','71.93.230.185'),(258,1,'2017-08-10 20:21:26','113.11.102.4'),(259,1,'2017-08-10 20:21:28','113.11.102.4'),(260,1,'2017-08-10 20:44:30','73.44.192.161'),(261,1,'2017-08-10 20:44:31','73.44.192.161'),(262,1,'2017-08-10 20:46:56','89.201.210.249'),(263,1,'2017-08-10 20:46:57','89.201.210.249'),(264,1,'2017-08-10 21:05:39','197.2.106.215'),(265,1,'2017-08-10 21:05:40','197.2.106.215'),(266,1,'2017-08-10 21:11:18','187.190.38.164'),(267,1,'2017-08-10 21:11:20','187.190.38.164'),(268,1,'2017-08-10 21:18:39','109.101.203.113'),(269,1,'2017-08-10 21:18:40','109.101.203.113'),(270,1,'2017-08-10 22:07:20','189.71.216.255'),(271,1,'2017-08-10 22:07:22','189.71.216.255'),(272,1,'2017-08-10 22:28:47','73.70.34.254'),(273,1,'2017-08-10 22:28:48','73.70.34.254'),(274,1,'2017-08-10 22:45:14','201.172.96.243'),(275,1,'2017-08-10 22:45:15','201.172.96.243'),(276,1,'2017-08-10 22:54:22','186.179.154.165'),(277,1,'2017-08-10 22:54:23','186.179.154.165'),(278,1,'2017-08-10 22:55:53','181.1.54.16'),(279,1,'2017-08-10 22:55:55','181.1.54.16'),(280,1,'2017-08-10 23:25:46','200.54.114.2'),(281,1,'2017-08-10 23:25:47','200.54.114.2'),(282,1,'2017-08-10 23:45:30','179.97.40.6'),(283,1,'2017-08-10 23:45:31','179.97.40.6'),(284,1,'2017-08-11 00:00:44','191.34.212.97'),(285,1,'2017-08-11 00:00:46','191.34.212.97'),(286,1,'2017-08-11 00:39:49','41.96.91.209'),(287,1,'2017-08-11 00:39:51','41.96.91.209'),(288,1,'2017-08-11 00:48:04','95.168.149.53'),(289,1,'2017-08-11 00:48:05','95.168.149.53'),(290,1,'2017-08-11 00:50:34','150.165.203.54'),(291,1,'2017-08-11 00:50:35','150.165.203.54'),(292,1,'2017-08-11 01:23:28','105.107.30.160'),(293,1,'2017-08-11 01:23:41','105.107.30.160'),(294,1,'2017-08-11 01:56:36','124.83.21.93'),(295,1,'2017-08-11 01:56:38','124.83.21.93'),(296,1,'2017-08-11 02:03:33','202.105.104.116'),(297,1,'2017-08-11 02:03:35','202.105.104.116'),(298,1,'2017-08-11 02:08:59','82.120.151.21'),(299,1,'2017-08-11 02:09:00','82.120.151.21'),(300,1,'2017-08-11 02:11:45','78.184.127.153'),(301,1,'2017-08-11 02:11:46','78.184.127.153'),(302,1,'2017-08-11 03:13:13','177.4.93.96'),(303,1,'2017-08-11 03:13:16','177.4.93.96'),(304,1,'2017-08-11 04:57:11','112.134.3.172'),(305,1,'2017-08-11 04:57:13','112.134.3.172'),(306,1,'2017-08-11 05:01:11','124.215.34.71'),(307,1,'2017-08-11 05:01:13','124.215.34.71'),(308,1,'2017-08-11 05:32:36','103.240.169.166'),(309,1,'2017-08-11 05:32:38','103.240.169.166'),(310,1,'2017-08-11 05:55:45','124.106.198.109'),(311,1,'2017-08-11 05:55:47','124.106.198.109'),(312,1,'2017-08-11 05:59:22','201.2.19.194'),(313,1,'2017-08-11 05:59:23','201.2.19.194'),(314,1,'2017-08-11 06:15:06','27.59.101.6'),(315,1,'2017-08-11 06:15:08','27.59.101.6'),(316,1,'2017-08-11 06:21:07','103.204.244.22'),(317,1,'2017-08-11 06:21:08','103.204.244.22'),(318,1,'2017-08-11 06:43:03','84.24.173.232'),(319,1,'2017-08-11 06:43:05','84.24.173.232'),(320,1,'2017-08-11 07:00:12','59.96.191.147'),(321,1,'2017-08-11 07:00:13','59.96.191.147'),(322,1,'2017-08-11 07:02:19','36.255.85.209'),(323,1,'2017-08-11 07:02:21','36.255.85.209'),(324,1,'2017-08-11 07:06:23','41.82.34.64'),(325,1,'2017-08-11 07:06:34','41.82.34.64'),(326,1,'2017-08-11 07:12:17','124.105.47.21'),(327,1,'2017-08-11 07:12:20','124.105.47.21'),(328,1,'2017-08-11 07:53:47','218.248.44.130'),(329,1,'2017-08-11 07:53:49','182.71.125.194'),(330,1,'2017-08-11 08:27:06','45.120.114.162'),(331,1,'2017-08-11 08:27:10','45.120.114.162'),(332,1,'2017-08-11 08:55:44','103.90.13.156'),(333,1,'2017-08-11 08:55:47','103.90.13.156'),(334,1,'2017-08-11 09:00:38','123.231.124.53'),(335,1,'2017-08-11 09:00:40','123.231.124.53'),(336,1,'2017-08-11 09:01:29','49.149.117.92'),(337,1,'2017-08-11 09:01:31','49.149.117.92'),(338,1,'2017-08-11 09:07:52','67.235.162.77'),(339,1,'2017-08-11 09:07:54','67.235.162.77'),(340,1,'2017-08-11 09:31:56','196.75.19.127'),(341,1,'2017-08-11 09:31:57','196.75.19.127'),(342,1,'2017-08-11 09:38:28','115.134.157.47'),(343,1,'2017-08-11 09:38:29','115.134.157.47'),(344,1,'2017-08-11 10:25:37','122.161.246.14'),(345,1,'2017-08-11 10:25:39','122.161.246.14'),(346,1,'2017-08-11 10:38:11','150.129.29.228'),(347,1,'2017-08-11 10:38:13','150.129.29.228'),(348,1,'2017-08-11 10:57:51','103.231.161.154'),(349,1,'2017-08-11 10:57:54','103.231.161.154'),(350,1,'2017-08-11 11:04:41','93.159.169.88'),(351,1,'2017-08-11 11:04:42','93.159.169.88'),(352,1,'2017-08-11 11:09:58','120.29.118.233'),(353,1,'2017-08-11 11:10:00','120.29.118.233'),(354,1,'2017-08-11 11:18:16','103.30.151.117'),(355,1,'2017-08-11 11:19:59','103.30.142.162'),(356,1,'2017-08-11 11:20:01','103.30.142.162'),(357,1,'2017-08-11 11:32:32','93.136.112.101'),(358,1,'2017-08-11 11:32:33','93.136.112.101'),(359,1,'2017-08-11 11:40:17','202.80.218.68'),(360,1,'2017-08-11 11:40:18','202.80.218.68'),(361,1,'2017-08-11 11:46:32','189.13.140.230'),(362,1,'2017-08-11 11:46:33','189.13.140.230'),(363,1,'2017-08-11 11:47:56','99.233.56.243'),(364,1,'2017-08-11 11:47:57','99.233.56.243'),(365,1,'2017-08-11 11:48:44','112.134.69.40'),(366,1,'2017-08-11 11:48:45','112.134.69.40'),(367,1,'2017-08-11 11:56:22','126.124.59.254'),(368,1,'2017-08-11 11:56:27','126.124.59.254'),(369,1,'2017-08-11 12:03:19','119.157.60.19'),(370,1,'2017-08-11 12:03:21','119.157.60.19'),(371,1,'2017-08-11 12:15:27','175.141.64.61'),(372,1,'2017-08-11 12:15:29','175.141.64.61'),(373,1,'2017-08-11 12:15:41','103.70.162.30'),(374,1,'2017-08-11 12:15:42','103.70.162.30'),(375,1,'2017-08-11 12:22:22','90.88.81.84'),(376,1,'2017-08-11 12:22:45','90.88.81.84'),(377,1,'2017-08-11 13:05:23','37.19.108.0'),(378,1,'2017-08-11 13:05:24','37.19.108.0'),(379,1,'2017-08-11 13:10:06','178.149.66.63'),(380,1,'2017-08-11 13:10:07','178.149.66.63'),(381,1,'2017-08-11 13:20:46','84.149.114.78'),(382,1,'2017-08-11 13:20:47','84.149.114.78'),(383,1,'2017-08-11 13:35:34','124.6.235.226'),(384,1,'2017-08-11 13:35:36','124.6.235.226'),(385,1,'2017-08-11 13:50:09','77.28.242.89'),(386,1,'2017-08-11 13:50:11','77.28.242.89'),(387,1,'2017-08-11 14:10:55','188.49.198.42'),(388,1,'2017-08-11 14:10:56','188.49.198.42'),(389,1,'2017-08-11 14:13:24','94.98.194.144'),(390,1,'2017-08-11 14:13:25','94.98.194.144'),(391,1,'2017-08-11 14:34:57','39.49.171.109'),(392,1,'2017-08-11 14:34:59','39.49.171.109'),(393,1,'2017-08-11 14:37:12','81.66.91.65'),(394,1,'2017-08-11 14:37:13','81.66.91.65'),(395,1,'2017-08-11 14:52:18','182.180.124.193'),(396,1,'2017-08-11 14:52:19','182.180.124.193'),(397,1,'2017-08-11 15:10:44','203.175.70.161'),(398,1,'2017-08-11 15:10:46','203.175.70.161'),(399,1,'2017-08-11 16:34:17','103.221.211.17'),(400,1,'2017-08-11 16:34:19','103.221.211.17'),(401,1,'2017-08-11 16:49:14','177.16.129.37'),(402,1,'2017-08-11 16:49:18','177.16.129.37'),(403,1,'2017-08-11 16:57:22','79.182.123.177'),(404,1,'2017-08-11 16:57:23','79.182.123.177'),(405,1,'2017-08-11 17:11:04','177.125.215.202'),(406,1,'2017-08-11 17:11:06','177.125.215.202'),(407,1,'2017-08-11 17:18:42','175.144.127.40'),(408,1,'2017-08-11 17:18:44','175.144.127.40'),(409,1,'2017-08-11 17:24:53','167.58.49.55'),(410,1,'2017-08-11 17:24:54','167.58.49.55'),(411,1,'2017-08-11 17:53:08','177.13.81.87'),(412,1,'2017-08-11 17:53:10','177.13.81.87'),(413,1,'2017-08-11 18:14:21','86.89.115.61'),(414,1,'2017-08-11 18:14:21','86.89.115.61'),(415,1,'2017-08-11 18:28:35','186.129.222.103'),(416,1,'2017-08-11 18:28:37','186.129.222.103'),(417,1,'2017-08-11 18:39:14','5.197.20.172'),(418,1,'2017-08-11 18:39:42','5.197.20.172'),(419,1,'2017-08-11 19:02:33','106.216.172.37'),(420,1,'2017-08-11 19:02:34','106.216.172.37'),(421,1,'2017-08-11 19:09:20','104.176.246.71'),(422,1,'2017-08-11 19:09:21','104.176.246.71'),(423,1,'2017-08-11 19:18:08','187.180.213.5'),(424,1,'2017-08-11 19:18:10','187.180.213.5'),(425,1,'2017-08-11 19:19:37','88.225.252.159'),(426,1,'2017-08-11 19:19:39','88.225.252.159'),(427,1,'2017-08-11 19:28:40','86.92.11.176'),(428,1,'2017-08-11 19:28:41','86.92.11.176'),(429,1,'2017-08-11 19:36:26','79.55.165.91'),(430,1,'2017-08-11 19:36:27','79.55.165.91'),(431,1,'2017-08-11 19:54:13','77.138.151.122'),(432,1,'2017-08-11 19:54:14','77.138.151.122'),(433,1,'2017-08-11 20:13:07','202.142.162.158'),(434,1,'2017-08-11 20:13:08','202.142.162.158'),(435,1,'2017-08-11 20:50:50','79.118.55.52'),(436,1,'2017-08-11 20:50:51','79.118.55.52'),(437,1,'2017-08-11 20:54:05','24.232.193.19'),(438,1,'2017-08-11 20:54:07','24.232.193.19'),(439,1,'2017-08-11 20:56:40','111.125.109.177'),(440,1,'2017-08-11 20:56:47','111.125.109.177'),(441,1,'2017-08-11 20:57:32','111.125.109.177'),(442,1,'2017-08-11 21:04:23','60.243.111.17'),(443,1,'2017-08-11 21:04:24','60.243.111.17'),(444,1,'2017-08-11 21:15:45','92.98.50.237'),(445,1,'2017-08-11 21:15:46','92.98.50.237'),(446,1,'2017-08-11 21:33:11','62.57.65.186'),(447,1,'2017-08-11 21:33:12','62.57.65.186'),(448,1,'2017-08-11 21:41:28','81.225.72.165'),(449,1,'2017-08-11 21:41:29','81.225.72.165'),(450,1,'2017-08-11 21:53:49','192.222.170.179'),(451,1,'2017-08-11 21:53:50','192.222.170.179'),(452,1,'2017-08-11 22:09:42','82.15.121.83'),(453,1,'2017-08-11 22:09:43','82.15.121.83'),(454,1,'2017-08-11 22:09:59','73.110.38.26'),(455,1,'2017-08-11 22:10:00','73.110.38.26'),(456,1,'2017-08-11 22:26:03','84.126.33.109'),(457,1,'2017-08-11 22:26:04','84.126.33.109'),(458,1,'2017-08-11 23:04:24','105.112.23.32'),(459,1,'2017-08-11 23:04:25','105.112.23.32'),(460,1,'2017-08-12 00:52:04','92.131.145.167'),(461,1,'2017-08-12 00:52:05','92.131.145.167'),(462,1,'2017-08-12 02:38:17','189.217.18.145'),(463,1,'2017-08-12 02:38:18','189.217.18.145'),(464,1,'2017-08-12 03:22:58','119.195.122.140'),(465,1,'2017-08-12 03:22:59','119.195.122.140'),(466,1,'2017-08-12 03:29:46','27.89.84.179'),(467,1,'2017-08-12 03:29:48','27.89.84.179'),(468,1,'2017-08-12 03:54:11','109.50.218.201'),(469,1,'2017-08-12 03:54:11','109.50.218.201'),(470,1,'2017-08-12 04:13:43','112.134.3.200'),(471,1,'2017-08-12 04:13:45','112.134.3.200'),(472,1,'2017-08-12 04:32:38','201.29.212.251'),(473,1,'2017-08-12 04:33:22','201.29.212.251'),(474,1,'2017-08-12 04:40:37','110.136.108.17'),(475,1,'2017-08-12 04:40:39','110.136.108.17'),(476,1,'2017-08-12 04:42:46','117.96.0.169'),(477,1,'2017-08-12 04:42:48','117.96.0.169'),(478,1,'2017-08-12 05:41:47','61.6.15.192'),(479,1,'2017-08-12 05:41:49','61.6.15.192'),(480,1,'2017-08-12 05:47:14','175.138.252.126'),(481,1,'2017-08-12 05:47:16','175.138.252.126'),(482,1,'2017-08-12 06:04:49','71.75.52.160'),(483,1,'2017-08-12 06:04:50','71.75.52.160'),(484,1,'2017-08-12 06:06:11','110.54.230.15'),(485,1,'2017-08-12 06:06:18','110.54.230.15'),(486,1,'2017-08-12 06:14:33','103.235.3.246'),(487,1,'2017-08-12 06:14:34','103.235.3.246'),(488,1,'2017-08-12 06:22:55','117.194.169.222'),(489,1,'2017-08-12 06:23:03','117.194.169.222'),(490,1,'2017-08-12 07:06:17','97.94.79.56'),(491,1,'2017-08-12 07:06:19','97.94.79.56'),(492,1,'2017-08-12 07:21:22','122.3.152.80'),(493,1,'2017-08-12 07:21:23','122.3.152.80'),(494,1,'2017-08-12 07:29:34','181.28.159.197'),(495,1,'2017-08-12 07:43:45','103.209.20.254'),(496,1,'2017-08-12 07:43:48','103.209.20.254'),(497,1,'2017-08-12 07:46:40','121.96.53.146'),(498,1,'2017-08-12 07:46:42','121.96.53.146'),(499,1,'2017-08-12 07:48:18','220.179.250.175'),(500,1,'2017-08-12 07:48:19','220.179.250.175'),(501,1,'2017-08-12 07:48:20','220.179.250.175'),(502,1,'2017-08-12 07:49:28','202.103.21.51'),(503,1,'2017-08-12 07:49:31','202.103.21.51'),(504,1,'2017-08-12 07:49:32','202.103.21.51'),(505,1,'2017-08-12 07:50:59','61.143.130.162'),(506,1,'2017-08-12 07:51:00','61.143.130.162'),(507,1,'2017-08-12 07:51:02','61.143.130.162'),(508,1,'2017-08-12 07:51:34','171.34.40.5'),(509,1,'2017-08-12 07:51:35','171.34.40.5'),(510,1,'2017-08-12 07:51:36','171.34.40.5'),(511,1,'2017-08-12 07:53:47','1.85.57.94'),(512,1,'2017-08-12 07:53:49','1.85.57.94'),(513,1,'2017-08-12 07:53:51','1.85.57.94'),(514,1,'2017-08-12 08:04:52','103.22.172.131'),(515,1,'2017-08-12 08:04:54','103.22.172.131'),(516,1,'2017-08-12 08:48:19','103.94.216.11'),(517,1,'2017-08-12 08:48:20','103.94.216.11'),(518,1,'2017-08-12 08:54:06','90.178.158.106'),(519,1,'2017-08-12 08:54:07','90.178.158.106'),(520,1,'2017-08-12 08:58:26','134.19.230.227'),(521,1,'2017-08-12 08:58:51','206.214.15.167'),(522,1,'2017-08-12 08:59:25','87.3.145.134'),(523,1,'2017-08-12 08:59:26','87.3.145.134'),(524,1,'2017-08-12 09:00:51','196.249.96.174'),(525,1,'2017-08-12 09:00:55','196.249.96.174'),(526,1,'2017-08-12 09:02:45','197.45.161.243'),(527,1,'2017-08-12 09:05:00','115.87.121.195'),(528,1,'2017-08-12 09:05:02','115.87.121.195'),(529,1,'2017-08-12 09:15:18','182.185.71.187'),(530,1,'2017-08-12 09:15:20','182.185.71.187'),(531,1,'2017-08-12 09:15:43','194.219.106.199'),(532,1,'2017-08-12 09:15:44','194.219.106.199'),(533,1,'2017-08-12 09:58:08','209.150.146.34'),(534,1,'2017-08-12 09:58:11','209.150.146.34'),(535,1,'2017-08-12 10:01:06','112.201.250.144'),(536,1,'2017-08-12 10:01:08','112.201.250.144'),(537,1,'2017-08-12 11:06:58','112.134.2.217'),(538,1,'2017-08-12 11:07:00','112.134.2.217'),(539,1,'2017-08-12 11:33:11','105.110.243.146'),(540,1,'2017-08-12 11:33:12','105.110.243.146'),(541,1,'2017-08-12 11:41:56','154.116.68.223'),(542,1,'2017-08-12 11:41:57','154.116.68.223'),(543,1,'2017-08-12 11:43:53','89.142.159.119'),(544,1,'2017-08-12 11:43:54','89.142.159.119'),(545,1,'2017-08-12 11:57:11','183.82.184.50'),(546,1,'2017-08-12 11:57:12','183.82.184.50'),(547,1,'2017-08-12 12:07:40','82.52.178.212'),(548,1,'2017-08-12 12:07:42','82.52.178.212'),(549,1,'2017-08-12 12:25:39','213.132.37.34'),(550,1,'2017-08-12 12:25:47','213.132.37.34'),(551,1,'2017-08-12 12:31:25','43.251.172.91'),(552,1,'2017-08-12 12:31:27','43.251.172.91'),(553,1,'2017-08-12 12:50:49','95.65.214.138'),(554,1,'2017-08-12 12:50:50','95.65.214.138'),(555,1,'2017-08-12 12:51:29','1.243.214.98'),(556,1,'2017-08-12 12:51:31','1.243.214.98'),(557,1,'2017-08-12 13:21:49','82.73.115.150'),(558,1,'2017-08-12 13:21:49','82.73.115.150'),(559,1,'2017-08-12 13:27:10','79.35.95.52'),(560,1,'2017-08-12 13:27:11','79.35.95.52'),(561,1,'2017-08-12 13:28:16','201.43.160.4'),(562,1,'2017-08-12 13:28:18','201.43.160.4'),(563,1,'2017-08-12 13:31:18','79.20.196.175'),(564,1,'2017-08-12 13:31:19','79.20.196.175'),(565,1,'2017-08-12 13:57:02','87.70.132.224'),(566,1,'2017-08-12 13:57:03','87.70.132.224'),(567,1,'2017-08-12 14:20:03','113.21.73.113'),(568,1,'2017-08-12 14:20:04','113.21.73.113'),(569,1,'2017-08-12 14:51:53','109.64.87.232'),(570,1,'2017-08-12 14:51:54','109.64.87.232'),(571,1,'2017-08-12 15:06:38','81.98.6.222'),(572,1,'2017-08-12 15:06:39','81.98.6.222'),(573,1,'2017-08-12 15:28:12','37.228.243.208'),(574,1,'2017-08-12 15:28:13','37.228.243.208'),(575,1,'2017-08-12 15:52:54','190.96.5.162'),(576,1,'2017-08-12 15:52:56','190.96.5.162'),(577,1,'2017-08-12 16:20:08','113.213.222.75'),(578,1,'2017-08-12 16:20:10','113.213.222.75'),(579,1,'2017-08-12 16:26:28','183.82.255.109'),(580,1,'2017-08-12 16:26:29','183.82.255.109'),(581,1,'2017-08-12 16:33:26','156.213.65.117'),(582,1,'2017-08-12 16:33:27','156.213.65.117'),(583,1,'2017-08-12 16:37:49','80.137.187.1'),(584,1,'2017-08-12 16:37:50','80.137.187.1'),(585,1,'2017-08-12 16:48:46','126.209.214.80'),(586,1,'2017-08-12 16:48:48','126.209.214.80'),(587,1,'2017-08-12 17:03:42','191.184.108.19'),(588,1,'2017-08-12 17:03:44','191.184.108.19'),(589,1,'2017-08-12 17:18:38','190.94.123.151'),(590,1,'2017-08-12 17:18:39','190.94.123.151'),(591,1,'2017-08-12 17:19:20','122.15.163.66'),(592,1,'2017-08-12 17:19:22','122.15.163.66'),(593,1,'2017-08-12 17:19:58','187.41.190.234'),(594,1,'2017-08-12 17:20:04','187.41.190.234'),(595,1,'2017-08-12 17:31:02','14.192.209.168'),(596,1,'2017-08-12 17:31:04','14.192.209.168'),(597,1,'2017-08-12 18:42:03','115.93.0.46'),(598,1,'2017-08-12 18:42:05','115.93.0.46'),(599,1,'2017-08-12 18:54:46','105.158.240.137'),(600,1,'2017-08-12 18:54:47','105.158.240.137'),(601,1,'2017-08-12 18:57:38','192.140.118.2'),(602,1,'2017-08-12 18:57:41','192.140.118.2'),(603,1,'2017-08-12 19:49:15','37.142.95.152'),(604,1,'2017-08-12 19:49:16','37.142.95.152'),(605,1,'2017-08-12 19:58:10','111.88.103.86'),(606,1,'2017-08-12 19:58:17','111.88.103.86'),(607,1,'2017-08-12 21:18:04','201.21.163.70'),(608,1,'2017-08-12 21:18:06','201.21.163.70'),(609,1,'2017-08-12 21:29:50','92.221.4.97'),(610,1,'2017-08-12 21:29:51','92.221.4.97'),(611,1,'2017-08-12 21:35:29','103.30.95.14'),(612,1,'2017-08-12 21:35:33','103.30.95.14'),(613,1,'2017-08-12 21:38:56','190.5.48.223'),(614,1,'2017-08-12 21:38:58','190.5.48.223'),(615,1,'2017-08-12 22:18:22','77.139.208.5'),(616,1,'2017-08-12 22:18:23','77.139.208.5'),(617,1,'2017-08-12 22:28:35','24.132.36.57'),(618,1,'2017-08-12 22:28:36','24.132.36.57'),(619,1,'2017-08-12 22:30:47','148.255.200.242'),(620,1,'2017-08-12 22:30:48','148.255.200.242'),(621,1,'2017-08-12 22:48:47','99.35.171.142'),(622,1,'2017-08-12 22:48:48','99.35.171.142'),(623,1,'2017-08-12 23:16:19','41.250.7.101'),(624,1,'2017-08-12 23:16:20','41.250.7.101'),(625,1,'2017-08-12 23:27:59','89.242.49.33'),(626,1,'2017-08-12 23:27:59','89.242.49.33'),(627,1,'2017-08-13 00:19:13','105.4.194.89'),(628,1,'2017-08-13 00:19:15','105.4.194.89'),(629,1,'2017-08-13 00:19:54','129.208.167.14'),(630,1,'2017-08-13 00:19:55','129.208.167.14'),(631,1,'2017-08-13 00:29:39','175.158.225.52'),(632,1,'2017-08-13 00:29:42','175.158.225.52'),(633,1,'2017-08-13 00:32:51','117.227.3.88'),(634,1,'2017-08-13 00:32:53','117.227.3.88'),(635,1,'2017-08-13 00:36:17','103.255.5.89'),(636,1,'2017-08-13 00:36:20','103.255.5.89'),(637,1,'2017-08-13 00:37:06','73.97.241.169'),(638,1,'2017-08-13 00:37:08','73.97.241.169'),(639,1,'2017-08-13 01:09:14','31.36.105.48'),(640,1,'2017-08-13 01:09:15','31.36.105.48'),(641,1,'2017-08-13 02:23:24','65.26.238.85'),(642,1,'2017-08-13 02:23:26','65.26.238.85'),(643,1,'2017-08-13 02:47:42','103.205.69.52'),(644,1,'2017-08-13 02:47:43','103.205.69.52'),(645,1,'2017-08-13 03:08:58','122.56.208.143'),(646,1,'2017-08-13 03:09:00','122.56.208.143'),(647,1,'2017-08-13 03:14:39','58.187.79.173'),(648,1,'2017-08-13 03:14:41','58.187.79.173'),(649,1,'2017-08-13 03:47:21','196.75.78.97'),(650,1,'2017-08-13 03:47:22','196.75.78.97'),(651,1,'2017-08-13 04:07:11','36.68.148.158'),(652,1,'2017-08-13 04:07:12','36.68.148.158'),(653,1,'2017-08-13 04:09:48','99.247.215.10'),(654,1,'2017-08-13 04:09:49','99.247.215.10'),(655,1,'2017-08-13 04:30:54','114.124.148.187'),(656,1,'2017-08-13 04:30:56','114.124.148.187'),(657,1,'2017-08-13 04:54:07','154.65.34.207'),(658,1,'2017-08-13 04:54:08','154.65.34.207'),(659,1,'2017-08-13 05:02:21','62.121.127.232'),(660,1,'2017-08-13 05:02:22','62.121.127.232'),(661,1,'2017-08-13 05:04:37','70.73.196.10'),(662,1,'2017-08-13 05:04:38','70.73.196.10'),(663,1,'2017-08-13 05:30:49','122.177.235.121'),(664,1,'2017-08-13 05:30:50','122.177.235.121'),(665,1,'2017-08-13 06:10:08','5.21.253.93'),(666,1,'2017-08-13 06:10:10','5.21.253.93'),(667,1,'2017-08-13 07:14:36','103.193.199.38'),(668,1,'2017-08-13 07:14:39','103.193.199.38'),(669,1,'2017-08-13 07:19:29','106.173.193.185'),(670,1,'2017-08-13 07:19:31','106.173.193.185'),(671,1,'2017-08-13 08:51:59','144.136.76.251'),(672,1,'2017-08-13 08:52:00','144.136.76.251'),(673,1,'2017-08-13 09:16:53','72.27.130.231'),(674,1,'2017-08-13 09:16:54','72.27.130.231'),(675,1,'2017-08-13 09:20:10','197.156.65.50'),(676,1,'2017-08-13 09:20:11','197.156.65.50'),(677,1,'2017-08-13 09:35:21','85.106.97.172'),(678,1,'2017-08-13 09:35:23','85.106.97.172'),(679,1,'2017-08-13 10:19:35','109.177.191.8'),(680,1,'2017-08-13 10:19:37','109.177.191.8'),(681,1,'2017-08-13 10:31:43','62.166.47.220'),(682,1,'2017-08-13 10:31:44','62.166.47.220'),(683,1,'2017-08-13 10:35:19','220.237.0.252'),(684,1,'2017-08-13 10:35:21','220.237.0.252'),(685,1,'2017-08-13 10:57:57','51.36.233.26'),(686,1,'2017-08-13 10:57:58','51.36.233.26'),(687,1,'2017-08-13 12:04:12','111.125.110.185'),(688,1,'2017-08-13 12:04:14','111.125.110.185'),(689,1,'2017-08-13 12:05:31','103.255.6.68'),(690,1,'2017-08-13 12:05:33','103.255.6.68'),(691,1,'2017-08-13 12:19:17','133.137.7.217'),(692,1,'2017-08-13 12:19:20','133.137.7.217'),(693,1,'2017-08-13 12:36:30','49.228.253.170'),(694,1,'2017-08-13 12:36:32','49.228.253.170'),(695,1,'2017-08-13 12:40:33','91.83.58.130'),(696,1,'2017-08-13 12:40:34','91.83.58.130'),(697,1,'2017-08-13 12:50:27','46.169.166.27'),(698,1,'2017-08-13 12:50:28','46.169.166.27'),(699,1,'2017-08-13 12:54:17','60.227.224.182'),(700,1,'2017-08-13 12:54:18','60.227.224.182'),(701,1,'2017-08-13 13:17:43','124.83.24.197'),(702,1,'2017-08-13 13:17:45','124.83.24.197'),(703,1,'2017-08-13 13:35:15','151.74.184.56'),(704,1,'2017-08-13 13:35:16','151.74.184.56'),(705,1,'2017-08-13 13:53:21','124.13.188.56'),(706,1,'2017-08-13 13:53:23','124.13.188.56'),(707,1,'2017-08-13 13:58:20','154.68.5.53'),(708,1,'2017-08-13 13:58:22','39.48.51.198'),(709,1,'2017-08-13 13:58:22','154.68.5.53'),(710,1,'2017-08-13 13:58:23','39.48.51.198'),(711,1,'2017-08-13 14:17:18','93.138.60.48'),(712,1,'2017-08-13 14:17:19','93.138.60.48'),(713,1,'2017-08-13 14:22:46','5.21.252.91'),(714,1,'2017-08-13 14:22:48','5.21.252.91'),(715,1,'2017-08-13 14:47:55','103.215.226.149'),(716,1,'2017-08-13 14:47:56','103.215.226.149'),(717,1,'2017-08-13 15:12:53','176.167.9.158'),(718,1,'2017-08-13 15:12:54','176.167.9.158'),(719,1,'2017-08-13 15:15:21','1.224.107.54'),(720,1,'2017-08-13 15:15:22','1.224.107.54'),(721,1,'2017-08-13 15:16:53','211.33.65.212'),(722,1,'2017-08-13 15:16:55','211.33.65.212'),(723,1,'2017-08-13 15:23:29','79.230.163.192'),(724,1,'2017-08-13 15:23:32','79.230.163.192'),(725,1,'2017-08-13 15:33:45','5.14.51.196'),(726,1,'2017-08-13 15:33:45','5.14.51.196'),(727,1,'2017-08-13 15:49:18','95.208.250.178'),(728,1,'2017-08-13 15:49:18','95.208.250.178'),(729,1,'2017-08-13 16:02:53','171.48.23.66'),(730,1,'2017-08-13 16:02:55','171.48.23.66'),(731,1,'2017-08-13 16:08:46','61.3.117.226'),(732,1,'2017-08-13 16:08:47','61.3.117.226'),(733,1,'2017-08-13 16:14:07','82.249.139.187'),(734,1,'2017-08-13 16:14:08','82.249.139.187'),(735,1,'2017-08-13 16:15:54','94.60.169.28'),(736,1,'2017-08-13 16:15:55','94.60.169.28'),(737,1,'2017-08-13 16:25:53','46.39.249.141'),(738,1,'2017-08-13 16:25:54','46.39.249.141'),(739,1,'2017-08-13 16:36:12','110.44.121.12'),(740,1,'2017-08-13 16:36:15','110.44.121.12'),(741,1,'2017-08-13 16:58:11','1.32.76.171'),(742,1,'2017-08-13 16:58:12','1.32.76.171'),(743,1,'2017-08-13 17:11:48','27.4.48.85'),(744,1,'2017-08-13 17:11:49','27.4.48.85'),(745,1,'2017-08-13 17:22:30','43.247.156.166'),(746,1,'2017-08-13 17:22:32','43.247.156.166'),(747,1,'2017-08-13 17:33:32','61.1.70.194'),(748,1,'2017-08-13 17:33:34','61.1.70.194'),(749,1,'2017-08-13 17:37:02','109.79.235.116'),(750,1,'2017-08-13 17:37:03','109.79.235.116'),(751,1,'2017-08-13 17:55:51','27.109.115.74'),(752,1,'2017-08-13 17:55:53','27.109.115.74'),(753,1,'2017-08-13 18:23:07','39.46.71.250'),(754,1,'2017-08-13 18:23:09','39.46.71.250'),(755,1,'2017-08-13 18:24:22','117.246.148.251'),(756,1,'2017-08-13 18:24:28','117.246.148.251'),(757,1,'2017-08-13 18:27:04','27.62.228.225'),(758,1,'2017-08-13 18:53:41','49.207.96.30'),(759,1,'2017-08-13 18:53:43','49.207.96.30'),(760,1,'2017-08-13 18:57:34','185.31.33.45'),(761,1,'2017-08-13 18:57:36','185.31.33.45'),(762,1,'2017-08-13 19:30:25','123.201.91.253'),(763,1,'2017-08-13 19:30:26','123.201.91.253'),(764,1,'2017-08-13 19:32:59','176.117.80.107'),(765,1,'2017-08-13 19:33:00','176.117.80.107'),(766,1,'2017-08-13 19:34:54','82.10.36.64'),(767,1,'2017-08-13 19:34:55','82.10.36.64'),(768,1,'2017-08-13 19:45:36','175.110.83.86'),(769,1,'2017-08-13 19:45:37','175.110.83.86'),(770,1,'2017-08-13 20:09:40','197.218.82.104'),(771,1,'2017-08-13 20:09:42','197.218.82.104'),(772,1,'2017-08-13 20:13:51','47.8.13.52'),(773,1,'2017-08-13 20:13:53','47.8.13.52'),(774,1,'2017-08-13 20:14:08','212.126.113.184'),(775,1,'2017-08-13 20:14:09','212.126.113.184'),(776,1,'2017-08-13 20:21:23','103.239.169.94'),(777,1,'2017-08-13 20:21:24','103.239.169.94'),(778,1,'2017-08-13 20:21:51','75.132.202.110'),(779,1,'2017-08-13 20:21:52','75.132.202.110'),(780,1,'2017-08-13 20:23:29','188.25.46.149'),(781,1,'2017-08-13 20:23:30','188.25.46.149'),(782,1,'2017-08-13 20:32:54','141.226.178.230'),(783,1,'2017-08-13 20:32:55','141.226.178.230'),(784,1,'2017-08-13 20:34:06','43.227.135.230'),(785,1,'2017-08-13 20:34:08','43.227.135.230'),(786,1,'2017-08-13 20:47:34','177.155.75.249'),(787,1,'2017-08-13 20:47:41','177.155.75.249'),(788,1,'2017-08-13 20:59:13','91.237.27.153'),(789,1,'2017-08-13 20:59:14','91.237.27.153'),(790,1,'2017-08-13 21:08:20','80.246.140.136'),(791,1,'2017-08-13 21:08:22','80.246.140.136'),(792,1,'2017-08-13 21:56:37','105.105.165.8'),(793,1,'2017-08-13 21:56:38','105.105.165.8'),(794,1,'2017-08-13 22:00:21','73.207.6.95'),(795,1,'2017-08-13 22:00:23','73.207.6.95'),(796,1,'2017-08-13 22:09:40','117.222.157.138'),(797,1,'2017-08-13 22:45:28','5.46.107.109'),(798,1,'2017-08-13 22:45:29','5.46.107.109'),(799,1,'2017-08-13 22:47:09','190.107.235.22'),(800,1,'2017-08-13 22:47:12','190.107.235.22'),(801,1,'2017-08-13 22:49:39','109.12.215.148'),(802,1,'2017-08-13 22:49:40','109.12.215.148'),(803,1,'2017-08-13 23:00:35','109.62.107.83'),(804,1,'2017-08-13 23:00:36','109.62.107.83'),(805,1,'2017-08-13 23:14:19','115.79.25.54'),(806,1,'2017-08-13 23:14:20','115.79.25.54'),(807,1,'2017-08-13 23:39:28','103.204.244.6'),(808,1,'2017-08-13 23:39:28','103.204.244.6'),(809,1,'2017-08-13 23:49:05','49.151.1.27'),(810,1,'2017-08-13 23:49:08','49.151.1.27'),(811,1,'2017-08-14 00:28:57','138.99.49.162'),(812,1,'2017-08-14 00:28:59','138.99.49.162'),(813,1,'2017-08-14 00:53:14','82.114.78.75'),(814,1,'2017-08-14 00:53:15','82.114.78.75'),(815,1,'2017-08-14 01:26:17','62.33.120.56'),(816,1,'2017-08-14 01:26:18','62.33.120.56'),(817,1,'2017-08-14 01:36:04','120.62.14.72'),(818,1,'2017-08-14 01:36:08','120.62.14.72'),(819,1,'2017-08-14 01:42:01','122.55.111.2'),(820,1,'2017-08-14 01:42:03','122.55.111.2'),(821,1,'2017-08-14 01:49:25','31.46.208.27'),(822,1,'2017-08-14 01:49:26','31.46.208.27'),(823,1,'2017-08-14 02:06:03','151.41.57.4'),(824,1,'2017-08-14 02:06:04','151.41.57.4'),(825,1,'2017-08-14 02:08:43','88.17.95.80'),(826,1,'2017-08-14 02:08:43','88.17.95.80'),(827,1,'2017-08-14 02:27:47','185.46.78.25'),(828,1,'2017-08-14 02:27:48','185.46.78.25'),(829,1,'2017-08-14 03:13:51','151.49.187.137'),(830,1,'2017-08-14 03:13:53','151.49.187.137'),(831,1,'2017-08-14 03:30:10','121.157.172.95'),(832,1,'2017-08-14 03:30:11','121.157.172.95'),(833,1,'2017-08-14 03:52:18','118.100.224.11'),(834,1,'2017-08-14 03:52:20','118.100.224.11'),(835,1,'2017-08-14 04:38:40','103.242.219.115'),(836,1,'2017-08-14 04:38:41','103.242.219.115'),(837,1,'2017-08-14 04:39:18','112.210.67.95'),(838,1,'2017-08-14 04:39:21','112.210.67.95'),(839,1,'2017-08-14 04:53:36','78.73.87.170'),(840,1,'2017-08-14 04:53:37','78.73.87.170'),(841,1,'2017-08-14 04:58:51','202.88.250.87'),(842,1,'2017-08-14 04:58:55','202.88.250.87'),(843,1,'2017-08-14 05:04:14','92.57.146.151'),(844,1,'2017-08-14 05:04:15','92.57.146.151'),(845,1,'2017-08-14 06:11:12','118.100.164.4'),(846,1,'2017-08-14 06:11:13','118.100.164.4'),(847,1,'2017-08-14 06:11:33','121.186.119.5'),(848,1,'2017-08-14 06:11:34','121.186.119.5'),(849,1,'2017-08-14 06:15:45','70.49.199.10'),(850,1,'2017-08-14 06:15:46','70.49.199.10'),(851,1,'2017-08-14 06:17:01','182.234.204.185'),(852,1,'2017-08-14 06:17:03','182.234.204.185'),(853,1,'2017-08-14 06:22:53','60.135.160.251'),(854,1,'2017-08-14 06:22:55','60.135.160.251'),(855,1,'2017-08-14 06:36:57','103.227.99.107'),(856,1,'2017-08-14 06:36:59','103.227.99.107'),(857,1,'2017-08-14 06:37:38','37.231.164.245'),(858,1,'2017-08-14 06:37:39','37.231.164.245'),(859,1,'2017-08-14 07:06:52','181.67.2.76'),(860,1,'2017-08-14 07:06:54','181.67.2.76'),(861,1,'2017-08-14 07:09:50','78.100.192.88'),(862,1,'2017-08-14 07:09:52','78.100.192.88'),(863,1,'2017-08-14 07:36:52','120.62.9.58'),(864,1,'2017-08-14 07:36:53','120.62.9.58'),(865,1,'2017-08-14 07:40:32','176.88.37.130'),(866,1,'2017-08-14 07:40:33','176.88.37.130'),(867,1,'2017-08-14 07:44:28','49.15.48.26'),(868,1,'2017-08-14 07:44:30','49.15.48.26'),(869,1,'2017-08-14 07:47:23','79.106.27.196'),(870,1,'2017-08-14 07:47:24','79.106.27.196'),(871,1,'2017-08-14 07:53:51','110.44.125.10'),(872,1,'2017-08-14 07:53:53','110.44.125.10'),(873,1,'2017-08-14 08:06:40','94.189.250.62'),(874,1,'2017-08-14 08:06:41','94.189.250.62'),(875,1,'2017-08-14 08:06:48','112.205.57.81'),(876,1,'2017-08-14 08:06:50','112.205.57.81'),(877,1,'2017-08-14 09:06:43','210.186.232.217'),(878,1,'2017-08-14 09:06:45','210.186.232.217'),(879,1,'2017-08-14 09:35:44','154.70.48.39'),(880,1,'2017-08-14 09:35:45','154.70.48.39'),(881,1,'2017-08-14 09:54:14','95.253.250.141'),(882,1,'2017-08-14 09:54:15','95.253.250.141'),(883,1,'2017-08-14 09:55:11','111.91.4.60'),(884,1,'2017-08-14 09:55:12','111.91.4.60'),(885,1,'2017-08-14 10:18:58','182.64.126.95'),(886,1,'2017-08-14 10:19:00','182.64.126.95'),(887,1,'2017-08-14 10:24:51','202.9.41.183'),(888,1,'2017-08-14 10:24:52','202.9.41.183'),(889,1,'2017-08-14 10:48:49','41.227.40.106'),(890,1,'2017-08-14 10:48:50','41.227.40.106'),(891,1,'2017-08-14 11:13:05','212.194.246.115'),(892,1,'2017-08-14 11:13:09','212.194.246.115'),(893,1,'2017-08-14 11:13:25','117.205.112.114'),(894,1,'2017-08-14 11:54:31','49.35.10.18'),(895,1,'2017-08-14 11:54:33','49.35.10.18'),(896,1,'2017-08-14 12:22:20','188.36.0.110'),(897,1,'2017-08-14 12:22:21','188.36.0.110'),(898,1,'2017-08-14 12:34:44','85.150.124.128'),(899,1,'2017-08-14 12:34:45','85.150.124.128'),(900,1,'2017-08-14 12:46:50','14.192.211.192'),(901,1,'2017-08-14 12:46:51','14.192.211.192'),(902,1,'2017-08-14 12:57:58','87.0.31.180'),(903,1,'2017-08-14 12:57:59','87.0.31.180'),(904,1,'2017-08-14 13:08:47','112.200.196.19'),(905,1,'2017-08-14 13:08:52','112.200.196.19'),(906,1,'2017-08-14 13:20:21','82.247.247.231'),(907,1,'2017-08-14 13:20:22','82.247.247.231'),(908,1,'2017-08-14 13:34:27','197.245.100.183'),(909,1,'2017-08-14 13:42:00','103.42.217.133'),(910,1,'2017-08-14 13:42:01','103.42.217.133'),(911,1,'2017-08-14 13:50:45','176.218.240.7'),(912,1,'2017-08-14 13:50:46','176.218.240.7'),(913,1,'2017-08-14 13:53:26','49.146.2.197'),(914,1,'2017-08-14 13:53:30','49.146.2.197'),(915,1,'2017-08-14 13:55:01','202.157.76.153'),(916,1,'2017-08-14 13:55:02','202.157.76.153'),(917,1,'2017-08-14 14:35:20','178.132.151.11'),(918,1,'2017-08-14 14:35:21','178.132.151.11'),(919,1,'2017-08-14 14:57:00','186.233.160.144'),(920,1,'2017-08-14 14:57:02','186.233.160.144'),(921,1,'2017-08-14 15:02:45','103.58.74.6'),(922,1,'2017-08-14 15:02:47','103.58.74.6'),(923,1,'2017-08-14 15:08:17','179.187.215.29'),(924,1,'2017-08-14 15:08:18','179.187.215.29'),(925,1,'2017-08-14 15:08:50','170.84.249.7'),(926,1,'2017-08-14 15:08:51','170.84.249.7'),(927,1,'2017-08-14 15:11:20','130.193.229.203'),(928,1,'2017-08-14 15:11:21','130.193.229.203'),(929,1,'2017-08-14 15:11:47','85.103.175.120'),(930,1,'2017-08-14 15:11:48','85.103.175.120'),(931,1,'2017-08-14 15:15:43','45.212.187.33'),(932,1,'2017-08-14 15:15:44','45.212.187.33'),(933,1,'2017-08-14 15:20:18','42.201.146.123'),(934,1,'2017-08-14 15:20:19','42.201.146.123'),(935,1,'2017-08-14 15:22:47','59.153.28.145'),(936,1,'2017-08-14 15:22:50','59.153.28.145'),(937,1,'2017-08-14 15:25:13','116.75.90.40'),(938,1,'2017-08-14 15:25:15','116.75.90.40'),(939,1,'2017-08-14 15:32:31','112.198.101.69'),(940,1,'2017-08-14 15:32:44','112.198.101.69'),(941,1,'2017-08-14 15:38:21','179.215.198.171'),(942,1,'2017-08-14 15:38:23','179.215.198.171'),(943,1,'2017-08-14 15:44:21','182.185.59.244'),(944,1,'2017-08-14 15:44:22','182.185.59.244'),(945,1,'2017-08-14 15:49:27','105.101.12.43'),(946,1,'2017-08-14 15:49:28','105.101.12.43'),(947,1,'2017-08-14 16:04:00','197.89.31.189'),(948,1,'2017-08-14 16:04:04','197.89.31.189'),(949,1,'2017-08-14 16:19:44','112.135.4.166'),(950,1,'2017-08-14 16:19:46','112.135.4.166'),(951,1,'2017-08-14 16:31:06','188.236.69.52'),(952,1,'2017-08-14 16:31:07','188.236.69.52'),(953,1,'2017-08-14 16:34:43','190.79.229.190'),(954,1,'2017-08-14 16:34:45','190.79.229.190'),(955,1,'2017-08-14 16:39:58','112.134.48.110'),(956,1,'2017-08-14 16:40:00','112.134.48.110'),(957,1,'2017-08-14 16:46:18','112.198.73.148'),(958,1,'2017-08-14 16:46:20','112.198.73.148'),(959,1,'2017-08-14 17:05:26','24.244.157.113'),(960,1,'2017-08-14 17:05:29','24.244.157.113'),(961,1,'2017-08-14 17:31:49','180.247.32.88'),(962,1,'2017-08-14 17:31:51','180.247.32.88'),(963,1,'2017-08-14 17:51:33','121.122.41.129'),(964,1,'2017-08-14 17:51:34','121.122.41.129'),(965,1,'2017-08-14 17:54:58','109.175.102.70'),(966,1,'2017-08-14 17:54:58','109.175.102.70'),(967,1,'2017-08-14 17:58:26','49.35.11.202'),(968,1,'2017-08-14 17:58:28','49.35.11.202'),(969,1,'2017-08-14 18:31:03','89.147.223.31'),(970,1,'2017-08-14 18:31:04','89.147.223.31'),(971,1,'2017-08-14 18:35:58','175.139.60.146'),(972,1,'2017-08-14 18:36:00','175.139.60.146'),(973,1,'2017-08-14 19:32:18','41.90.241.149'),(974,1,'2017-08-14 19:32:20','41.90.241.149'),(975,1,'2017-08-14 19:37:15','200.125.74.50'),(976,1,'2017-08-14 19:37:16','200.125.74.50'),(977,1,'2017-08-14 19:38:22','41.104.126.147'),(978,1,'2017-08-14 19:38:24','41.104.126.147'),(979,1,'2017-08-14 19:40:02','213.49.166.45'),(980,1,'2017-08-14 19:40:03','213.49.166.45'),(981,1,'2017-08-14 19:42:00','109.101.3.42'),(982,1,'2017-08-14 19:42:01','109.101.3.42'),(983,1,'2017-08-14 19:43:18','80.8.197.163'),(984,1,'2017-08-14 19:43:19','80.8.197.163'),(985,1,'2017-08-14 20:09:27','114.29.225.125'),(986,1,'2017-08-14 20:09:28','114.29.225.125'),(987,1,'2017-08-14 20:21:30','37.217.41.164'),(988,1,'2017-08-14 20:21:32','37.217.41.164'),(989,1,'2017-08-14 20:45:12','49.207.62.29'),(990,1,'2017-08-14 20:45:13','49.207.62.29'),(991,1,'2017-08-14 20:49:20','93.83.238.14'),(992,1,'2017-08-14 20:49:22','93.83.238.14'),(993,1,'2017-08-14 20:51:23','156.205.82.2'),(994,1,'2017-08-14 20:51:24','156.205.82.2'),(995,1,'2017-08-14 21:15:58','109.173.155.115'),(996,1,'2017-08-14 21:15:59','109.173.155.115'),(997,1,'2017-08-14 21:32:28','176.88.24.26'),(998,1,'2017-08-14 21:32:29','176.88.24.26'),(999,1,'2017-08-14 21:50:45','156.223.75.42'),(1000,1,'2017-08-14 21:50:46','156.223.75.42'),(1001,1,'2017-08-14 22:01:01','41.72.103.242'),(1002,1,'2017-08-14 22:01:03','41.72.103.242'),(1003,1,'2017-08-14 22:12:41','99.39.119.44'),(1004,1,'2017-08-14 22:12:42','99.39.119.44'),(1005,1,'2017-08-14 22:15:55','189.85.156.249'),(1006,1,'2017-08-14 22:15:56','189.85.156.249'),(1007,1,'2017-08-14 22:28:27','188.65.8.5'),(1008,1,'2017-08-14 22:28:28','188.65.8.5'),(1009,1,'2017-08-14 22:29:59','14.13.32.160'),(1010,1,'2017-08-14 22:30:01','14.13.32.160'),(1011,1,'2017-08-14 22:36:09','189.216.107.209'),(1012,1,'2017-08-14 22:36:10','189.216.107.209'),(1013,1,'2017-08-14 22:45:33','5.38.211.103'),(1014,1,'2017-08-14 22:45:34','5.38.211.103'),(1015,1,'2017-08-14 22:58:09','77.125.22.20'),(1016,1,'2017-08-14 22:58:10','77.125.22.20'),(1017,1,'2017-08-14 23:18:48','213.250.157.156'),(1018,1,'2017-08-14 23:18:49','213.250.157.156'),(1019,1,'2017-08-14 23:21:05','179.99.187.245'),(1020,1,'2017-08-14 23:21:06','179.99.187.245'),(1021,1,'2017-08-14 23:36:20','79.177.19.70'),(1022,1,'2017-08-14 23:36:21','79.177.19.70'),(1023,1,'2017-08-14 23:53:35','210.55.213.193'),(1024,1,'2017-08-14 23:53:37','210.55.213.193'),(1025,1,'2017-08-14 23:54:22','105.110.56.235'),(1026,1,'2017-08-14 23:54:23','105.110.56.235'),(1027,1,'2017-08-15 00:39:44','106.181.176.238'),(1028,1,'2017-08-15 00:39:46','106.181.176.238'),(1029,1,'2017-08-15 00:43:07','197.0.63.244'),(1030,1,'2017-08-15 00:43:08','197.0.63.244'),(1031,1,'2017-08-15 00:48:39','86.245.147.195'),(1032,1,'2017-08-15 00:48:40','86.245.147.195'),(1033,1,'2017-08-15 00:50:41','96.48.90.252'),(1034,1,'2017-08-15 00:50:42','96.48.90.252'),(1035,1,'2017-08-15 01:05:30','89.103.226.145'),(1036,1,'2017-08-15 01:05:30','89.103.226.145'),(1037,1,'2017-08-15 01:12:04','154.65.34.202'),(1038,1,'2017-08-15 01:12:08','154.65.34.202'),(1039,1,'2017-08-15 01:20:11','191.85.166.230'),(1040,1,'2017-08-15 01:20:13','191.85.166.230'),(1041,1,'2017-08-15 02:18:54','200.217.136.107'),(1042,1,'2017-08-15 02:18:56','200.217.136.107'),(1043,1,'2017-08-15 02:43:41','119.254.80.142'),(1044,1,'2017-08-15 02:43:43','119.254.80.142'),(1045,1,'2017-08-15 02:43:44','119.254.80.142'),(1046,1,'2017-08-15 02:45:52','61.158.188.21'),(1047,1,'2017-08-15 02:45:53','61.158.188.21'),(1048,1,'2017-08-15 02:45:55','61.158.188.21'),(1049,1,'2017-08-15 02:47:18','60.222.227.195'),(1050,1,'2017-08-15 02:47:20','60.222.227.195'),(1051,1,'2017-08-15 02:47:21','60.222.227.195'),(1052,1,'2017-08-15 02:49:21','218.201.14.134'),(1053,1,'2017-08-15 02:49:22','218.201.14.134'),(1054,1,'2017-08-15 02:49:23','218.201.14.134'),(1055,1,'2017-08-15 02:49:36','1.190.175.66'),(1056,1,'2017-08-15 02:49:37','1.190.175.66'),(1057,1,'2017-08-15 02:49:49','61.177.148.58'),(1058,1,'2017-08-15 02:49:50','61.177.148.58'),(1059,1,'2017-08-15 02:49:52','61.177.148.58'),(1060,1,'2017-08-15 02:51:43','109.83.152.56'),(1061,1,'2017-08-15 02:51:44','109.83.152.56'),(1062,1,'2017-08-15 02:55:01','165.144.188.103'),(1063,1,'2017-08-15 02:55:02','165.144.188.103'),(1064,1,'2017-08-15 02:56:10','122.201.22.48'),(1065,1,'2017-08-15 02:56:12','122.201.22.48'),(1066,1,'2017-08-15 03:28:04','77.242.21.239'),(1067,1,'2017-08-15 03:28:04','77.242.21.239'),(1068,1,'2017-08-15 03:36:53','221.146.12.153'),(1069,1,'2017-08-15 03:36:54','221.146.12.153'),(1070,1,'2017-08-15 04:00:06','123.243.196.252'),(1071,1,'2017-08-15 04:00:08','123.243.196.252'),(1072,1,'2017-08-15 05:01:28','105.110.53.202'),(1073,1,'2017-08-15 05:01:29','105.110.53.202'),(1074,1,'2017-08-15 05:20:37','182.180.173.42'),(1075,1,'2017-08-15 05:20:38','182.180.173.42'),(1076,1,'2017-08-15 05:35:42','105.229.167.66'),(1077,1,'2017-08-15 05:35:43','105.229.167.66'),(1078,1,'2017-08-15 05:54:37','177.17.42.102'),(1079,1,'2017-08-15 05:54:38','177.17.42.102'),(1080,1,'2017-08-15 05:56:55','45.119.135.40'),(1081,1,'2017-08-15 05:56:56','45.119.135.40'),(1082,1,'2017-08-15 06:06:33','180.151.107.126'),(1083,1,'2017-08-15 06:06:35','180.151.107.126'),(1084,1,'2017-08-15 06:13:25','78.154.192.93'),(1085,1,'2017-08-15 06:13:26','78.154.192.93'),(1086,1,'2017-08-15 06:26:29','110.185.241.150'),(1087,1,'2017-08-15 06:26:32','27.111.47.197'),(1088,1,'2017-08-15 06:26:42','124.115.135.54'),(1089,1,'2017-08-15 06:40:10','190.90.44.186'),(1090,1,'2017-08-15 06:40:14','190.167.98.125'),(1091,1,'2017-08-15 06:50:27','220.248.203.119'),(1092,1,'2017-08-15 06:59:49','111.95.98.234'),(1093,1,'2017-08-15 06:59:51','111.95.98.234'),(1094,1,'2017-08-15 07:06:59','189.24.235.73'),(1095,1,'2017-08-15 07:07:00','189.24.235.73'),(1096,1,'2017-08-15 07:09:24','191.242.219.4'),(1097,1,'2017-08-15 07:09:25','191.242.219.4'),(1098,1,'2017-08-15 07:35:46','186.170.92.164'),(1099,1,'2017-08-15 07:35:48','186.170.92.164'),(1100,1,'2017-08-15 07:37:37','188.3.252.228'),(1101,1,'2017-08-15 07:37:38','188.3.252.228'),(1102,1,'2017-08-15 08:05:12','36.68.76.204'),(1103,1,'2017-08-15 08:05:14','36.68.76.204'),(1104,1,'2017-08-15 08:35:26','117.204.92.202'),(1105,1,'2017-08-15 08:35:27','117.204.92.202'),(1106,1,'2017-08-15 08:43:57','41.210.129.110'),(1107,1,'2017-08-15 08:48:46','70.28.2.62'),(1108,1,'2017-08-15 08:48:47','70.28.2.62'),(1109,1,'2017-08-15 09:00:23','103.217.84.86'),(1110,1,'2017-08-15 09:00:24','103.217.84.86'),(1111,1,'2017-08-15 09:04:11','180.253.104.77'),(1112,1,'2017-08-15 09:04:12','180.253.104.77'),(1113,1,'2017-08-15 09:05:41','187.163.145.175'),(1114,1,'2017-08-15 09:05:42','187.163.145.175'),(1115,1,'2017-08-15 09:31:16','112.203.193.114'),(1116,1,'2017-08-15 09:31:18','112.203.193.114'),(1117,1,'2017-08-15 09:58:28','111.88.186.238'),(1118,1,'2017-08-15 09:58:30','111.88.186.238'),(1119,1,'2017-08-15 10:03:20','183.87.216.174'),(1120,1,'2017-08-15 10:03:22','183.87.216.174'),(1121,1,'2017-08-15 10:04:59','110.159.5.140'),(1122,1,'2017-08-15 10:05:01','110.159.5.140'),(1123,1,'2017-08-15 10:09:44','49.35.12.20'),(1124,1,'2017-08-15 10:09:45','49.35.12.20'),(1125,1,'2017-08-15 10:28:03','103.254.204.209'),(1126,1,'2017-08-15 10:28:04','103.254.204.209'),(1127,1,'2017-08-15 10:29:47','178.80.155.123'),(1128,1,'2017-08-15 10:29:48','178.80.155.123'),(1129,1,'2017-08-15 10:41:07','47.29.65.78'),(1130,1,'2017-08-15 10:41:09','47.29.65.78'),(1131,1,'2017-08-15 11:03:43','121.54.17.7'),(1132,1,'2017-08-15 11:03:45','121.54.17.7'),(1133,1,'2017-08-15 11:09:15','5.69.85.75'),(1134,1,'2017-08-15 11:09:15','5.69.85.75'),(1135,1,'2017-08-15 11:19:43','118.19.17.165'),(1136,1,'2017-08-15 11:19:45','118.19.17.165'),(1137,1,'2017-08-15 11:42:37','183.83.116.13'),(1138,1,'2017-08-15 11:42:38','183.83.116.13'),(1139,1,'2017-08-15 11:50:28','123.21.123.111'),(1140,1,'2017-08-15 11:50:30','123.21.123.111'),(1141,1,'2017-08-15 12:17:46','92.176.138.206'),(1142,1,'2017-08-15 12:17:47','92.176.138.206'),(1143,1,'2017-08-15 12:36:20','177.64.204.49'),(1144,1,'2017-08-15 12:36:21','177.64.204.49'),(1145,1,'2017-08-15 12:45:01','119.95.203.233'),(1146,1,'2017-08-15 12:45:03','119.95.203.233'),(1147,1,'2017-08-15 13:38:43','190.191.133.132'),(1148,1,'2017-08-15 13:38:44','190.191.133.132'),(1149,1,'2017-08-15 13:52:16','185.98.208.225'),(1150,1,'2017-08-15 13:52:17','185.98.208.225'),(1151,1,'2017-08-15 14:36:43','79.106.7.4'),(1152,1,'2017-08-15 14:36:45','79.106.7.4'),(1153,1,'2017-08-15 14:48:26','109.95.90.218'),(1154,1,'2017-08-15 14:48:27','109.95.90.218'),(1155,1,'2017-08-15 15:01:00','49.149.25.12'),(1156,1,'2017-08-15 15:01:01','49.149.25.12'),(1157,1,'2017-08-15 15:02:20','109.174.62.20'),(1158,1,'2017-08-15 15:02:21','109.174.62.20'),(1159,1,'2017-08-15 15:17:24','156.196.97.51'),(1160,1,'2017-08-15 15:17:26','156.196.97.51'),(1161,1,'2017-08-15 15:22:56','86.172.139.160'),(1162,1,'2017-08-15 15:22:57','86.172.139.160'),(1163,1,'2017-08-15 15:28:25','86.175.149.138'),(1164,1,'2017-08-15 15:28:27','86.175.149.138'),(1165,1,'2017-08-15 15:35:49','124.106.250.23'),(1166,1,'2017-08-15 15:35:51','124.106.250.23'),(1167,1,'2017-08-15 16:23:35','49.146.155.200'),(1168,1,'2017-08-15 16:23:37','49.146.155.200'),(1169,1,'2017-08-15 16:55:18','170.247.54.29'),(1170,1,'2017-08-15 16:55:20','170.247.54.29'),(1171,1,'2017-08-15 17:09:06','115.135.1.128'),(1172,1,'2017-08-15 17:09:08','115.135.1.128'),(1173,1,'2017-08-15 17:22:42','103.255.6.85'),(1174,1,'2017-08-15 17:22:44','103.255.6.85'),(1175,1,'2017-08-15 17:39:59','93.173.176.207'),(1176,1,'2017-08-15 17:40:00','93.173.176.207'),(1177,1,'2017-08-15 17:40:31','179.182.181.143'),(1178,1,'2017-08-15 17:40:33','179.182.181.143'),(1179,1,'2017-08-15 17:45:46','177.131.188.80'),(1180,1,'2017-08-15 17:45:47','177.131.188.80'),(1181,1,'2017-08-15 17:48:31','103.7.79.201'),(1182,1,'2017-08-15 17:48:45','103.7.79.201'),(1183,1,'2017-08-15 17:56:59','5.172.85.142'),(1184,1,'2017-08-15 17:57:04','5.172.85.142'),(1185,1,'2017-08-15 17:58:21','148.56.45.124'),(1186,1,'2017-08-15 17:58:21','148.56.45.124'),(1187,1,'2017-08-15 18:02:37','41.225.93.102'),(1188,1,'2017-08-15 18:02:38','41.225.93.102'),(1189,1,'2017-08-15 18:23:01','177.11.176.165'),(1190,1,'2017-08-15 18:23:02','177.11.176.165'),(1191,1,'2017-08-15 18:49:03','41.140.88.102'),(1192,1,'2017-08-15 18:49:06','41.140.88.102'),(1193,1,'2017-08-15 19:02:44','185.31.32.100'),(1194,1,'2017-08-15 19:02:45','185.31.32.100'),(1195,1,'2017-08-15 19:19:09','14.186.214.211'),(1196,1,'2017-08-15 19:19:11','14.186.214.211'),(1197,1,'2017-08-15 19:21:41','183.82.182.122'),(1198,1,'2017-08-15 19:21:43','183.82.182.122'),(1199,1,'2017-08-15 19:40:11','178.220.37.30'),(1200,1,'2017-08-15 19:40:12','178.220.37.30'),(1201,1,'2017-08-15 20:25:28','88.75.137.210'),(1202,1,'2017-08-15 20:25:29','88.75.137.210'),(1203,1,'2017-08-15 20:46:48','185.155.41.34'),(1204,1,'2017-08-15 20:46:49','185.155.41.34'),(1205,1,'2017-08-15 20:53:11','94.189.201.186'),(1206,1,'2017-08-15 20:53:12','94.189.201.186'),(1207,1,'2017-08-15 21:20:22','122.161.178.253'),(1208,1,'2017-08-15 21:20:23','122.161.178.253'),(1209,1,'2017-08-15 21:28:31','27.147.204.110'),(1210,1,'2017-08-15 21:28:33','27.147.204.110'),(1211,1,'2017-08-15 21:48:50','191.241.34.18'),(1212,1,'2017-08-15 21:48:52','191.241.34.18'),(1213,1,'2017-08-15 21:56:51','179.216.163.145'),(1214,1,'2017-08-15 21:56:52','179.216.163.145'),(1215,1,'2017-08-15 22:26:39','36.68.35.38'),(1216,1,'2017-08-15 22:26:40','36.68.35.38'),(1217,1,'2017-08-15 22:40:33','118.148.76.84'),(1218,1,'2017-08-15 22:40:35','118.148.76.84'),(1219,1,'2017-08-15 23:11:33','178.222.1.174'),(1220,1,'2017-08-15 23:11:34','178.222.1.174'),(1221,1,'2017-08-15 23:16:03','103.198.174.217'),(1222,1,'2017-08-15 23:16:05','103.198.174.217'),(1223,1,'2017-08-15 23:47:58','170.82.23.218'),(1224,1,'2017-08-15 23:48:08','170.82.23.218'),(1225,1,'2017-08-16 00:06:16','27.89.84.179'),(1226,1,'2017-08-16 00:06:18','27.89.84.179'),(1227,1,'2017-08-16 00:49:37','43.245.95.186'),(1228,1,'2017-08-16 00:49:39','43.245.95.186'),(1229,1,'2017-08-16 01:24:50','115.93.207.108'),(1230,1,'2017-08-16 01:24:52','115.93.207.108'),(1231,1,'2017-08-16 02:04:10','212.178.247.54'),(1232,1,'2017-08-16 02:04:11','212.178.247.54'),(1233,1,'2017-08-16 02:20:23','177.97.49.192'),(1234,1,'2017-08-16 02:20:24','177.97.49.192'),(1235,1,'2017-08-16 03:05:39','186.216.191.151'),(1236,1,'2017-08-16 03:05:41','186.216.191.151'),(1237,1,'2017-08-16 03:20:39','201.68.249.143'),(1238,1,'2017-08-16 03:20:41','201.68.249.143'),(1239,1,'2017-08-16 04:14:00','201.137.184.187'),(1240,1,'2017-08-16 04:14:02','201.137.184.187'),(1241,1,'2017-08-16 04:36:07','45.116.233.17'),(1242,1,'2017-08-16 04:36:08','45.116.233.17'),(1243,1,'2017-08-16 05:04:43','95.76.247.5'),(1244,1,'2017-08-16 05:04:44','95.76.247.5'),(1245,1,'2017-08-16 05:28:10','62.4.150.92'),(1246,1,'2017-08-16 05:28:11','62.4.150.92'),(1247,1,'2017-08-16 07:15:20','106.243.152.66'),(1248,1,'2017-08-16 07:15:22','106.243.152.66'),(1249,1,'2017-08-16 07:19:53','124.123.68.63'),(1250,1,'2017-08-16 07:19:54','124.123.68.63'),(1251,1,'2017-08-16 07:35:10','90.25.34.82'),(1252,1,'2017-08-16 07:35:11','90.25.34.82'),(1253,1,'2017-08-16 07:38:39','103.255.5.42'),(1254,1,'2017-08-16 07:38:40','103.255.5.42'),(1255,1,'2017-08-16 08:34:29','212.62.63.230'),(1256,1,'2017-08-16 08:34:30','212.62.63.230'),(1257,1,'2017-08-16 08:41:23','196.207.129.170'),(1258,1,'2017-08-16 08:41:24','196.207.129.170'),(1259,1,'2017-08-16 08:47:43','181.49.95.253'),(1260,1,'2017-08-16 08:47:44','181.49.95.253'),(1261,1,'2017-08-16 08:54:32','180.178.136.252'),(1262,1,'2017-08-16 08:58:37','183.88.153.49'),(1263,1,'2017-08-16 08:58:38','183.88.153.49'),(1264,1,'2017-08-16 09:02:09','178.149.23.25'),(1265,1,'2017-08-16 09:02:10','178.149.23.25'),(1266,1,'2017-08-16 09:04:32','91.82.229.174'),(1267,1,'2017-08-16 09:04:33','91.82.229.174'),(1268,1,'2017-08-16 09:11:25','110.93.82.37'),(1269,1,'2017-08-16 09:11:26','110.93.82.37'),(1270,1,'2017-08-16 09:11:32','103.86.182.192'),(1271,1,'2017-08-16 09:11:33','103.86.182.192'),(1272,1,'2017-08-16 09:22:35','183.82.164.63'),(1273,1,'2017-08-16 09:22:36','183.82.164.63'),(1274,1,'2017-08-16 09:27:33','213.254.87.5'),(1275,1,'2017-08-16 09:27:34','213.254.87.5'),(1276,1,'2017-08-16 09:53:09','60.137.147.189'),(1277,1,'2017-08-16 09:53:11','60.137.147.189'),(1278,1,'2017-08-16 10:39:57','179.34.141.196'),(1279,1,'2017-08-16 10:39:58','179.34.141.196'),(1280,1,'2017-08-16 10:57:46','49.150.149.111'),(1281,1,'2017-08-16 10:57:47','49.150.149.111'),(1282,1,'2017-08-16 11:00:39','183.82.98.220'),(1283,1,'2017-08-16 11:00:40','183.82.98.220'),(1284,1,'2017-08-16 11:15:06','83.54.140.91'),(1285,1,'2017-08-16 11:15:07','83.54.140.91'),(1286,1,'2017-08-16 11:25:51','178.31.166.199'),(1287,1,'2017-08-16 11:25:52','178.31.166.199'),(1288,1,'2017-08-16 11:48:22','103.217.147.7'),(1289,1,'2017-08-16 11:48:24','103.217.147.7'),(1290,1,'2017-08-16 12:06:17','105.108.192.131'),(1291,1,'2017-08-16 12:06:18','105.108.192.131'),(1292,1,'2017-08-16 12:09:47','125.161.210.80'),(1293,1,'2017-08-16 12:09:49','125.161.210.80'),(1294,1,'2017-08-16 12:17:39','86.205.161.122'),(1295,1,'2017-08-16 12:17:40','86.205.161.122'),(1296,1,'2017-08-16 12:20:24','58.96.228.116'),(1297,1,'2017-08-16 12:20:26','58.96.228.116'),(1298,1,'2017-08-16 12:46:59','223.229.227.5'),(1299,1,'2017-08-16 12:47:00','223.229.227.5'),(1300,1,'2017-08-16 13:07:51','49.228.127.214'),(1301,1,'2017-08-16 13:07:53','49.228.127.214'),(1302,1,'2017-08-16 13:11:31','194.126.31.10'),(1303,1,'2017-08-16 13:11:32','194.126.31.10'),(1304,1,'2017-08-16 13:29:11','212.200.207.180'),(1305,1,'2017-08-16 13:29:12','212.200.207.180'),(1306,1,'2017-08-16 13:38:08','111.125.109.165'),(1307,1,'2017-08-16 13:38:10','111.125.109.165'),(1308,1,'2017-08-16 13:46:52','177.177.20.69'),(1309,1,'2017-08-16 13:46:54','177.177.20.69'),(1310,1,'2017-08-16 13:48:55','66.181.176.235'),(1311,1,'2017-08-16 13:48:56','66.181.176.235'),(1312,1,'2017-08-16 13:56:01','197.156.88.146'),(1313,1,'2017-08-16 13:56:02','197.156.88.146'),(1314,1,'2017-08-16 14:09:13','86.29.81.95'),(1315,1,'2017-08-16 14:09:15','86.29.81.95'),(1316,1,'2017-08-16 14:10:00','88.73.155.156'),(1317,1,'2017-08-16 14:10:01','88.73.155.156'),(1318,1,'2017-08-16 14:13:01','213.112.53.192'),(1319,1,'2017-08-16 14:13:04','213.112.53.192'),(1320,1,'2017-08-16 14:35:45','200.155.33.50'),(1321,1,'2017-08-16 14:35:49','200.155.33.50'),(1322,1,'2017-08-16 15:02:49','93.108.5.239'),(1323,1,'2017-08-16 15:02:55','93.108.5.239'),(1324,1,'2017-08-16 15:27:03','109.151.232.141'),(1325,1,'2017-08-16 15:27:07','109.151.232.141'),(1326,1,'2017-08-16 15:31:15','144.48.161.133'),(1327,1,'2017-08-16 15:31:17','144.48.161.133'),(1328,1,'2017-08-16 15:34:32','37.39.23.231'),(1329,1,'2017-08-16 15:34:34','37.39.23.231'),(1330,1,'2017-08-16 15:47:56','78.97.10.218'),(1331,1,'2017-08-16 15:47:57','78.97.10.218'),(1332,1,'2017-08-16 16:11:06','103.255.7.41'),(1333,1,'2017-08-16 16:11:08','103.255.7.41'),(1334,1,'2017-08-16 16:34:17','117.221.255.26'),(1335,1,'2017-08-16 16:34:19','117.221.255.26'),(1336,1,'2017-08-16 16:37:46','156.223.54.35'),(1337,1,'2017-08-16 16:37:47','156.223.54.35'),(1338,1,'2017-08-16 16:51:24','27.114.187.226'),(1339,1,'2017-08-16 16:51:25','27.114.187.226'),(1340,1,'2017-08-16 16:58:49','202.166.46.46'),(1341,1,'2017-08-16 16:58:50','202.166.46.46'),(1342,1,'2017-08-16 17:00:03','156.218.41.88'),(1343,1,'2017-08-16 17:00:04','156.218.41.88'),(1344,1,'2017-08-16 17:00:52','116.87.146.48'),(1345,1,'2017-08-16 17:00:54','116.87.146.48'),(1346,1,'2017-08-16 17:03:56','183.87.55.14'),(1347,1,'2017-08-16 17:03:58','183.87.55.14'),(1348,1,'2017-08-16 17:08:42','39.35.245.47'),(1349,1,'2017-08-16 17:08:43','39.35.245.47'),(1350,1,'2017-08-16 17:32:51','188.194.3.62'),(1351,1,'2017-08-16 17:32:52','188.194.3.62'),(1352,1,'2017-08-16 17:36:36','197.207.145.7'),(1353,1,'2017-08-16 17:36:37','197.207.145.7'),(1354,1,'2017-08-16 17:38:18','120.29.76.30'),(1355,1,'2017-08-16 17:38:20','120.29.76.30'),(1356,1,'2017-08-16 17:47:09','27.5.9.156'),(1357,1,'2017-08-16 17:47:11','27.5.9.156'),(1358,1,'2017-08-16 17:50:19','202.142.119.145'),(1359,1,'2017-08-16 17:50:20','202.142.119.145'),(1360,1,'2017-08-16 18:01:07','103.60.175.19'),(1361,1,'2017-08-16 18:01:09','103.60.175.19'),(1362,1,'2017-08-16 18:03:20','45.250.249.182'),(1363,1,'2017-08-16 18:03:22','45.250.249.182'),(1364,1,'2017-08-16 18:12:06','186.124.29.149'),(1365,1,'2017-08-16 18:12:08','186.124.29.149'),(1366,1,'2017-08-16 18:13:33','81.33.227.233'),(1367,1,'2017-08-16 18:13:34','81.33.227.233'),(1368,1,'2017-08-16 18:16:58','202.163.64.32'),(1369,1,'2017-08-16 18:17:00','202.163.64.32'),(1370,1,'2017-08-16 18:23:22','122.167.210.78'),(1371,1,'2017-08-16 18:23:23','122.167.210.78'),(1372,1,'2017-08-16 18:27:59','202.221.0.165'),(1373,1,'2017-08-16 18:28:01','202.221.0.165'),(1374,1,'2017-08-16 18:50:27','39.40.26.193'),(1375,1,'2017-08-16 18:50:28','39.40.26.193'),(1376,1,'2017-08-16 19:21:04','217.61.224.38'),(1377,1,'2017-08-16 19:27:42','222.252.27.140'),(1378,1,'2017-08-16 19:27:43','222.252.27.140'),(1379,1,'2017-08-16 19:49:14','83.35.72.37'),(1380,1,'2017-08-16 19:49:16','83.35.72.37'),(1381,1,'2017-08-16 19:49:44','223.225.228.111'),(1382,1,'2017-08-16 19:49:46','223.225.228.111'),(1383,1,'2017-08-16 20:07:42','105.104.40.246'),(1384,1,'2017-08-16 20:07:43','105.104.40.246'),(1385,1,'2017-08-16 20:13:00','197.216.8.13'),(1386,1,'2017-08-16 20:13:04','197.216.8.13'),(1387,1,'2017-08-16 20:26:56','197.200.36.244'),(1388,1,'2017-08-16 20:26:58','197.200.36.244'),(1389,1,'2017-08-16 20:27:58','174.48.171.186'),(1390,1,'2017-08-16 20:27:59','174.48.171.186'),(1391,1,'2017-08-16 20:31:51','41.239.44.241'),(1392,1,'2017-08-16 20:31:52','41.239.44.241'),(1393,1,'2017-08-16 20:33:53','177.202.148.121'),(1394,1,'2017-08-16 20:33:55','177.202.148.121'),(1395,1,'2017-08-16 20:37:29','151.32.126.0'),(1396,1,'2017-08-16 20:37:30','151.32.126.0'),(1397,1,'2017-08-16 20:38:35','168.121.27.114'),(1398,1,'2017-08-16 20:38:37','168.121.27.114'),(1399,1,'2017-08-16 20:38:46','159.0.158.213'),(1400,1,'2017-08-16 20:38:47','159.0.158.213'),(1401,1,'2017-08-16 20:57:31','180.156.207.12'),(1402,1,'2017-08-16 20:57:33','180.156.207.12'),(1403,1,'2017-08-16 21:05:50','177.194.80.218'),(1404,1,'2017-08-16 21:05:51','177.194.80.218'),(1405,1,'2017-08-16 21:07:34','195.174.110.46'),(1406,1,'2017-08-16 21:07:35','195.174.110.46'),(1407,1,'2017-08-16 22:03:39','112.211.175.3'),(1408,1,'2017-08-16 22:03:41','112.211.175.3'),(1409,1,'2017-08-16 23:39:14','105.102.0.249'),(1410,1,'2017-08-16 23:39:18','105.102.0.249'),(1411,1,'2017-08-17 00:32:06','71.161.200.244'),(1412,1,'2017-08-17 00:32:07','71.161.200.244'),(1413,1,'2017-08-17 01:26:42','112.200.110.177'),(1414,1,'2017-08-17 01:26:44','112.200.110.177'),(1415,1,'2017-08-17 01:27:22','108.226.110.192'),(1416,1,'2017-08-17 01:27:24','108.226.110.192'),(1417,1,'2017-08-17 01:34:24','217.165.147.7'),(1418,1,'2017-08-17 01:34:25','217.165.147.7'),(1419,1,'2017-08-17 02:11:55','83.203.247.29'),(1420,1,'2017-08-17 02:11:57','83.203.247.29'),(1421,1,'2017-08-17 02:12:29','191.185.55.197'),(1422,1,'2017-08-17 02:12:31','191.185.55.197'),(1423,1,'2017-08-17 02:48:23','201.21.163.70'),(1424,1,'2017-08-17 02:48:24','201.21.163.70'),(1425,1,'2017-08-17 02:49:16','117.193.209.125'),(1426,1,'2017-08-17 02:49:18','117.193.209.125'),(1427,1,'2017-08-17 03:06:17','121.88.238.44'),(1428,1,'2017-08-17 03:06:18','121.88.238.44'),(1429,1,'2017-08-17 03:13:01','182.93.71.254'),(1430,1,'2017-08-17 03:13:02','182.93.71.254'),(1431,1,'2017-08-17 03:16:08','200.103.127.125'),(1432,1,'2017-08-17 03:16:09','200.103.127.125'),(1433,1,'2017-08-17 04:02:22','210.195.213.160'),(1434,1,'2017-08-17 04:02:24','210.195.213.160'),(1435,1,'2017-08-17 04:28:20','172.248.64.189'),(1436,1,'2017-08-17 04:28:22','172.248.64.189'),(1437,1,'2017-08-17 04:46:02','200.77.105.75'),(1438,1,'2017-08-17 04:46:03','200.77.105.75'),(1439,1,'2017-08-17 04:46:28','67.188.136.167'),(1440,1,'2017-08-17 04:46:30','67.188.136.167'),(1441,1,'2017-08-17 05:08:50','39.53.92.185'),(1442,1,'2017-08-17 05:08:52','39.53.92.185'),(1443,1,'2017-08-17 05:44:28','27.5.194.148'),(1444,1,'2017-08-17 05:44:30','27.5.194.148'),(1445,1,'2017-08-17 05:58:37','95.32.206.254'),(1446,1,'2017-08-17 05:58:38','95.32.206.254'),(1447,1,'2017-08-17 06:12:40','117.204.18.59'),(1448,1,'2017-08-17 06:12:42','117.204.18.59'),(1449,1,'2017-08-17 06:13:09','27.34.104.140'),(1450,1,'2017-08-17 06:13:11','27.34.104.140'),(1451,1,'2017-08-17 06:21:17','103.46.233.18'),(1452,1,'2017-08-17 06:21:19','103.46.233.18'),(1453,1,'2017-08-17 06:53:17','62.210.244.130'),(1454,1,'2017-08-17 06:59:32','62.210.244.130'),(1455,1,'2017-08-17 07:04:52','62.210.244.130'),(1456,1,'2017-08-17 07:10:30','62.210.244.130'),(1457,1,'2017-08-17 07:16:23','62.210.244.130'),(1458,1,'2017-08-17 07:22:35','62.210.244.130'),(1459,1,'2017-08-17 07:27:37','183.83.202.181'),(1460,1,'2017-08-17 07:27:39','183.83.202.181'),(1461,1,'2017-08-17 07:28:10','62.210.244.130'),(1462,1,'2017-08-17 07:30:03','62.210.244.130'),(1463,1,'2017-08-17 07:31:46','62.210.244.130'),(1464,1,'2017-08-17 07:43:25','124.40.246.69'),(1465,1,'2017-08-17 07:43:26','124.40.246.69'),(1466,1,'2017-08-17 07:57:39','124.253.11.212'),(1467,1,'2017-08-17 07:57:41','124.253.11.212'),(1468,1,'2017-08-17 08:08:16','213.236.48.235'),(1469,1,'2017-08-17 08:08:17','94.97.67.113'),(1470,1,'2017-08-17 08:32:30','62.210.244.130'),(1471,1,'2017-08-17 08:35:06','62.210.244.130'),(1472,1,'2017-08-17 08:37:48','62.210.244.130'),(1473,1,'2017-08-17 08:40:31','62.210.244.130'),(1474,1,'2017-08-17 08:42:49','62.210.244.130'),(1475,1,'2017-08-17 08:45:19','62.210.244.130'),(1476,1,'2017-08-17 08:58:11','94.43.155.190'),(1477,1,'2017-08-17 08:58:13','94.43.155.190'),(1478,1,'2017-08-17 09:15:12','220.48.62.84'),(1479,1,'2017-08-17 09:15:14','220.48.62.84'),(1480,1,'2017-08-17 09:46:07','62.210.244.130'),(1481,1,'2017-08-17 09:47:47','43.241.195.179'),(1482,1,'2017-08-17 09:47:49','43.241.195.179'),(1483,1,'2017-08-17 09:48:47','62.210.244.130'),(1484,1,'2017-08-17 09:51:39','62.210.244.130'),(1485,1,'2017-08-17 09:54:20','62.210.244.130'),(1486,1,'2017-08-17 09:56:59','62.210.244.130'),(1487,1,'2017-08-17 09:59:38','62.210.244.130'),(1488,1,'2017-08-17 10:00:38','216.195.23.110'),(1489,1,'2017-08-17 10:00:39','216.195.23.110'),(1490,1,'2017-08-17 10:01:59','62.210.244.130'),(1491,1,'2017-08-17 10:04:40','62.210.244.130'),(1492,1,'2017-08-17 10:06:43','220.227.201.121'),(1493,1,'2017-08-17 10:06:44','115.110.193.154'),(1494,1,'2017-08-17 10:07:12','62.210.244.130'),(1495,1,'2017-08-17 10:08:22','89.3.254.88'),(1496,1,'2017-08-17 10:08:24','89.3.254.88'),(1497,1,'2017-08-17 10:09:41','62.210.244.130'),(1498,1,'2017-08-17 10:11:48','62.210.244.130'),(1499,1,'2017-08-17 10:11:59','180.190.174.89'),(1500,1,'2017-08-17 10:12:01','180.190.174.89'),(1501,1,'2017-08-17 10:57:03','125.212.125.105'),(1502,1,'2017-08-17 10:57:05','125.212.125.105'),(1503,1,'2017-08-17 11:12:51','62.210.244.130'),(1504,1,'2017-08-17 11:15:44','62.210.244.130'),(1505,1,'2017-08-17 11:18:36','62.210.244.130'),(1506,1,'2017-08-17 11:21:29','62.210.244.130'),(1507,1,'2017-08-17 11:24:21','62.210.244.130'),(1508,1,'2017-08-17 11:25:48','62.210.244.130'),(1509,1,'2017-08-17 11:35:16','183.82.17.250'),(1510,1,'2017-08-17 11:35:17','183.82.17.250'),(1511,1,'2017-08-17 11:58:27','45.247.229.63'),(1512,1,'2017-08-17 11:58:28','45.247.229.63'),(1513,1,'2017-08-17 12:26:04','81.205.102.225'),(1514,1,'2017-08-17 12:26:10','81.205.102.225'),(1515,1,'2017-08-17 12:27:54','62.210.244.130'),(1516,1,'2017-08-17 12:30:06','62.210.244.130'),(1517,1,'2017-08-17 12:33:06','62.210.244.130'),(1518,1,'2017-08-17 12:35:53','74.59.96.3'),(1519,1,'2017-08-17 12:35:54','74.59.96.3'),(1520,1,'2017-08-17 12:36:19','62.210.244.130'),(1521,1,'2017-08-17 12:39:29','62.210.244.130'),(1522,1,'2017-08-17 12:39:55','180.190.43.17'),(1523,1,'2017-08-17 12:39:57','180.190.43.17'),(1524,1,'2017-08-17 12:42:40','62.210.244.130'),(1525,1,'2017-08-17 12:45:58','62.210.244.130'),(1526,1,'2017-08-17 12:48:56','41.248.59.72'),(1527,1,'2017-08-17 12:48:57','41.248.59.72'),(1528,1,'2017-08-17 12:49:01','62.210.244.130'),(1529,1,'2017-08-17 12:51:38','210.178.96.155'),(1530,1,'2017-08-17 12:51:40','210.178.96.155'),(1531,1,'2017-08-17 12:51:56','62.210.244.130'),(1532,1,'2017-08-17 12:54:36','62.210.244.130'),(1533,1,'2017-08-17 12:57:58','62.210.244.130'),(1534,1,'2017-08-17 13:01:11','62.210.244.130'),(1535,1,'2017-08-17 13:02:39','112.210.67.155'),(1536,1,'2017-08-17 13:02:41','112.210.67.155'),(1537,1,'2017-08-17 13:04:17','62.210.244.130'),(1538,1,'2017-08-17 13:07:18','62.210.244.130'),(1539,1,'2017-08-17 13:10:35','62.210.244.130'),(1540,1,'2017-08-17 13:13:47','62.210.244.130'),(1541,1,'2017-08-17 13:13:53','83.110.3.86'),(1542,1,'2017-08-17 13:13:55','83.110.3.86'),(1543,1,'2017-08-17 13:16:54','62.210.244.130'),(1544,1,'2017-08-17 13:20:08','62.210.244.130'),(1545,1,'2017-08-17 13:21:32','158.140.166.10'),(1546,1,'2017-08-17 13:21:33','158.140.166.10'),(1547,1,'2017-08-17 13:23:25','62.210.244.130'),(1548,1,'2017-08-17 13:26:39','62.210.244.130'),(1549,1,'2017-08-17 13:29:51','62.210.244.130'),(1550,1,'2017-08-17 13:31:14','51.179.98.157'),(1551,1,'2017-08-17 13:31:16','51.179.98.157'),(1552,1,'2017-08-17 13:33:05','62.210.244.130'),(1553,1,'2017-08-17 13:36:05','39.52.1.140'),(1554,1,'2017-08-17 13:36:07','39.52.1.140'),(1555,1,'2017-08-17 13:36:17','62.210.244.130'),(1556,1,'2017-08-17 13:36:33','1.22.148.86'),(1557,1,'2017-08-17 13:36:35','1.22.148.86'),(1558,1,'2017-08-17 13:39:31','62.210.244.130'),(1559,1,'2017-08-17 13:40:22','49.205.216.193'),(1560,1,'2017-08-17 13:40:28','49.205.216.193'),(1561,1,'2017-08-17 13:41:47','81.213.246.144'),(1562,1,'2017-08-17 13:41:49','81.213.246.144'),(1563,1,'2017-08-17 13:42:45','62.210.244.130'),(1564,1,'2017-08-17 13:46:07','62.210.244.130'),(1565,1,'2017-08-17 13:49:32','62.210.244.130'),(1566,1,'2017-08-17 13:52:57','62.210.244.130'),(1567,1,'2017-08-17 13:56:21','62.210.244.130'),(1568,1,'2017-08-17 13:59:29','182.68.22.78'),(1569,1,'2017-08-17 13:59:31','182.68.22.78'),(1570,1,'2017-08-17 13:59:36','62.210.244.130'),(1571,1,'2017-08-17 14:02:58','62.210.244.130'),(1572,1,'2017-08-17 14:05:28','41.102.219.201'),(1573,1,'2017-08-17 14:05:29','41.102.219.201'),(1574,1,'2017-08-17 14:06:19','62.210.244.130'),(1575,1,'2017-08-17 14:08:00','202.79.36.6'),(1576,1,'2017-08-17 14:08:02','202.79.36.6'),(1577,1,'2017-08-17 14:09:43','62.210.244.130'),(1578,1,'2017-08-17 14:13:08','62.210.244.130'),(1579,1,'2017-08-17 14:16:02','92.44.171.119'),(1580,1,'2017-08-17 14:16:03','92.44.171.119'),(1581,1,'2017-08-17 14:16:32','62.210.244.130'),(1582,1,'2017-08-17 14:18:33','45.247.229.63'),(1583,1,'2017-08-17 14:18:34','45.247.229.63'),(1584,1,'2017-08-17 14:20:00','62.210.244.130'),(1585,1,'2017-08-17 14:23:31','62.210.244.130'),(1586,1,'2017-08-17 14:26:58','62.210.244.130'),(1587,1,'2017-08-17 14:27:45','122.178.149.27'),(1588,1,'2017-08-17 14:27:46','122.178.149.27'),(1589,1,'2017-08-17 14:30:27','62.210.244.130'),(1590,1,'2017-08-17 14:33:50','62.210.244.130'),(1591,1,'2017-08-17 14:37:18','62.210.244.130'),(1592,1,'2017-08-17 14:40:45','62.210.244.130'),(1593,1,'2017-08-17 14:44:10','62.210.244.130'),(1594,1,'2017-08-17 14:47:31','62.210.244.130'),(1595,1,'2017-08-17 14:50:53','62.210.244.130'),(1596,1,'2017-08-17 14:54:12','62.210.244.130'),(1597,1,'2017-08-17 14:57:33','62.210.244.130'),(1598,1,'2017-08-17 15:00:53','62.210.244.130'),(1599,1,'2017-08-17 15:04:19','62.210.244.130'),(1600,1,'2017-08-17 15:07:45','62.210.244.130'),(1601,1,'2017-08-17 15:11:09','62.210.244.130'),(1602,1,'2017-08-17 15:14:35','62.210.244.130'),(1603,1,'2017-08-17 15:17:58','62.210.244.130'),(1604,1,'2017-08-17 15:18:34','188.247.77.139'),(1605,1,'2017-08-17 15:18:35','188.247.77.139'),(1606,1,'2017-08-17 15:19:10','154.241.82.150'),(1607,1,'2017-08-17 15:19:12','154.241.82.150'),(1608,1,'2017-08-17 15:21:24','62.210.244.130'),(1609,1,'2017-08-17 15:24:51','62.210.244.130'),(1610,1,'2017-08-17 15:28:18','62.210.244.130'),(1611,1,'2017-08-17 15:31:44','62.210.244.130'),(1612,1,'2017-08-17 15:35:06','62.210.244.130'),(1613,1,'2017-08-17 15:38:35','62.210.244.130'),(1614,1,'2017-08-17 15:42:07','62.210.244.130'),(1615,1,'2017-08-17 15:45:45','62.210.244.130'),(1616,1,'2017-08-17 15:49:21','62.210.244.130'),(1617,1,'2017-08-17 15:52:59','62.210.244.130'),(1618,1,'2017-08-17 15:54:21','70.26.228.86'),(1619,1,'2017-08-17 15:54:22','70.26.228.86'),(1620,1,'2017-08-17 15:56:36','62.210.244.130'),(1621,1,'2017-08-17 16:00:06','62.210.244.130'),(1622,1,'2017-08-17 16:03:41','62.210.244.130'),(1623,1,'2017-08-17 16:07:16','62.210.244.130'),(1624,1,'2017-08-17 16:10:49','62.210.244.130'),(1625,1,'2017-08-17 16:14:21','62.210.244.130'),(1626,1,'2017-08-17 16:17:55','62.210.244.130'),(1627,1,'2017-08-17 16:21:25','62.210.244.130'),(1628,1,'2017-08-17 16:24:51','62.210.244.130'),(1629,1,'2017-08-17 16:28:21','62.210.244.130'),(1630,1,'2017-08-17 16:31:51','62.210.244.130'),(1631,1,'2017-08-17 16:35:20','62.210.244.130'),(1632,1,'2017-08-17 16:38:05','81.240.79.134'),(1633,1,'2017-08-17 16:38:06','81.240.79.134'),(1634,1,'2017-08-17 16:38:48','62.210.244.130'),(1635,1,'2017-08-17 16:42:19','62.210.244.130'),(1636,1,'2017-08-17 16:45:49','62.210.244.130'),(1637,1,'2017-08-17 16:47:12','190.58.187.154'),(1638,1,'2017-08-17 16:47:13','190.58.187.154'),(1639,1,'2017-08-17 16:49:18','62.210.244.130'),(1640,1,'2017-08-17 16:52:46','62.210.244.130'),(1641,1,'2017-08-17 16:53:52','84.224.24.166'),(1642,1,'2017-08-17 16:53:53','84.224.24.166'),(1643,1,'2017-08-17 16:56:16','62.210.244.130'),(1644,1,'2017-08-17 16:59:42','62.210.244.130'),(1645,1,'2017-08-17 17:03:09','62.210.244.130'),(1646,1,'2017-08-17 17:06:38','62.210.244.130'),(1647,1,'2017-08-17 17:10:08','62.210.244.130'),(1648,1,'2017-08-17 17:13:39','62.210.244.130'),(1649,1,'2017-08-17 17:17:08','62.210.244.130'),(1650,1,'2017-08-17 17:20:39','62.210.244.130'),(1651,1,'2017-08-17 17:24:11','62.210.244.130'),(1652,1,'2017-08-17 17:24:21','90.88.119.183'),(1653,1,'2017-08-17 17:24:22','90.88.119.183'),(1654,1,'2017-08-17 17:27:40','62.210.244.130'),(1655,1,'2017-08-17 17:31:11','62.210.244.130'),(1656,1,'2017-08-17 17:34:48','62.210.244.130'),(1657,1,'2017-08-17 17:38:25','62.210.244.130'),(1658,1,'2017-08-17 17:42:00','62.210.244.130'),(1659,1,'2017-08-17 17:45:36','62.210.244.130'),(1660,1,'2017-08-17 17:49:07','62.210.244.130'),(1661,1,'2017-08-17 17:51:54','126.151.35.118'),(1662,1,'2017-08-17 17:51:56','126.151.35.118'),(1663,1,'2017-08-17 17:52:40','62.210.244.130'),(1664,1,'2017-08-17 17:56:13','62.210.244.130'),(1665,1,'2017-08-17 17:57:49','41.103.218.20'),(1666,1,'2017-08-17 17:57:50','41.103.218.20'),(1667,1,'2017-08-17 17:59:50','62.210.244.130'),(1668,1,'2017-08-17 18:03:24','62.210.244.130'),(1669,1,'2017-08-17 18:06:55','62.210.244.130'),(1670,1,'2017-08-17 18:07:41','81.66.188.161'),(1671,1,'2017-08-17 18:07:43','81.66.188.161'),(1672,1,'2017-08-17 18:10:21','62.210.244.130'),(1673,1,'2017-08-17 18:13:36','62.210.244.130'),(1674,1,'2017-08-17 18:16:26','105.109.27.153'),(1675,1,'2017-08-17 18:16:27','105.109.27.153'),(1676,1,'2017-08-17 18:17:12','62.210.244.130'),(1677,1,'2017-08-17 18:20:50','62.210.244.130'),(1678,1,'2017-08-17 18:23:30','190.121.145.21'),(1679,1,'2017-08-17 18:23:31','190.121.145.21'),(1680,1,'2017-08-17 18:24:25','62.210.244.130'),(1681,1,'2017-08-17 18:28:06','62.210.244.130'),(1682,1,'2017-08-17 18:30:10','201.29.212.251'),(1683,1,'2017-08-17 18:30:12','201.29.212.251'),(1684,1,'2017-08-17 18:31:46','62.210.244.130'),(1685,1,'2017-08-17 18:35:27','62.210.244.130'),(1686,1,'2017-08-17 18:36:19','79.106.209.101'),(1687,1,'2017-08-17 18:38:58','62.210.244.130'),(1688,1,'2017-08-17 18:42:39','62.210.244.130'),(1689,1,'2017-08-17 18:46:18','62.210.244.130'),(1690,1,'2017-08-17 18:49:58','62.210.244.130'),(1691,1,'2017-08-17 18:53:40','62.210.244.130'),(1692,1,'2017-08-17 18:57:21','62.210.244.130'),(1693,1,'2017-08-17 19:01:02','62.210.244.130'),(1694,1,'2017-08-17 19:04:43','62.210.244.130'),(1695,1,'2017-08-17 19:08:25','62.210.244.130'),(1696,1,'2017-08-17 19:12:06','62.210.244.130'),(1697,1,'2017-08-17 19:15:47','62.210.244.130'),(1698,1,'2017-08-17 19:19:20','62.210.244.130'),(1699,1,'2017-08-17 19:23:01','62.210.244.130'),(1700,1,'2017-08-17 19:23:46','189.20.100.58'),(1701,1,'2017-08-17 19:23:48','189.20.100.58'),(1702,1,'2017-08-17 19:26:38','58.152.205.47'),(1703,1,'2017-08-17 19:26:40','58.152.205.47'),(1704,1,'2017-08-17 19:26:42','62.210.244.130'),(1705,1,'2017-08-17 19:30:16','62.210.244.130'),(1706,1,'2017-08-17 19:31:06','76.76.189.41'),(1707,1,'2017-08-17 19:31:10','76.76.189.41'),(1708,1,'2017-08-17 19:34:00','62.210.244.130'),(1709,1,'2017-08-17 19:35:46','122.174.121.101'),(1710,1,'2017-08-17 19:35:48','122.174.121.101'),(1711,1,'2017-08-17 19:37:40','62.210.244.130'),(1712,1,'2017-08-17 19:41:20','62.210.244.130'),(1713,1,'2017-08-17 19:42:14','101.188.49.211'),(1714,1,'2017-08-17 19:42:16','101.188.49.211'),(1715,1,'2017-08-17 19:45:03','62.210.244.130'),(1716,1,'2017-08-17 19:48:40','62.210.244.130'),(1717,1,'2017-08-17 19:52:26','62.210.244.130'),(1718,1,'2017-08-17 19:56:16','62.210.244.130'),(1719,1,'2017-08-17 19:58:38','181.193.68.70'),(1720,1,'2017-08-17 20:00:06','62.210.244.130'),(1721,1,'2017-08-17 20:03:53','62.210.244.130'),(1722,1,'2017-08-17 20:06:48','137.103.35.117'),(1723,1,'2017-08-17 20:06:49','137.103.35.117'),(1724,1,'2017-08-17 20:07:42','62.210.244.130'),(1725,1,'2017-08-17 20:11:29','62.210.244.130'),(1726,1,'2017-08-17 20:15:15','62.210.244.130'),(1727,1,'2017-08-17 20:17:14','27.106.7.50'),(1728,1,'2017-08-17 20:17:15','27.106.7.50'),(1729,1,'2017-08-17 20:17:43','89.231.55.124'),(1730,1,'2017-08-17 20:17:44','89.231.55.124'),(1731,1,'2017-08-17 20:18:56','62.210.244.130'),(1732,1,'2017-08-17 20:22:37','62.210.244.130'),(1733,1,'2017-08-17 20:23:09','179.110.75.102'),(1734,1,'2017-08-17 20:23:10','179.110.75.102'),(1735,1,'2017-08-17 20:24:23','39.59.161.62'),(1736,1,'2017-08-17 20:24:25','39.59.161.62'),(1737,1,'2017-08-17 20:26:21','62.210.244.130'),(1738,1,'2017-08-17 20:30:03','62.210.244.130'),(1739,1,'2017-08-17 20:33:52','62.210.244.130'),(1740,1,'2017-08-17 20:37:41','62.210.244.130'),(1741,1,'2017-08-17 20:41:26','62.210.244.130'),(1742,1,'2017-08-17 20:45:12','62.210.244.130'),(1743,1,'2017-08-17 20:49:00','62.210.244.130'),(1744,1,'2017-08-17 20:50:55','81.249.206.229'),(1745,1,'2017-08-17 20:50:56','81.249.206.229'),(1746,1,'2017-08-17 20:52:42','62.210.244.130'),(1747,1,'2017-08-17 20:56:28','62.210.244.130'),(1748,1,'2017-08-17 21:00:02','62.210.244.130'),(1749,1,'2017-08-17 21:03:42','62.210.244.130'),(1750,1,'2017-08-17 21:07:27','62.210.244.130'),(1751,1,'2017-08-17 21:11:12','62.210.244.130'),(1752,1,'2017-08-17 21:14:52','62.210.244.130'),(1753,1,'2017-08-17 21:18:16','62.210.244.130'),(1754,1,'2017-08-17 21:20:26','181.168.156.124'),(1755,1,'2017-08-17 21:20:28','181.168.156.124'),(1756,1,'2017-08-17 21:22:23','62.210.244.130'),(1757,1,'2017-08-17 21:26:28','62.210.244.130'),(1758,1,'2017-08-17 21:27:16','90.107.163.53'),(1759,1,'2017-08-17 21:27:17','90.107.163.53'),(1760,1,'2017-08-17 21:29:44','62.210.244.130'),(1761,1,'2017-08-17 21:33:36','62.210.244.130'),(1762,1,'2017-08-17 21:37:06','62.210.244.130'),(1763,1,'2017-08-17 21:40:54','62.210.244.130'),(1764,1,'2017-08-17 21:42:04','212.10.86.151'),(1765,1,'2017-08-17 21:42:05','212.10.86.151'),(1766,1,'2017-08-17 21:45:07','62.210.244.130'),(1767,1,'2017-08-17 21:49:13','62.210.244.130'),(1768,1,'2017-08-17 21:53:20','62.210.244.130'),(1769,1,'2017-08-17 21:56:36','173.244.48.185'),(1770,1,'2017-08-17 21:56:38','173.244.48.185'),(1771,1,'2017-08-17 21:57:31','62.210.244.130'),(1772,1,'2017-08-17 22:01:34','62.210.244.130'),(1773,1,'2017-08-17 22:05:43','62.210.244.130'),(1774,1,'2017-08-17 22:08:36','81.206.135.68'),(1775,1,'2017-08-17 22:08:36','81.206.135.68'),(1776,1,'2017-08-17 22:10:36','62.210.244.130'),(1777,1,'2017-08-17 22:15:25','62.210.244.130'),(1778,1,'2017-08-17 22:19:17','177.129.254.30'),(1779,1,'2017-08-17 22:19:18','177.129.254.30'),(1780,1,'2017-08-17 22:20:17','62.210.244.130'),(1781,1,'2017-08-17 22:25:06','62.210.244.130'),(1782,1,'2017-08-17 22:29:58','62.210.244.130'),(1783,1,'2017-08-17 22:34:48','62.210.244.130'),(1784,1,'2017-08-17 22:34:52','134.19.230.204'),(1785,1,'2017-08-17 22:35:01','220.163.44.180'),(1786,1,'2017-08-17 22:35:22','124.65.222.38'),(1787,1,'2017-08-17 22:37:56','74.59.96.3'),(1788,1,'2017-08-17 22:37:57','74.59.96.3'),(1789,1,'2017-08-17 22:39:36','62.210.244.130'),(1790,1,'2017-08-17 22:40:02','78.167.92.202'),(1791,1,'2017-08-17 22:40:05','78.167.92.202'),(1792,1,'2017-08-17 22:43:39','138.118.176.94'),(1793,1,'2017-08-17 22:43:41','138.118.176.94'),(1794,1,'2017-08-17 22:44:20','62.210.244.130'),(1795,1,'2017-08-17 22:49:08','62.210.244.130'),(1796,1,'2017-08-17 22:50:21','37.4.249.145'),(1797,1,'2017-08-17 22:50:22','37.4.249.145'),(1798,1,'2017-08-17 22:56:22','94.98.250.18'),(1799,1,'2017-08-17 22:56:23','94.98.250.18'),(1800,1,'2017-08-17 23:05:51','123.20.178.104'),(1801,1,'2017-08-17 23:05:53','123.20.178.104'),(1802,1,'2017-08-17 23:06:01','103.47.134.70'),(1803,1,'2017-08-17 23:06:02','103.47.134.70'),(1804,1,'2017-08-17 23:24:15','87.116.189.48'),(1805,1,'2017-08-17 23:24:15','87.116.189.48'),(1806,1,'2017-08-17 23:36:15','105.112.17.92'),(1807,1,'2017-08-17 23:36:16','105.112.17.92'),(1808,1,'2017-08-17 23:36:35','41.102.170.34'),(1809,1,'2017-08-17 23:36:37','41.102.170.34'),(1810,1,'2017-08-18 00:09:17','24.127.100.112'),(1811,1,'2017-08-18 00:09:18','24.127.100.112'),(1812,1,'2017-08-18 00:11:26','37.219.24.146'),(1813,1,'2017-08-18 00:11:27','37.219.24.146'),(1814,1,'2017-08-18 00:16:23','154.68.5.49'),(1815,1,'2017-08-18 00:16:25','154.68.5.49'),(1816,1,'2017-08-18 00:24:53','41.100.39.43'),(1817,1,'2017-08-18 00:24:54','41.100.39.43'),(1818,1,'2017-08-18 00:54:44','187.181.244.62'),(1819,1,'2017-08-18 00:54:46','187.181.244.62'),(1820,1,'2017-08-18 01:27:22','180.191.114.69'),(1821,1,'2017-08-18 01:27:24','180.191.114.69'),(1822,1,'2017-08-18 01:37:31','47.38.135.45'),(1823,1,'2017-08-18 01:37:32','47.38.135.45'),(1824,1,'2017-08-18 01:43:33','73.94.169.122'),(1825,1,'2017-08-18 01:43:34','73.94.169.122'),(1826,1,'2017-08-18 01:52:32','97.103.115.233'),(1827,1,'2017-08-18 01:52:34','97.103.115.233'),(1828,1,'2017-08-18 01:55:37','37.142.139.135'),(1829,1,'2017-08-18 01:55:38','37.142.139.135'),(1830,1,'2017-08-18 02:19:11','103.22.172.131'),(1831,1,'2017-08-18 02:19:14','103.22.172.131'),(1832,1,'2017-08-18 02:54:24','189.238.184.107'),(1833,1,'2017-08-18 02:54:26','189.238.184.107'),(1834,1,'2017-08-18 03:06:59','186.247.219.225'),(1835,1,'2017-08-18 03:07:01','186.247.219.225'),(1836,1,'2017-08-18 03:15:02','169.0.102.230'),(1837,1,'2017-08-18 03:15:03','169.0.102.230'),(1838,1,'2017-08-18 04:14:25','187.190.163.33'),(1839,1,'2017-08-18 04:14:26','187.190.163.33'),(1840,1,'2017-08-18 04:43:59','223.30.165.42'),(1841,1,'2017-08-18 04:44:00','223.30.165.42'),(1842,1,'2017-08-18 04:54:43','111.119.62.141'),(1843,1,'2017-08-18 04:54:44','111.119.62.141'),(1844,1,'2017-08-18 05:02:29','41.13.228.248'),(1845,1,'2017-08-18 05:02:31','41.13.228.248'),(1846,1,'2017-08-18 05:09:08','200.77.105.75'),(1847,1,'2017-08-18 05:09:09','200.77.105.75'),(1848,1,'2017-08-18 05:15:50','85.75.138.139'),(1849,1,'2017-08-18 05:15:51','85.75.138.139'),(1850,1,'2017-08-18 05:34:01','109.175.98.38'),(1851,1,'2017-08-18 05:34:02','109.175.98.38'),(1852,1,'2017-08-18 06:20:22','109.185.243.88'),(1853,1,'2017-08-18 06:20:23','109.185.243.88'),(1854,1,'2017-08-18 06:22:18','117.197.201.160'),(1855,1,'2017-08-18 06:22:20','117.197.201.160'),(1856,1,'2017-08-18 06:37:31','103.66.232.138'),(1857,1,'2017-08-18 06:37:32','103.66.232.138'),(1858,1,'2017-08-18 06:50:23','197.6.239.254'),(1859,1,'2017-08-18 06:50:31','197.6.239.254'),(1860,1,'2017-08-18 07:05:32','193.86.80.210'),(1861,1,'2017-08-18 07:05:33','193.86.80.210'),(1862,1,'2017-08-18 07:08:37','207.204.65.103'),(1863,1,'2017-08-18 07:08:39','207.204.65.103'),(1864,1,'2017-08-18 07:34:03','189.30.197.226'),(1865,1,'2017-08-18 07:34:04','189.30.197.226'),(1866,1,'2017-08-18 07:59:15','178.22.112.2'),(1867,1,'2017-08-18 07:59:15','178.22.112.2'),(1868,1,'2017-08-18 08:13:42','31.215.119.108'),(1869,1,'2017-08-18 08:13:43','31.215.119.108'),(1870,1,'2017-08-18 08:20:03','94.110.135.101'),(1871,1,'2017-08-18 08:20:04','94.110.135.101'),(1872,1,'2017-08-18 08:39:09','139.167.13.103'),(1873,1,'2017-08-18 08:39:20','139.167.13.103'),(1874,1,'2017-08-18 08:43:16','121.97.150.77'),(1875,1,'2017-08-18 08:43:19','121.97.150.77'),(1876,1,'2017-08-18 09:13:07','174.54.91.118'),(1877,1,'2017-08-18 09:13:09','174.54.91.118'),(1878,1,'2017-08-18 09:27:34','149.255.210.186'),(1879,1,'2017-08-18 09:27:36','149.255.210.186'),(1880,1,'2017-08-18 09:30:27','143.159.126.115'),(1881,1,'2017-08-18 09:30:28','143.159.126.115'),(1882,1,'2017-08-18 09:33:23','175.196.182.106'),(1883,1,'2017-08-18 09:33:24','175.196.182.106'),(1884,1,'2017-08-18 10:07:02','110.54.173.73'),(1885,1,'2017-08-18 10:07:04','110.54.173.73'),(1886,1,'2017-08-18 11:19:44','49.151.137.152'),(1887,1,'2017-08-18 11:19:46','49.151.137.152'),(1888,1,'2017-08-18 11:23:26','89.138.234.57'),(1889,1,'2017-08-18 11:23:27','89.138.234.57'),(1890,1,'2017-08-18 11:30:08','222.252.27.140'),(1891,1,'2017-08-18 11:30:09','222.252.27.140'),(1892,1,'2017-08-18 11:44:29','86.99.138.222'),(1893,1,'2017-08-18 11:44:30','86.99.138.222'),(1894,1,'2017-08-18 12:00:55','86.177.154.101'),(1895,1,'2017-08-18 12:00:56','86.177.154.101'),(1896,1,'2017-08-18 12:01:00','116.72.14.177'),(1897,1,'2017-08-18 12:01:01','116.72.14.177'),(1898,1,'2017-08-18 12:02:53','35.202.173.130'),(1899,1,'2017-08-18 12:02:54','35.202.173.130'),(1900,1,'2017-08-18 12:02:56','35.202.173.130'),(1901,1,'2017-08-18 12:04:42','176.223.18.174'),(1902,1,'2017-08-18 12:04:43','176.223.18.174'),(1903,1,'2017-08-18 12:07:07','171.78.240.174'),(1904,1,'2017-08-18 12:07:08','171.78.240.174'),(1905,1,'2017-08-18 12:12:14','196.203.111.161'),(1906,1,'2017-08-18 12:12:14','196.203.111.161'),(1907,1,'2017-08-18 12:20:06','70.52.106.116'),(1908,1,'2017-08-18 12:20:07','70.52.106.116'),(1909,1,'2017-08-18 12:22:21','185.135.69.85'),(1910,1,'2017-08-18 12:22:23','185.135.69.85'),(1911,1,'2017-08-18 12:24:34','103.24.20.102'),(1912,1,'2017-08-18 12:24:35','103.24.20.102'),(1913,1,'2017-08-18 12:25:17','103.240.194.246'),(1914,1,'2017-08-18 12:25:18','103.240.194.246'),(1915,1,'2017-08-18 12:35:37','103.44.33.124'),(1916,1,'2017-08-18 12:35:39','103.44.33.124'),(1917,1,'2017-08-18 13:01:33','175.138.176.185'),(1918,1,'2017-08-18 13:01:34','175.138.176.185'),(1919,1,'2017-08-18 13:03:39','112.196.169.182'),(1920,1,'2017-08-18 13:03:41','112.196.169.182'),(1921,1,'2017-08-18 13:08:42','103.218.153.233'),(1922,1,'2017-08-18 13:08:46','103.218.153.233'),(1923,1,'2017-08-18 13:14:03','79.129.238.58'),(1924,1,'2017-08-18 13:14:04','79.129.238.58'),(1925,1,'2017-08-18 13:22:05','182.156.196.2'),(1926,1,'2017-08-18 13:22:06','182.156.196.2'),(1927,1,'2017-08-18 13:26:35','103.248.174.30'),(1928,1,'2017-08-18 13:26:36','103.248.174.30'),(1929,1,'2017-08-18 14:10:19','41.218.234.70'),(1930,1,'2017-08-18 14:10:20','41.218.234.70'),(1931,1,'2017-08-18 14:13:35','122.178.187.26'),(1932,1,'2017-08-18 14:13:36','122.178.187.26'),(1933,1,'2017-08-18 14:24:55','5.71.213.63'),(1934,1,'2017-08-18 14:24:56','5.71.213.63'),(1935,1,'2017-08-18 15:02:17','117.247.162.173'),(1936,1,'2017-08-18 15:02:19','117.247.162.173'),(1937,1,'2017-08-18 15:33:57','110.139.176.66'),(1938,1,'2017-08-18 15:33:59','110.139.176.66'),(1939,1,'2017-08-18 15:46:25','90.33.20.118'),(1940,1,'2017-08-18 15:46:26','90.33.20.118'),(1941,1,'2017-08-18 15:51:48','49.207.54.249'),(1942,1,'2017-08-18 15:51:49','49.207.54.249'),(1943,1,'2017-08-18 16:07:40','23.233.246.107'),(1944,1,'2017-08-18 16:07:41','23.233.246.107'),(1945,1,'2017-08-18 16:11:50','59.98.59.4'),(1946,1,'2017-08-18 16:11:51','59.98.59.4'),(1947,1,'2017-08-18 16:15:34','62.42.162.125'),(1948,1,'2017-08-18 16:15:35','62.42.162.125'),(1949,1,'2017-08-18 16:18:59','138.118.176.94'),(1950,1,'2017-08-18 16:19:01','138.118.176.94'),(1951,1,'2017-08-18 16:35:22','103.71.168.142'),(1952,1,'2017-08-18 16:35:25','103.71.168.142'),(1953,1,'2017-08-18 17:06:55','82.155.232.30'),(1954,1,'2017-08-18 17:06:56','82.155.232.30'),(1955,1,'2017-08-18 17:26:21','87.26.105.194'),(1956,1,'2017-08-18 17:26:22','87.26.105.194'),(1957,1,'2017-08-18 17:34:03','186.101.137.171'),(1958,1,'2017-08-18 17:34:05','186.101.137.171'),(1959,1,'2017-08-18 17:39:59','197.211.56.76'),(1960,1,'2017-08-18 17:40:01','197.211.56.76'),(1961,1,'2017-08-18 17:55:52','37.157.215.87'),(1962,1,'2017-08-18 17:55:53','37.157.215.87'),(1963,1,'2017-08-18 17:55:55','80.3.153.160'),(1964,1,'2017-08-18 17:55:56','80.3.153.160'),(1965,1,'2017-08-18 18:19:41','5.14.224.147'),(1966,1,'2017-08-18 18:19:42','5.14.224.147'),(1967,1,'2017-08-18 18:21:02','185.115.100.15'),(1968,1,'2017-08-18 18:21:03','185.115.100.15'),(1969,1,'2017-08-18 18:34:37','89.64.39.95'),(1970,1,'2017-08-18 18:34:39','89.64.39.95'),(1971,1,'2017-08-18 18:37:44','160.176.133.240'),(1972,1,'2017-08-18 18:37:45','160.176.133.240'),(1973,1,'2017-08-18 19:13:48','145.255.1.60'),(1974,1,'2017-08-18 19:13:49','145.255.1.60'),(1975,1,'2017-08-18 19:17:15','187.190.80.254'),(1976,1,'2017-08-18 19:17:16','187.190.80.254'),(1977,1,'2017-08-18 19:19:58','46.71.100.177'),(1978,1,'2017-08-18 19:20:00','46.71.100.177'),(1979,1,'2017-08-18 19:38:57','176.139.223.4'),(1980,1,'2017-08-18 19:38:58','176.139.223.4'),(1981,1,'2017-08-18 20:17:21','122.8.182.196'),(1982,1,'2017-08-18 20:17:23','122.8.182.196'),(1983,1,'2017-08-18 20:20:35','177.40.252.174'),(1984,1,'2017-08-18 20:20:37','177.40.252.174'),(1985,1,'2017-08-18 20:27:16','182.48.194.201'),(1986,1,'2017-08-18 20:27:17','182.48.194.201'),(1987,1,'2017-08-18 20:45:41','126.22.9.183'),(1988,1,'2017-08-18 20:45:43','126.22.9.183'),(1989,1,'2017-08-18 20:59:01','83.53.38.6'),(1990,1,'2017-08-18 20:59:02','83.53.38.6'),(1991,1,'2017-08-18 21:19:06','130.56.207.193'),(1992,1,'2017-08-18 21:19:09','130.56.207.193'),(1993,1,'2017-08-18 21:29:01','200.180.198.36'),(1994,1,'2017-08-18 21:29:06','200.180.198.36'),(1995,1,'2017-08-18 22:19:53','73.201.245.199'),(1996,1,'2017-08-18 22:19:56','73.201.245.199'),(1997,1,'2017-08-18 22:45:41','109.96.64.70'),(1998,1,'2017-08-18 22:45:42','109.96.64.70'),(1999,1,'2017-08-18 23:26:35','92.241.39.72'),(2000,1,'2017-08-18 23:26:36','92.241.39.72'),(2001,1,'2017-08-18 23:31:43','49.146.2.68'),(2002,1,'2017-08-18 23:31:50','49.146.2.68'),(2003,1,'2017-08-19 00:08:34','86.136.159.174'),(2004,1,'2017-08-19 00:08:35','86.136.159.174'),(2005,1,'2017-08-19 00:17:28','186.158.224.37'),(2006,1,'2017-08-19 00:17:29','186.158.224.37'),(2007,1,'2017-08-19 00:38:35','2.49.163.116'),(2008,1,'2017-08-19 00:38:36','2.49.163.116'),(2009,1,'2017-08-19 00:46:26','188.127.111.17'),(2010,1,'2017-08-19 00:46:28','188.127.111.17'),(2011,1,'2017-08-19 00:54:29','190.104.237.40'),(2012,1,'2017-08-19 00:54:30','190.104.237.40'),(2013,1,'2017-08-19 01:14:20','212.92.121.207'),(2014,1,'2017-08-19 01:14:21','212.92.121.207'),(2015,1,'2017-08-19 01:56:57','102.251.209.201'),(2016,1,'2017-08-19 01:56:59','102.251.209.201'),(2017,1,'2017-08-19 01:58:13','90.55.15.184'),(2018,1,'2017-08-19 01:58:14','90.55.15.184'),(2019,1,'2017-08-19 02:02:52','156.222.103.204'),(2020,1,'2017-08-19 02:02:54','156.222.103.204'),(2021,1,'2017-08-19 02:15:43','175.158.216.35'),(2022,1,'2017-08-19 02:15:45','175.158.216.35'),(2023,1,'2017-08-19 02:18:57','5.156.25.59'),(2024,1,'2017-08-19 02:18:58','5.156.25.59'),(2025,1,'2017-08-19 02:46:33','94.63.119.168'),(2026,1,'2017-08-19 02:46:34','94.63.119.168'),(2027,1,'2017-08-19 03:07:37','88.207.252.153'),(2028,1,'2017-08-19 03:07:38','88.207.252.153'),(2029,1,'2017-08-19 03:09:43','78.84.117.34'),(2030,1,'2017-08-19 03:09:44','78.84.117.34'),(2031,1,'2017-08-19 03:33:31','114.199.9.17'),(2032,1,'2017-08-19 03:33:32','114.199.9.17'),(2033,1,'2017-08-19 03:34:00','27.7.217.102'),(2034,1,'2017-08-19 03:34:01','27.7.217.102'),(2035,1,'2017-08-19 03:45:24','196.206.5.143'),(2036,1,'2017-08-19 03:48:11','175.136.117.50'),(2037,1,'2017-08-19 03:48:12','175.136.117.50'),(2038,1,'2017-08-19 03:52:03','221.121.50.36'),(2039,1,'2017-08-19 03:52:05','221.121.50.36'),(2040,1,'2017-08-19 05:02:17','112.135.0.113'),(2041,1,'2017-08-19 05:02:18','112.135.0.113'),(2042,1,'2017-08-19 05:16:49','178.72.189.46'),(2043,1,'2017-08-19 05:16:50','178.72.189.46'),(2044,1,'2017-08-19 05:18:35','117.196.69.15'),(2045,1,'2017-08-19 05:18:36','117.196.69.15'),(2046,1,'2017-08-19 05:26:56','211.44.159.92'),(2047,1,'2017-08-19 05:26:58','211.44.159.92'),(2048,1,'2017-08-19 05:35:10','180.250.101.146'),(2049,1,'2017-08-19 05:35:12','180.250.101.146'),(2050,1,'2017-08-19 06:04:57','49.144.166.225'),(2051,1,'2017-08-19 06:04:59','49.144.166.225'),(2052,1,'2017-08-19 06:28:40','118.148.70.184'),(2053,1,'2017-08-19 06:28:42','118.148.70.184'),(2054,1,'2017-08-19 06:58:48','2.25.254.252'),(2055,1,'2017-08-19 06:58:50','2.25.254.252'),(2056,1,'2017-08-19 07:36:52','106.210.147.118'),(2057,1,'2017-08-19 07:36:53','106.210.147.118'),(2058,1,'2017-08-19 07:46:58','78.100.163.104'),(2059,1,'2017-08-19 07:47:00','78.100.163.104'),(2060,1,'2017-08-19 07:59:22','113.11.2.115'),(2061,1,'2017-08-19 07:59:24','113.11.2.115'),(2062,1,'2017-08-19 08:16:34','117.202.34.102'),(2063,1,'2017-08-19 08:18:12','117.202.34.102'),(2064,1,'2017-08-19 08:45:17','79.31.20.174'),(2065,1,'2017-08-19 08:45:18','79.31.20.174'),(2066,1,'2017-08-19 08:59:33','182.183.144.246'),(2067,1,'2017-08-19 08:59:35','182.183.144.246'),(2068,1,'2017-08-19 09:05:50','92.97.163.209'),(2069,1,'2017-08-19 09:05:52','92.97.163.209'),(2070,1,'2017-08-19 09:06:21','5.55.27.176'),(2071,1,'2017-08-19 09:06:22','5.55.27.176'),(2072,1,'2017-08-19 09:08:38','202.9.40.183'),(2073,1,'2017-08-19 09:08:39','202.9.40.183'),(2074,1,'2017-08-19 09:26:58','177.205.69.154'),(2075,1,'2017-08-19 09:26:59','177.205.69.154'),(2076,1,'2017-08-19 09:32:27','112.200.206.184'),(2077,1,'2017-08-19 09:32:29','112.200.206.184'),(2078,1,'2017-08-19 09:37:59','93.143.214.239'),(2079,1,'2017-08-19 09:38:00','93.143.214.239'),(2080,1,'2017-08-19 09:43:33','119.157.0.97'),(2081,1,'2017-08-19 09:43:34','119.157.0.97'),(2082,1,'2017-08-19 10:13:00','109.96.192.91'),(2083,1,'2017-08-19 10:13:01','109.96.192.91'),(2084,1,'2017-08-19 10:19:13','5.15.28.71'),(2085,1,'2017-08-19 10:19:14','5.15.28.71'),(2086,1,'2017-08-19 10:27:18','45.127.23.254'),(2087,1,'2017-08-19 10:27:20','45.127.23.254'),(2088,1,'2017-08-19 10:54:52','115.186.157.4'),(2089,1,'2017-08-19 10:54:55','115.186.157.4'),(2090,1,'2017-08-19 11:12:39','86.127.13.233'),(2091,1,'2017-08-19 11:12:40','86.127.13.233'),(2092,1,'2017-08-19 11:13:55','82.160.216.160'),(2093,1,'2017-08-19 11:13:56','82.160.216.160'),(2094,1,'2017-08-19 11:24:09','197.2.166.146'),(2095,1,'2017-08-19 11:24:10','197.2.166.146'),(2096,1,'2017-08-19 11:24:27','82.72.84.130'),(2097,1,'2017-08-19 11:24:28','82.72.84.130'),(2098,1,'2017-08-19 12:58:58','24.31.148.83'),(2099,1,'2017-08-19 12:58:59','24.31.148.83'),(2100,1,'2017-08-19 13:05:40','116.97.5.108'),(2101,1,'2017-08-19 13:05:42','116.97.5.108'),(2102,1,'2017-08-19 13:46:06','156.223.42.181'),(2103,1,'2017-08-19 13:46:07','156.223.42.181'),(2104,1,'2017-08-19 13:49:30','41.109.83.129'),(2105,1,'2017-08-19 13:49:32','41.109.83.129'),(2106,1,'2017-08-19 13:51:41','122.167.194.244'),(2107,1,'2017-08-19 13:51:42','122.167.194.244'),(2108,1,'2017-08-19 14:41:08','193.165.96.77'),(2109,1,'2017-08-19 14:41:09','193.165.96.77'),(2110,1,'2017-08-19 15:04:16','39.37.158.142'),(2111,1,'2017-08-19 15:04:17','39.37.158.142'),(2112,1,'2017-08-19 15:08:16','92.55.49.108'),(2113,1,'2017-08-19 15:08:17','92.55.49.108'),(2114,1,'2017-08-19 15:24:58','93.171.21.78'),(2115,1,'2017-08-19 15:24:59','93.171.21.78'),(2116,1,'2017-08-19 15:35:15','36.76.111.225'),(2117,1,'2017-08-19 15:35:16','36.76.111.225'),(2118,1,'2017-08-19 15:58:17','212.11.180.190'),(2119,1,'2017-08-19 15:58:19','212.11.180.190'),(2120,1,'2017-08-19 16:01:22','188.53.204.45'),(2121,1,'2017-08-19 16:01:24','188.53.204.45'),(2122,1,'2017-08-19 16:09:59','100.33.59.113'),(2123,1,'2017-08-19 16:10:00','100.33.59.113'),(2124,1,'2017-08-19 16:27:33','105.110.42.38'),(2125,1,'2017-08-19 16:27:35','105.110.42.38'),(2126,1,'2017-08-19 16:57:15','94.52.55.228'),(2127,1,'2017-08-19 16:57:16','94.52.55.228'),(2128,1,'2017-08-19 17:06:38','175.158.53.70'),(2129,1,'2017-08-19 17:06:40','175.158.53.70'),(2130,1,'2017-08-19 17:34:50','190.5.48.223'),(2131,1,'2017-08-19 17:34:52','190.5.48.223'),(2132,1,'2017-08-19 17:38:26','117.203.199.92'),(2133,1,'2017-08-19 17:38:27','117.203.199.92'),(2134,1,'2017-08-19 17:41:13','156.222.134.108'),(2135,1,'2017-08-19 17:41:15','156.222.134.108'),(2136,1,'2017-08-19 17:53:15','183.83.78.29'),(2137,1,'2017-08-19 17:53:17','183.83.78.29'),(2138,1,'2017-08-19 18:03:44','117.20.115.25'),(2139,1,'2017-08-19 18:03:47','117.20.115.25'),(2140,1,'2017-08-19 18:18:52','1.238.220.67'),(2141,1,'2017-08-19 18:18:54','1.238.220.67'),(2142,1,'2017-08-19 18:24:39','82.210.178.139'),(2143,1,'2017-08-19 18:24:40','82.210.178.139'),(2144,1,'2017-08-19 18:26:52','88.203.67.226'),(2145,1,'2017-08-19 18:27:20','88.203.67.226'),(2146,1,'2017-08-19 18:54:00','93.41.111.161'),(2147,1,'2017-08-19 18:54:01','93.41.111.161'),(2148,1,'2017-08-19 19:20:04','122.161.158.218'),(2149,1,'2017-08-19 19:20:05','122.161.158.218'),(2150,1,'2017-08-19 19:22:34','62.83.63.193'),(2151,1,'2017-08-19 19:22:35','62.83.63.193'),(2152,1,'2017-08-19 19:22:54','122.172.23.106'),(2153,1,'2017-08-19 19:22:55','122.172.23.106'),(2154,1,'2017-08-19 19:38:17','201.6.227.95'),(2155,1,'2017-08-19 19:38:18','201.6.227.95'),(2156,1,'2017-08-19 19:38:23','175.33.3.69'),(2157,1,'2017-08-19 19:38:25','175.33.3.69'),(2158,1,'2017-08-19 19:45:06','186.179.210.130'),(2159,1,'2017-08-19 19:45:07','186.179.210.130'),(2160,1,'2017-08-19 19:50:13','90.69.57.20'),(2161,1,'2017-08-19 19:50:14','90.69.57.20'),(2162,1,'2017-08-19 19:50:35','103.42.210.170'),(2163,1,'2017-08-19 19:50:37','103.42.210.170'),(2164,1,'2017-08-19 20:09:10','66.27.155.115'),(2165,1,'2017-08-19 20:09:12','66.27.155.115'),(2166,1,'2017-08-19 20:23:26','186.179.67.98'),(2167,1,'2017-08-19 20:23:27','186.179.67.98'),(2168,1,'2017-08-19 20:37:45','41.97.45.98'),(2169,1,'2017-08-19 20:37:47','41.97.45.98'),(2170,1,'2017-08-19 21:20:17','80.215.41.67'),(2171,1,'2017-08-19 21:20:18','80.215.41.67'),(2172,1,'2017-08-19 21:38:53','78.61.15.78'),(2173,1,'2017-08-19 21:38:54','78.61.15.78'),(2174,1,'2017-08-19 21:45:52','90.9.42.90'),(2175,1,'2017-08-19 21:45:54','90.9.42.90'),(2176,1,'2017-08-19 22:06:24','31.47.0.61'),(2177,1,'2017-08-19 22:06:26','31.47.0.61'),(2178,1,'2017-08-19 22:10:47','41.85.161.134'),(2179,1,'2017-08-19 22:10:49','41.85.161.134'),(2180,1,'2017-08-19 22:49:31','175.137.167.250'),(2181,1,'2017-08-19 22:49:33','175.137.167.250'),(2182,1,'2017-08-20 00:18:55','181.46.232.118'),(2183,1,'2017-08-20 00:19:17','181.46.232.118'),(2184,1,'2017-08-20 00:27:52','31.215.86.132'),(2185,1,'2017-08-20 00:27:54','31.215.86.132'),(2186,1,'2017-08-20 00:32:47','60.52.35.221'),(2187,1,'2017-08-20 00:32:49','60.52.35.221'),(2188,1,'2017-08-20 00:51:47','64.150.210.37'),(2189,1,'2017-08-20 00:51:48','176.31.225.170'),(2190,1,'2017-08-20 00:51:49','64.150.210.37'),(2191,1,'2017-08-20 00:51:52','176.31.225.170'),(2192,1,'2017-08-20 00:56:25','91.121.140.176'),(2193,1,'2017-08-20 00:56:27','91.121.140.176'),(2194,1,'2017-08-20 01:01:12','59.106.221.75'),(2195,1,'2017-08-20 01:01:14','59.106.221.75'),(2196,1,'2017-08-20 01:15:01','176.31.225.170'),(2197,1,'2017-08-20 01:15:09','176.31.225.170'),(2198,1,'2017-08-20 02:09:34','47.8.13.239'),(2199,1,'2017-08-20 02:09:36','47.8.13.239'),(2200,1,'2017-08-20 02:09:42','177.16.44.186'),(2201,1,'2017-08-20 02:09:43','177.16.44.186'),(2202,1,'2017-08-20 02:10:11','39.50.110.179'),(2203,1,'2017-08-20 02:10:13','39.50.110.179'),(2204,1,'2017-08-20 02:12:47','51.39.77.190'),(2205,1,'2017-08-20 02:12:48','51.39.77.190'),(2206,1,'2017-08-20 02:15:25','117.213.240.226'),(2207,1,'2017-08-20 02:15:26','117.213.240.226'),(2208,1,'2017-08-20 02:22:09','73.60.232.91'),(2209,1,'2017-08-20 02:22:11','73.60.232.91'),(2210,1,'2017-08-20 02:22:40','187.20.233.33'),(2211,1,'2017-08-20 02:22:41','187.20.233.33'),(2212,1,'2017-08-20 02:23:14','193.217.193.95'),(2213,1,'2017-08-20 02:23:16','193.217.193.95'),(2214,1,'2017-08-20 02:36:09','27.3.128.250'),(2215,1,'2017-08-20 02:36:11','27.3.128.250'),(2216,1,'2017-08-20 02:36:54','219.79.143.164'),(2217,1,'2017-08-20 02:36:56','219.79.143.164'),(2218,1,'2017-08-20 02:57:27','51.255.138.90'),(2219,1,'2017-08-20 02:57:27','51.255.138.90'),(2220,1,'2017-08-20 02:57:28','51.255.138.90'),(2221,1,'2017-08-20 03:46:42','77.139.154.202'),(2222,1,'2017-08-20 03:46:43','77.139.154.202'),(2223,1,'2017-08-20 04:27:42','112.5.207.135'),(2224,1,'2017-08-20 04:27:43','112.5.207.135'),(2225,1,'2017-08-20 04:42:29','112.196.171.74'),(2226,1,'2017-08-20 04:42:30','112.196.171.74'),(2227,1,'2017-08-20 05:30:49','151.254.121.93'),(2228,1,'2017-08-20 05:30:50','151.254.121.93'),(2229,1,'2017-08-20 05:43:20','62.4.55.246'),(2230,1,'2017-08-20 05:43:21','62.4.55.246'),(2231,1,'2017-08-20 06:04:53','188.53.21.253'),(2232,1,'2017-08-20 06:04:54','188.53.21.253'),(2233,1,'2017-08-20 06:39:34','88.234.98.203'),(2234,1,'2017-08-20 06:39:35','88.234.98.203'),(2235,1,'2017-08-20 06:40:59','5.15.143.32'),(2236,1,'2017-08-20 06:40:59','122.166.146.214'),(2237,1,'2017-08-20 06:41:00','5.15.143.32'),(2238,1,'2017-08-20 06:41:01','122.166.146.214'),(2239,1,'2017-08-20 06:47:29','197.164.190.244'),(2240,1,'2017-08-20 06:47:31','197.164.190.244'),(2241,1,'2017-08-20 06:50:21','223.25.253.254'),(2242,1,'2017-08-20 06:50:29','223.25.253.254'),(2243,1,'2017-08-20 07:04:29','105.158.139.135'),(2244,1,'2017-08-20 07:04:30','105.158.139.135'),(2245,1,'2017-08-20 07:27:46','86.156.83.159'),(2246,1,'2017-08-20 07:27:47','86.156.83.159'),(2247,1,'2017-08-20 07:58:03','104.244.230.145'),(2248,1,'2017-08-20 07:58:04','104.244.230.145'),(2249,1,'2017-08-20 08:15:58','117.193.81.167'),(2250,1,'2017-08-20 08:15:59','117.193.81.167'),(2251,1,'2017-08-20 08:27:40','177.209.72.120'),(2252,1,'2017-08-20 08:27:42','177.209.72.120'),(2253,1,'2017-08-20 08:35:12','124.195.212.230'),(2254,1,'2017-08-20 08:35:13','124.195.212.230'),(2255,1,'2017-08-20 08:44:48','175.141.38.54'),(2256,1,'2017-08-20 08:44:49','175.141.38.54'),(2257,1,'2017-08-20 08:44:54','115.97.36.220'),(2258,1,'2017-08-20 08:44:55','115.97.36.220'),(2259,1,'2017-08-20 09:06:02','81.108.237.95'),(2260,1,'2017-08-20 09:06:03','81.108.237.95'),(2261,1,'2017-08-20 09:16:07','189.26.58.2'),(2262,1,'2017-08-20 09:16:09','189.26.58.2'),(2263,1,'2017-08-20 09:18:53','91.246.67.130'),(2264,1,'2017-08-20 09:18:55','91.246.67.130'),(2265,1,'2017-08-20 09:56:26','176.216.72.113'),(2266,1,'2017-08-20 09:56:27','176.216.72.113'),(2267,1,'2017-08-20 10:02:17','89.90.179.125'),(2268,1,'2017-08-20 10:02:18','89.90.179.125'),(2269,1,'2017-08-20 10:10:39','202.9.43.159'),(2270,1,'2017-08-20 10:10:41','202.9.43.159'),(2271,1,'2017-08-20 10:49:08','5.152.38.185'),(2272,1,'2017-08-20 10:49:10','5.152.38.185'),(2273,1,'2017-08-20 10:56:17','85.177.15.28'),(2274,1,'2017-08-20 10:56:18','85.177.15.28'),(2275,1,'2017-08-20 11:03:45','41.234.176.64'),(2276,1,'2017-08-20 11:03:47','41.234.176.64'),(2277,1,'2017-08-20 11:26:17','82.0.167.206'),(2278,1,'2017-08-20 11:26:18','82.0.167.206'),(2279,1,'2017-08-20 11:29:19','27.145.130.123'),(2280,1,'2017-08-20 11:29:21','27.145.130.123'),(2281,1,'2017-08-20 11:31:44','122.163.88.158'),(2282,1,'2017-08-20 11:31:45','122.163.88.158'),(2283,1,'2017-08-20 11:44:20','92.80.201.170'),(2284,1,'2017-08-20 11:44:21','92.80.201.170'),(2285,1,'2017-08-20 11:45:53','202.62.75.117'),(2286,1,'2017-08-20 11:45:54','202.62.75.117'),(2287,1,'2017-08-20 11:50:55','113.53.204.221'),(2288,1,'2017-08-20 11:51:30','113.53.204.221'),(2289,1,'2017-08-20 12:01:02','174.226.1.95'),(2290,1,'2017-08-20 12:01:03','174.226.1.95'),(2291,1,'2017-08-20 12:08:07','117.199.135.238'),(2292,1,'2017-08-20 12:08:08','117.199.135.238'),(2293,1,'2017-08-20 12:29:05','81.37.139.58'),(2294,1,'2017-08-20 12:29:06','81.37.139.58'),(2295,1,'2017-08-20 12:32:30','87.8.233.18'),(2296,1,'2017-08-20 12:32:31','87.8.233.18'),(2297,1,'2017-08-20 12:32:32','192.164.250.227'),(2298,1,'2017-08-20 12:32:33','192.164.250.227'),(2299,1,'2017-08-20 12:57:42','154.121.7.7'),(2300,1,'2017-08-20 12:57:54','154.121.7.7'),(2301,1,'2017-08-20 13:05:34','177.134.249.105'),(2302,1,'2017-08-20 13:05:36','177.134.249.105'),(2303,1,'2017-08-20 13:05:51','45.112.71.237'),(2304,1,'2017-08-20 13:05:53','45.112.71.237'),(2305,1,'2017-08-20 13:30:54','85.229.150.218'),(2306,1,'2017-08-20 13:30:55','85.229.150.218'),(2307,1,'2017-08-20 13:35:51','160.176.1.162'),(2308,1,'2017-08-20 13:35:56','160.176.1.162'),(2309,1,'2017-08-20 13:38:54','60.48.164.12'),(2310,1,'2017-08-20 13:38:55','60.48.164.12'),(2311,1,'2017-08-20 13:40:44','81.243.16.247'),(2312,1,'2017-08-20 13:40:45','81.243.16.247'),(2313,1,'2017-08-20 13:44:45','72.27.103.162'),(2314,1,'2017-08-20 13:44:47','72.27.103.162'),(2315,1,'2017-08-20 14:13:51','1.32.30.48'),(2316,1,'2017-08-20 14:13:53','1.32.30.48'),(2317,1,'2017-08-20 14:21:54','175.43.245.144'),(2318,1,'2017-08-20 14:21:55','175.43.245.144'),(2319,1,'2017-08-20 14:39:03','202.142.70.7'),(2320,1,'2017-08-20 14:39:04','202.142.70.7'),(2321,1,'2017-08-20 14:51:07','85.242.239.54'),(2322,1,'2017-08-20 14:51:08','85.242.239.54'),(2323,1,'2017-08-20 14:51:09','188.2.33.140'),(2324,1,'2017-08-20 14:51:10','188.2.33.140'),(2325,1,'2017-08-20 15:01:02','41.205.39.239'),(2326,1,'2017-08-20 15:01:04','41.205.39.239'),(2327,1,'2017-08-20 15:09:56','157.48.15.114'),(2328,1,'2017-08-20 15:10:21','157.48.15.114'),(2329,1,'2017-08-20 15:30:39','78.216.193.22'),(2330,1,'2017-08-20 15:30:40','78.216.193.22'),(2331,1,'2017-08-20 16:08:06','27.130.84.1'),(2332,1,'2017-08-20 16:08:08','27.130.84.1'),(2333,1,'2017-08-20 16:10:55','110.76.128.68'),(2334,1,'2017-08-20 16:10:56','110.76.128.68'),(2335,1,'2017-08-20 16:18:54','96.9.163.9'),(2336,1,'2017-08-20 16:18:55','96.9.163.9'),(2337,1,'2017-08-20 16:22:36','171.221.236.141'),(2338,1,'2017-08-20 16:22:40','197.251.192.254'),(2339,1,'2017-08-20 16:22:41','119.79.224.11'),(2340,1,'2017-08-20 16:26:14','77.69.251.217'),(2341,1,'2017-08-20 16:31:18','91.181.253.16'),(2342,1,'2017-08-20 16:31:19','91.181.253.16'),(2343,1,'2017-08-20 16:36:49','178.19.170.181'),(2344,1,'2017-08-20 16:36:49','178.19.170.181'),(2345,1,'2017-08-20 16:39:33','122.177.0.40'),(2346,1,'2017-08-20 16:39:34','122.177.0.40'),(2347,1,'2017-08-20 16:43:17','182.183.218.76'),(2348,1,'2017-08-20 16:43:24','182.183.218.76'),(2349,1,'2017-08-20 17:17:25','91.125.214.21'),(2350,1,'2017-08-20 17:17:26','91.125.214.21'),(2351,1,'2017-08-20 17:27:17','82.243.123.75'),(2352,1,'2017-08-20 17:27:18','82.243.123.75'),(2353,1,'2017-08-20 18:29:29','179.216.153.22'),(2354,1,'2017-08-20 18:29:32','179.216.153.22'),(2355,1,'2017-08-20 18:37:32','47.29.3.170'),(2356,1,'2017-08-20 18:37:36','47.29.3.170'),(2357,1,'2017-08-20 18:38:43','47.29.3.170'),(2358,1,'2017-08-20 18:41:30','182.65.22.22'),(2359,1,'2017-08-20 18:41:32','182.65.22.22'),(2360,1,'2017-08-20 18:58:39','27.6.125.7'),(2361,1,'2017-08-20 18:58:40','27.6.125.7'),(2362,1,'2017-08-20 19:05:32','41.63.40.209'),(2363,1,'2017-08-20 19:05:35','41.63.40.209'),(2364,1,'2017-08-20 19:09:09','203.192.236.198'),(2365,1,'2017-08-20 19:09:10','203.192.236.198'),(2366,1,'2017-08-20 19:33:31','41.230.98.213'),(2367,1,'2017-08-20 19:33:32','41.230.98.213'),(2368,1,'2017-08-20 19:47:37','5.14.199.29'),(2369,1,'2017-08-20 19:47:39','5.14.199.29'),(2370,1,'2017-08-20 19:50:53','73.91.228.110'),(2371,1,'2017-08-20 19:50:55','73.91.228.110'),(2372,1,'2017-08-20 20:19:06','177.87.6.18'),(2373,1,'2017-08-20 20:19:07','177.87.6.18'),(2374,1,'2017-08-20 20:45:07','178.164.145.252'),(2375,1,'2017-08-20 20:45:08','178.164.145.252'),(2376,1,'2017-08-20 20:51:55','31.223.145.22'),(2377,1,'2017-08-20 20:51:56','31.223.145.22'),(2378,1,'2017-08-20 20:52:00','91.218.115.28'),(2379,1,'2017-08-20 20:52:02','91.218.115.28'),(2380,1,'2017-08-20 21:11:29','99.226.196.190'),(2381,1,'2017-08-20 21:11:31','99.226.196.190'),(2382,1,'2017-08-20 21:18:02','199.192.227.79'),(2383,1,'2017-08-20 21:18:04','199.192.227.79'),(2384,1,'2017-08-20 21:26:42','2.200.22.105'),(2385,1,'2017-08-20 21:26:42','2.200.22.105'),(2386,1,'2017-08-20 21:32:54','78.225.7.154'),(2387,1,'2017-08-20 21:32:56','78.225.7.154'),(2388,1,'2017-08-20 21:55:00','49.151.109.179'),(2389,1,'2017-08-20 21:55:02','49.151.109.179'),(2390,1,'2017-08-20 22:03:26','178.61.208.206'),(2391,1,'2017-08-20 22:03:28','178.61.208.206'),(2392,1,'2017-08-20 22:04:56','151.252.247.243'),(2393,1,'2017-08-20 22:04:57','151.252.247.243'),(2394,1,'2017-08-20 22:22:46','201.223.29.249'),(2395,1,'2017-08-20 22:22:52','201.223.29.249'),(2396,1,'2017-08-20 22:31:23','82.2.125.235'),(2397,1,'2017-08-20 22:31:24','82.2.125.235'),(2398,1,'2017-08-20 22:36:03','186.201.246.70'),(2399,1,'2017-08-20 22:36:05','186.201.246.70'),(2400,1,'2017-08-20 22:39:51','129.122.175.48'),(2401,1,'2017-08-20 22:39:53','129.122.175.48'),(2402,1,'2017-08-20 23:10:38','69.12.110.119'),(2403,1,'2017-08-20 23:10:40','69.12.110.119'),(2404,1,'2017-08-20 23:20:16','79.106.126.128'),(2405,1,'2017-08-20 23:20:17','79.106.126.128'),(2406,1,'2017-08-21 00:26:54','41.207.194.116'),(2407,1,'2017-08-21 00:26:55','41.207.194.116'),(2408,1,'2017-08-21 01:22:58','39.35.58.232'),(2409,1,'2017-08-21 01:23:00','39.35.58.232'),(2410,1,'2017-08-21 01:46:53','37.218.157.78'),(2411,1,'2017-08-21 01:46:55','37.218.157.78'),(2412,1,'2017-08-21 01:47:31','51.255.138.90'),(2413,1,'2017-08-21 02:23:04','60.41.13.95'),(2414,1,'2017-08-21 02:23:06','60.41.13.95'),(2415,1,'2017-08-21 02:36:10','23.233.48.142'),(2416,1,'2017-08-21 02:36:12','23.233.48.142'),(2417,1,'2017-08-21 02:38:56','173.206.155.166'),(2418,1,'2017-08-21 02:38:57','173.206.155.166'),(2419,1,'2017-08-21 02:53:14','49.144.239.33'),(2420,1,'2017-08-21 02:53:15','49.144.239.33'),(2421,1,'2017-08-21 03:39:48','47.9.188.252'),(2422,1,'2017-08-21 03:39:50','47.9.188.252'),(2423,1,'2017-08-21 03:45:48','203.177.206.84'),(2424,1,'2017-08-21 03:45:50','203.177.206.84'),(2425,1,'2017-08-21 03:55:09','5.30.186.16'),(2426,1,'2017-08-21 03:55:10','5.30.186.16'),(2427,1,'2017-08-21 04:20:55','138.36.35.1'),(2428,1,'2017-08-21 04:20:58','138.36.35.1'),(2429,1,'2017-08-21 04:44:59','154.121.7.51'),(2430,1,'2017-08-21 04:45:00','154.121.7.51'),(2431,1,'2017-08-21 04:47:03','117.211.3.145'),(2432,1,'2017-08-21 04:47:05','117.211.3.145'),(2433,1,'2017-08-21 05:21:22','43.229.26.89'),(2434,1,'2017-08-21 05:21:24','43.229.26.89'),(2435,1,'2017-08-21 05:54:16','105.156.19.173'),(2436,1,'2017-08-21 05:54:19','105.156.19.173'),(2437,1,'2017-08-21 06:00:13','41.101.127.121'),(2438,1,'2017-08-21 06:00:14','41.101.127.121'),(2439,1,'2017-08-21 06:27:03','188.252.175.188'),(2440,1,'2017-08-21 06:27:04','188.252.175.188'),(2441,1,'2017-08-21 07:07:00','105.98.38.225'),(2442,1,'2017-08-21 07:07:01','105.98.38.225'),(2443,1,'2017-08-21 07:19:35','217.165.109.100'),(2444,1,'2017-08-21 07:19:37','217.165.109.100'),(2445,1,'2017-08-21 07:28:28','174.228.137.140'),(2446,1,'2017-08-21 07:28:29','174.228.137.140'),(2447,1,'2017-08-21 07:32:44','115.132.171.145'),(2448,1,'2017-08-21 07:32:46','115.132.171.145'),(2449,1,'2017-08-21 08:20:23','172.58.21.198'),(2450,1,'2017-08-21 08:20:25','172.58.21.198'),(2451,1,'2017-08-21 09:20:18','106.201.21.88'),(2452,1,'2017-08-21 09:20:19','106.201.21.88'),(2453,1,'2017-08-21 09:30:51','47.11.239.213'),(2454,1,'2017-08-21 09:30:53','47.11.239.213'),(2455,1,'2017-08-21 09:31:16','124.170.21.51'),(2456,1,'2017-08-21 09:31:20','124.170.21.51'),(2457,1,'2017-08-21 09:33:59','212.120.237.191'),(2458,1,'2017-08-21 09:34:00','212.120.237.191'),(2459,1,'2017-08-21 09:54:38','94.52.34.75'),(2460,1,'2017-08-21 09:54:39','94.52.34.75'),(2461,1,'2017-08-21 10:14:24','124.104.95.160'),(2462,1,'2017-08-21 10:14:26','124.104.95.160'),(2463,1,'2017-08-21 10:24:15','105.154.12.241'),(2464,1,'2017-08-21 10:24:17','105.154.12.241'),(2465,1,'2017-08-21 10:36:18','73.115.123.62'),(2466,1,'2017-08-21 10:36:19','73.115.123.62'),(2467,1,'2017-08-21 10:45:22','86.98.212.227'),(2468,1,'2017-08-21 10:45:23','86.98.212.227'),(2469,1,'2017-08-21 10:49:22','123.231.125.60'),(2470,1,'2017-08-21 10:49:24','123.231.125.60'),(2471,1,'2017-08-21 11:13:46','112.201.141.2'),(2472,1,'2017-08-21 11:13:50','112.201.141.2'),(2473,1,'2017-08-21 11:15:32','91.42.57.76'),(2474,1,'2017-08-21 11:15:33','91.42.57.76'),(2475,1,'2017-08-21 11:22:21','182.176.160.24'),(2476,1,'2017-08-21 11:22:28','182.176.160.24'),(2477,1,'2017-08-21 11:47:39','217.123.70.210'),(2478,1,'2017-08-21 11:47:39','217.123.70.210'),(2479,1,'2017-08-21 11:55:49','213.94.146.252'),(2480,1,'2017-08-21 11:55:50','213.94.146.252'),(2481,1,'2017-08-21 12:08:35','41.109.253.77'),(2482,1,'2017-08-21 12:08:37','41.109.253.77'),(2483,1,'2017-08-21 12:16:24','192.77.188.64'),(2484,1,'2017-08-21 12:16:25','192.77.188.64'),(2485,1,'2017-08-21 12:21:41','103.14.199.175'),(2486,1,'2017-08-21 12:21:44','103.14.199.175'),(2487,1,'2017-08-21 12:38:51','124.43.18.218'),(2488,1,'2017-08-21 12:38:53','124.43.18.218'),(2489,1,'2017-08-21 12:59:03','116.193.131.53'),(2490,1,'2017-08-21 12:59:04','116.193.131.53'),(2491,1,'2017-08-21 13:04:43','182.182.115.186'),(2492,1,'2017-08-21 13:04:45','182.182.115.186'),(2493,1,'2017-08-21 13:21:41','168.90.72.5'),(2494,1,'2017-08-21 13:21:52','168.90.72.5'),(2495,1,'2017-08-21 13:22:56','117.198.231.209'),(2496,1,'2017-08-21 13:22:58','117.198.231.209'),(2497,1,'2017-08-21 13:32:48','118.137.86.245'),(2498,1,'2017-08-21 13:32:50','118.137.86.245'),(2499,1,'2017-08-21 13:33:41','112.211.75.192'),(2500,1,'2017-08-21 13:33:43','112.211.75.192'),(2501,1,'2017-08-21 13:39:49','98.200.9.27'),(2502,1,'2017-08-21 13:39:50','98.200.9.27'),(2503,1,'2017-08-21 13:49:36','88.13.245.228'),(2504,1,'2017-08-21 13:49:37','88.13.245.228'),(2505,1,'2017-08-21 14:00:17','185.30.91.145'),(2506,1,'2017-08-21 14:00:19','185.30.91.145'),(2507,1,'2017-08-21 14:08:56','115.133.23.97'),(2508,1,'2017-08-21 14:08:58','115.133.23.97'),(2509,1,'2017-08-21 14:17:35','179.192.115.149'),(2510,1,'2017-08-21 14:17:36','179.192.115.149'),(2511,1,'2017-08-21 14:18:33','124.123.43.8'),(2512,1,'2017-08-21 14:18:34','124.123.43.8'),(2513,1,'2017-08-21 14:20:48','39.36.109.36'),(2514,1,'2017-08-21 14:20:50','39.36.109.36'),(2515,1,'2017-08-21 14:22:59','110.54.171.215'),(2516,1,'2017-08-21 14:23:01','110.54.171.215'),(2517,1,'2017-08-21 14:30:31','203.81.71.26'),(2518,1,'2017-08-21 14:30:37','203.81.71.27'),(2519,1,'2017-08-21 14:34:50','41.189.162.13'),(2520,1,'2017-08-21 14:34:53','41.189.162.13'),(2521,1,'2017-08-21 14:47:14','185.115.101.139'),(2522,1,'2017-08-21 14:47:18','185.115.101.139'),(2523,1,'2017-08-21 14:51:21','46.245.137.1'),(2524,1,'2017-08-21 14:51:22','46.245.137.1'),(2525,1,'2017-08-21 14:52:57','68.149.68.67'),(2526,1,'2017-08-21 14:52:58','68.149.68.67'),(2527,1,'2017-08-21 14:54:35','196.206.64.106'),(2528,1,'2017-08-21 14:54:36','196.206.64.106'),(2529,1,'2017-08-21 15:05:56','41.68.235.39'),(2530,1,'2017-08-21 15:05:59','41.68.235.39'),(2531,1,'2017-08-21 15:16:06','189.170.224.40'),(2532,1,'2017-08-21 15:16:07','189.170.224.40'),(2533,1,'2017-08-21 15:47:14','173.230.252.58'),(2534,1,'2017-08-21 15:47:16','173.230.252.58'),(2535,1,'2017-08-21 15:53:26','89.111.176.222'),(2536,1,'2017-08-21 16:15:09','124.104.126.28'),(2537,1,'2017-08-21 16:15:11','124.104.126.28'),(2538,1,'2017-08-21 16:54:35','88.235.9.133'),(2539,1,'2017-08-21 16:54:37','88.235.9.133'),(2540,1,'2017-08-21 17:35:47','105.108.153.111'),(2541,1,'2017-08-21 17:35:48','105.108.153.111'),(2542,1,'2017-08-21 17:45:10','39.53.118.77'),(2543,1,'2017-08-21 17:45:12','39.53.118.77'),(2544,1,'2017-08-21 18:12:38','92.40.248.94'),(2545,1,'2017-08-21 18:12:41','92.40.248.94'),(2546,1,'2017-08-21 18:23:44','105.108.72.76'),(2547,1,'2017-08-21 18:23:45','105.108.72.76'),(2548,1,'2017-08-21 18:25:16','103.22.172.131'),(2549,1,'2017-08-21 18:25:18','103.22.172.131'),(2550,1,'2017-08-21 18:27:36','117.212.131.95'),(2551,1,'2017-08-21 18:27:38','117.212.131.95'),(2552,1,'2017-08-21 18:46:47','37.169.139.196'),(2553,1,'2017-08-21 18:46:48','37.169.139.196'),(2554,1,'2017-08-21 19:00:28','190.215.97.45'),(2555,1,'2017-08-21 19:00:31','190.215.97.45'),(2556,1,'2017-08-21 19:01:21','89.73.43.49'),(2557,1,'2017-08-21 19:01:22','89.73.43.49'),(2558,1,'2017-08-21 19:14:42','90.126.235.48'),(2559,1,'2017-08-21 19:14:43','90.126.235.48'),(2560,1,'2017-08-21 19:27:33','178.223.228.233'),(2561,1,'2017-08-21 19:27:34','178.223.228.233'),(2562,1,'2017-08-21 19:30:31','92.86.50.184'),(2563,1,'2017-08-21 19:30:32','92.86.50.184'),(2564,1,'2017-08-21 19:43:24','152.238.129.155'),(2565,1,'2017-08-21 19:43:25','152.238.129.155'),(2566,1,'2017-08-21 19:46:52','103.216.206.48'),(2567,1,'2017-08-21 19:46:54','103.216.206.48'),(2568,1,'2017-08-21 19:54:11','173.35.80.90'),(2569,1,'2017-08-21 19:54:12','173.35.80.90'),(2570,1,'2017-08-21 20:00:09','156.220.19.85'),(2571,1,'2017-08-21 20:00:10','156.220.19.85'),(2572,1,'2017-08-21 20:05:23','193.92.188.93'),(2573,1,'2017-08-21 20:05:24','193.92.188.93'),(2574,1,'2017-08-21 20:08:05','188.173.218.70'),(2575,1,'2017-08-21 20:08:06','188.173.218.70'),(2576,1,'2017-08-21 20:10:54','142.162.156.141'),(2577,1,'2017-08-21 20:10:55','142.162.156.141'),(2578,1,'2017-08-21 20:16:50','179.189.142.165'),(2579,1,'2017-08-21 20:16:52','179.189.142.165'),(2580,1,'2017-08-21 20:31:17','185.136.148.54'),(2581,1,'2017-08-21 20:31:21','185.136.148.54'),(2582,1,'2017-08-21 20:37:08','95.76.2.153'),(2583,1,'2017-08-21 20:37:08','95.76.2.153'),(2584,1,'2017-08-21 20:49:53','103.26.225.100'),(2585,1,'2017-08-21 20:49:54','103.26.225.100'),(2586,1,'2017-08-21 21:01:17','95.184.23.111'),(2587,1,'2017-08-21 21:01:19','95.184.23.111'),(2588,1,'2017-08-21 21:54:56','188.146.163.121'),(2589,1,'2017-08-21 21:54:57','188.146.163.121'),(2590,1,'2017-08-21 22:27:01','37.201.4.4'),(2591,1,'2017-08-21 22:27:02','37.201.4.4'),(2592,1,'2017-08-21 22:56:25','178.79.4.47'),(2593,1,'2017-08-21 22:56:26','178.79.4.47'),(2594,1,'2017-08-21 22:56:40','118.110.228.231'),(2595,1,'2017-08-21 22:56:42','118.110.228.231'),(2596,1,'2017-08-21 23:07:37','222.99.196.100'),(2597,1,'2017-08-21 23:07:39','222.99.196.100'),(2598,1,'2017-08-21 23:37:34','77.139.162.42'),(2599,1,'2017-08-21 23:37:35','77.139.162.42'),(2600,1,'2017-08-21 23:46:19','202.67.38.19'),(2601,1,'2017-08-21 23:46:21','202.67.38.19'),(2602,1,'2017-08-21 23:56:05','41.96.197.162'),(2603,1,'2017-08-21 23:56:34','41.96.197.162'),(2604,1,'2017-08-22 00:14:55','202.168.87.24'),(2605,1,'2017-08-22 00:14:57','202.168.87.24'),(2606,1,'2017-08-22 00:24:15','175.177.133.118'),(2607,1,'2017-08-22 00:24:17','175.177.133.118'),(2608,1,'2017-08-22 01:46:49','78.167.152.90'),(2609,1,'2017-08-22 01:46:50','78.167.152.90'),(2610,1,'2017-08-22 01:57:28','223.204.251.213'),(2611,1,'2017-08-22 01:57:30','223.204.251.213'),(2612,1,'2017-08-22 01:59:10','41.79.238.9'),(2613,1,'2017-08-22 01:59:15','41.79.238.10'),(2614,1,'2017-08-22 02:15:56','177.41.52.99'),(2615,1,'2017-08-22 02:15:58','177.41.52.99'),(2616,1,'2017-08-22 03:23:25','60.48.243.77'),(2617,1,'2017-08-22 03:23:28','60.48.243.77'),(2618,1,'2017-08-22 03:28:28','118.36.170.217'),(2619,1,'2017-08-22 03:28:30','118.36.170.217'),(2620,1,'2017-08-22 03:53:18','101.184.24.134'),(2621,1,'2017-08-22 03:53:19','101.184.24.134'),(2622,1,'2017-08-22 04:08:50','103.66.196.202'),(2623,1,'2017-08-22 04:08:52','103.66.196.202'),(2624,1,'2017-08-22 04:53:17','117.202.242.108'),(2625,1,'2017-08-22 04:53:20','117.202.242.108'),(2626,1,'2017-08-22 05:00:45','112.133.246.93'),(2627,1,'2017-08-22 05:00:47','112.133.246.93'),(2628,1,'2017-08-22 05:32:35','87.205.28.158'),(2629,1,'2017-08-22 05:32:36','87.205.28.158'),(2630,1,'2017-08-22 05:32:44','191.32.157.195'),(2631,1,'2017-08-22 05:32:46','191.32.157.195'),(2632,1,'2017-08-22 05:39:54','213.57.106.241'),(2633,1,'2017-08-22 05:39:55','213.57.106.241'),(2634,1,'2017-08-22 06:26:34','213.133.139.162'),(2635,1,'2017-08-22 06:26:35','213.133.139.162'),(2636,1,'2017-08-22 06:34:14','78.20.209.55'),(2637,1,'2017-08-22 06:34:15','78.20.209.55'),(2638,1,'2017-08-22 06:52:24','125.239.187.47'),(2639,1,'2017-08-22 06:52:25','125.239.187.47'),(2640,1,'2017-08-22 06:54:55','51.235.107.159'),(2641,1,'2017-08-22 06:54:57','51.235.107.159'),(2642,1,'2017-08-22 07:01:02','37.228.240.108'),(2643,1,'2017-08-22 07:01:03','37.228.240.108'),(2644,1,'2017-08-22 07:02:35','124.13.188.90'),(2645,1,'2017-08-22 07:02:37','124.13.188.90'),(2646,1,'2017-08-22 07:27:03','81.19.2.207'),(2647,1,'2017-08-22 07:27:03','81.19.2.207'),(2648,1,'2017-08-22 07:28:18','123.217.68.30'),(2649,1,'2017-08-22 07:28:20','123.217.68.30'),(2650,1,'2017-08-22 07:36:42','99.43.252.178'),(2651,1,'2017-08-22 07:36:43','99.43.252.178'),(2652,1,'2017-08-22 08:25:34','87.153.211.134'),(2653,1,'2017-08-22 08:25:35','87.153.211.134'),(2654,1,'2017-08-22 08:48:54','86.61.126.236'),(2655,1,'2017-08-22 08:48:55','86.61.126.236'),(2656,1,'2017-08-22 09:06:43','105.225.192.141'),(2657,1,'2017-08-22 09:06:49','105.225.192.141'),(2658,1,'2017-08-22 09:22:38','189.27.199.221'),(2659,1,'2017-08-22 09:22:40','189.27.199.221'),(2660,1,'2017-08-22 09:26:42','69.204.13.44'),(2661,1,'2017-08-22 09:26:43','69.204.13.44'),(2662,1,'2017-08-22 09:37:11','39.61.36.186'),(2663,1,'2017-08-22 09:37:12','39.61.36.186'),(2664,1,'2017-08-22 09:40:58','36.76.165.222'),(2665,1,'2017-08-22 09:40:59','36.76.165.222'),(2666,1,'2017-08-22 09:43:55','180.252.254.5'),(2667,1,'2017-08-22 09:43:57','180.252.254.5'),(2668,1,'2017-08-22 09:57:35','124.104.224.57'),(2669,1,'2017-08-22 09:57:37','124.104.224.57'),(2670,1,'2017-08-22 10:00:07','39.57.15.199'),(2671,1,'2017-08-22 10:00:11','39.57.15.199'),(2672,1,'2017-08-22 10:09:22','118.141.7.253'),(2673,1,'2017-08-22 10:09:23','118.141.7.253'),(2674,1,'2017-08-22 10:17:55','112.198.118.227'),(2675,1,'2017-08-22 10:17:57','112.198.118.227'),(2676,1,'2017-08-22 10:23:01','58.165.235.85'),(2677,1,'2017-08-22 10:23:03','58.165.235.85'),(2678,1,'2017-08-22 10:25:14','24.254.160.86'),(2679,1,'2017-08-22 10:25:15','24.254.160.86'),(2680,1,'2017-08-22 11:00:30','151.177.209.23'),(2681,1,'2017-08-22 11:00:31','151.177.209.23'),(2682,1,'2017-08-22 11:03:37','115.99.23.240'),(2683,1,'2017-08-22 11:03:38','115.99.23.240'),(2684,1,'2017-08-22 11:15:24','93.40.253.45'),(2685,1,'2017-08-22 11:15:26','93.40.253.45'),(2686,1,'2017-08-22 11:23:16','188.146.40.241'),(2687,1,'2017-08-22 11:23:17','188.146.40.241'),(2688,1,'2017-08-22 11:30:38','153.131.224.233'),(2689,1,'2017-08-22 11:30:40','153.131.224.233'),(2690,1,'2017-08-22 11:31:29','179.55.230.238'),(2691,1,'2017-08-22 11:31:31','179.55.230.238'),(2692,1,'2017-08-22 12:09:41','106.201.163.52'),(2693,1,'2017-08-22 12:09:42','106.201.163.52'),(2694,1,'2017-08-22 12:25:45','98.226.185.229'),(2695,1,'2017-08-22 12:25:46','98.226.185.229'),(2696,1,'2017-08-22 12:27:39','36.85.71.75'),(2697,1,'2017-08-22 12:27:41','36.85.71.75'),(2698,1,'2017-08-22 12:59:20','73.204.26.144'),(2699,1,'2017-08-22 12:59:21','73.204.26.144'),(2700,1,'2017-08-22 13:09:50','154.122.167.224'),(2701,1,'2017-08-22 13:09:51','154.122.167.224'),(2702,1,'2017-08-22 13:11:52','37.111.41.104'),(2703,1,'2017-08-22 13:11:54','37.111.41.104'),(2704,1,'2017-08-22 13:14:06','109.166.138.108'),(2705,1,'2017-08-22 13:14:07','109.166.138.108'),(2706,1,'2017-08-22 13:15:54','143.107.107.242'),(2707,1,'2017-08-22 13:15:56','143.107.107.242'),(2708,1,'2017-08-22 13:28:12','41.251.68.161'),(2709,1,'2017-08-22 13:28:13','41.251.68.161'),(2710,1,'2017-08-22 13:42:40','122.161.64.92'),(2711,1,'2017-08-22 13:42:42','122.161.64.92'),(2712,1,'2017-08-22 14:15:48','152.78.1.69'),(2713,1,'2017-08-22 14:15:49','152.78.1.69'),(2714,1,'2017-08-22 14:24:40','180.247.171.119'),(2715,1,'2017-08-22 14:24:42','180.247.171.119'),(2716,1,'2017-08-22 14:25:53','118.100.81.45'),(2717,1,'2017-08-22 14:25:55','118.100.81.45'),(2718,1,'2017-08-22 14:33:42','45.118.244.210'),(2719,1,'2017-08-22 14:33:44','45.118.244.210'),(2720,1,'2017-08-22 14:59:25','109.64.94.108'),(2721,1,'2017-08-22 14:59:26','109.64.94.108'),(2722,1,'2017-08-22 15:00:55','180.190.114.157'),(2723,1,'2017-08-22 15:00:57','180.190.114.157'),(2724,1,'2017-08-22 15:21:05','202.79.34.184'),(2725,1,'2017-08-22 15:21:07','202.79.34.184'),(2726,1,'2017-08-22 15:31:29','112.211.9.64'),(2727,1,'2017-08-22 15:31:31','112.211.9.64'),(2728,1,'2017-08-22 15:56:41','79.184.164.95'),(2729,1,'2017-08-22 15:56:42','79.184.164.95'),(2730,1,'2017-08-22 16:03:44','93.85.147.236'),(2731,1,'2017-08-22 16:03:44','93.85.147.236'),(2732,1,'2017-08-22 16:23:43','112.211.116.82'),(2733,1,'2017-08-22 16:23:45','112.211.116.82'),(2734,1,'2017-08-22 16:27:31','58.65.176.187'),(2735,1,'2017-08-22 16:27:33','58.65.176.187'),(2736,1,'2017-08-22 16:31:11','151.74.187.62'),(2737,1,'2017-08-22 16:31:13','151.74.187.62'),(2738,1,'2017-08-22 16:36:54','125.161.0.67'),(2739,1,'2017-08-22 16:36:56','125.161.0.67'),(2740,1,'2017-08-22 16:38:33','71.81.199.134'),(2741,1,'2017-08-22 16:38:34','71.81.199.134'),(2742,1,'2017-08-22 16:41:46','217.144.62.227'),(2743,1,'2017-08-22 16:41:47','217.144.62.227'),(2744,1,'2017-08-22 16:50:21','104.219.24.19'),(2745,1,'2017-08-22 16:50:22','104.219.24.19'),(2746,1,'2017-08-22 17:27:47','191.209.93.36'),(2747,1,'2017-08-22 17:27:49','191.209.93.36'),(2748,1,'2017-08-22 17:28:42','95.147.19.209'),(2749,1,'2017-08-22 17:28:43','95.147.19.209'),(2750,1,'2017-08-22 17:41:20','93.41.95.213'),(2751,1,'2017-08-22 17:41:21','93.41.95.213'),(2752,1,'2017-08-22 17:48:29','90.230.110.61'),(2753,1,'2017-08-22 17:48:31','90.230.110.61'),(2754,1,'2017-08-22 17:50:48','78.170.38.202'),(2755,1,'2017-08-22 17:50:49','78.170.38.202'),(2756,1,'2017-08-22 18:38:28','208.163.189.37'),(2757,1,'2017-08-22 18:38:29','208.163.189.37'),(2758,1,'2017-08-22 19:54:40','78.100.237.177'),(2759,1,'2017-08-22 19:54:42','78.100.237.177'),(2760,1,'2017-08-22 20:43:27','73.158.6.153'),(2761,1,'2017-08-22 20:43:28','73.158.6.153'),(2762,1,'2017-08-22 20:56:00','178.220.237.9'),(2763,1,'2017-08-22 20:56:01','178.220.237.9'),(2764,1,'2017-08-22 21:21:52','178.152.67.225'),(2765,1,'2017-08-22 21:21:55','178.152.67.225'),(2766,1,'2017-08-22 21:40:44','182.182.25.219'),(2767,1,'2017-08-22 21:40:46','182.182.25.219'),(2768,1,'2017-08-22 21:41:36','109.20.249.38'),(2769,1,'2017-08-22 21:41:37','109.20.249.38'),(2770,1,'2017-08-22 21:51:15','73.69.26.31'),(2771,1,'2017-08-22 21:51:16','73.69.26.31'),(2772,1,'2017-08-22 21:55:14','189.169.45.26'),(2773,1,'2017-08-22 21:55:15','189.169.45.26'),(2774,1,'2017-08-22 21:59:15','92.97.149.108'),(2775,1,'2017-08-22 21:59:16','92.97.149.108'),(2776,1,'2017-08-22 22:06:50','45.242.31.84'),(2777,1,'2017-08-22 22:15:52','93.173.7.116'),(2778,1,'2017-08-22 22:15:54','93.173.7.116'),(2779,1,'2017-08-22 22:20:33','88.1.159.110'),(2780,1,'2017-08-22 22:20:34','88.1.159.110'),(2781,1,'2017-08-22 22:21:53','82.16.231.108'),(2782,1,'2017-08-22 22:21:54','82.16.231.108'),(2783,1,'2017-08-22 22:21:56','187.183.37.87'),(2784,1,'2017-08-22 22:21:58','187.183.37.87'),(2785,1,'2017-08-22 22:36:05','88.230.14.193'),(2786,1,'2017-08-22 22:36:06','88.230.14.193'),(2787,1,'2017-08-22 22:49:18','46.117.71.236'),(2788,1,'2017-08-22 22:49:19','46.117.71.236'),(2789,1,'2017-08-22 23:14:41','89.64.58.178'),(2790,1,'2017-08-22 23:14:42','89.64.58.178'),(2791,1,'2017-08-22 23:21:38','175.137.167.250'),(2792,1,'2017-08-22 23:21:39','175.137.167.250'),(2793,1,'2017-08-22 23:33:10','178.222.200.78'),(2794,1,'2017-08-22 23:33:11','178.222.200.78'),(2795,1,'2017-08-22 23:38:21','73.253.226.205'),(2796,1,'2017-08-22 23:38:22','73.253.226.205'),(2797,1,'2017-08-22 23:45:12','186.64.73.42'),(2798,1,'2017-08-22 23:45:14','186.64.73.42'),(2799,1,'2017-08-23 00:57:34','138.97.214.4'),(2800,1,'2017-08-23 00:57:36','138.97.214.4'),(2801,1,'2017-08-23 01:17:34','203.114.234.17'),(2802,1,'2017-08-23 01:17:35','203.114.234.17'),(2803,1,'2017-08-23 01:58:04','156.196.167.151'),(2804,1,'2017-08-23 01:58:07','156.196.167.151'),(2805,1,'2017-08-23 02:08:52','189.79.103.158'),(2806,1,'2017-08-23 02:08:54','189.79.103.158'),(2807,1,'2017-08-23 02:21:46','5.15.81.90'),(2808,1,'2017-08-23 02:21:47','5.15.81.90'),(2809,1,'2017-08-23 02:27:30','37.24.151.229'),(2810,1,'2017-08-23 02:27:30','37.24.151.229'),(2811,1,'2017-08-23 02:30:01','190.195.215.5'),(2812,1,'2017-08-23 02:30:03','190.195.215.5'),(2813,1,'2017-08-23 03:13:08','1.164.46.130'),(2814,1,'2017-08-23 03:13:10','1.164.46.130'),(2815,1,'2017-08-23 03:35:21','72.190.230.205'),(2816,1,'2017-08-23 03:35:22','72.190.230.205'),(2817,1,'2017-08-23 03:36:26','181.57.246.85'),(2818,1,'2017-08-23 03:36:27','181.57.246.85'),(2819,1,'2017-08-23 03:49:57','61.68.109.193'),(2820,1,'2017-08-23 03:49:59','61.68.109.193'),(2821,1,'2017-08-23 04:09:04','189.59.98.40'),(2822,1,'2017-08-23 04:09:05','189.59.98.40'),(2823,1,'2017-08-23 04:37:42','182.18.229.29'),(2824,1,'2017-08-23 04:37:44','182.18.229.29'),(2825,1,'2017-08-23 04:45:31','177.93.190.230'),(2826,1,'2017-08-23 04:45:34','177.93.190.230'),(2827,1,'2017-08-23 04:54:17','91.121.76.70'),(2828,1,'2017-08-23 04:54:57','220.158.55.12'),(2829,1,'2017-08-23 04:54:58','220.158.55.12'),(2830,1,'2017-08-23 05:03:51','173.230.252.58'),(2831,1,'2017-08-23 05:15:35','151.236.51.54'),(2832,1,'2017-08-23 05:15:36','151.236.51.54'),(2833,1,'2017-08-23 05:25:29','62.113.208.201'),(2834,1,'2017-08-23 05:25:31','62.113.208.201'),(2835,1,'2017-08-23 05:32:59','216.55.146.44'),(2836,1,'2017-08-23 05:33:02','216.55.146.44'),(2837,1,'2017-08-23 05:37:11','99.100.243.186'),(2838,1,'2017-08-23 05:37:12','99.100.243.186'),(2839,1,'2017-08-23 05:39:20','192.254.193.4'),(2840,1,'2017-08-23 05:39:22','192.254.193.4'),(2841,1,'2017-08-23 05:45:49','192.254.193.4'),(2842,1,'2017-08-23 05:45:52','192.254.193.4'),(2843,1,'2017-08-23 05:50:17','47.90.48.48'),(2844,1,'2017-08-23 05:50:19','47.90.48.48'),(2845,1,'2017-08-23 05:58:28','58.69.15.9'),(2846,1,'2017-08-23 05:58:31','58.69.15.9'),(2847,1,'2017-08-23 06:00:19','173.230.252.58'),(2848,1,'2017-08-23 06:00:21','173.230.252.58'),(2849,1,'2017-08-23 06:04:43','173.230.252.58'),(2850,1,'2017-08-23 06:11:10','47.90.48.48'),(2851,1,'2017-08-23 06:11:13','47.90.48.48'),(2852,1,'2017-08-23 06:18:01','79.131.146.90'),(2853,1,'2017-08-23 06:18:02','79.131.146.90'),(2854,1,'2017-08-23 06:20:14','216.55.146.44'),(2855,1,'2017-08-23 06:20:16','216.55.146.44'),(2856,1,'2017-08-23 06:35:36','111.92.1.163'),(2857,1,'2017-08-23 06:35:38','111.92.1.163'),(2858,1,'2017-08-23 06:47:42','190.13.106.138'),(2859,1,'2017-08-23 06:47:45','112.210.57.171'),(2860,1,'2017-08-23 06:47:47','112.210.57.171'),(2861,1,'2017-08-23 06:47:50','219.138.244.91'),(2862,1,'2017-08-23 06:56:28','134.19.230.36'),(2863,1,'2017-08-23 06:57:54','201.236.223.47'),(2864,1,'2017-08-23 07:01:52','31.46.148.161'),(2865,1,'2017-08-23 07:01:53','31.46.148.161'),(2866,1,'2017-08-23 07:14:30','72.238.125.227'),(2867,1,'2017-08-23 07:14:31','72.238.125.227'),(2868,1,'2017-08-23 07:49:29','121.52.136.215'),(2869,1,'2017-08-23 07:49:31','121.52.136.215'),(2870,1,'2017-08-23 08:40:15','77.104.213.39'),(2871,1,'2017-08-23 08:40:16','77.104.213.39'),(2872,1,'2017-08-23 08:51:42','177.101.122.55'),(2873,1,'2017-08-23 08:51:44','177.101.122.55'),(2874,1,'2017-08-23 09:08:33','197.237.32.158'),(2875,1,'2017-08-23 09:08:34','197.237.32.158'),(2876,1,'2017-08-23 09:19:17','159.0.158.118'),(2877,1,'2017-08-23 09:19:18','159.0.158.118'),(2878,1,'2017-08-23 10:11:04','204.12.226.250'),(2879,1,'2017-08-23 10:11:04','204.12.226.250'),(2880,1,'2017-08-23 10:11:05','204.12.226.250'),(2881,1,'2017-08-23 10:31:19','61.3.239.87'),(2882,1,'2017-08-23 10:31:21','61.3.239.87'),(2883,1,'2017-08-23 10:38:14','79.126.132.206'),(2884,1,'2017-08-23 10:38:15','79.126.132.206'),(2885,1,'2017-08-23 10:44:06','65.189.250.183'),(2886,1,'2017-08-23 10:44:07','65.189.250.183'),(2887,1,'2017-08-23 10:56:59','103.27.140.216'),(2888,1,'2017-08-23 10:57:00','103.27.140.216'),(2889,1,'2017-08-23 11:05:56','182.18.228.10'),(2890,1,'2017-08-23 11:05:58','182.18.228.10'),(2891,1,'2017-08-23 12:13:53','49.207.176.106'),(2892,1,'2017-08-23 12:13:55','49.207.176.106'),(2893,1,'2017-08-23 12:40:57','85.186.62.71'),(2894,1,'2017-08-23 12:40:58','85.186.62.71'),(2895,1,'2017-08-23 12:46:09','190.45.179.148'),(2896,1,'2017-08-23 12:46:10','190.45.179.148'),(2897,1,'2017-08-23 12:56:31','49.205.210.67'),(2898,1,'2017-08-23 12:57:01','49.205.210.67'),(2899,1,'2017-08-23 13:00:48','118.175.221.193'),(2900,1,'2017-08-23 13:00:50','118.175.221.193'),(2901,1,'2017-08-23 13:14:14','110.232.252.171'),(2902,1,'2017-08-23 13:14:16','110.232.252.171'),(2903,1,'2017-08-23 13:32:59','119.95.95.67'),(2904,1,'2017-08-23 13:33:02','119.95.95.67'),(2905,1,'2017-08-23 13:33:03','180.211.176.122'),(2906,1,'2017-08-23 13:33:05','180.211.176.122'),(2907,1,'2017-08-23 13:36:03','116.206.96.14'),(2908,1,'2017-08-23 13:36:05','116.206.96.14'),(2909,1,'2017-08-23 13:36:23','86.58.32.50'),(2910,1,'2017-08-23 13:36:25','86.58.32.50'),(2911,1,'2017-08-23 13:46:24','122.179.9.158'),(2912,1,'2017-08-23 13:46:25','122.179.9.158'),(2913,1,'2017-08-23 14:05:15','39.37.178.163'),(2914,1,'2017-08-23 14:05:17','39.37.178.163'),(2915,1,'2017-08-23 14:08:23','39.40.100.222'),(2916,1,'2017-08-23 14:08:24','39.40.100.222'),(2917,1,'2017-08-23 14:10:21','201.13.89.11'),(2918,1,'2017-08-23 14:10:23','201.13.89.11'),(2919,1,'2017-08-23 14:17:05','176.158.162.103'),(2920,1,'2017-08-23 14:17:06','176.158.162.103'),(2921,1,'2017-08-23 14:18:16','200.219.73.56'),(2922,1,'2017-08-23 14:18:18','200.219.73.56'),(2923,1,'2017-08-23 14:18:33','119.152.132.207'),(2924,1,'2017-08-23 14:18:34','119.152.132.207'),(2925,1,'2017-08-23 14:22:36','1.186.116.222'),(2926,1,'2017-08-23 14:22:37','1.186.116.222'),(2927,1,'2017-08-23 14:44:43','45.250.248.59'),(2928,1,'2017-08-23 14:44:46','45.250.248.59'),(2929,1,'2017-08-23 14:52:20','93.226.89.10'),(2930,1,'2017-08-23 14:52:21','93.226.89.10'),(2931,1,'2017-08-23 15:03:44','73.0.36.212'),(2932,1,'2017-08-23 15:03:45','73.0.36.212'),(2933,1,'2017-08-23 15:06:08','115.164.216.123'),(2934,1,'2017-08-23 15:06:10','115.164.216.123'),(2935,1,'2017-08-23 15:08:15','142.169.246.95'),(2936,1,'2017-08-23 15:08:16','142.169.246.95'),(2937,1,'2017-08-23 15:28:25','89.139.163.111'),(2938,1,'2017-08-23 15:28:26','89.139.163.111'),(2939,1,'2017-08-23 15:28:56','202.188.41.220'),(2940,1,'2017-08-23 15:28:58','202.188.41.220'),(2941,1,'2017-08-23 15:40:43','77.46.213.145'),(2942,1,'2017-08-23 15:40:44','77.46.213.145'),(2943,1,'2017-08-23 15:54:30','124.106.249.144'),(2944,1,'2017-08-23 15:54:32','124.106.249.144'),(2945,1,'2017-08-23 16:14:22','103.217.240.216'),(2946,1,'2017-08-23 16:14:23','103.217.240.216'),(2947,1,'2017-08-23 16:17:37','72.27.85.26'),(2948,1,'2017-08-23 16:17:38','72.27.85.26'),(2949,1,'2017-08-23 16:25:30','115.96.147.130'),(2950,1,'2017-08-23 16:25:32','115.96.147.130'),(2951,1,'2017-08-23 16:29:52','105.104.76.234'),(2952,1,'2017-08-23 16:29:53','105.104.76.234'),(2953,1,'2017-08-23 16:35:06','49.206.121.227'),(2954,1,'2017-08-23 16:35:07','49.206.121.227'),(2955,1,'2017-08-23 16:40:19','88.166.117.13'),(2956,1,'2017-08-23 16:40:20','88.166.117.13'),(2957,1,'2017-08-23 17:11:25','124.106.138.100'),(2958,1,'2017-08-23 17:11:26','124.106.138.100'),(2959,1,'2017-08-23 17:19:54','141.8.112.228'),(2960,1,'2017-08-23 17:19:55','141.8.112.228'),(2961,1,'2017-08-23 17:25:08','81.151.218.158'),(2962,1,'2017-08-23 17:25:09','81.151.218.158'),(2963,1,'2017-08-23 17:30:06','90.175.186.142'),(2964,1,'2017-08-23 17:30:06','90.175.186.142'),(2965,1,'2017-08-23 17:41:26','106.51.133.232'),(2966,1,'2017-08-23 17:41:27','106.51.133.232'),(2967,1,'2017-08-23 17:43:46','47.189.87.49'),(2968,1,'2017-08-23 17:43:47','47.189.87.49'),(2969,1,'2017-08-23 17:53:29','110.36.231.2'),(2970,1,'2017-08-23 17:53:35','110.36.231.2'),(2971,1,'2017-08-23 17:59:22','201.243.143.244'),(2972,1,'2017-08-23 17:59:24','201.243.143.244'),(2973,1,'2017-08-23 18:06:46','95.84.64.17'),(2974,1,'2017-08-23 18:06:47','95.84.64.17'),(2975,1,'2017-08-23 18:29:08','14.207.137.157'),(2976,1,'2017-08-23 18:29:09','14.207.137.157'),(2977,1,'2017-08-23 18:42:04','179.105.81.149'),(2978,1,'2017-08-23 18:42:06','179.105.81.149'),(2979,1,'2017-08-23 18:47:02','39.35.143.182'),(2980,1,'2017-08-23 18:47:04','39.35.143.182'),(2981,1,'2017-08-23 18:59:41','77.222.2.144'),(2982,1,'2017-08-23 18:59:42','77.222.2.144'),(2983,1,'2017-08-23 19:07:24','78.29.95.250'),(2984,1,'2017-08-23 19:07:25','78.29.95.250'),(2985,1,'2017-08-23 19:15:23','79.131.146.90'),(2986,1,'2017-08-23 19:15:24','79.131.146.90'),(2987,1,'2017-08-23 20:13:44','105.184.75.144'),(2988,1,'2017-08-23 20:13:46','105.184.75.144'),(2989,1,'2017-08-23 20:17:33','81.66.106.63'),(2990,1,'2017-08-23 20:17:34','81.66.106.63'),(2991,1,'2017-08-23 20:46:07','103.199.86.46'),(2992,1,'2017-08-23 20:46:08','103.199.86.46'),(2993,1,'2017-08-23 21:02:22','88.125.134.134'),(2994,1,'2017-08-23 21:02:23','88.125.134.134'),(2995,1,'2017-08-23 21:46:41','197.253.195.162'),(2996,1,'2017-08-23 21:46:41','197.253.195.162'),(2997,1,'2017-08-23 22:15:08','106.68.19.115'),(2998,1,'2017-08-23 22:15:10','106.68.19.115'),(2999,1,'2017-08-23 22:39:51','138.36.243.172'),(3000,1,'2017-08-23 22:39:52','138.36.243.172'),(3001,1,'2017-08-23 22:55:00','105.102.6.205'),(3002,1,'2017-08-23 22:55:02','105.102.6.205'),(3003,1,'2017-08-23 23:07:57','93.109.97.0'),(3004,1,'2017-08-23 23:07:58','93.109.97.0'),(3005,1,'2017-08-23 23:10:50','101.109.86.92'),(3006,1,'2017-08-23 23:10:51','101.109.86.92'),(3007,1,'2017-08-23 23:17:45','187.181.121.162'),(3008,1,'2017-08-23 23:17:47','187.181.121.162'),(3009,1,'2017-08-23 23:41:24','182.147.156.66'),(3010,1,'2017-08-23 23:41:26','182.147.156.66'),(3011,1,'2017-08-23 23:54:58','178.248.254.73'),(3012,1,'2017-08-23 23:54:59','178.248.254.73'),(3013,1,'2017-08-23 23:59:09','110.172.18.223'),(3014,1,'2017-08-23 23:59:11','110.172.18.223'),(3015,1,'2017-08-24 00:01:25','105.224.164.99'),(3016,1,'2017-08-24 00:01:27','105.224.164.99'),(3017,1,'2017-08-24 00:14:55','109.67.39.160'),(3018,1,'2017-08-24 00:14:57','109.67.39.160'),(3019,1,'2017-08-24 00:35:32','219.73.0.14'),(3020,1,'2017-08-24 00:43:03','47.36.90.104'),(3021,1,'2017-08-24 00:43:04','47.36.90.104'),(3022,1,'2017-08-24 01:56:08','189.6.26.118'),(3023,1,'2017-08-24 01:56:09','189.6.26.118'),(3024,1,'2017-08-24 02:05:59','212.106.1.232'),(3025,1,'2017-08-24 02:06:00','212.106.1.232'),(3026,1,'2017-08-24 02:20:39','203.160.188.218'),(3027,1,'2017-08-24 02:20:42','203.160.188.218'),(3028,1,'2017-08-24 02:52:14','59.95.146.60'),(3029,1,'2017-08-24 02:52:16','59.95.146.60'),(3030,1,'2017-08-24 02:56:26','180.190.195.167'),(3031,1,'2017-08-24 02:56:28','180.190.195.167'),(3032,1,'2017-08-24 03:10:00','125.162.15.120'),(3033,1,'2017-08-24 03:10:03','125.162.15.120'),(3034,1,'2017-08-24 03:37:39','2.50.128.94'),(3035,1,'2017-08-24 03:37:40','2.50.128.94'),(3036,1,'2017-08-24 04:02:49','200.152.93.119'),(3037,1,'2017-08-24 04:02:51','200.152.93.119'),(3038,1,'2017-08-24 04:12:54','5.172.239.242'),(3039,1,'2017-08-24 04:12:55','5.172.239.242'),(3040,1,'2017-08-24 05:11:40','118.179.153.147'),(3041,1,'2017-08-24 05:11:42','118.179.153.147'),(3042,1,'2017-08-24 06:17:12','101.50.109.94'),(3043,1,'2017-08-24 06:17:13','101.50.109.94'),(3044,1,'2017-08-24 06:27:49','84.124.12.39'),(3045,1,'2017-08-24 06:27:50','84.124.12.39'),(3046,1,'2017-08-24 06:31:39','118.185.85.169'),(3047,1,'2017-08-24 06:31:41','118.185.85.169'),(3048,1,'2017-08-24 06:50:56','41.47.89.85'),(3049,1,'2017-08-24 06:51:01','41.47.89.85'),(3050,1,'2017-08-24 06:58:38','183.89.102.53'),(3051,1,'2017-08-24 06:58:40','183.89.102.53'),(3052,1,'2017-08-24 07:00:44','78.83.128.140'),(3053,1,'2017-08-24 07:00:45','78.83.128.140'),(3054,1,'2017-08-24 07:31:50','14.192.208.254'),(3055,1,'2017-08-24 07:31:51','14.192.208.254'),(3056,1,'2017-08-24 07:49:34','192.203.37.144'),(3057,1,'2017-08-24 07:49:35','192.203.37.144'),(3058,1,'2017-08-24 07:51:22','87.65.213.215'),(3059,1,'2017-08-24 07:51:23','87.65.213.215'),(3060,1,'2017-08-24 08:16:54','178.221.66.42'),(3061,1,'2017-08-24 08:16:55','178.221.66.42'),(3062,1,'2017-08-24 08:28:12','180.190.43.101'),(3063,1,'2017-08-24 08:28:14','180.190.43.101'),(3064,1,'2017-08-24 08:53:34','110.50.85.76'),(3065,1,'2017-08-24 08:53:35','110.50.85.76'),(3066,1,'2017-08-24 08:55:11','5.41.236.143'),(3067,1,'2017-08-24 08:55:12','5.41.236.143'),(3068,1,'2017-08-24 09:09:49','36.83.203.214'),(3069,1,'2017-08-24 09:09:50','36.83.203.214'),(3070,1,'2017-08-24 09:16:50','103.85.195.2'),(3071,1,'2017-08-24 09:16:52','103.85.195.2'),(3072,1,'2017-08-24 09:43:07','117.1.199.35'),(3073,1,'2017-08-24 09:43:09','117.1.199.35'),(3074,1,'2017-08-24 09:43:29','197.42.174.242'),(3075,1,'2017-08-24 09:43:32','197.42.174.242'),(3076,1,'2017-08-24 10:03:45','98.250.91.67'),(3077,1,'2017-08-24 10:03:46','98.250.91.67'),(3078,1,'2017-08-24 10:40:15','77.42.167.165'),(3079,1,'2017-08-24 10:40:18','77.42.167.165'),(3080,1,'2017-08-24 10:46:37','117.241.95.39'),(3081,1,'2017-08-24 10:46:40','117.241.95.39'),(3082,1,'2017-08-24 10:58:21','93.36.165.165'),(3083,1,'2017-08-24 10:58:22','93.36.165.165'),(3084,1,'2017-08-24 11:08:45','90.148.237.211'),(3085,1,'2017-08-24 11:08:46','90.148.237.211'),(3086,1,'2017-08-24 11:17:28','175.158.200.211'),(3087,1,'2017-08-24 11:17:31','175.158.200.211'),(3088,1,'2017-08-24 12:51:42','183.88.33.80'),(3089,1,'2017-08-24 12:51:44','183.88.33.80'),(3090,1,'2017-08-24 12:52:22','95.54.93.169'),(3091,1,'2017-08-24 12:52:23','95.54.93.169'),(3092,1,'2017-08-24 13:07:34','103.70.109.105'),(3093,1,'2017-08-24 13:07:36','103.70.109.105'),(3094,1,'2017-08-24 13:14:34','188.25.255.165'),(3095,1,'2017-08-24 13:14:35','188.25.255.165'),(3096,1,'2017-08-24 13:26:30','191.32.1.147'),(3097,1,'2017-08-24 13:26:32','191.32.1.147'),(3098,1,'2017-08-24 13:39:23','112.196.181.150'),(3099,1,'2017-08-24 13:39:28','112.196.181.150'),(3100,1,'2017-08-24 13:42:58','180.244.241.173'),(3101,1,'2017-08-24 13:43:01','180.244.241.173'),(3102,1,'2017-08-24 13:53:03','148.0.121.56'),(3103,1,'2017-08-24 13:53:05','148.0.121.56'),(3104,1,'2017-08-24 14:19:27','39.40.17.26'),(3105,1,'2017-08-24 14:19:29','39.40.17.26'),(3106,1,'2017-08-24 14:30:59','197.7.112.103'),(3107,1,'2017-08-24 14:31:04','197.7.112.103'),(3108,1,'2017-08-24 14:31:53','173.239.210.12'),(3109,1,'2017-08-24 14:31:54','173.239.210.12'),(3110,1,'2017-08-24 14:32:33','185.174.211.66'),(3111,1,'2017-08-24 14:32:34','185.174.211.66'),(3112,1,'2017-08-24 14:39:24','79.150.92.179'),(3113,1,'2017-08-24 14:39:26','79.150.92.179'),(3114,1,'2017-08-24 14:41:40','41.90.136.118'),(3115,1,'2017-08-24 14:41:47','41.90.136.118'),(3116,1,'2017-08-24 14:50:03','64.119.200.178'),(3117,1,'2017-08-24 14:50:05','64.119.200.178'),(3118,1,'2017-08-24 14:57:16','41.133.173.120'),(3119,1,'2017-08-24 14:57:18','41.133.173.120'),(3120,1,'2017-08-24 15:20:33','5.172.233.1'),(3121,1,'2017-08-24 15:20:34','5.172.233.1'),(3122,1,'2017-08-24 15:21:14','106.203.69.205'),(3123,1,'2017-08-24 15:21:15','106.203.69.205'),(3124,1,'2017-08-24 15:22:32','188.230.169.231'),(3125,1,'2017-08-24 15:22:33','188.230.169.231'),(3126,1,'2017-08-24 15:42:28','79.97.102.69'),(3127,1,'2017-08-24 15:42:29','79.97.102.69'),(3128,1,'2017-08-24 15:45:34','112.198.76.24'),(3129,1,'2017-08-24 15:45:36','112.198.76.24'),(3130,1,'2017-08-24 15:47:40','170.239.82.177'),(3131,1,'2017-08-24 15:47:42','170.239.82.177'),(3132,1,'2017-08-24 15:59:41','111.88.137.141'),(3133,1,'2017-08-24 16:00:03','111.88.137.141'),(3134,1,'2017-08-24 16:27:58','77.28.189.146'),(3135,1,'2017-08-24 16:28:00','77.28.189.146'),(3136,1,'2017-08-24 16:30:06','162.227.98.105'),(3137,1,'2017-08-24 16:30:07','162.227.98.105'),(3138,1,'2017-08-24 16:48:22','115.87.59.114'),(3139,1,'2017-08-24 16:48:24','115.87.59.114'),(3140,1,'2017-08-24 16:59:24','37.236.142.3'),(3141,1,'2017-08-24 16:59:26','37.236.142.3'),(3142,1,'2017-08-24 17:01:42','84.108.225.102'),(3143,1,'2017-08-24 17:01:43','84.108.225.102'),(3144,1,'2017-08-24 17:34:52','82.77.97.90'),(3145,1,'2017-08-24 17:34:53','82.77.97.90'),(3146,1,'2017-08-24 17:34:57','88.231.241.232'),(3147,1,'2017-08-24 17:34:58','88.231.241.232'),(3148,1,'2017-08-24 17:45:42','85.187.227.70'),(3149,1,'2017-08-24 17:45:43','85.187.227.70'),(3150,1,'2017-08-24 18:08:36','27.106.24.100'),(3151,1,'2017-08-24 18:08:38','27.106.24.100'),(3152,1,'2017-08-24 18:18:56','185.120.126.41'),(3153,1,'2017-08-24 18:18:58','185.120.126.41'),(3154,1,'2017-08-24 18:25:58','103.68.9.78'),(3155,1,'2017-08-24 18:26:00','103.68.9.78'),(3156,1,'2017-08-24 18:35:25','5.29.18.183'),(3157,1,'2017-08-24 18:35:26','5.29.18.183'),(3158,1,'2017-08-24 18:36:56','41.211.162.187'),(3159,1,'2017-08-24 18:36:57','41.211.162.187'),(3160,1,'2017-08-24 18:40:08','85.202.75.95'),(3161,1,'2017-08-24 18:40:09','85.202.75.95'),(3162,1,'2017-08-24 18:58:06','95.77.137.184'),(3163,1,'2017-08-24 18:58:07','95.77.137.184'),(3164,1,'2017-08-24 19:01:48','1.22.160.123'),(3165,1,'2017-08-24 19:01:49','1.22.160.123'),(3166,1,'2017-08-24 19:12:13','179.155.160.61'),(3167,1,'2017-08-24 19:12:15','179.155.160.61'),(3168,1,'2017-08-24 19:30:09','201.223.223.185'),(3169,1,'2017-08-24 19:30:12','201.223.223.185'),(3170,1,'2017-08-24 19:54:03','105.100.3.145'),(3171,1,'2017-08-24 19:54:04','105.100.3.145'),(3172,1,'2017-08-24 20:04:55','41.99.4.35'),(3173,1,'2017-08-24 20:04:56','41.99.4.35'),(3174,1,'2017-08-24 20:14:42','124.109.9.190'),(3175,1,'2017-08-24 20:14:44','124.109.9.190'),(3176,1,'2017-08-24 20:16:40','175.158.225.58'),(3177,1,'2017-08-24 20:16:43','175.158.225.58'),(3178,1,'2017-08-24 20:20:07','84.221.152.7'),(3179,1,'2017-08-24 20:20:08','84.221.152.7'),(3180,1,'2017-08-24 20:42:12','125.161.115.217'),(3181,1,'2017-08-24 20:42:13','125.161.115.217'),(3182,1,'2017-08-24 21:39:07','51.39.90.151'),(3183,1,'2017-08-24 21:39:08','51.39.90.151'),(3184,1,'2017-08-24 22:50:42','201.103.157.233'),(3185,1,'2017-08-24 22:50:44','201.103.157.233'),(3186,1,'2017-08-24 22:56:21','103.212.88.195'),(3187,1,'2017-08-24 22:56:23','103.212.88.195'),(3188,1,'2017-08-24 23:24:34','78.93.77.76'),(3189,1,'2017-08-24 23:24:35','78.93.77.76'),(3190,1,'2017-08-24 23:43:13','105.108.128.163'),(3191,1,'2017-08-24 23:43:14','105.108.128.163'),(3192,1,'2017-08-25 00:39:38','95.176.139.144'),(3193,1,'2017-08-25 00:39:39','95.176.139.144'),(3194,1,'2017-08-25 00:48:29','189.155.171.159'),(3195,1,'2017-08-25 00:48:30','189.155.171.159'),(3196,1,'2017-08-25 00:52:48','105.155.144.194'),(3197,1,'2017-08-25 00:52:49','105.155.144.194'),(3198,1,'2017-08-25 01:01:14','103.57.36.224'),(3199,1,'2017-08-25 01:01:18','103.57.36.224'),(3200,1,'2017-08-25 01:13:18','201.178.197.25'),(3201,1,'2017-08-25 01:13:21','201.178.197.25'),(3202,1,'2017-08-25 01:28:15','93.126.145.23'),(3203,1,'2017-08-25 01:28:16','93.126.145.23'),(3204,1,'2017-08-25 02:05:29','69.197.145.178'),(3205,1,'2017-08-25 02:05:30','69.197.145.178'),(3206,1,'2017-08-25 02:05:31','69.197.145.178'),(3207,1,'2017-08-25 02:05:45','2.80.25.232'),(3208,1,'2017-08-25 02:05:48','2.80.25.232'),(3209,1,'2017-08-25 02:26:21','202.141.164.117'),(3210,1,'2017-08-25 02:26:22','202.141.164.117'),(3211,1,'2017-08-25 02:26:31','70.92.78.32'),(3212,1,'2017-08-25 02:26:32','70.92.78.32'),(3213,1,'2017-08-25 03:05:15','120.29.65.158'),(3214,1,'2017-08-25 03:05:17','120.29.65.158'),(3215,1,'2017-08-25 03:05:45','146.199.211.119'),(3216,1,'2017-08-25 03:05:46','146.199.211.119'),(3217,1,'2017-08-25 03:51:12','186.9.134.141'),(3218,1,'2017-08-25 03:51:14','186.9.134.141'),(3219,1,'2017-08-25 03:53:34','117.239.12.73'),(3220,1,'2017-08-25 03:53:36','117.239.12.73'),(3221,1,'2017-08-25 03:56:23','187.188.182.116'),(3222,1,'2017-08-25 03:56:26','187.188.182.116'),(3223,1,'2017-08-25 03:56:27','187.188.182.116'),(3224,1,'2017-08-25 03:57:53','1.9.26.62'),(3225,1,'2017-08-25 03:57:54','1.9.26.62'),(3226,1,'2017-08-25 03:57:56','1.9.26.62'),(3227,1,'2017-08-25 03:58:52','189.206.5.120'),(3228,1,'2017-08-25 03:58:54','189.206.5.120'),(3229,1,'2017-08-25 03:58:55','189.206.5.120'),(3230,1,'2017-08-25 03:59:38','60.29.145.218'),(3231,1,'2017-08-25 03:59:40','60.29.145.218'),(3232,1,'2017-08-25 03:59:42','60.29.145.218'),(3233,1,'2017-08-25 04:01:52','202.97.141.101'),(3234,1,'2017-08-25 04:01:53','202.97.141.101'),(3235,1,'2017-08-25 04:01:55','202.97.141.101'),(3236,1,'2017-08-25 04:02:15','218.56.45.28'),(3237,1,'2017-08-25 04:02:17','218.56.45.28'),(3238,1,'2017-08-25 04:02:19','218.56.45.28'),(3239,1,'2017-08-25 04:02:31','58.20.185.12'),(3240,1,'2017-08-25 04:02:32','58.20.185.12'),(3241,1,'2017-08-25 04:02:33','58.20.185.12'),(3242,1,'2017-08-25 04:30:12','103.217.234.7'),(3243,1,'2017-08-25 04:30:13','103.217.234.7'),(3244,1,'2017-08-25 04:48:28','27.6.132.50'),(3245,1,'2017-08-25 04:48:30','27.6.132.50'),(3246,1,'2017-08-25 05:41:24','150.147.117.38'),(3247,1,'2017-08-25 05:41:26','150.147.117.38'),(3248,1,'2017-08-25 05:51:04','143.176.66.64'),(3249,1,'2017-08-25 05:51:05','143.176.66.64'),(3250,1,'2017-08-25 07:10:28','180.243.99.41'),(3251,1,'2017-08-25 07:10:30','180.243.99.41'),(3252,1,'2017-08-25 07:23:28','117.202.75.78'),(3253,1,'2017-08-25 07:23:30','117.202.75.78'),(3254,1,'2017-08-25 07:38:44','43.227.130.78'),(3255,1,'2017-08-25 07:38:45','43.227.130.78'),(3256,1,'2017-08-25 07:43:07','180.190.171.235'),(3257,1,'2017-08-25 07:43:09','180.190.171.235'),(3258,1,'2017-08-25 07:44:16','197.232.38.10'),(3259,1,'2017-08-25 07:44:17','197.232.38.10'),(3260,1,'2017-08-25 07:51:28','124.253.119.176'),(3261,1,'2017-08-25 07:51:30','124.253.119.176'),(3262,1,'2017-08-25 08:00:35','112.201.10.62'),(3263,1,'2017-08-25 08:00:37','112.201.10.62'),(3264,1,'2017-08-25 08:02:40','14.161.244.139'),(3265,1,'2017-08-25 08:02:42','14.161.244.139'),(3266,1,'2017-08-25 08:13:25','175.139.163.215'),(3267,1,'2017-08-25 08:13:26','175.139.163.215'),(3268,1,'2017-08-25 08:18:55','202.5.142.247'),(3269,1,'2017-08-25 08:19:01','202.5.142.247'),(3270,1,'2017-08-25 08:27:49','46.11.162.164'),(3271,1,'2017-08-25 08:27:51','46.11.162.164'),(3272,1,'2017-08-25 08:50:51','1.22.49.144'),(3273,1,'2017-08-25 08:50:53','1.22.49.144'),(3274,1,'2017-08-25 09:28:27','88.8.235.96'),(3275,1,'2017-08-25 09:28:28','88.8.235.96'),(3276,1,'2017-08-25 09:33:02','72.73.106.159'),(3277,1,'2017-08-25 09:33:03','72.73.106.159'),(3278,1,'2017-08-25 09:41:49','83.235.108.112'),(3279,1,'2017-08-25 09:41:50','83.235.108.112'),(3280,1,'2017-08-25 09:52:56','105.108.45.3'),(3281,1,'2017-08-25 09:52:57','105.108.45.3'),(3282,1,'2017-08-25 10:07:30','81.61.93.224'),(3283,1,'2017-08-25 10:07:31','81.61.93.224'),(3284,1,'2017-08-25 10:09:33','124.104.99.241'),(3285,1,'2017-08-25 10:09:34','124.104.99.241'),(3286,1,'2017-08-25 10:31:36','92.85.242.236'),(3287,1,'2017-08-25 10:31:37','92.85.242.236'),(3288,1,'2017-08-25 10:45:50','93.86.248.230'),(3289,1,'2017-08-25 10:45:51','93.86.248.230'),(3290,1,'2017-08-25 10:46:34','202.125.133.221'),(3291,1,'2017-08-25 10:46:35','202.125.133.221'),(3292,1,'2017-08-25 10:51:24','93.156.44.26'),(3293,1,'2017-08-25 10:51:24','93.156.44.26'),(3294,1,'2017-08-25 11:01:25','189.115.90.164'),(3295,1,'2017-08-25 11:01:27','189.115.90.164'),(3296,1,'2017-08-25 11:26:01','78.172.177.83'),(3297,1,'2017-08-25 11:26:02','78.172.177.83'),(3298,1,'2017-08-25 11:54:17','5.64.160.122'),(3299,1,'2017-08-25 11:54:17','5.64.160.122'),(3300,1,'2017-08-25 11:59:38','177.207.100.165'),(3301,1,'2017-08-25 11:59:40','177.207.100.165'),(3302,1,'2017-08-25 12:06:05','182.186.208.234'),(3303,1,'2017-08-25 12:06:07','182.186.208.234'),(3304,1,'2017-08-25 12:09:59','196.191.0.41'),(3305,1,'2017-08-25 12:10:05','196.191.0.41'),(3306,1,'2017-08-25 12:34:28','27.34.18.127'),(3307,1,'2017-08-25 12:34:29','27.34.18.127'),(3308,1,'2017-08-25 12:51:36','79.64.104.250'),(3309,1,'2017-08-25 12:51:37','79.64.104.250'),(3310,1,'2017-08-25 13:26:51','154.121.7.57'),(3311,1,'2017-08-25 13:26:53','154.121.7.57'),(3312,1,'2017-08-25 13:27:20','41.44.19.37'),(3313,1,'2017-08-25 13:27:21','41.44.19.37'),(3314,1,'2017-08-25 13:27:42','94.187.90.218'),(3315,1,'2017-08-25 13:27:44','94.187.90.218'),(3316,1,'2017-08-25 13:28:24','94.254.141.100'),(3317,1,'2017-08-25 13:28:26','94.254.141.100'),(3318,1,'2017-08-25 13:30:48','27.130.12.16'),(3319,1,'2017-08-25 13:30:50','27.130.12.16'),(3320,1,'2017-08-25 13:34:30','103.255.7.44'),(3321,1,'2017-08-25 13:34:32','103.255.7.44'),(3322,1,'2017-08-25 13:34:43','202.9.42.93'),(3323,1,'2017-08-25 13:34:45','202.9.42.93'),(3324,1,'2017-08-25 13:35:46','124.13.113.116'),(3325,1,'2017-08-25 13:35:47','124.13.113.116'),(3326,1,'2017-08-25 13:46:56','47.9.161.175'),(3327,1,'2017-08-25 13:46:57','47.9.161.175'),(3328,1,'2017-08-25 13:53:22','109.172.151.146'),(3329,1,'2017-08-25 13:53:24','109.172.151.146'),(3330,1,'2017-08-25 13:58:49','115.66.126.112'),(3331,1,'2017-08-25 13:58:51','115.66.126.112'),(3332,1,'2017-08-25 14:04:16','85.53.92.162'),(3333,1,'2017-08-25 14:04:16','49.248.82.15'),(3334,1,'2017-08-25 14:04:17','85.53.92.162'),(3335,1,'2017-08-25 14:04:17','49.248.82.15'),(3336,1,'2017-08-25 14:05:51','117.215.18.225'),(3337,1,'2017-08-25 14:05:56','117.215.18.225'),(3338,1,'2017-08-25 14:07:31','176.205.1.198'),(3339,1,'2017-08-25 14:07:32','176.205.1.198'),(3340,1,'2017-08-25 14:13:39','175.157.72.40'),(3341,1,'2017-08-25 14:13:41','175.157.72.40'),(3342,1,'2017-08-25 14:34:03','86.16.120.157'),(3343,1,'2017-08-25 14:34:03','86.16.120.157'),(3344,1,'2017-08-25 14:43:58','5.29.163.246'),(3345,1,'2017-08-25 14:43:59','5.29.163.246'),(3346,1,'2017-08-25 14:44:29','49.206.114.238'),(3347,1,'2017-08-25 14:44:30','49.206.114.238'),(3348,1,'2017-08-25 14:44:57','49.146.237.250'),(3349,1,'2017-08-25 14:44:59','49.146.237.250'),(3350,1,'2017-08-25 14:49:41','90.36.113.63'),(3351,1,'2017-08-25 14:49:42','90.36.113.63'),(3352,1,'2017-08-25 14:53:37','218.103.227.14'),(3353,1,'2017-08-25 14:53:38','218.103.227.14'),(3354,1,'2017-08-25 15:00:03','27.145.43.39'),(3355,1,'2017-08-25 15:00:05','27.145.43.39'),(3356,1,'2017-08-25 15:27:53','111.68.103.3'),(3357,1,'2017-08-25 15:27:55','111.68.103.3'),(3358,1,'2017-08-25 15:31:33','175.142.99.234'),(3359,1,'2017-08-25 15:31:34','175.142.99.234'),(3360,1,'2017-08-25 15:34:05','41.90.142.204'),(3361,1,'2017-08-25 15:34:07','41.90.142.204'),(3362,1,'2017-08-25 15:34:47','181.160.130.80'),(3363,1,'2017-08-25 15:34:50','181.160.130.80'),(3364,1,'2017-08-25 15:39:29','212.79.108.63'),(3365,1,'2017-08-25 15:39:30','212.79.108.63'),(3366,1,'2017-08-25 15:46:04','90.94.30.150'),(3367,1,'2017-08-25 15:46:05','90.94.30.150'),(3368,1,'2017-08-25 15:46:45','43.228.142.195'),(3369,1,'2017-08-25 15:46:47','43.228.142.195'),(3370,1,'2017-08-25 16:00:21','43.239.205.54'),(3371,1,'2017-08-25 16:00:22','43.239.205.54'),(3372,1,'2017-08-25 16:05:34','109.92.113.199'),(3373,1,'2017-08-25 16:05:35','109.92.113.199'),(3374,1,'2017-08-25 16:13:48','41.77.78.74'),(3375,1,'2017-08-25 16:16:21','86.242.28.19'),(3376,1,'2017-08-25 16:16:22','86.242.28.19'),(3377,1,'2017-08-25 16:24:19','27.64.39.237'),(3378,1,'2017-08-25 16:24:20','101.99.36.156'),(3379,1,'2017-08-25 16:26:28','1.23.238.178'),(3380,1,'2017-08-25 16:26:30','1.23.238.178'),(3381,1,'2017-08-25 16:32:14','41.47.186.232'),(3382,1,'2017-08-25 16:32:16','41.47.186.232'),(3383,1,'2017-08-25 17:23:27','188.213.19.151'),(3384,1,'2017-08-25 17:23:34','188.213.19.151'),(3385,1,'2017-08-25 17:33:11','31.7.144.135'),(3386,1,'2017-08-25 17:33:19','31.7.144.135'),(3387,1,'2017-08-25 17:38:01','185.195.76.50'),(3388,1,'2017-08-25 17:38:04','185.195.76.50'),(3389,1,'2017-08-25 17:42:27','47.90.48.48'),(3390,1,'2017-08-25 17:42:30','47.90.48.48'),(3391,1,'2017-08-25 17:44:43','59.106.221.75'),(3392,1,'2017-08-25 17:44:46','59.106.221.75'),(3393,1,'2017-08-25 17:51:16','195.94.172.101'),(3394,1,'2017-08-25 17:51:19','195.94.172.101'),(3395,1,'2017-08-25 18:15:32','168.62.208.46'),(3396,1,'2017-08-25 18:15:38','168.62.208.46'),(3397,1,'2017-08-25 22:43:34','91.76.228.69'),(3398,1,'2017-08-25 22:47:44','95.104.61.185'),(3399,1,'2017-08-25 22:47:49','60.190.240.102'),(3400,1,'2017-08-25 22:48:03','36.67.115.139'),(3401,1,'2017-08-26 00:24:39','46.105.102.203'),(3402,1,'2017-08-26 13:27:40','103.67.235.32'),(3403,1,'2017-08-26 13:27:43','103.67.235.32'),(3404,1,'2017-08-26 13:30:50','45.113.121.35'),(3405,1,'2017-08-26 13:30:52','45.113.121.35'),(3406,1,'2017-08-26 13:41:06','101.201.146.73'),(3407,1,'2017-08-26 13:41:08','101.201.146.73'),(3408,1,'2017-08-26 14:33:42','198.46.81.15'),(3409,1,'2017-08-26 14:33:45','198.46.81.15'),(3410,1,'2017-08-26 14:38:59','5.100.152.180'),(3411,1,'2017-08-26 14:39:00','5.100.152.180'),(3412,1,'2017-08-26 14:44:28','69.163.195.218'),(3413,1,'2017-08-26 14:44:38','69.163.195.218'),(3414,1,'2017-08-26 14:52:25','103.67.235.18'),(3415,1,'2017-08-26 14:52:28','103.67.235.18'),(3416,1,'2017-08-26 14:56:51','47.90.48.48'),(3417,1,'2017-08-26 14:56:53','47.90.48.48'),(3418,1,'2017-08-26 15:04:50','63.143.38.226'),(3419,1,'2017-08-26 15:04:52','63.143.38.226'),(3420,1,'2017-08-26 15:09:00','45.113.121.35'),(3421,1,'2017-08-26 15:09:02','45.113.121.35'),(3422,1,'2017-08-27 07:45:16','62.210.105.116'),(3423,1,'2017-08-27 07:45:17','62.210.105.116'),(3424,1,'2017-08-27 07:45:18','62.210.105.116'),(3425,1,'2017-08-27 10:28:32','220.216.111.35'),(3426,1,'2017-08-27 10:28:35','220.216.111.35'),(3427,1,'2017-08-27 10:36:17','208.113.186.110'),(3428,1,'2017-08-28 17:55:45','109.107.236.152'),(3429,1,'2017-08-28 17:55:57','112.120.212.92'),(3430,1,'2017-08-29 09:42:42','60.166.48.158'),(3431,1,'2017-08-29 09:42:43','60.166.48.158'),(3432,1,'2017-08-29 09:42:45','60.166.48.158'),(3433,1,'2017-08-29 09:44:38','116.113.86.246'),(3434,1,'2017-08-29 09:44:39','116.113.86.246'),(3435,1,'2017-08-29 09:44:41','116.113.86.246'),(3436,1,'2017-08-29 09:45:52','122.224.36.28'),(3437,1,'2017-08-29 09:45:54','122.224.36.28'),(3438,1,'2017-08-29 09:46:02','111.26.198.30'),(3439,1,'2017-08-29 09:46:04','111.26.198.30'),(3440,1,'2017-08-29 09:46:05','111.26.198.30'),(3441,1,'2017-08-29 09:57:27','123.7.178.228'),(3442,1,'2017-08-29 09:57:43','188.132.198.199'),(3443,1,'2017-08-29 09:57:57','218.32.96.91'),(3444,1,'2017-08-29 09:58:10','91.192.244.50'),(3445,1,'2017-08-29 09:58:24','121.18.39.22'),(3446,1,'2017-08-29 09:58:37','59.49.96.148'),(3447,1,'2017-08-29 09:58:49','104.251.100.141'),(3448,1,'2017-08-29 09:59:02','97.65.205.10'),(3449,1,'2017-08-29 09:59:14','89.218.84.214'),(3450,1,'2017-08-29 09:59:26','94.76.82.164'),(3451,1,'2017-08-29 09:59:38','89.218.84.214'),(3452,1,'2017-08-29 09:59:51','201.140.110.78'),(3453,1,'2017-08-29 10:00:00','113.200.254.171'),(3454,1,'2017-08-29 10:00:05','60.216.106.162'),(3455,1,'2017-08-29 10:00:10','113.200.246.58'),(3456,1,'2017-08-29 10:00:12','113.200.246.58'),(3457,1,'2017-08-29 10:00:13','113.200.246.58'),(3458,1,'2017-08-29 10:03:01','218.24.236.4'),(3459,1,'2017-08-29 10:03:03','218.24.236.4'),(3460,1,'2017-08-29 10:03:06','218.24.236.4'),(3461,1,'2017-08-29 10:05:11','122.227.168.230'),(3462,1,'2017-08-29 10:05:12','122.227.168.230'),(3463,1,'2017-08-29 10:05:14','122.227.168.230'),(3464,1,'2017-08-29 10:06:55','120.42.52.82'),(3465,1,'2017-08-29 10:06:57','120.42.52.82'),(3466,1,'2017-08-29 10:06:58','120.42.52.82'),(3467,1,'2017-08-29 10:09:03','222.92.223.234'),(3468,1,'2017-08-29 10:09:04','222.92.223.234'),(3469,1,'2017-08-29 10:09:06','222.92.223.234'),(3470,1,'2017-08-29 10:09:48','121.14.67.3'),(3471,1,'2017-08-29 10:09:49','121.14.67.3'),(3472,1,'2017-08-29 10:09:50','121.14.67.3'),(3473,1,'2017-08-29 10:11:38','220.178.151.125'),(3474,1,'2017-08-29 10:11:39','220.178.151.125'),(3475,1,'2017-08-29 10:11:42','220.178.151.125'),(3476,1,'2017-08-29 10:13:22','111.206.163.56'),(3477,1,'2017-08-29 10:13:24','111.206.163.56'),(3478,1,'2017-08-29 10:13:25','111.206.163.56'),(3479,1,'2017-08-29 10:19:21','88.247.42.66'),(3480,1,'2017-08-29 10:19:24','88.247.42.66'),(3481,1,'2017-08-29 10:19:26','88.247.42.66'),(3482,1,'2017-08-29 10:20:07','113.195.181.115'),(3483,1,'2017-08-29 10:20:08','113.195.181.115'),(3484,1,'2017-08-29 10:20:09','113.195.181.115'),(3485,1,'2017-08-29 10:22:02','190.13.106.107'),(3486,1,'2017-08-29 10:22:04','190.13.106.107'),(3487,1,'2017-08-29 10:22:05','190.13.106.107'),(3488,1,'2017-08-29 10:24:17','220.175.154.205'),(3489,1,'2017-08-29 10:24:18','220.175.154.205'),(3490,1,'2017-08-29 10:24:19','220.175.154.205'),(3491,1,'2017-08-29 10:25:17','61.136.82.164'),(3492,1,'2017-08-29 10:25:18','61.136.82.164'),(3493,1,'2017-08-29 10:25:19','61.136.82.164'),(3494,1,'2017-08-29 10:27:44','218.23.240.146'),(3495,1,'2017-08-29 10:27:46','218.23.240.146'),(3496,1,'2017-08-29 10:27:47','218.23.240.146'),(3497,1,'2017-08-29 10:31:28','60.13.3.26'),(3498,1,'2017-08-29 10:34:06','220.171.28.146'),(3499,1,'2017-08-29 10:34:08','220.171.28.146'),(3500,1,'2017-08-29 10:34:09','220.171.28.146'),(3501,1,'2017-08-29 10:36:06','183.234.60.38'),(3502,1,'2017-08-29 10:36:07','183.234.60.38'),(3503,1,'2017-08-29 10:36:09','183.234.60.38'),(3504,1,'2017-08-29 10:36:34','220.164.2.77'),(3505,1,'2017-08-29 10:36:35','220.164.2.77'),(3506,1,'2017-08-29 10:36:36','220.164.2.77'),(3507,1,'2017-08-29 10:38:21','58.19.204.129'),(3508,1,'2017-08-29 10:38:22','58.19.204.129'),(3509,1,'2017-08-29 10:38:24','58.19.204.129'),(3510,1,'2017-08-29 10:40:29','220.170.196.198'),(3511,1,'2017-08-29 10:40:30','220.170.196.198'),(3512,1,'2017-08-29 10:40:32','220.170.196.198'),(3513,1,'2017-08-29 10:43:23','188.94.227.38'),(3514,1,'2017-08-29 10:43:25','188.94.227.38'),(3515,1,'2017-08-29 10:43:25','188.94.227.38'),(3516,1,'2017-08-29 10:44:31','219.159.70.68'),(3517,1,'2017-08-29 10:44:32','219.159.70.68'),(3518,1,'2017-08-29 10:44:33','219.159.70.68'),(3519,1,'2017-08-29 10:46:16','1.9.26.62'),(3520,1,'2017-08-29 10:46:18','1.9.26.62'),(3521,1,'2017-08-29 10:46:19','1.9.26.62'),(3522,1,'2017-08-29 10:48:08','205.217.247.204'),(3523,1,'2017-08-29 10:48:13','205.217.247.204'),(3524,1,'2017-08-29 10:48:17','205.217.247.204'),(3525,1,'2017-08-29 10:48:30','58.56.145.94'),(3526,1,'2017-08-29 10:48:32','58.56.145.94'),(3527,1,'2017-08-29 10:48:33','58.56.145.94'),(3528,1,'2017-08-29 10:49:02','61.161.135.34'),(3529,1,'2017-08-29 10:49:04','61.161.135.34'),(3530,1,'2017-08-29 10:49:05','61.161.135.34'),(3531,1,'2017-08-29 10:50:54','124.254.6.6'),(3532,1,'2017-08-29 10:50:56','124.254.6.6'),(3533,1,'2017-08-29 10:50:57','124.254.6.6'),(3534,1,'2017-08-29 10:51:24','211.141.155.131'),(3535,1,'2017-08-29 10:51:26','211.141.155.131'),(3536,1,'2017-08-29 10:51:28','211.141.155.131'),(3537,1,'2017-08-29 10:53:28','218.95.153.90'),(3538,1,'2017-08-29 10:53:30','218.95.153.90'),(3539,1,'2017-08-29 10:53:31','218.95.153.90'),(3540,1,'2017-08-29 10:57:46','122.226.183.155'),(3541,1,'2017-08-29 10:57:48','122.226.183.155'),(3542,1,'2017-08-29 10:57:49','122.226.183.155'),(3543,1,'2017-08-29 10:59:38','58.49.17.174'),(3544,1,'2017-08-29 10:59:39','58.49.17.174'),(3545,1,'2017-08-29 10:59:40','58.49.17.174'),(3546,1,'2017-08-29 11:02:13','221.210.83.24'),(3547,1,'2017-08-29 11:02:15','221.210.83.24'),(3548,1,'2017-08-29 11:02:16','221.210.83.24'),(3549,1,'2017-08-29 11:04:26','183.166.187.168'),(3550,1,'2017-08-29 11:04:28','183.166.187.168'),(3551,1,'2017-08-29 11:04:30','183.166.187.168'),(3552,1,'2017-08-29 11:06:39','115.238.247.228'),(3553,1,'2017-08-29 11:06:42','115.238.247.228'),(3554,1,'2017-08-29 11:06:44','115.238.247.228'),(3555,1,'2017-08-29 11:09:30','114.80.137.198'),(3556,1,'2017-08-29 11:09:32','114.80.137.198'),(3557,1,'2017-08-29 11:09:35','114.80.137.198'),(3558,1,'2017-08-29 11:09:42','111.85.223.234'),(3559,1,'2017-08-29 11:09:44','111.85.223.234'),(3560,1,'2017-08-29 11:09:46','111.85.223.234'),(3561,1,'2017-08-29 11:12:07','60.171.155.26'),(3562,1,'2017-08-29 11:12:08','60.171.155.26'),(3563,1,'2017-08-29 11:12:10','60.171.155.26'),(3564,1,'2017-08-29 11:12:36','122.227.185.67'),(3565,1,'2017-08-29 11:12:37','122.227.185.67'),(3566,1,'2017-08-29 11:12:38','122.227.185.67'),(3567,1,'2017-08-29 11:14:28','183.240.196.120'),(3568,1,'2017-08-29 11:14:30','183.240.196.120'),(3569,1,'2017-08-29 11:14:32','183.240.196.120'),(3570,1,'2017-08-29 11:15:46','94.242.252.46'),(3571,1,'2017-08-29 11:17:34','221.224.25.26'),(3572,1,'2017-08-29 11:17:35','221.224.25.26'),(3573,1,'2017-08-29 11:17:37','221.224.25.26'),(3574,1,'2017-08-29 11:20:07','58.220.234.18'),(3575,1,'2017-08-29 11:20:09','58.220.234.18'),(3576,1,'2017-08-29 11:20:10','58.220.234.18'),(3577,1,'2017-08-29 11:22:54','222.185.255.227'),(3578,1,'2017-08-29 11:22:56','222.185.255.227'),(3579,1,'2017-08-29 11:22:58','222.185.255.227'),(3580,1,'2017-08-29 11:25:12','183.220.53.39'),(3581,1,'2017-08-29 11:25:14','183.220.53.39'),(3582,1,'2017-08-29 11:25:15','183.220.53.39'),(3583,1,'2017-08-29 11:27:26','14.32.77.156'),(3584,1,'2017-08-29 11:27:28','14.32.77.156'),(3585,1,'2017-08-29 11:27:29','14.32.77.156'),(3586,1,'2017-08-29 11:29:46','61.153.215.122'),(3587,1,'2017-08-29 11:29:48','61.153.215.122'),(3588,1,'2017-08-29 11:29:50','61.153.215.122'),(3589,1,'2017-08-29 11:32:17','221.203.154.50'),(3590,1,'2017-08-29 11:32:18','221.203.154.50'),(3591,1,'2017-08-29 11:32:20','221.203.154.50'),(3592,1,'2017-08-29 11:34:37','223.220.248.78'),(3593,1,'2017-08-29 11:34:38','223.220.248.78'),(3594,1,'2017-08-29 11:34:40','223.220.248.78'),(3595,1,'2017-08-29 11:37:26','58.18.170.107'),(3596,1,'2017-08-29 11:37:28','58.18.170.107'),(3597,1,'2017-08-29 11:37:29','58.18.170.107'),(3598,1,'2017-08-29 11:39:21','218.22.66.30'),(3599,1,'2017-08-29 11:39:25','218.22.66.30'),(3600,1,'2017-08-29 11:39:26','218.22.66.30'),(3601,1,'2017-08-29 11:42:08','220.178.102.138'),(3602,1,'2017-08-29 11:42:10','220.178.102.138'),(3603,1,'2017-08-29 11:42:11','220.178.102.138'),(3604,1,'2017-08-29 11:43:12','218.3.204.172'),(3605,1,'2017-08-29 11:43:13','218.3.204.172'),(3606,1,'2017-08-29 11:43:14','218.3.204.172'),(3607,1,'2017-08-29 11:45:28','60.170.110.89'),(3608,1,'2017-08-29 11:45:30','60.170.110.89'),(3609,1,'2017-08-29 11:45:31','60.170.110.89'),(3610,1,'2017-08-29 11:47:15','191.185.249.33'),(3611,1,'2017-08-29 11:47:27','219.159.70.68'),(3612,1,'2017-08-29 11:47:28','219.159.70.68'),(3613,1,'2017-08-29 11:47:30','219.159.70.68'),(3614,1,'2017-08-29 11:49:34','116.113.96.22'),(3615,1,'2017-08-29 11:49:35','116.113.96.22'),(3616,1,'2017-08-29 11:49:37','116.113.96.22'),(3617,1,'2017-08-29 11:51:58','124.128.246.178'),(3618,1,'2017-08-29 11:52:00','124.128.246.178'),(3619,1,'2017-08-29 11:52:02','124.128.246.178'),(3620,1,'2017-08-29 11:54:03','222.180.100.198'),(3621,1,'2017-08-29 11:54:05','222.180.100.198'),(3622,1,'2017-08-29 11:54:06','222.180.100.198'),(3623,1,'2017-08-29 11:56:12','210.82.28.41'),(3624,1,'2017-08-29 11:56:14','210.82.28.41'),(3625,1,'2017-08-29 11:56:15','210.82.28.41'),(3626,1,'2017-08-29 11:58:05','58.49.127.246'),(3627,1,'2017-08-29 11:58:06','58.49.127.246'),(3628,1,'2017-08-29 11:58:07','58.49.127.246'),(3629,1,'2017-08-29 11:59:46','42.115.91.161'),(3630,1,'2017-08-29 11:59:48','42.115.91.161'),(3631,1,'2017-08-29 11:59:50','42.115.91.161'),(3632,1,'2017-08-29 12:00:33','113.195.181.52'),(3633,1,'2017-08-29 12:00:35','113.195.181.52'),(3634,1,'2017-08-29 12:00:36','113.195.181.52'),(3635,1,'2017-08-29 12:03:22','61.136.104.131'),(3636,1,'2017-08-29 12:03:24','61.136.104.131'),(3637,1,'2017-08-29 12:03:26','61.136.104.131'),(3638,1,'2017-08-29 12:05:38','60.13.253.189'),(3639,1,'2017-08-29 12:05:39','60.13.253.189'),(3640,1,'2017-08-29 12:05:41','60.13.253.189'),(3641,1,'2017-08-29 12:07:58','61.233.18.34'),(3642,1,'2017-08-29 12:08:00','61.233.18.34'),(3643,1,'2017-08-29 12:08:02','61.233.18.34'),(3644,1,'2017-08-29 12:10:15','61.180.4.114'),(3645,1,'2017-08-29 12:10:17','61.180.4.114'),(3646,1,'2017-08-29 12:10:18','61.180.4.114'),(3647,1,'2017-08-29 12:12:45','222.92.142.226'),(3648,1,'2017-08-29 12:12:47','222.92.142.226'),(3649,1,'2017-08-29 12:12:48','222.92.142.226'),(3650,1,'2017-08-29 12:13:46','61.134.52.164'),(3651,1,'2017-08-29 12:13:47','61.134.52.164'),(3652,1,'2017-08-29 12:13:49','61.134.52.164'),(3653,1,'2017-08-29 12:15:03','60.216.97.206'),(3654,1,'2017-08-29 12:15:04','60.216.97.206'),(3655,1,'2017-08-29 12:15:06','60.216.97.206'),(3656,1,'2017-08-29 12:20:23','220.130.116.125'),(3657,1,'2017-08-29 12:20:25','220.130.116.125'),(3658,1,'2017-08-29 12:20:27','220.130.116.125'),(3659,1,'2017-08-29 12:22:37','118.121.233.54'),(3660,1,'2017-08-29 12:22:38','118.121.233.54'),(3661,1,'2017-08-29 12:22:39','118.121.233.54'),(3662,1,'2017-08-29 12:24:42','60.172.231.12'),(3663,1,'2017-08-29 12:24:43','60.172.231.12'),(3664,1,'2017-08-29 12:24:45','60.172.231.12'),(3665,1,'2017-08-29 12:27:45','122.227.62.206'),(3666,1,'2017-08-29 12:27:46','122.227.62.206'),(3667,1,'2017-08-29 12:27:48','122.227.62.206'),(3668,1,'2017-08-29 12:30:40','222.247.60.178'),(3669,1,'2017-08-29 12:30:42','222.247.60.178'),(3670,1,'2017-08-29 12:30:44','222.247.60.178'),(3671,1,'2017-08-29 12:32:46','222.189.41.46'),(3672,1,'2017-08-29 12:32:48','222.189.41.46'),(3673,1,'2017-08-29 12:32:49','222.189.41.46'),(3674,1,'2017-08-29 12:33:59','80.245.123.14'),(3675,1,'2017-08-29 12:34:01','80.245.123.14'),(3676,1,'2017-08-29 12:34:03','80.245.123.14'),(3677,1,'2017-08-29 12:35:04','61.177.148.58'),(3678,1,'2017-08-29 12:35:06','61.177.148.58'),(3679,1,'2017-08-29 12:35:08','61.177.148.58'),(3680,1,'2017-08-29 12:37:12','218.64.63.195'),(3681,1,'2017-08-29 12:37:13','218.64.63.195'),(3682,1,'2017-08-29 12:37:15','218.64.63.195'),(3683,1,'2017-08-29 12:39:33','124.117.228.42'),(3684,1,'2017-08-29 12:39:34','124.117.228.42'),(3685,1,'2017-08-29 12:39:36','124.117.228.42'),(3686,1,'2017-08-29 12:40:09','220.115.251.187'),(3687,1,'2017-08-29 12:40:10','220.115.251.187'),(3688,1,'2017-08-29 12:40:11','220.115.251.187'),(3689,1,'2017-08-29 12:40:35','218.95.159.106'),(3690,1,'2017-08-29 12:40:36','218.95.159.106'),(3691,1,'2017-08-29 12:40:37','218.95.159.106'),(3692,1,'2017-08-29 12:40:50','1.85.7.26'),(3693,1,'2017-08-29 12:40:51','1.85.7.26'),(3694,1,'2017-08-29 12:40:53','1.85.7.26'),(3695,1,'2017-08-29 12:43:39','112.25.188.48'),(3696,1,'2017-08-29 12:43:41','112.25.188.48'),(3697,1,'2017-08-29 12:43:42','112.25.188.48'),(3698,1,'2017-08-29 12:45:45','185.19.177.1'),(3699,1,'2017-08-29 12:45:46','185.19.177.1'),(3700,1,'2017-08-29 12:45:47','185.19.177.1'),(3701,1,'2017-08-29 12:46:53','61.187.123.74'),(3702,1,'2017-08-29 12:46:54','61.187.123.74'),(3703,1,'2017-08-29 12:46:55','61.187.123.74'),(3704,1,'2017-08-29 12:49:04','203.192.199.98'),(3705,1,'2017-08-29 12:49:05','203.192.199.98'),(3706,1,'2017-08-29 12:49:06','203.192.199.98'),(3707,1,'2017-08-29 12:50:38','76.73.237.38'),(3708,1,'2017-08-29 12:50:39','76.73.237.38'),(3709,1,'2017-08-29 12:50:40','76.73.237.38'),(3710,1,'2017-08-29 12:51:36','222.209.223.91'),(3711,1,'2017-08-29 12:51:38','222.209.223.91'),(3712,1,'2017-08-29 12:51:40','222.209.223.91'),(3713,1,'2017-08-29 12:53:20','125.212.247.115'),(3714,1,'2017-08-29 12:53:21','125.212.247.115'),(3715,1,'2017-08-29 12:53:23','125.212.247.115'),(3716,1,'2017-08-29 12:55:48','211.103.155.236'),(3717,1,'2017-08-29 12:55:50','211.103.155.236'),(3718,1,'2017-08-29 12:56:01','222.92.204.50'),(3719,1,'2017-08-29 12:56:02','222.92.204.50'),(3720,1,'2017-08-29 12:56:04','222.92.204.50'),(3721,1,'2017-08-29 21:01:09','183.87.114.130'),(3722,1,'2017-08-29 21:01:11','183.87.114.130'),(3723,1,'2017-08-29 21:01:13','183.87.114.130'),(3724,1,'2017-08-29 22:01:35','51.255.138.90'),(3725,1,'2017-08-29 22:01:36','51.255.138.90'),(3726,1,'2017-08-29 22:01:36','51.255.138.90'),(3727,1,'2017-08-29 22:56:49','178.137.82.201'),(3728,1,'2017-08-30 09:59:43','183.87.114.130'),(3729,1,'2017-08-30 09:59:45','183.87.114.130'),(3730,1,'2017-08-30 09:59:46','183.87.114.130'),(3731,1,'2017-08-30 21:24:53','94.242.254.62'),(3732,1,'2017-08-30 22:18:59','220.168.29.82'),(3733,1,'2017-08-31 06:49:03','134.19.230.102'),(3734,1,'2017-08-31 06:49:05','83.142.189.10'),(3735,1,'2017-08-31 06:53:06','185.49.169.121'),(3736,1,'2017-08-31 07:00:18','200.125.220.98'),(3737,1,'2017-08-31 12:59:09','117.174.142.109'),(3738,1,'2017-09-01 16:20:16','94.242.252.48'),(3739,1,'2017-09-02 05:43:26','220.175.154.205'),(3740,1,'2017-09-02 05:43:32','123.157.218.50'),(3741,1,'2017-09-02 05:43:38','60.172.230.184'),(3742,1,'2017-09-02 05:43:44','112.25.220.99'),(3743,1,'2017-09-02 05:43:49','103.24.125.195'),(3744,1,'2017-09-02 05:43:54','122.227.185.67'),(3745,1,'2017-09-02 05:44:00','218.32.96.91'),(3746,1,'2017-09-02 05:44:06','153.156.78.90'),(3747,1,'2017-09-02 05:44:11','179.220.14.142'),(3748,1,'2017-09-02 05:44:17','175.19.204.202'),(3749,1,'2017-09-02 05:44:22','110.72.251.24'),(3750,1,'2017-09-02 05:44:27','185.59.75.47'),(3751,1,'2017-09-02 05:44:32','118.70.124.34'),(3752,1,'2017-09-02 05:44:36','58.240.2.38'),(3753,1,'2017-09-02 05:44:41','125.72.237.2'),(3754,1,'2017-09-02 05:44:46','221.131.8.162'),(3755,1,'2017-09-02 05:44:50','85.132.71.98'),(3756,1,'2017-09-02 05:44:55','115.56.225.2'),(3757,1,'2017-09-02 05:44:59','193.242.149.127'),(3758,1,'2017-09-02 05:45:01','125.22.33.130'),(3759,1,'2017-09-02 05:45:03','125.22.33.130'),(3760,1,'2017-09-02 05:45:15','58.244.173.130'),(3761,1,'2017-09-02 05:45:17','58.244.173.130'),(3762,1,'2017-09-02 05:45:18','58.244.173.130'),(3763,1,'2017-09-02 05:46:55','180.173.177.30'),(3764,1,'2017-09-02 05:54:07','119.10.51.233'),(3765,1,'2017-09-02 05:56:47','187.243.251.34'),(3766,1,'2017-09-02 05:56:51','222.187.197.208'),(3767,1,'2017-09-02 05:56:56','46.151.158.74'),(3768,1,'2017-09-02 05:57:03','171.34.43.112'),(3769,1,'2017-09-02 05:57:08','193.150.73.22'),(3770,1,'2017-09-02 05:57:16','218.22.49.242'),(3771,1,'2017-09-02 05:57:23','113.240.237.10'),(3772,1,'2017-09-02 05:57:29','176.104.99.97'),(3773,1,'2017-09-02 05:57:34','218.90.180.110'),(3774,1,'2017-09-02 05:57:40','221.210.46.222'),(3775,1,'2017-09-02 05:57:45','125.46.81.195'),(3776,1,'2017-09-02 05:57:51','176.115.100.140'),(3777,1,'2017-09-02 05:58:04','123.129.51.214'),(3778,1,'2017-09-02 05:58:09','42.115.88.153'),(3779,1,'2017-09-02 05:58:13','218.107.46.228'),(3780,1,'2017-09-02 05:58:17','220.165.28.189'),(3781,1,'2017-09-02 05:58:19','220.165.28.189'),(3782,1,'2017-09-02 05:58:22','220.165.28.189'),(3783,1,'2017-09-02 16:47:26','185.96.69.42'),(3784,1,'2017-09-02 16:56:06','61.186.136.36'),(3785,1,'2017-09-02 17:00:55','131.221.164.238'),(3786,1,'2017-09-02 17:02:58','202.103.251.116'),(3787,1,'2017-09-03 12:26:50','95.104.61.141'),(3788,1,'2017-09-03 12:27:09','80.14.77.216'),(3789,1,'2017-09-03 12:27:10','218.94.106.113'),(3790,1,'2017-09-03 12:27:10','91.122.100.223'),(3791,1,'2017-09-03 12:27:17','24.51.67.220'),(3792,1,'2017-09-03 21:39:14','94.242.252.54'),(3793,1,'2017-09-05 20:41:44','185.156.172.133'),(3794,1,'2017-09-05 22:25:33','220.191.249.1'),(3795,1,'2017-09-05 22:25:37','113.105.94.165'),(3796,1,'2017-09-05 22:25:47','80.69.178.92'),(3797,1,'2017-09-05 22:27:57','218.211.96.204'),(3798,1,'2017-09-05 22:29:37','61.159.148.111'),(3799,1,'2017-09-06 07:18:34','58.244.173.130'),(3800,1,'2017-09-06 07:18:36','58.244.173.130'),(3801,1,'2017-09-06 07:18:37','58.244.173.130'),(3802,1,'2017-09-06 07:21:09','112.91.108.190'),(3803,1,'2017-09-06 07:21:11','112.91.108.190'),(3804,1,'2017-09-06 07:21:13','112.91.108.190'),(3805,1,'2017-09-06 07:22:24','110.17.188.30'),(3806,1,'2017-09-06 07:22:25','110.249.218.124'),(3807,1,'2017-09-06 07:22:26','110.249.218.124'),(3808,1,'2017-09-06 07:22:28','110.249.218.124'),(3809,1,'2017-09-06 07:23:59','218.58.105.206'),(3810,1,'2017-09-06 07:24:01','218.58.105.206'),(3811,1,'2017-09-06 07:24:02','218.58.105.206'),(3812,1,'2017-09-06 07:26:01','195.34.238.52'),(3813,1,'2017-09-06 07:26:02','195.34.238.52'),(3814,1,'2017-09-06 07:26:02','118.241.254.152'),(3815,1,'2017-09-06 07:26:03','195.34.238.52'),(3816,1,'2017-09-06 07:40:21','218.22.100.42'),(3817,1,'2017-09-06 07:40:24','218.201.83.148'),(3818,1,'2017-09-06 07:40:25','218.201.83.148'),(3819,1,'2017-09-06 07:40:28','218.201.83.148'),(3820,1,'2017-09-06 07:43:25','219.159.70.68'),(3821,1,'2017-09-06 07:43:27','219.159.70.68'),(3822,1,'2017-09-06 07:43:29','222.33.117.102'),(3823,1,'2017-09-06 07:43:30','222.33.117.102'),(3824,1,'2017-09-06 07:43:32','222.33.117.102'),(3825,1,'2017-09-06 07:45:47','101.1.3.116'),(3826,1,'2017-09-06 07:45:50','101.1.3.116'),(3827,1,'2017-09-06 07:45:52','101.1.3.116'),(3828,1,'2017-09-06 07:46:09','58.17.124.12'),(3829,1,'2017-09-06 07:46:11','58.17.124.12'),(3830,1,'2017-09-06 07:46:13','58.17.124.12'),(3831,1,'2017-09-06 07:47:08','101.66.245.14'),(3832,1,'2017-09-06 07:47:10','101.66.245.14'),(3833,1,'2017-09-06 07:47:11','101.66.245.14'),(3834,1,'2017-09-06 07:49:09','118.241.254.152'),(3835,1,'2017-09-06 07:49:11','118.241.254.152'),(3836,1,'2017-09-06 07:49:22','118.212.79.130'),(3837,1,'2017-09-06 07:49:35','111.39.250.51'),(3838,1,'2017-09-06 07:49:37','111.39.250.51'),(3839,1,'2017-09-06 07:49:38','111.39.250.51'),(3840,1,'2017-09-06 07:51:31','124.207.250.89'),(3841,1,'2017-09-06 07:51:39','124.65.222.38'),(3842,1,'2017-09-06 07:51:41','124.65.222.38'),(3843,1,'2017-09-06 07:51:48','201.20.79.76'),(3844,1,'2017-09-06 07:51:49','201.20.79.76'),(3845,1,'2017-09-06 07:51:51','201.20.79.76'),(3846,1,'2017-09-06 07:52:49','119.10.51.233'),(3847,1,'2017-09-06 07:52:51','119.10.51.233'),(3848,1,'2017-09-06 07:52:52','119.10.51.233'),(3849,1,'2017-09-06 07:53:58','61.180.38.132'),(3850,1,'2017-09-06 07:54:00','61.180.38.132'),(3851,1,'2017-09-06 07:54:03','61.180.38.132'),(3852,1,'2017-09-06 08:04:55','115.56.225.2'),(3853,1,'2017-09-06 08:06:03','118.241.254.152'),(3854,1,'2017-09-06 08:06:59','101.231.247.210'),(3855,1,'2017-09-06 08:07:01','185.12.124.66'),(3856,1,'2017-09-06 08:07:02','185.12.124.66'),(3857,1,'2017-09-06 08:07:03','185.12.124.66'),(3858,1,'2017-09-06 08:08:16','61.134.52.164'),(3859,1,'2017-09-06 08:08:18','61.134.52.164'),(3860,1,'2017-09-06 08:08:30','211.103.24.181'),(3861,1,'2017-09-06 08:08:32','211.103.24.181'),(3862,1,'2017-09-06 08:08:33','211.103.24.181'),(3863,1,'2017-09-06 08:11:12','118.71.251.106'),(3864,1,'2017-09-06 08:19:44','115.236.90.3'),(3865,1,'2017-09-06 08:20:25','71.92.29.50'),(3866,1,'2017-09-06 08:20:27','117.28.250.42'),(3867,1,'2017-09-06 08:20:29','117.28.250.42'),(3868,1,'2017-09-06 08:20:33','117.28.250.42'),(3869,1,'2017-09-06 08:23:29','219.154.17.116'),(3870,1,'2017-09-06 08:23:31','219.154.17.116'),(3871,1,'2017-09-06 08:23:33','219.154.17.116'),(3872,1,'2017-09-06 08:26:25','222.218.17.187'),(3873,1,'2017-09-06 08:26:27','222.218.17.187'),(3874,1,'2017-09-06 08:26:28','222.218.17.187'),(3875,1,'2017-09-06 08:26:55','120.203.25.58'),(3876,1,'2017-09-06 08:26:57','120.203.25.58'),(3877,1,'2017-09-06 08:27:16','121.15.4.206'),(3878,1,'2017-09-06 08:27:21','222.41.213.234'),(3879,1,'2017-09-06 08:27:22','222.41.213.234'),(3880,1,'2017-09-06 08:27:24','222.41.213.234'),(3881,1,'2017-09-06 19:31:20','198.204.235.28'),(3882,1,'2017-09-07 12:01:03','94.242.252.47'),(3883,1,'2017-09-08 07:02:30','58.57.100.2'),(3884,1,'2017-09-08 07:02:30','218.59.161.179'),(3885,1,'2017-09-08 07:07:51','200.50.240.157'),(3886,1,'2017-09-08 16:50:13','94.242.252.48'),(3887,1,'2017-09-09 01:54:02','37.59.178.110'),(3888,1,'2017-09-09 01:54:06','37.59.178.110'),(3889,1,'2017-09-10 09:41:16','178.137.82.201'),(3890,1,'2017-09-11 04:01:25','178.137.82.201'),(3891,1,'2017-09-11 12:11:31','79.139.147.189'),(3892,1,'2017-09-11 12:12:07','109.73.10.58'),(3893,1,'2017-09-11 12:17:58','84.255.152.91'),(3894,1,'2017-09-11 12:37:09','134.19.230.209'),(3895,1,'2017-09-11 12:55:36','81.82.223.109'),(3896,1,'2017-09-11 15:46:17','37.59.178.110'),(3897,1,'2017-09-11 15:46:19','37.59.178.110'),(3898,1,'2017-09-12 06:35:24','94.242.252.45'),(3899,1,'2017-09-13 01:14:15','178.137.82.201'),(3900,1,'2017-09-13 20:49:08','200.61.172.125'),(3901,1,'2017-09-13 20:53:21','222.223.204.60'),(3902,1,'2017-09-13 20:53:22','177.128.70.190'),(3903,1,'2017-09-13 20:54:55','134.19.230.63'),(3904,1,'2017-09-13 20:55:48','221.2.157.133'),(3905,1,'2017-09-14 15:24:26','31.148.243.35'),(3906,1,'2017-09-15 22:57:15','51.15.50.133'),(3907,1,'2017-09-15 22:57:15','51.15.50.133'),(3908,1,'2017-09-15 22:57:16','51.15.50.133'),(3909,1,'2017-09-16 09:20:05','220.163.44.180'),(3910,1,'2017-09-16 09:21:20','112.4.172.182'),(3911,1,'2017-09-16 09:24:19','222.53.247.253'),(3912,1,'2017-09-16 09:29:43','117.173.152.222'),(3913,1,'2017-09-17 10:43:27','61.163.69.170'),(3914,1,'2017-09-18 09:16:24','37.115.188.137'),(3915,1,'2017-09-18 18:41:58','82.165.140.254'),(3916,1,'2017-09-18 18:41:59','82.165.140.254'),(3917,1,'2017-09-18 18:41:59','82.165.140.254'),(3918,1,'2017-09-18 22:54:02','88.146.198.73'),(3919,1,'2017-09-18 22:54:05','188.129.172.76'),(3920,1,'2017-09-18 22:54:07','31.45.231.94'),(3921,1,'2017-09-18 22:56:03','218.94.38.214'),(3922,1,'2017-09-18 22:59:21','196.202.198.21'),(3923,1,'2017-09-18 23:09:48','219.138.59.240'),(3924,1,'2017-09-19 03:48:46','91.200.12.86'),(3925,1,'2017-09-19 03:48:46','91.200.12.86'),(3926,1,'2017-09-19 03:48:46','91.200.12.86'),(3927,1,'2017-09-20 03:10:11','107.150.58.197'),(3928,1,'2017-09-20 03:10:14','107.150.58.197'),(3929,1,'2017-09-20 03:10:18','107.150.58.197'),(3930,1,'2017-09-20 07:52:08','37.59.178.110'),(3931,1,'2017-09-20 07:52:10','37.59.178.110'),(3932,1,'2017-09-20 14:11:34','204.246.238.131'),(3933,1,'2017-09-20 14:11:35','204.246.238.131'),(3934,1,'2017-09-20 14:11:36','204.246.238.131'),(3935,1,'2017-09-20 14:12:00','117.35.207.102'),(3936,1,'2017-09-20 14:12:01','117.35.207.102'),(3937,1,'2017-09-20 14:12:04','117.35.207.102'),(3938,1,'2017-09-20 14:12:46','120.194.149.41'),(3939,1,'2017-09-20 14:12:47','120.194.149.41'),(3940,1,'2017-09-20 14:12:49','120.194.149.41'),(3941,1,'2017-09-20 14:14:27','218.22.198.212'),(3942,1,'2017-09-20 14:14:29','218.22.198.212'),(3943,1,'2017-09-20 14:14:32','218.22.198.212'),(3944,1,'2017-09-20 14:16:50','119.10.51.233'),(3945,1,'2017-09-20 14:16:51','119.10.51.233'),(3946,1,'2017-09-20 14:16:52','119.10.51.233'),(3947,1,'2017-09-20 14:18:17','220.164.2.91'),(3948,1,'2017-09-20 14:18:18','220.164.2.91'),(3949,1,'2017-09-20 14:18:20','220.164.2.91'),(3950,1,'2017-09-20 14:18:47','220.180.156.161'),(3951,1,'2017-09-20 14:18:49','220.180.156.161'),(3952,1,'2017-09-20 14:18:52','220.180.156.161'),(3953,1,'2017-09-21 12:49:12','222.223.204.58'),(3954,1,'2017-09-21 12:50:33','131.221.164.238'),(3955,1,'2017-09-21 12:53:12','120.194.236.115'),(3956,1,'2017-09-21 12:56:40','177.159.103.9'),(3957,1,'2017-09-21 13:02:40','60.174.117.67'),(3958,1,'2017-09-21 22:54:28','95.104.61.176'),(3959,1,'2017-09-22 10:28:21','202.207.193.2'),(3960,1,'2017-09-22 10:28:23','36.66.178.21'),(3961,1,'2017-09-23 12:00:32','178.20.188.13'),(3962,1,'2017-09-23 12:50:52','60.190.185.166'),(3963,1,'2017-09-24 06:34:15','89.29.171.152'),(3964,1,'2017-09-24 06:41:37','181.112.146.150'),(3965,1,'2017-09-24 06:41:48','181.196.207.106'),(3966,1,'2017-09-24 06:43:25','220.170.196.198'),(3967,1,'2017-09-25 16:02:10','95.104.7.38'),(3968,1,'2017-09-25 21:56:31','201.18.18.173'),(3969,1,'2017-09-25 21:56:34','201.18.18.173'),(3970,1,'2017-09-25 21:56:36','201.18.18.173'),(3971,1,'2017-09-28 00:08:02','222.124.128.202'),(3972,1,'2017-09-28 00:10:13','181.112.146.150'),(3973,1,'2017-09-28 00:10:16','123.232.125.198'),(3974,1,'2017-09-28 00:10:24','125.131.149.4'),(3975,1,'2017-09-28 00:11:07','134.19.230.183'),(3976,1,'2017-09-28 00:34:01','178.137.82.201'),(3977,1,'2017-09-30 08:34:31','60.30.224.189'),(3978,1,'2017-09-30 08:34:33','60.30.224.189'),(3979,1,'2017-09-30 08:34:34','60.30.224.189'),(3980,1,'2017-09-30 08:35:34','218.22.187.66'),(3981,1,'2017-09-30 08:35:36','218.22.187.66'),(3982,1,'2017-09-30 08:35:37','218.22.187.66'),(3983,1,'2017-09-30 08:38:03','218.64.165.194'),(3984,1,'2017-09-30 08:38:05','218.64.165.194'),(3985,1,'2017-09-30 08:38:07','218.64.165.194'),(3986,1,'2017-09-30 12:40:04','180.250.127.62'),(3987,1,'2017-09-30 12:40:09','203.130.53.218'),(3988,1,'2017-09-30 12:44:02','177.43.251.153'),(3989,1,'2017-09-30 15:29:51','95.104.61.136'),(3990,1,'2017-10-02 07:07:26','200.43.234.109'),(3991,1,'2017-10-03 16:12:41','13.94.202.131'),(3992,1,'2017-10-03 16:12:50','134.19.230.177'),(3993,1,'2017-10-03 16:12:54','220.164.2.123'),(3994,1,'2017-10-04 08:23:26','183.87.114.130'),(3995,1,'2017-10-04 16:50:35','119.146.33.84'),(3996,1,'2017-10-04 16:50:37','119.146.33.84'),(3997,1,'2017-10-04 16:50:38','119.146.33.84'),(3998,1,'2017-10-04 16:52:05','218.29.52.2'),(3999,1,'2017-10-04 16:52:07','218.29.52.2'),(4000,1,'2017-10-04 16:52:09','218.29.52.2'),(4001,1,'2017-10-04 16:53:39','117.4.88.156'),(4002,1,'2017-10-04 16:53:41','117.4.88.156'),(4003,1,'2017-10-04 16:53:42','117.4.88.156'),(4004,1,'2017-10-06 10:26:04','218.207.74.9'),(4005,1,'2017-10-06 10:26:19','64.32.122.250'),(4006,1,'2017-10-06 10:26:33','27.111.42.145'),(4007,1,'2017-10-06 23:24:27','45.6.76.251'),(4008,1,'2017-10-07 09:59:13','198.204.253.51'),(4009,1,'2017-10-08 01:17:07','119.6.162.142'),(4010,1,'2017-10-08 01:17:09','119.6.162.142'),(4011,1,'2017-10-08 01:17:11','119.6.162.142'),(4012,1,'2017-10-08 01:19:28','218.29.52.2'),(4013,1,'2017-10-08 01:19:30','218.29.52.2'),(4014,1,'2017-10-08 01:19:31','218.29.52.2'),(4015,1,'2017-10-08 01:20:43','117.159.84.141'),(4016,1,'2017-10-08 01:20:45','117.159.84.141'),(4017,1,'2017-10-08 01:20:46','117.159.84.141'),(4018,1,'2017-10-08 19:33:56','201.18.18.173'),(4019,1,'2017-10-08 19:33:59','201.18.18.173'),(4020,1,'2017-10-08 19:34:02','201.18.18.173'),(4021,1,'2017-10-09 00:24:34','83.143.240.3'),(4022,1,'2017-10-09 00:24:36','83.143.240.3'),(4023,1,'2017-10-09 00:24:39','83.143.240.3'),(4024,1,'2017-10-09 16:12:02','218.31.142.232'),(4025,1,'2017-10-09 16:17:48','120.206.230.202'),(4026,1,'2017-10-09 16:18:56','80.19.22.138'),(4027,1,'2017-10-09 16:20:26','196.218.180.49'),(4028,1,'2017-10-09 16:43:31','203.130.229.151'),(4029,1,'2017-10-09 23:24:55','162.243.138.193'),(4030,1,'2017-10-10 08:55:26','195.181.160.66'),(4031,1,'2017-10-10 08:56:16','195.181.160.66'),(4032,1,'2017-10-10 08:56:30','195.181.160.66'),(4033,1,'2017-10-10 13:24:58','154.70.132.49'),(4034,1,'2017-10-10 13:24:59','154.70.132.49'),(4035,1,'2017-10-10 13:25:01','154.70.132.49'),(4036,1,'2017-10-10 13:26:30','58.240.2.38'),(4037,1,'2017-10-10 13:26:31','58.240.2.38'),(4038,1,'2017-10-10 13:26:33','58.240.2.38'),(4039,1,'2017-10-10 13:28:08','58.213.133.18'),(4040,1,'2017-10-10 13:28:09','58.213.133.18'),(4041,1,'2017-10-10 13:28:10','58.213.133.18'),(4042,1,'2017-10-10 13:30:17','59.39.92.162'),(4043,1,'2017-10-10 13:30:18','59.39.92.162'),(4044,1,'2017-10-10 13:30:19','59.39.92.162'),(4045,1,'2017-10-10 13:32:50','61.143.130.162'),(4046,1,'2017-10-10 13:32:51','61.143.130.162'),(4047,1,'2017-10-10 13:32:53','61.143.130.162'),(4048,1,'2017-10-10 20:46:05','201.59.174.194'),(4049,1,'2017-10-11 09:09:24','201.76.9.56'),(4050,1,'2017-10-11 22:35:59','143.0.191.2'),(4051,1,'2017-10-12 15:23:40','134.19.230.220'),(4052,1,'2017-10-12 15:29:23','77.69.251.176'),(4053,1,'2017-10-12 15:30:25','188.129.172.77'),(4054,1,'2017-10-12 17:20:47','36.67.111.229'),(4055,1,'2017-10-12 18:13:35','88.87.72.72'),(4056,1,'2017-10-12 19:06:15','185.219.82.243'),(4057,1,'2017-10-12 20:10:40','95.0.90.178'),(4058,1,'2017-10-12 20:31:31','110.50.85.159'),(4059,1,'2017-10-12 21:01:10','172.245.133.89'),(4060,1,'2017-10-12 21:15:54','36.67.48.11'),(4061,1,'2017-10-12 22:29:02','36.67.50.242'),(4062,1,'2017-10-13 01:01:24','176.36.217.150'),(4063,1,'2017-10-13 01:48:47','212.237.61.174'),(4064,1,'2017-10-13 02:37:19','190.153.210.237'),(4065,1,'2017-10-13 03:28:55','176.32.150.185'),(4066,1,'2017-10-13 04:21:35','201.59.174.194'),(4067,1,'2017-10-13 05:13:39','203.128.69.242'),(4068,1,'2017-10-13 06:05:27','177.91.74.138'),(4069,1,'2017-10-13 09:25:18','94.156.128.18'),(4070,1,'2017-10-13 10:15:02','138.128.229.135'),(4071,1,'2017-10-13 11:41:09','204.14.188.53'),(4072,1,'2017-10-13 15:02:55','212.47.252.49'),(4073,1,'2017-10-13 16:37:33','45.76.195.207'),(4074,1,'2017-10-13 19:26:02','109.185.139.177'),(4075,1,'2017-10-13 19:59:15','176.8.91.190'),(4076,1,'2017-10-13 19:59:15','176.8.91.190'),(4077,1,'2017-10-13 19:59:16','176.8.91.190'),(4078,1,'2017-10-13 20:19:27','91.205.52.234'),(4079,1,'2017-10-13 21:11:18','36.67.145.139'),(4080,1,'2017-10-13 22:01:02','81.89.60.26'),(4081,1,'2017-10-13 22:22:00','94.242.254.62'),(4082,1,'2017-10-13 22:52:57','193.160.226.15'),(4083,1,'2017-10-13 23:56:24','91.146.227.6'),(4084,1,'2017-10-14 01:31:50','116.197.131.116'),(4085,1,'2017-10-14 03:19:05','63.110.242.67'),(4086,1,'2017-10-14 05:08:48','45.117.212.178'),(4087,1,'2017-10-14 06:43:12','62.210.177.15'),(4088,1,'2017-10-14 06:51:43','52.51.155.249'),(4089,1,'2017-10-14 08:43:55','183.91.77.50'),(4090,1,'2017-10-14 20:11:10','81.7.111.204'),(4091,1,'2017-10-14 21:28:42','85.90.199.59'),(4092,1,'2017-10-14 22:50:00','190.248.136.229'),(4093,1,'2017-10-15 00:29:08','157.119.186.10'),(4094,1,'2017-10-15 01:55:22','110.77.138.37'),(4095,1,'2017-10-15 02:55:01','201.18.18.173'),(4096,1,'2017-10-15 02:55:02','201.18.18.173'),(4097,1,'2017-10-15 02:55:03','201.18.18.173'),(4098,1,'2017-10-15 04:13:06','60.2.15.52'),(4099,1,'2017-10-15 04:13:07','60.2.15.52'),(4100,1,'2017-10-15 04:13:08','60.2.15.52'),(4101,1,'2017-10-15 04:14:32','117.159.84.145'),(4102,1,'2017-10-15 04:14:34','117.159.84.145'),(4103,1,'2017-10-15 04:14:35','117.159.84.145'),(4104,1,'2017-10-15 04:16:23','221.176.176.126'),(4105,1,'2017-10-15 04:16:24','221.176.176.126'),(4106,1,'2017-10-15 04:16:26','221.176.176.126'),(4107,1,'2017-10-15 04:18:25','218.26.163.125'),(4108,1,'2017-10-15 04:18:26','218.26.163.125'),(4109,1,'2017-10-15 04:18:28','218.26.163.125'),(4110,1,'2017-10-15 07:14:37','89.238.65.9'),(4111,1,'2017-10-15 10:41:07','95.161.228.186'),(4112,1,'2017-10-15 11:11:56','188.129.172.71'),(4113,1,'2017-10-15 11:12:00','119.48.16.182'),(4114,1,'2017-10-15 11:12:11','77.69.251.217'),(4115,1,'2017-10-15 11:12:26','190.13.106.34'),(4116,1,'2017-10-15 12:36:59','118.97.127.58'),(4117,1,'2017-10-15 14:50:35','187.115.153.195'),(4118,1,'2017-10-15 16:49:14','195.2.244.193'),(4119,1,'2017-10-15 18:33:05','181.196.50.238'),(4120,1,'2017-10-16 13:42:52','103.63.158.39'),(4121,1,'2017-10-16 15:04:18','134.168.38.32'),(4122,1,'2017-10-16 16:31:42','187.11.123.14'),(4123,1,'2017-10-16 17:32:10','122.189.240.46'),(4124,1,'2017-10-16 17:32:15','122.189.240.46'),(4125,1,'2017-10-16 17:32:19','122.189.240.46'),(4126,1,'2017-10-16 17:33:46','221.4.197.154'),(4127,1,'2017-10-16 17:33:49','221.4.197.154'),(4128,1,'2017-10-16 17:33:52','221.4.197.154'),(4129,1,'2017-10-16 17:36:55','220.179.61.160'),(4130,1,'2017-10-16 17:36:59','220.179.61.160'),(4131,1,'2017-10-16 17:37:02','220.179.61.160'),(4132,1,'2017-10-16 17:39:51','218.206.132.194'),(4133,1,'2017-10-16 17:39:54','218.206.132.194'),(4134,1,'2017-10-16 17:39:56','218.206.132.194'),(4135,1,'2017-10-16 17:43:30','115.238.34.226'),(4136,1,'2017-10-16 17:43:31','115.238.34.226'),(4137,1,'2017-10-16 17:43:34','115.238.34.226'),(4138,1,'2017-10-16 17:46:00','213.138.74.85'),(4139,1,'2017-10-16 17:46:03','213.138.74.85'),(4140,1,'2017-10-16 17:46:06','213.138.74.85'),(4141,1,'2017-10-16 17:48:21','220.130.116.125'),(4142,1,'2017-10-16 17:48:24','220.130.116.125'),(4143,1,'2017-10-16 17:48:28','220.130.116.125'),(4144,1,'2017-10-16 17:51:40','111.75.167.157'),(4145,1,'2017-10-16 17:51:44','111.75.167.157'),(4146,1,'2017-10-16 17:51:46','111.75.167.157'),(4147,1,'2017-10-16 17:54:15','58.18.137.83'),(4148,1,'2017-10-16 17:54:18','58.18.137.83'),(4149,1,'2017-10-16 17:54:21','58.18.137.83'),(4150,1,'2017-10-16 17:57:19','178.234.35.26'),(4151,1,'2017-10-16 17:57:23','178.234.35.26'),(4152,1,'2017-10-16 17:57:27','178.234.35.26'),(4153,1,'2017-10-16 17:59:09','118.163.143.170'),(4154,1,'2017-10-16 17:59:13','118.163.143.170'),(4155,1,'2017-10-16 17:59:18','118.163.143.170'),(4156,1,'2017-10-16 18:03:11','218.206.210.194'),(4157,1,'2017-10-16 18:03:13','218.206.210.194'),(4158,1,'2017-10-16 18:03:15','218.206.210.194'),(4159,1,'2017-10-16 18:05:04','61.50.130.146'),(4160,1,'2017-10-16 18:05:05','115.238.247.228'),(4161,1,'2017-10-16 18:05:38','220.170.196.198'),(4162,1,'2017-10-16 18:05:38','222.169.186.242'),(4163,1,'2017-10-16 18:05:38','60.173.149.237'),(4164,1,'2017-10-16 18:05:51','202.137.141.81'),(4165,1,'2017-10-16 18:05:54','202.137.141.81'),(4166,1,'2017-10-16 18:05:59','202.137.141.81'),(4167,1,'2017-10-16 18:06:21','61.164.219.43'),(4168,1,'2017-10-16 18:06:25','61.164.219.43'),(4169,1,'2017-10-16 18:06:32','61.164.219.43'),(4170,1,'2017-10-16 18:06:55','14.45.111.165'),(4171,1,'2017-10-16 18:06:58','14.45.111.165'),(4172,1,'2017-10-16 18:07:02','14.45.111.165'),(4173,1,'2017-10-16 18:11:07','110.249.218.124'),(4174,1,'2017-10-16 18:11:10','110.249.218.124'),(4175,1,'2017-10-16 18:11:14','110.249.218.124'),(4176,1,'2017-10-16 18:12:47','60.190.194.134'),(4177,1,'2017-10-16 18:12:50','60.190.194.134'),(4178,1,'2017-10-16 18:12:52','60.190.194.134'),(4179,1,'2017-10-16 18:14:35','220.173.107.124'),(4180,1,'2017-10-16 18:14:36','220.173.107.124'),(4181,1,'2017-10-16 18:14:40','220.173.107.124'),(4182,1,'2017-10-16 18:15:07','122.195.155.194'),(4183,1,'2017-10-16 18:15:10','122.195.155.194'),(4184,1,'2017-10-16 18:15:12','122.195.155.194'),(4185,1,'2017-10-16 18:17:42','222.175.49.22'),(4186,1,'2017-10-16 18:17:48','115.239.244.198'),(4187,1,'2017-10-16 18:17:50','115.239.244.198'),(4188,1,'2017-10-16 18:17:53','115.239.244.198'),(4189,1,'2017-10-16 18:18:48','211.118.26.122'),(4190,1,'2017-10-16 18:18:51','211.118.26.122'),(4191,1,'2017-10-16 18:18:53','211.118.26.122'),(4192,1,'2017-10-16 19:06:19','197.155.52.27'),(4193,1,'2017-10-16 20:17:45','115.69.217.10'),(4194,1,'2017-10-17 05:19:05','37.115.188.137'),(4195,1,'2017-10-17 05:19:05','37.115.188.137'),(4196,1,'2017-10-17 05:19:06','37.115.188.137'),(4197,1,'2017-10-17 14:04:28','173.208.236.122'),(4198,1,'2017-10-17 14:04:29','173.208.236.122'),(4199,1,'2017-10-17 14:04:30','173.208.236.122'),(4200,1,'2017-10-18 04:27:10','173.208.236.122'),(4201,1,'2017-10-18 04:27:11','173.208.236.122'),(4202,1,'2017-10-18 04:27:12','173.208.236.122'),(4203,1,'2017-10-18 06:38:57','110.185.241.127'),(4204,1,'2017-10-18 06:42:09','205.217.244.205'),(4205,1,'2017-10-19 10:06:21','185.27.61.120'),(4206,1,'2017-10-19 17:14:01','109.203.124.226'),(4207,1,'2017-10-19 19:49:52','82.149.207.86'),(4208,1,'2017-10-20 00:47:35','203.146.82.253'),(4209,1,'2017-10-20 06:09:32','212.47.252.49'),(4210,1,'2017-10-20 11:41:32','45.56.100.153'),(4211,1,'2017-10-20 23:23:59','89.34.30.49'),(4212,1,'2017-10-20 23:25:55','61.134.52.164'),(4213,1,'2017-10-20 23:26:31','13.94.202.131'),(4214,1,'2017-10-20 23:33:15','222.172.36.108'),(4215,1,'2017-10-21 02:45:57','185.45.13.152'),(4216,1,'2017-10-22 15:23:03','220.178.151.125'),(4217,1,'2017-10-22 15:23:48','218.108.16.154'),(4218,1,'2017-10-22 15:25:03','79.1.2.237'),(4219,1,'2017-10-22 15:25:06','79.1.2.237'),(4220,1,'2017-10-22 15:25:10','79.1.2.237'),(4221,1,'2017-10-22 15:25:56','211.138.182.198'),(4222,1,'2017-10-22 15:25:58','211.138.182.198'),(4223,1,'2017-10-22 15:26:31','221.192.141.2'),(4224,1,'2017-10-22 15:26:35','221.192.141.2'),(4225,1,'2017-10-22 15:26:39','221.192.141.2'),(4226,1,'2017-10-22 15:28:41','112.113.241.17'),(4227,1,'2017-10-22 15:28:46','112.113.241.17'),(4228,1,'2017-10-22 15:28:51','112.113.241.17'),(4229,1,'2017-10-22 15:30:49','61.50.130.146'),(4230,1,'2017-10-22 15:30:52','61.50.130.146'),(4231,1,'2017-10-22 15:30:55','61.50.130.146'),(4232,1,'2017-10-22 15:33:26','221.12.137.6'),(4233,1,'2017-10-22 15:33:29','221.12.137.6'),(4234,1,'2017-10-22 15:33:31','221.12.137.6'),(4235,1,'2017-10-22 15:34:15','61.158.188.21'),(4236,1,'2017-10-22 15:40:17','59.50.104.194'),(4237,1,'2017-10-22 15:40:28','221.4.195.238'),(4238,1,'2017-10-22 15:40:36','218.206.132.194'),(4239,1,'2017-10-22 15:40:39','218.206.132.194'),(4240,1,'2017-10-22 15:41:58','60.174.192.240'),(4241,1,'2017-10-22 15:42:01','60.174.192.240'),(4242,1,'2017-10-22 15:42:04','60.174.192.240'),(4243,1,'2017-10-22 15:42:31','187.237.56.222'),(4244,1,'2017-10-22 15:42:34','187.237.56.222'),(4245,1,'2017-10-22 15:46:14','211.138.182.198'),(4246,1,'2017-10-22 15:46:17','211.138.182.198'),(4247,1,'2017-10-22 15:46:40','58.65.160.251'),(4248,1,'2017-10-22 15:47:20','116.249.127.11'),(4249,1,'2017-10-22 15:47:24','116.249.127.11'),(4250,1,'2017-10-22 15:47:29','116.249.127.11'),(4251,1,'2017-10-22 15:51:54','221.207.20.154'),(4252,1,'2017-10-22 15:53:46','221.203.154.50'),(4253,1,'2017-10-22 15:53:50','221.203.154.50'),(4254,1,'2017-10-22 15:53:53','221.203.154.50'),(4255,1,'2017-10-22 15:56:09','221.178.227.10'),(4256,1,'2017-10-22 15:56:16','61.19.183.20'),(4257,1,'2017-10-22 15:56:19','61.19.183.20'),(4258,1,'2017-10-22 15:57:30','61.182.27.121'),(4259,1,'2017-10-22 15:57:32','61.182.27.121'),(4260,1,'2017-10-22 15:57:34','61.182.27.121'),(4261,1,'2017-10-22 15:58:15','1.190.175.66'),(4262,1,'2017-10-22 15:58:44','202.110.93.154'),(4263,1,'2017-10-22 15:58:46','202.110.93.154'),(4264,1,'2017-10-22 15:58:48','202.110.93.154'),(4265,1,'2017-10-22 15:59:26','113.200.246.58'),(4266,1,'2017-10-22 15:59:29','94.140.71.166'),(4267,1,'2017-10-22 15:59:32','94.140.71.166'),(4268,1,'2017-10-22 15:59:33','94.140.71.166'),(4269,1,'2017-10-22 16:01:24','109.202.17.76'),(4270,1,'2017-10-22 16:01:25','109.202.17.76'),(4271,1,'2017-10-22 16:01:28','109.202.17.76'),(4272,1,'2017-10-22 16:04:17','221.210.46.222'),(4273,1,'2017-10-22 16:04:20','221.210.46.222'),(4274,1,'2017-10-22 16:04:23','221.210.46.222'),(4275,1,'2017-10-22 16:08:22','58.56.145.94'),(4276,1,'2017-10-22 16:08:26','58.56.145.94'),(4277,1,'2017-10-22 16:08:30','58.56.145.94'),(4278,1,'2017-10-22 16:11:44','218.108.16.154'),(4279,1,'2017-10-22 16:11:49','218.108.16.154'),(4280,1,'2017-10-22 16:11:51','218.108.16.154'),(4281,1,'2017-10-22 16:13:58','182.73.67.202'),(4282,1,'2017-10-22 16:14:02','182.73.67.202'),(4283,1,'2017-10-22 16:14:04','182.73.67.202'),(4284,1,'2017-10-22 16:15:03','211.141.209.131'),(4285,1,'2017-10-22 16:15:13','211.118.26.122'),(4286,1,'2017-10-22 16:15:16','211.118.26.122'),(4287,1,'2017-10-22 16:15:21','211.118.26.122'),(4288,1,'2017-10-22 16:18:52','111.11.248.2'),(4289,1,'2017-10-22 16:18:54','111.11.248.2'),(4290,1,'2017-10-22 16:19:04','58.17.221.4'),(4291,1,'2017-10-22 16:19:08','58.17.221.4'),(4292,1,'2017-10-22 16:19:11','58.17.221.4'),(4293,1,'2017-10-22 16:19:44','221.4.205.30'),(4294,1,'2017-10-22 16:19:47','221.4.205.30'),(4295,1,'2017-10-22 16:19:49','221.4.205.30'),(4296,1,'2017-10-22 16:24:23','218.29.138.10'),(4297,1,'2017-10-22 16:24:24','218.29.138.10'),(4298,1,'2017-10-22 16:24:25','218.29.138.10'),(4299,1,'2017-10-22 16:26:43','218.22.187.66'),(4300,1,'2017-10-22 16:26:46','218.22.187.66'),(4301,1,'2017-10-22 16:26:49','218.22.187.66'),(4302,1,'2017-10-22 16:28:40','122.189.240.46'),(4303,1,'2017-10-22 16:28:44','122.189.240.46'),(4304,1,'2017-10-22 16:28:46','122.189.240.46'),(4305,1,'2017-10-22 16:29:08','221.228.229.49'),(4306,1,'2017-10-22 16:29:10','221.228.229.49'),(4307,1,'2017-10-22 16:29:13','221.228.229.49'),(4308,1,'2017-10-22 16:30:40','60.216.106.162'),(4309,1,'2017-10-22 16:30:44','60.216.106.162'),(4310,1,'2017-10-22 16:30:49','60.216.106.162'),(4311,1,'2017-10-22 16:32:03','112.218.211.227'),(4312,1,'2017-10-22 16:32:07','112.218.211.227'),(4313,1,'2017-10-22 16:32:10','112.218.211.227'),(4314,1,'2017-10-22 16:34:01','220.197.206.78'),(4315,1,'2017-10-22 16:34:03','220.197.206.78'),(4316,1,'2017-10-22 16:34:05','220.197.206.78'),(4317,1,'2017-10-22 16:37:24','220.169.102.6'),(4318,1,'2017-10-22 16:37:26','220.169.102.6'),(4319,1,'2017-10-22 16:37:31','220.169.102.6'),(4320,1,'2017-10-22 16:38:40','125.46.81.195'),(4321,1,'2017-10-22 16:38:43','125.46.81.195'),(4322,1,'2017-10-22 16:38:46','125.46.81.195'),(4323,1,'2017-10-22 16:40:35','119.146.33.86'),(4324,1,'2017-10-22 16:40:53','61.167.79.135'),(4325,1,'2017-10-22 16:40:55','61.167.79.135'),(4326,1,'2017-10-22 16:40:59','61.167.79.135'),(4327,1,'2017-10-22 16:45:15','157.122.183.219'),(4328,1,'2017-10-22 16:45:16','157.122.183.219'),(4329,1,'2017-10-22 16:45:18','157.122.183.219'),(4330,1,'2017-10-22 16:48:17','121.14.67.3'),(4331,1,'2017-10-22 16:48:20','121.14.67.3'),(4332,1,'2017-10-22 16:48:22','121.14.67.3'),(4333,1,'2017-10-22 16:50:35','1.9.26.62'),(4334,1,'2017-10-22 16:50:39','1.9.26.62'),(4335,1,'2017-10-22 16:50:44','1.9.26.62'),(4336,1,'2017-10-22 16:52:02','211.141.155.131'),(4337,1,'2017-10-22 16:52:39','222.137.252.27'),(4338,1,'2017-10-22 16:52:46','60.215.144.50'),(4339,1,'2017-10-22 16:52:50','60.215.144.50'),(4340,1,'2017-10-22 16:53:04','119.55.121.74'),(4341,1,'2017-10-22 16:53:06','119.55.121.74'),(4342,1,'2017-10-22 16:53:07','119.55.121.74'),(4343,1,'2017-10-22 16:54:55','220.225.7.54'),(4344,1,'2017-10-22 16:54:57','220.225.7.54'),(4345,1,'2017-10-22 16:55:01','220.225.7.54'),(4346,1,'2017-10-22 16:55:32','120.209.233.191'),(4347,1,'2017-10-22 16:55:35','120.209.233.191'),(4348,1,'2017-10-22 16:59:46','222.217.221.179'),(4349,1,'2017-10-22 16:59:48','222.217.221.179'),(4350,1,'2017-10-22 16:59:52','222.217.221.179'),(4351,1,'2017-10-22 17:00:47','79.134.198.229'),(4352,1,'2017-10-22 17:00:49','79.134.198.229'),(4353,1,'2017-10-22 17:00:51','79.134.198.229'),(4354,1,'2017-10-22 17:02:54','105.112.3.167'),(4355,1,'2017-10-22 17:03:20','222.222.219.154'),(4356,1,'2017-10-22 17:03:23','222.222.219.154'),(4357,1,'2017-10-22 17:03:28','222.222.219.154'),(4358,1,'2017-10-22 17:04:19','124.112.193.26'),(4359,1,'2017-10-22 17:08:23','219.159.70.68'),(4360,1,'2017-10-22 17:08:25','219.159.70.68'),(4361,1,'2017-10-22 17:08:27','219.159.70.68'),(4362,1,'2017-10-22 17:09:30','61.134.83.10'),(4363,1,'2017-10-22 17:09:33','61.134.83.10'),(4364,1,'2017-10-22 17:09:35','61.134.83.10'),(4365,1,'2017-10-22 17:10:22','125.65.244.38'),(4366,1,'2017-10-22 17:10:24','125.65.244.38'),(4367,1,'2017-10-22 17:10:25','125.65.244.38'),(4368,1,'2017-10-22 17:15:18','43.229.252.122'),(4369,1,'2017-10-22 17:15:28','121.49.106.6'),(4370,1,'2017-10-22 17:15:30','121.49.106.6'),(4371,1,'2017-10-22 17:16:12','165.227.204.31'),(4372,1,'2017-10-22 17:16:13','165.227.204.31'),(4373,1,'2017-10-22 17:16:14','165.227.204.31'),(4374,1,'2017-10-22 17:16:17','222.191.233.238'),(4375,1,'2017-10-22 17:17:25','211.138.182.198'),(4376,1,'2017-10-22 17:18:06','202.137.141.81'),(4377,1,'2017-10-22 17:18:08','202.137.141.81'),(4378,1,'2017-10-22 17:18:11','202.137.141.81'),(4379,1,'2017-10-22 17:18:50','58.16.113.239'),(4380,1,'2017-10-22 17:19:31','118.144.8.198'),(4381,1,'2017-10-22 17:21:00','60.173.149.237'),(4382,1,'2017-10-22 17:21:03','60.173.149.237'),(4383,1,'2017-10-22 17:21:05','60.173.149.237'),(4384,1,'2017-10-22 17:22:40','222.172.14.14'),(4385,1,'2017-10-22 17:22:44','222.172.14.14'),(4386,1,'2017-10-22 17:22:46','222.172.14.14'),(4387,1,'2017-10-22 17:24:31','218.28.135.178'),(4388,1,'2017-10-22 17:24:33','218.28.135.178'),(4389,1,'2017-10-22 17:24:35','218.28.135.178'),(4390,1,'2017-10-22 17:25:51','61.186.219.33'),(4391,1,'2017-10-22 17:25:53','61.186.219.33'),(4392,1,'2017-10-22 17:25:55','61.186.219.33'),(4393,1,'2017-10-22 17:26:48','60.166.60.26'),(4394,1,'2017-10-22 17:26:51','60.166.60.26'),(4395,1,'2017-10-22 17:26:53','60.166.60.26'),(4396,1,'2017-10-22 17:27:37','218.6.146.70'),(4397,1,'2017-10-22 17:27:41','218.6.146.70'),(4398,1,'2017-10-22 17:27:43','218.6.146.70'),(4399,1,'2017-10-22 17:29:08','190.210.168.88'),(4400,1,'2017-10-22 17:29:14','203.242.126.4'),(4401,1,'2017-10-22 17:29:19','203.242.126.4'),(4402,1,'2017-10-22 17:29:21','203.242.126.4'),(4403,1,'2017-10-22 17:30:36','60.221.235.109'),(4404,1,'2017-10-22 17:30:37','60.221.235.109'),(4405,1,'2017-10-22 17:30:40','60.221.235.109'),(4406,1,'2017-10-22 17:33:59','221.1.177.2'),(4407,1,'2017-10-22 17:34:02','221.1.177.2'),(4408,1,'2017-10-22 17:34:04','221.1.177.2'),(4409,1,'2017-10-22 17:37:29','123.198.242.173'),(4410,1,'2017-10-22 17:37:32','123.198.242.173'),(4411,1,'2017-10-22 17:37:34','123.198.242.173'),(4412,1,'2017-10-22 17:37:57','115.238.72.250'),(4413,1,'2017-10-22 17:37:58','115.238.72.250'),(4414,1,'2017-10-22 17:38:01','115.238.72.250'),(4415,1,'2017-10-22 17:39:44','58.210.126.206'),(4416,1,'2017-10-22 17:39:47','58.210.126.206'),(4417,1,'2017-10-22 17:39:50','58.210.126.206'),(4418,1,'2017-10-22 17:40:20','61.158.140.152'),(4419,1,'2017-10-22 17:40:55','60.10.41.203'),(4420,1,'2017-10-22 17:40:57','60.10.41.203'),(4421,1,'2017-10-22 17:41:01','60.10.41.203'),(4422,1,'2017-10-22 17:41:28','202.97.141.101'),(4423,1,'2017-10-22 17:41:30','202.97.141.101'),(4424,1,'2017-10-22 17:43:55','182.131.125.7'),(4425,1,'2017-10-22 17:43:58','182.131.125.7'),(4426,1,'2017-10-22 17:44:19','60.6.223.191'),(4427,1,'2017-10-22 17:45:54','58.210.119.226'),(4428,1,'2017-10-22 17:46:33','82.85.56.132'),(4429,1,'2017-10-22 17:46:36','82.85.56.132'),(4430,1,'2017-10-22 17:46:57','220.182.53.3'),(4431,1,'2017-10-22 17:47:01','220.182.53.3'),(4432,1,'2017-10-22 17:47:04','220.182.53.3'),(4433,1,'2017-10-22 17:48:45','218.21.38.238'),(4434,1,'2017-10-22 17:48:47','218.21.38.238'),(4435,1,'2017-10-22 17:48:48','218.21.38.238'),(4436,1,'2017-10-22 17:50:10','222.91.248.106'),(4437,1,'2017-10-22 17:50:23','218.207.103.150'),(4438,1,'2017-10-22 17:50:51','124.158.7.34'),(4439,1,'2017-10-22 17:51:45','60.215.144.50'),(4440,1,'2017-10-22 17:51:47','60.215.144.50'),(4441,1,'2017-10-22 17:51:52','60.215.144.50'),(4442,1,'2017-10-22 17:55:33','61.53.66.4'),(4443,1,'2017-10-22 17:55:36','61.53.66.4'),(4444,1,'2017-10-22 17:55:41','61.53.66.4'),(4445,1,'2017-10-22 17:57:17','140.118.125.64'),(4446,1,'2017-10-22 17:57:19','140.118.125.64'),(4447,1,'2017-10-22 17:57:21','140.118.125.64'),(4448,1,'2017-10-22 17:58:01','163.23.78.226'),(4449,1,'2017-10-22 17:58:03','163.23.78.226'),(4450,1,'2017-10-22 17:58:05','163.23.78.226'),(4451,1,'2017-10-22 17:58:50','124.65.222.38'),(4452,1,'2017-10-22 17:58:52','124.65.222.38'),(4453,1,'2017-10-22 17:58:54','124.65.222.38'),(4454,1,'2017-10-23 16:17:31','212.129.9.141'),(4455,1,'2017-10-23 17:41:59','212.83.155.65'),(4456,1,'2017-10-23 17:46:39','63.141.236.98'),(4457,1,'2017-10-23 18:14:20','212.83.155.65'),(4458,1,'2017-10-23 18:44:45','185.45.13.152'),(4459,1,'2017-10-23 18:47:18','212.83.155.65'),(4460,1,'2017-10-23 19:20:58','212.83.155.65'),(4461,1,'2017-10-23 19:53:49','212.83.155.65'),(4462,1,'2017-10-23 20:28:06','212.83.155.65'),(4463,1,'2017-10-23 21:02:30','212.83.155.65'),(4464,1,'2017-10-23 21:05:27','212.129.9.141'),(4465,1,'2017-10-23 21:37:29','212.83.155.65'),(4466,1,'2017-10-23 22:09:49','134.19.230.168'),(4467,1,'2017-10-23 22:09:51','122.225.120.146'),(4468,1,'2017-10-23 22:10:22','197.50.72.182'),(4469,1,'2017-10-23 22:12:11','212.83.155.65'),(4470,1,'2017-10-23 22:47:16','212.83.155.65'),(4471,1,'2017-10-23 23:22:49','212.83.155.65'),(4472,1,'2017-10-23 23:37:49','212.129.9.141'),(4473,1,'2017-10-23 23:58:23','212.83.155.65'),(4474,1,'2017-10-24 00:34:25','212.83.155.65'),(4475,1,'2017-10-24 01:09:43','212.83.155.65'),(4476,1,'2017-10-24 01:45:11','212.83.155.65'),(4477,1,'2017-10-24 02:08:58','212.129.9.141'),(4478,1,'2017-10-24 02:19:29','212.83.155.65'),(4479,1,'2017-10-24 02:55:33','212.83.155.65'),(4480,1,'2017-10-24 03:31:29','212.83.155.65'),(4481,1,'2017-10-24 04:06:51','212.83.155.65'),(4482,1,'2017-10-24 04:42:32','212.83.155.65'),(4483,1,'2017-10-24 04:43:37','212.129.9.141'),(4484,1,'2017-10-24 07:07:43','203.146.82.253'),(4485,1,'2017-10-24 21:00:24','178.137.82.201'),(4486,1,'2017-10-24 21:00:25','178.137.82.201'),(4487,1,'2017-10-24 21:00:25','178.137.82.201'),(4488,1,'2017-10-25 07:19:17','125.31.19.25'),(4489,1,'2017-10-25 11:57:44','107.150.60.34'),(4490,1,'2017-10-25 11:57:45','107.150.60.34'),(4491,1,'2017-10-25 11:57:45','107.150.60.34'),(4492,1,'2017-10-25 14:10:42','5.196.75.208'),(4493,1,'2017-10-25 17:00:39','212.129.9.141'),(4494,1,'2017-10-25 17:10:21','212.83.155.65'),(4495,1,'2017-10-25 19:13:15','212.83.155.65'),(4496,1,'2017-10-25 20:20:48','212.83.155.65'),(4497,1,'2017-10-25 20:45:17','212.129.9.141'),(4498,1,'2017-10-25 21:27:27','212.83.155.65'),(4499,1,'2017-10-25 22:34:45','212.83.155.65'),(4500,1,'2017-10-25 23:42:03','212.83.155.65'),(4501,1,'2017-10-26 00:50:28','212.83.155.65'),(4502,1,'2017-10-26 01:26:19','212.129.9.141'),(4503,1,'2017-10-26 01:58:41','212.83.155.65'),(4504,1,'2017-10-26 03:07:50','212.83.155.65'),(4505,1,'2017-10-26 04:14:54','212.83.155.65'),(4506,1,'2017-10-26 05:23:58','212.83.155.65'),(4507,1,'2017-10-26 06:28:59','212.129.9.141'),(4508,1,'2017-10-26 06:30:52','212.83.155.65'),(4509,1,'2017-10-26 07:39:45','212.83.155.65'),(4510,1,'2017-10-26 08:40:40','173.44.152.20'),(4511,1,'2017-10-26 08:47:30','212.83.155.65'),(4512,1,'2017-10-26 09:56:17','212.83.155.65'),(4513,1,'2017-10-26 10:25:26','220.164.2.123'),(4514,1,'2017-10-26 10:25:47','61.161.147.218'),(4515,1,'2017-10-26 10:27:21','218.249.232.182'),(4516,1,'2017-10-26 10:28:47','77.242.17.37'),(4517,1,'2017-10-26 11:05:21','212.83.155.65'),(4518,1,'2017-10-26 12:12:44','212.83.155.65'),(4519,1,'2017-10-26 12:22:40','212.129.9.141'),(4520,1,'2017-10-26 17:19:30','212.129.9.141'),(4521,1,'2017-10-26 20:27:28','212.129.9.141'),(4522,1,'2017-10-26 20:54:54','170.130.162.79'),(4523,1,'2017-10-27 00:31:35','185.45.13.153'),(4524,1,'2017-10-27 00:34:23','212.129.9.141'),(4525,1,'2017-10-27 05:41:06','212.129.9.141'),(4526,1,'2017-10-27 10:41:13','212.129.9.141'),(4527,1,'2017-10-27 15:43:18','212.129.9.141'),(4528,1,'2017-10-27 20:46:57','212.129.9.141'),(4529,1,'2017-10-28 01:45:38','212.129.9.141'),(4530,1,'2017-10-28 06:17:57','212.129.9.141'),(4531,1,'2017-10-28 08:23:24','185.45.13.155'),(4532,1,'2017-10-28 08:29:24','160.202.41.138'),(4533,1,'2017-10-28 08:39:48','91.200.12.86'),(4534,1,'2017-10-28 08:39:48','91.200.12.86'),(4535,1,'2017-10-28 08:39:48','91.200.12.86'),(4536,1,'2017-10-28 08:39:48','91.200.12.86'),(4537,1,'2017-10-28 10:44:26','212.129.9.141'),(4538,1,'2017-10-28 12:05:24','212.83.155.65'),(4539,1,'2017-10-28 15:17:38','212.129.9.141'),(4540,1,'2017-10-28 16:22:13','58.137.105.247'),(4541,1,'2017-10-28 16:24:34','212.83.155.65'),(4542,1,'2017-10-28 18:08:03','201.18.18.173'),(4543,1,'2017-10-28 18:08:24','201.18.18.173'),(4544,1,'2017-10-28 18:08:44','201.18.18.173'),(4545,1,'2017-10-28 20:22:26','212.129.9.141'),(4546,1,'2017-10-28 22:04:24','212.83.155.65'),(4547,1,'2017-10-29 01:31:25','212.129.9.141'),(4548,1,'2017-10-29 01:22:32','212.83.155.65'),(4549,1,'2017-10-29 05:40:03','212.129.9.141'),(4550,1,'2017-10-29 05:41:46','212.83.155.65'),(4551,1,'2017-10-29 10:02:25','212.83.155.65'),(4552,1,'2017-10-29 10:46:11','212.129.9.141'),(4553,1,'2017-10-29 15:02:34','212.83.155.65'),(4554,1,'2017-10-29 15:53:13','212.129.9.141'),(4555,1,'2017-10-29 19:20:21','212.83.155.65'),(4556,1,'2017-10-29 20:19:27','199.195.253.124'),(4557,1,'2017-10-29 20:55:08','212.129.9.141'),(4558,1,'2017-10-30 02:02:41','212.129.9.141'),(4559,1,'2017-10-30 07:13:26','212.129.9.141'),(4560,1,'2017-10-30 08:58:37','212.83.155.65'),(4561,1,'2017-10-30 12:22:16','212.129.9.141'),(4562,1,'2017-10-30 13:21:42','212.83.155.65'),(4563,1,'2017-10-30 17:26:15','212.129.9.141'),(4564,1,'2017-10-30 17:45:09','212.83.155.65'),(4565,1,'2017-10-30 22:07:26','212.83.155.65'),(4566,1,'2017-10-30 22:27:25','212.129.9.141'),(4567,1,'2017-10-31 02:31:46','212.83.155.65'),(4568,1,'2017-10-31 03:38:50','212.129.9.141'),(4569,1,'2017-10-31 06:51:49','212.83.155.65'),(4570,1,'2017-10-31 12:57:25','220.191.249.7'),(4571,1,'2017-10-31 13:22:52','212.83.155.65'),(4572,1,'2017-10-31 18:51:51','212.83.155.65'),(4573,1,'2017-11-01 02:05:27','58.57.21.108'),(4574,1,'2017-11-01 22:50:14','192.187.122.42'),(4575,1,'2017-11-01 22:50:29','192.187.122.42'),(4576,1,'2017-11-01 22:50:46','192.187.122.42'),(4577,1,'2017-11-01 23:50:46','192.187.122.42'),(4578,1,'2017-11-01 23:51:02','192.187.122.42'),(4579,1,'2017-11-01 23:51:18','192.187.122.42'),(4580,1,'2017-11-02 11:41:28','204.12.198.90'),(4581,1,'2017-11-02 11:41:46','204.12.198.90'),(4582,1,'2017-11-02 11:42:07','204.12.198.90'),(4583,1,'2017-11-03 02:15:35','138.128.225.254'),(4584,1,'2017-11-03 14:03:59','146.185.223.5'),(4585,1,'2017-11-03 14:04:27','146.185.223.5'),(4586,1,'2017-11-03 14:04:52','146.185.223.5'),(4587,1,'2017-11-03 14:20:00','91.200.12.86'),(4588,1,'2017-11-03 14:20:00','91.200.12.86'),(4589,1,'2017-11-04 15:19:39','195.154.51.107'),(4590,1,'2017-11-04 20:37:16','195.154.51.107'),(4591,1,'2017-11-05 00:11:14','173.208.244.34'),(4592,1,'2017-11-05 00:11:25','173.208.244.34'),(4593,1,'2017-11-05 00:11:38','173.208.244.34'),(4594,1,'2017-11-05 07:02:20','81.177.48.244'),(4595,1,'2017-11-05 07:02:32','81.177.48.244'),(4596,1,'2017-11-05 07:02:46','81.177.48.244'),(4597,1,'2017-11-07 16:25:49','36.67.92.9'),(4598,1,'2017-11-07 16:28:45','197.50.72.191'),(4599,1,'2017-11-07 17:08:18','189.90.134.111'),(4600,1,'2017-11-09 06:49:12','178.137.82.201'),(4601,1,'2017-11-09 06:49:39','178.137.82.201'),(4602,1,'2017-11-09 06:50:03','178.137.82.201'),(4603,1,'2017-11-09 16:08:47','69.197.188.82'),(4604,1,'2017-11-09 16:09:05','69.197.188.82'),(4605,1,'2017-11-09 16:09:27','69.197.188.82'),(4606,1,'2017-11-09 17:09:34','69.197.188.82'),(4607,1,'2017-11-09 17:09:56','69.197.188.82'),(4608,1,'2017-11-09 17:10:17','69.197.188.82'),(4609,1,'2017-11-10 12:24:59','88.146.198.73'),(4610,1,'2017-11-10 12:30:00','197.45.161.242'),(4611,1,'2017-11-10 13:33:07','220.164.2.76'),(4612,1,'2017-11-10 21:52:57','188.129.172.120'),(4613,1,'2017-11-10 23:35:59','63.141.240.122'),(4614,1,'2017-11-10 23:36:17','63.141.240.122'),(4615,1,'2017-11-10 23:36:33','63.141.240.122'),(4616,1,'2017-11-14 03:19:27','154.16.69.104'),(4617,1,'2017-11-14 05:19:29','93.125.42.49'),(4618,1,'2017-11-15 00:48:50','93.95.189.64'),(4619,1,'2017-11-15 00:49:28','93.95.189.64'),(4620,1,'2017-11-15 03:57:40','146.185.223.5'),(4621,1,'2017-11-15 03:58:03','146.185.223.5'),(4622,1,'2017-11-15 03:58:27','146.185.223.5'),(4623,1,'2017-11-15 23:32:17','178.137.82.201'),(4624,1,'2017-11-15 23:32:35','178.137.82.201'),(4625,1,'2017-11-15 23:32:54','178.137.82.201'),(4626,1,'2017-11-16 21:35:46','220.164.2.139'),(4627,1,'2017-11-17 03:19:57','118.98.90.26'),(4628,1,'2017-11-17 03:20:11','58.57.100.10'),(4629,1,'2017-11-17 09:13:40','198.204.225.202'),(4630,1,'2017-11-17 09:14:04','198.204.225.202'),(4631,1,'2017-11-17 09:14:28','198.204.225.202'),(4632,1,'2017-11-17 10:14:51','198.204.225.202'),(4633,1,'2017-11-17 10:15:16','198.204.225.202'),(4634,1,'2017-11-17 10:15:41','198.204.225.202'),(4635,1,'2017-11-17 11:15:42','198.204.225.202'),(4636,1,'2017-11-17 11:16:09','198.204.225.202'),(4637,1,'2017-11-17 11:16:35','198.204.225.202'),(4638,1,'2017-11-17 12:16:38','198.204.225.202'),(4639,1,'2017-11-17 12:17:01','198.204.225.202'),(4640,1,'2017-11-17 12:17:25','198.204.225.202'),(4641,1,'2017-11-17 19:49:24','13.84.148.243'),(4642,1,'2017-11-17 19:49:45','13.84.148.243'),(4643,1,'2017-11-17 19:50:07','13.84.148.243'),(4644,1,'2017-11-20 05:37:40','221.7.182.88'),(4645,1,'2017-11-20 05:40:02','180.245.244.163'),(4646,1,'2017-11-20 05:48:02','59.51.167.111'),(4647,1,'2017-11-20 22:17:47','193.201.224.28'),(4648,1,'2017-11-20 22:18:11','193.201.224.28'),(4649,1,'2017-11-21 20:47:51','41.242.141.134'),(4650,1,'2017-11-21 23:37:56','36.67.45.95'),(4651,1,'2017-11-22 08:14:29','115.79.43.156'),(4652,1,'2017-11-22 13:40:17','193.201.224.28'),(4653,1,'2017-11-22 13:40:37','193.201.224.28'),(4654,1,'2017-11-22 14:06:09','186.46.90.50'),(4655,1,'2017-11-22 14:25:08','181.143.228.76'),(4656,1,'2017-11-22 16:37:35','211.20.238.33'),(4657,1,'2017-11-22 17:12:40','98.191.98.146'),(4658,1,'2017-11-22 18:51:44','118.97.73.60'),(4659,1,'2017-11-22 20:20:38','93.174.92.177'),(4660,1,'2017-11-22 23:26:01','52.69.21.68'),(4661,1,'2017-11-22 23:34:46','198.57.56.46'),(4662,1,'2017-11-23 02:07:57','45.55.132.29'),(4663,1,'2017-11-23 03:11:48','51.15.202.250'),(4664,1,'2017-11-23 04:43:26','13.78.125.167'),(4665,1,'2017-11-23 04:47:27','200.94.255.27'),(4666,1,'2017-11-23 07:12:36','62.210.26.45'),(4667,1,'2017-11-23 07:21:23','103.36.101.6'),(4668,1,'2017-11-23 10:11:25','62.210.26.45'),(4669,1,'2017-11-23 12:31:48','62.210.26.45'),(4670,1,'2017-11-23 14:04:41','110.50.84.162'),(4671,1,'2017-11-23 14:29:58','173.249.0.121'),(4672,1,'2017-11-23 15:08:48','62.210.26.45'),(4673,1,'2017-11-23 15:29:04','181.143.103.170'),(4674,1,'2017-11-23 17:41:51','177.74.63.201'),(4675,1,'2017-11-23 18:10:03','62.210.26.45'),(4676,1,'2017-11-23 18:10:15','191.5.114.138'),(4677,1,'2017-11-23 19:26:03','82.149.207.86'),(4678,1,'2017-11-23 20:34:01','62.210.26.45'),(4679,1,'2017-11-23 23:12:49','62.210.26.45'),(4680,1,'2017-11-24 00:29:21','24.245.100.212'),(4681,1,'2017-11-24 00:53:46','91.191.173.37'),(4682,1,'2017-11-24 02:11:13','75.151.213.85'),(4683,1,'2017-11-24 02:23:53','62.210.26.45'),(4684,1,'2017-11-24 04:33:45','185.12.22.43'),(4685,1,'2017-11-24 04:54:03','177.33.62.228'),(4686,1,'2017-11-24 05:26:46','89.169.84.134'),(4687,1,'2017-11-24 05:39:03','62.210.26.45'),(4688,1,'2017-11-24 09:20:12','62.210.26.45'),(4689,1,'2017-11-24 10:25:31','103.242.45.68'),(4690,1,'2017-11-24 11:51:27','117.54.223.34'),(4691,1,'2017-11-24 12:29:42','62.210.26.45'),(4692,1,'2017-11-24 12:39:15','193.201.224.28'),(4693,1,'2017-11-24 12:39:42','193.201.224.28'),(4694,1,'2017-11-24 15:21:04','104.131.94.221'),(4695,1,'2017-11-24 15:28:53','36.67.20.251'),(4696,1,'2017-11-24 15:44:04','62.210.26.45'),(4697,1,'2017-11-24 18:23:45','138.197.115.175'),(4698,1,'2017-11-24 18:52:46','62.210.26.45'),(4699,1,'2017-11-24 21:05:24','197.211.54.50'),(4700,1,'2017-11-24 22:00:10','62.210.26.45'),(4701,1,'2017-11-24 23:54:21','154.70.165.138'),(4702,1,'2017-11-25 01:06:54','185.95.186.52'),(4703,1,'2017-11-25 01:12:52','62.210.26.45'),(4704,1,'2017-11-25 02:38:25','54.79.85.81'),(4705,1,'2017-11-25 04:31:59','62.210.26.45'),(4706,1,'2017-11-25 05:19:56','190.131.252.102'),(4707,1,'2017-11-25 07:49:40','62.210.26.45'),(4708,1,'2017-11-25 10:38:44','138.121.25.225'),(4709,1,'2017-11-25 10:51:37','67.43.208.2'),(4710,1,'2017-11-25 10:59:56','62.210.26.45'),(4711,1,'2017-11-25 13:23:52','118.175.36.35'),(4712,1,'2017-11-25 13:34:39','114.7.162.6'),(4713,1,'2017-11-25 14:11:20','62.210.26.45'),(4714,1,'2017-11-25 16:06:31','170.239.144.6'),(4715,1,'2017-11-25 17:15:08','202.70.80.233'),(4716,1,'2017-11-25 17:21:20','62.210.26.45'),(4717,1,'2017-11-25 18:49:59','212.47.229.60'),(4718,1,'2017-11-25 20:33:11','62.210.26.45'),(4719,1,'2017-11-25 20:41:48','181.143.73.34'),(4720,1,'2017-11-25 21:38:55','66.70.189.153'),(4721,1,'2017-11-25 23:42:59','62.210.26.45'),(4722,1,'2017-11-26 02:56:36','62.210.26.45'),(4723,1,'2017-11-26 04:52:32','114.6.146.180'),(4724,1,'2017-11-26 06:15:20','62.210.26.45'),(4725,1,'2017-11-26 06:47:06','176.53.248.63'),(4726,1,'2017-11-26 09:46:34','62.210.26.45'),(4727,1,'2017-11-26 12:57:11','62.210.26.45'),(4728,1,'2017-11-26 13:54:30','186.47.83.126'),(4729,1,'2017-11-26 16:02:54','62.210.26.45'),(4730,1,'2017-11-26 16:12:38','91.227.148.45'),(4731,1,'2017-11-26 18:09:14','69.197.163.242'),(4732,1,'2017-11-26 18:09:32','69.197.163.242'),(4733,1,'2017-11-26 18:09:50','69.197.163.242'),(4734,1,'2017-11-26 19:09:59','69.197.163.242'),(4735,1,'2017-11-26 19:10:18','69.197.163.242'),(4736,1,'2017-11-26 19:10:36','69.197.163.242'),(4737,1,'2017-11-26 19:18:47','62.210.26.45'),(4738,1,'2017-11-26 19:36:04','181.129.40.42'),(4739,1,'2017-11-26 19:55:46','186.216.219.236'),(4740,1,'2017-11-26 20:10:23','180.183.128.101'),(4741,1,'2017-11-26 22:34:14','62.210.26.45'),(4742,1,'2017-11-26 23:39:04','190.248.153.162'),(4743,1,'2017-11-27 01:17:47','91.227.148.45'),(4744,1,'2017-11-27 01:46:19','62.210.26.45'),(4745,1,'2017-11-27 02:44:45','52.69.21.68'),(4746,1,'2017-11-27 05:04:14','62.210.26.45'),(4747,1,'2017-11-27 06:22:01','176.241.89.82'),(4748,1,'2017-11-27 06:38:23','54.79.127.121'),(4749,1,'2017-11-27 06:41:26','79.120.177.106'),(4750,1,'2017-11-27 08:18:50','62.210.26.45'),(4751,1,'2017-11-27 09:39:25','190.18.134.27'),(4752,1,'2017-11-27 10:37:08','128.71.43.201'),(4753,1,'2017-11-27 11:32:22','62.210.26.45'),(4754,1,'2017-11-27 13:07:54','62.210.26.45'),(4755,1,'2017-11-27 14:53:12','62.210.26.45'),(4756,1,'2017-11-27 14:59:48','110.170.150.54'),(4757,1,'2017-11-27 16:51:37','181.129.144.50'),(4758,1,'2017-11-27 17:19:13','62.210.26.45'),(4759,1,'2017-11-27 17:41:51','103.251.140.2'),(4760,1,'2017-11-27 19:09:49','202.162.203.210'),(4761,1,'2017-11-27 19:34:09','62.210.26.45'),(4762,1,'2017-11-27 22:00:31','62.210.26.45'),(4763,1,'2017-11-27 22:56:18','197.232.17.83'),(4764,1,'2017-11-27 22:58:59','31.182.52.156'),(4765,1,'2017-11-28 00:21:25','104.130.246.8'),(4766,1,'2017-11-28 00:50:40','62.210.26.45'),(4767,1,'2017-11-28 03:04:36','62.210.26.45'),(4768,1,'2017-11-28 03:22:20','46.165.228.78'),(4769,1,'2017-11-28 05:32:08','62.210.26.45'),(4770,1,'2017-11-28 07:28:47','181.13.164.10'),(4771,1,'2017-11-28 08:21:22','62.210.26.45'),(4772,1,'2017-11-28 09:42:20','62.210.26.45'),(4773,1,'2017-11-28 11:43:00','62.210.26.45'),(4774,1,'2017-11-28 13:43:48','62.210.26.45'),(4775,1,'2017-11-28 14:14:52','193.201.224.28'),(4776,1,'2017-11-28 14:15:40','193.201.224.28'),(4777,1,'2017-11-28 15:45:29','62.210.26.45'),(4778,1,'2017-11-28 18:27:50','62.210.26.45'),(4779,1,'2017-11-28 21:21:14','117.2.140.14'),(4780,1,'2017-11-28 21:38:42','62.210.26.45'),(4781,1,'2017-11-29 00:57:49','62.210.26.45'),(4782,1,'2017-11-29 01:49:19','138.197.115.175'),(4783,1,'2017-11-29 03:17:41','203.170.129.56'),(4784,1,'2017-11-29 04:13:59','62.210.26.45'),(4785,1,'2017-11-29 04:49:31','46.16.31.174'),(4786,1,'2017-11-29 06:22:23','103.205.107.144'),(4787,1,'2017-11-29 07:31:37','62.210.26.45'),(4788,1,'2017-11-29 07:55:12','167.249.181.89'),(4789,1,'2017-11-29 09:28:58','36.67.114.226'),(4790,1,'2017-11-29 10:44:58','62.210.26.45'),(4791,1,'2017-11-29 12:34:55','45.32.51.175'),(4792,1,'2017-11-29 13:59:36','62.210.26.45'),(4793,1,'2017-11-29 14:10:17','151.80.140.233'),(4794,1,'2017-11-29 17:10:15','62.210.26.45'),(4795,1,'2017-11-29 17:21:01','138.94.130.216'),(4796,1,'2017-11-29 18:55:58','183.89.94.58'),(4797,1,'2017-11-29 20:24:23','62.210.26.45'),(4798,1,'2017-11-29 23:44:51','62.210.26.45'),(4799,1,'2017-11-30 03:02:37','62.210.26.45'),(4800,1,'2017-11-30 07:24:33','195.22.125.34'),(4801,1,'2017-11-30 07:25:06','195.22.125.34'),(4802,1,'2017-11-30 07:25:37','195.22.125.34'),(4803,1,'2017-11-30 17:15:30','193.201.224.28'),(4804,1,'2017-11-30 17:16:07','193.201.224.28'),(4805,1,'2017-11-30 17:16:50','193.201.224.28'),(4806,1,'2017-12-01 08:05:27','74.91.23.194'),(4807,1,'2017-12-01 08:05:41','74.91.23.194'),(4808,1,'2017-12-01 08:05:56','74.91.23.194'),(4809,1,'2017-12-01 16:39:22','187.190.253.116'),(4810,1,'2017-12-01 17:23:10','188.129.172.112'),(4811,1,'2017-12-05 12:01:17','220.191.249.1'),(4812,1,'2017-12-05 13:46:15','219.138.59.240'),(4813,1,'2017-12-05 23:15:17','193.201.224.28'),(4814,1,'2017-12-05 23:15:37','193.201.224.28'),(4815,1,'2017-12-06 11:14:31','198.50.159.10'),(4816,1,'2017-12-06 11:14:51','198.50.159.10'),(4817,1,'2017-12-06 11:15:14','198.50.159.10'),(4818,1,'2017-12-08 15:56:47','193.201.224.28'),(4819,1,'2017-12-08 15:57:07','193.201.224.28'),(4820,1,'2017-12-09 22:37:57','192.187.100.82'),(4821,1,'2017-12-09 22:38:15','192.187.100.82'),(4822,1,'2017-12-09 22:38:33','192.187.100.82'),(4823,1,'2017-12-10 06:17:48','61.161.147.218'),(4824,1,'2017-12-10 06:37:43','59.51.154.209'),(4825,1,'2017-12-10 08:04:19','223.100.205.32'),(4826,1,'2017-12-10 14:07:02','193.201.224.28'),(4827,1,'2017-12-10 14:07:23','193.201.224.28'),(4828,1,'2017-12-12 07:31:29','193.201.224.28'),(4829,1,'2017-12-12 07:31:37','193.201.224.28'),(4830,1,'2017-12-13 19:16:38','193.201.224.28'),(4831,1,'2017-12-13 19:16:54','193.201.224.28'),(4832,1,'2017-12-13 23:27:39','222.222.249.41'),(4833,1,'2017-12-13 23:27:44','123.232.125.198'),(4834,1,'2017-12-15 04:34:31','146.185.223.5'),(4835,1,'2017-12-15 04:34:47','146.185.223.5'),(4836,1,'2017-12-15 04:35:04','146.185.223.5'),(4837,1,'2017-12-15 21:54:54','193.201.224.28'),(4838,1,'2017-12-15 21:55:11','193.201.224.28'),(4839,1,'2017-12-16 16:52:45','155.94.141.189'),(4840,1,'2017-12-17 13:32:03','193.201.224.28'),(4841,1,'2017-12-17 13:32:17','193.201.224.28'),(4842,1,'2017-12-17 18:49:59','202.207.193.2'),(4843,1,'2017-12-17 19:08:01','218.24.236.4'),(4844,1,'2017-12-17 20:50:19','188.129.172.77'),(4845,1,'2017-12-18 06:49:42','192.187.108.186'),(4846,1,'2017-12-18 06:49:59','192.187.108.186'),(4847,1,'2017-12-18 06:50:16','192.187.108.186'),(4848,1,'2017-12-18 15:10:17','220.180.121.6'),(4849,1,'2017-12-21 05:02:33','200.175.104.7'),(4850,1,'2017-12-21 12:55:09','98.109.52.53'),(4851,1,'2017-12-21 22:31:09','98.175.76.130'),(4852,1,'2017-12-22 05:06:33','180.250.204.162'),(4853,1,'2017-12-22 09:54:14','221.226.50.162'),(4854,1,'2017-12-22 11:10:11','80.152.254.188'),(4855,1,'2017-12-22 11:58:20','165.227.42.174'),(4856,1,'2017-12-22 18:56:36','109.172.104.122'),(4857,1,'2017-12-23 02:26:58','128.199.105.243'),(4858,1,'2017-12-23 10:14:01','109.63.185.182'),(4859,1,'2017-12-23 17:51:45','95.159.69.53'),(4860,1,'2017-12-24 02:26:40','103.228.117.244'),(4861,1,'2017-12-24 22:19:47','42.115.91.82'),(4862,1,'2017-12-25 05:58:35','195.80.140.212'),(4863,1,'2017-12-25 09:50:50','193.201.224.28'),(4864,1,'2017-12-25 09:51:05','193.201.224.28'),(4865,1,'2017-12-25 21:10:52','131.0.63.28'),(4866,1,'2017-12-26 04:38:59','36.73.115.181'),(4867,1,'2017-12-26 12:14:33','212.22.86.107'),(4868,1,'2017-12-26 19:54:28','103.78.11.202'),(4869,1,'2017-12-26 21:09:38','113.107.172.59'),(4870,1,'2017-12-26 22:14:44','103.47.0.241'),(4871,1,'2017-12-26 23:40:24','177.19.163.109'),(4872,1,'2017-12-27 09:19:48','193.201.224.28'),(4873,1,'2017-12-27 09:20:08','193.201.224.28'),(4874,1,'2017-12-27 16:28:38','192.187.108.186'),(4875,1,'2017-12-27 16:28:56','192.187.108.186'),(4876,1,'2017-12-27 16:29:15','192.187.108.186'),(4877,1,'2017-12-27 16:40:12','190.60.234.131'),(4878,1,'2017-12-27 17:29:32','192.187.108.186'),(4879,1,'2017-12-27 17:29:47','192.187.108.186'),(4880,1,'2017-12-27 17:30:03','192.187.108.186'),(4881,1,'2017-12-29 05:07:57','146.185.223.5'),(4882,1,'2017-12-29 05:08:18','146.185.223.5'),(4883,1,'2017-12-29 05:08:40','146.185.223.5'),(4884,1,'2017-12-29 20:34:48','193.201.224.28'),(4885,1,'2017-12-29 20:35:06','193.201.224.28'),(4886,1,'2017-12-30 05:17:28','146.185.223.5'),(4887,1,'2017-12-30 05:17:48','146.185.223.5'),(4888,1,'2017-12-30 05:18:07','146.185.223.5'),(4889,1,'2017-12-31 00:01:15','82.209.217.167'),(4890,1,'2017-12-31 00:35:29','27.111.42.145'),(4891,1,'2017-12-31 11:32:19','45.61.152.187'),(4892,1,'2018-01-02 13:08:34','193.201.224.28'),(4893,1,'2018-01-02 13:08:55','193.201.224.28'),(4894,1,'2018-01-04 08:41:13','177.19.165.26'),(4895,1,'2018-01-04 08:41:50','200.175.104.101'),(4896,1,'2018-01-04 10:20:07','193.201.224.28'),(4897,1,'2018-01-04 10:20:28','193.201.224.28'),(4898,1,'2018-01-04 11:21:06','222.91.97.6'),(4899,1,'2018-01-06 07:33:15','193.201.224.28'),(4900,1,'2018-01-06 07:33:33','193.201.224.28'),(4901,1,'2018-01-07 16:10:36','196.16.223.64'),(4902,1,'2018-01-07 22:26:50','193.201.224.28'),(4903,1,'2018-01-07 22:27:14','193.201.224.28'),(4904,1,'2018-01-08 07:50:44','188.129.152.146'),(4905,1,'2018-01-08 11:12:04','163.172.179.18'),(4906,1,'2018-01-08 11:56:40','222.223.204.182'),(4907,1,'2018-01-08 12:40:26','223.68.186.126'),(4908,1,'2018-01-09 14:36:51','193.201.224.28'),(4909,1,'2018-01-09 14:37:28','193.201.224.28'),(4910,1,'2018-01-09 14:37:47','193.201.224.28'),(4911,1,'2018-01-11 01:38:22','176.8.89.80'),(4912,1,'2018-01-11 01:38:38','176.8.89.80'),(4913,1,'2018-01-11 01:38:54','176.8.89.80'),(4914,1,'2018-01-11 08:53:23','193.201.224.28'),(4915,1,'2018-01-11 08:53:38','193.201.224.28'),(4916,1,'2018-01-12 06:12:02','117.71.62.14'),(4917,1,'2018-01-12 06:34:50','186.194.114.14'),(4918,1,'2018-01-14 11:39:24','193.201.224.28'),(4919,1,'2018-01-14 11:39:40','193.201.224.28'),(4920,1,'2018-01-15 08:19:39','45.61.153.253'),(4921,1,'2018-01-16 12:10:19','193.201.224.28'),(4922,1,'2018-01-16 12:10:39','193.201.224.28'),(4923,1,'2018-01-17 06:05:41','124.133.15.75'),(4924,1,'2018-01-17 14:32:05','212.178.2.147'),(4925,1,'2018-01-17 14:32:23','212.178.2.147'),(4926,1,'2018-01-18 00:54:27','193.201.224.28'),(4927,1,'2018-01-18 00:54:44','193.201.224.28'),(4928,1,'2018-01-19 10:28:44','58.57.21.108'),(4929,1,'2018-01-19 16:45:08','193.201.224.28'),(4930,1,'2018-01-19 16:45:32','193.201.224.28'),(4931,1,'2018-01-19 20:34:55','124.193.199.202'),(4932,1,'2018-01-20 00:08:32','60.255.181.246'),(4933,1,'2018-01-21 01:17:41','51.4.207.124'),(4934,1,'2018-01-21 01:18:00','51.4.207.124'),(4935,1,'2018-01-21 01:18:21','51.4.207.124'),(4936,1,'2018-01-22 02:58:27','193.201.224.28'),(4937,1,'2018-01-22 02:58:44','193.201.224.28'),(4938,1,'2018-01-22 04:58:43','146.185.223.5'),(4939,1,'2018-01-22 04:59:03','146.185.223.5'),(4940,1,'2018-01-22 04:59:23','146.185.223.5'),(4941,1,'2018-01-22 12:26:28','84.232.60.246'),(4942,1,'2018-01-22 17:19:51','146.185.223.5'),(4943,1,'2018-01-22 17:20:12','146.185.223.5'),(4944,1,'2018-01-22 17:20:31','146.185.223.5'),(4945,1,'2018-01-23 00:00:30','112.133.201.213'),(4946,1,'2018-01-23 01:23:34','95.104.61.173'),(4947,1,'2018-01-23 02:15:56','109.107.236.152'),(4948,1,'2018-01-23 05:29:31','195.158.18.42'),(4949,1,'2018-01-23 09:19:00','208.13.212.108'),(4950,1,'2018-01-23 18:36:14','134.19.230.172'),(4951,1,'2018-01-23 20:42:10','193.201.224.28'),(4952,1,'2018-01-23 20:42:27','193.201.224.28'),(4953,1,'2018-01-23 21:33:58','109.190.218.244'),(4954,1,'2018-01-23 23:37:07','222.176.161.16'),(4955,1,'2018-01-24 00:27:06','60.217.196.70'),(4956,1,'2018-01-24 01:22:39','218.23.103.226'),(4957,1,'2018-01-24 01:22:40','218.23.103.226'),(4958,1,'2018-01-24 02:07:42','197.50.72.191'),(4959,1,'2018-01-24 02:57:07','60.15.29.34'),(4960,1,'2018-01-24 15:14:49','84.9.28.203'),(4961,1,'2018-01-24 15:39:38','82.194.17.29'),(4962,1,'2018-01-24 15:44:50','195.228.173.187'),(4963,1,'2018-01-24 20:50:29','82.127.188.193'),(4964,1,'2018-01-25 07:42:42','46.118.155.165'),(4965,1,'2018-01-25 07:42:53','46.118.155.165'),(4966,1,'2018-01-25 07:43:04','46.118.155.165'),(4967,1,'2018-01-25 10:21:56','78.5.21.22'),(4968,1,'2018-01-25 17:26:52','88.167.35.129'),(4969,1,'2018-01-25 23:13:56','196.219.96.238'),(4970,1,'2018-01-26 02:11:21','85.92.206.81'),(4971,1,'2018-01-27 06:30:10','192.95.3.69'),(4972,1,'2018-01-27 06:30:29','192.95.3.69'),(4973,1,'2018-01-27 06:30:49','192.95.3.69'),(4974,1,'2018-01-27 07:30:59','192.95.3.69'),(4975,1,'2018-01-27 07:31:15','192.95.3.69'),(4976,1,'2018-01-27 07:31:31','192.95.3.69'),(4977,1,'2018-01-27 09:23:06','104.206.119.191'),(4978,1,'2018-01-28 05:07:31','134.19.230.144'),(4979,1,'2018-01-28 08:20:53','118.144.8.198'),(4980,1,'2018-01-28 09:00:01','130.0.28.163'),(4981,1,'2018-01-28 09:34:55','111.113.7.234'),(4982,1,'2018-01-29 05:33:27','176.8.89.80'),(4983,1,'2018-01-29 05:33:47','176.8.89.80'),(4984,1,'2018-01-29 05:34:08','176.8.89.80'),(4985,1,'2018-01-29 09:53:34','91.210.145.233'),(4986,1,'2018-01-29 09:53:56','91.210.145.233'),(4987,1,'2018-01-29 09:59:05','91.210.145.233'),(4988,1,'2018-01-29 09:59:24','91.210.145.233'),(4989,1,'2018-01-29 10:04:07','91.210.145.233'),(4990,1,'2018-01-29 10:04:31','91.210.145.233'),(4991,1,'2018-01-29 10:09:26','91.210.145.233'),(4992,1,'2018-01-29 10:09:47','91.210.145.233'),(4993,1,'2018-01-29 10:14:50','91.210.145.233'),(4994,1,'2018-01-29 10:15:13','91.210.145.233'),(4995,1,'2018-01-29 10:20:17','91.210.145.233'),(4996,1,'2018-01-29 10:20:40','91.210.145.233'),(4997,1,'2018-01-29 10:25:27','91.210.145.233'),(4998,1,'2018-01-29 10:25:46','91.210.145.233'),(4999,1,'2018-01-29 10:30:47','91.210.145.233'),(5000,1,'2018-01-29 10:31:13','91.210.145.233'),(5001,1,'2018-01-29 10:35:41','91.210.145.233'),(5002,1,'2018-01-31 11:42:20','31.146.184.98'),(5003,1,'2018-01-31 16:49:46','177.135.101.101'),(5004,1,'2018-02-02 00:27:47','201.18.18.173'),(5005,1,'2018-02-02 00:28:07','201.18.18.173'),(5006,1,'2018-02-02 00:28:26','201.18.18.173'),(5007,1,'2018-02-02 23:44:55','37.59.178.104'),(5008,1,'2018-02-02 23:45:17','37.59.178.104'),(5009,1,'2018-02-04 20:16:55','180.250.39.2'),(5010,1,'2018-02-04 22:09:28','58.17.24.32'),(5011,1,'2018-02-04 22:11:53','37.59.178.104'),(5012,1,'2018-02-04 22:12:14','37.59.178.104'),(5013,1,'2018-02-04 22:58:48','5.178.182.218'),(5014,1,'2018-02-04 23:03:40','95.104.61.174'),(5015,1,'2018-02-09 00:43:19','86.57.154.71'),(5016,1,'2018-02-09 01:40:10','120.35.12.153'),(5017,1,'2018-02-09 02:30:21','171.34.73.74'),(5018,1,'2018-02-09 03:18:36','116.255.221.106'),(5019,1,'2018-02-09 03:59:36','195.22.127.169'),(5020,1,'2018-02-09 03:59:54','195.22.127.169'),(5021,1,'2018-02-09 04:00:11','195.22.127.169'),(5022,1,'2018-02-09 05:00:11','195.22.127.169'),(5023,1,'2018-02-09 05:00:28','195.22.127.169'),(5024,1,'2018-02-09 05:00:44','195.22.127.169'),(5025,1,'2018-02-09 19:05:08','62.210.24.247'),(5026,1,'2018-02-09 21:40:36','62.210.24.247'),(5027,1,'2018-02-10 00:16:56','62.210.24.247'),(5028,1,'2018-02-10 02:55:14','62.210.24.247'),(5029,1,'2018-02-10 05:33:48','62.210.24.247'),(5030,1,'2018-02-10 08:12:14','62.210.24.247'),(5031,1,'2018-02-10 12:08:42','62.210.24.247'),(5032,1,'2018-02-10 14:03:03','62.210.24.247'),(5033,1,'2018-02-10 22:24:13','37.59.178.104'),(5034,1,'2018-02-10 22:24:37','37.59.178.104'),(5035,1,'2018-02-10 22:25:03','37.59.178.104'),(5036,1,'2018-02-11 00:45:41','103.243.24.64'),(5037,1,'2018-02-11 00:45:44','103.243.24.64'),(5038,1,'2018-02-11 00:45:49','103.243.24.64'),(5039,1,'2018-02-11 01:50:21','185.81.157.102'),(5040,1,'2018-02-11 01:50:38','185.81.157.102'),(5041,1,'2018-02-11 01:50:57','185.81.157.102'),(5042,1,'2018-02-11 10:44:38','62.210.24.247'),(5043,1,'2018-02-11 13:24:32','62.210.24.247'),(5044,1,'2018-02-11 16:04:07','62.210.24.247'),(5045,1,'2018-02-11 18:43:18','62.210.24.247'),(5046,1,'2018-02-11 21:23:53','41.79.76.6'),(5047,1,'2018-02-11 21:24:13','41.79.76.6'),(5048,1,'2018-02-11 21:24:35','41.79.76.6'),(5049,1,'2018-02-12 08:50:27','195.22.125.223'),(5050,1,'2018-02-12 08:52:40','195.22.125.223'),(5051,1,'2018-02-12 08:54:02','195.22.125.223'),(5052,1,'2018-02-12 09:54:13','195.22.125.223'),(5053,1,'2018-02-12 09:54:47','195.22.125.223'),(5054,1,'2018-02-12 09:55:25','195.22.125.223'),(5055,1,'2018-02-12 10:55:43','195.22.125.223'),(5056,1,'2018-02-12 10:56:20','195.22.125.223'),(5057,1,'2018-02-12 10:57:10','195.22.125.223'),(5058,1,'2018-02-12 11:57:13','195.22.125.223'),(5059,1,'2018-02-12 11:57:49','195.22.125.223'),(5060,1,'2018-02-12 11:58:19','195.22.125.223'),(5061,1,'2018-02-12 12:59:11','195.22.125.223'),(5062,1,'2018-02-12 12:59:54','195.22.125.223'),(5063,1,'2018-02-12 13:00:46','195.22.125.223'),(5064,1,'2018-02-12 14:01:00','195.22.125.223'),(5065,1,'2018-02-12 14:01:30','195.22.125.223'),(5066,1,'2018-02-12 14:02:02','195.22.125.223'),(5067,1,'2018-02-12 15:02:35','195.22.125.223'),(5068,1,'2018-02-12 15:03:20','195.22.125.223'),(5069,1,'2018-02-12 15:04:00','195.22.125.223'),(5070,1,'2018-02-12 16:04:42','195.22.125.223'),(5071,1,'2018-02-12 16:05:42','195.22.125.223'),(5072,1,'2018-02-12 16:06:43','195.22.125.223'),(5073,1,'2018-02-12 17:07:07','195.22.125.223'),(5074,1,'2018-02-12 17:07:52','195.22.125.223'),(5075,1,'2018-02-12 17:08:38','195.22.125.223'),(5076,1,'2018-02-12 18:09:22','195.22.125.223'),(5077,1,'2018-02-12 18:10:16','195.22.125.223'),(5078,1,'2018-02-12 18:10:53','195.22.125.223'),(5079,1,'2018-02-12 19:11:14','195.22.125.223'),(5080,1,'2018-02-12 19:11:49','195.22.125.223'),(5081,1,'2018-02-12 19:12:17','195.22.125.223'),(5082,1,'2018-02-13 02:28:48','91.82.50.8'),(5083,1,'2018-02-13 02:32:30','179.49.22.194'),(5084,1,'2018-02-13 14:46:06','62.210.24.247'),(5085,1,'2018-02-13 17:25:49','62.210.24.247'),(5086,1,'2018-02-13 22:41:43','62.210.24.247'),(5087,1,'2018-02-14 01:19:37','62.210.24.247'),(5088,1,'2018-02-14 04:01:06','62.210.24.247'),(5089,1,'2018-02-14 06:42:20','62.210.24.247'),(5090,1,'2018-02-14 09:23:52','62.210.24.247'),(5091,1,'2018-02-14 12:00:37','62.210.24.247'),(5092,1,'2018-02-14 14:39:43','62.210.24.247'),(5093,1,'2018-02-14 17:18:00','62.210.24.247'),(5094,1,'2018-02-14 19:54:37','62.210.24.247'),(5095,1,'2018-02-14 22:35:04','62.210.24.247'),(5096,1,'2018-02-15 01:14:58','62.210.24.247'),(5097,1,'2018-02-15 03:55:40','62.210.24.247'),(5098,1,'2018-02-15 06:35:44','62.210.24.247'),(5099,1,'2018-02-16 06:43:00','146.185.223.251'),(5100,1,'2018-02-16 06:43:22','146.185.223.251'),(5101,1,'2018-02-16 06:43:47','146.185.223.251'),(5102,1,'2018-02-16 09:38:12','185.29.8.10'),(5103,1,'2018-02-16 09:38:33','185.29.8.10'),(5104,1,'2018-02-16 09:38:54','185.29.8.10'),(5105,1,'2018-02-17 00:33:12','163.172.179.18'),(5106,1,'2018-02-17 02:45:56','200.113.197.53'),(5107,1,'2018-02-17 13:36:00','91.207.57.100'),(5108,1,'2018-02-17 13:36:18','91.207.57.100'),(5109,1,'2018-02-17 13:36:37','91.207.57.100'),(5110,1,'2018-02-18 11:19:55','195.22.125.8'),(5111,1,'2018-02-18 11:20:23','195.22.125.8'),(5112,1,'2018-02-18 11:20:46','195.22.125.8'),(5113,1,'2018-02-18 12:20:52','195.22.125.8'),(5114,1,'2018-02-18 12:21:11','195.22.125.8'),(5115,1,'2018-02-18 12:21:29','195.22.125.8'),(5116,1,'2018-02-18 18:50:05','185.81.157.102'),(5117,1,'2018-02-18 18:50:31','185.81.157.102'),(5118,1,'2018-02-18 18:50:55','185.81.157.102'),(5119,1,'2018-02-18 19:51:06','185.81.157.102'),(5120,1,'2018-02-18 19:51:23','185.81.157.102'),(5121,1,'2018-02-18 19:51:41','185.81.157.102'),(5122,1,'2018-02-21 18:01:56','118.98.90.22'),(5123,1,'2018-02-21 18:20:59','120.132.92.128'),(5124,1,'2018-02-21 19:55:48','185.172.168.157'),(5125,1,'2018-02-21 20:43:32','193.254.37.95'),(5126,1,'2018-02-21 22:29:30','5.62.62.110'),(5127,1,'2018-02-22 03:53:14','5.62.62.178'),(5128,1,'2018-02-22 11:50:58','5.62.37.30'),(5129,1,'2018-02-22 19:51:06','5.62.60.126'),(5130,1,'2018-02-22 23:33:55','37.59.178.104'),(5131,1,'2018-02-22 23:34:17','37.59.178.104'),(5132,1,'2018-02-22 23:34:41','37.59.178.104'),(5133,1,'2018-02-23 00:35:08','37.59.178.104'),(5134,1,'2018-02-23 00:35:33','37.59.178.104'),(5135,1,'2018-02-23 00:35:56','37.59.178.104'),(5136,1,'2018-02-23 01:36:03','37.59.178.104'),(5137,1,'2018-02-23 01:36:24','37.59.178.104'),(5138,1,'2018-02-23 01:36:44','37.59.178.104'),(5139,1,'2018-02-23 09:36:53','212.83.175.182'),(5140,1,'2018-02-24 03:08:38','5.62.43.19'),(5141,1,'2018-02-24 22:02:00','5.133.12.61'),(5142,1,'2018-02-25 05:55:18','146.185.223.240'),(5143,1,'2018-02-25 05:55:41','146.185.223.240'),(5144,1,'2018-02-25 05:56:05','146.185.223.240'),(5145,1,'2018-02-25 06:01:32','178.137.165.32'),(5146,1,'2018-02-25 06:01:51','178.137.165.32'),(5147,1,'2018-02-25 06:02:09','178.137.165.32'),(5148,1,'2018-02-25 21:16:37','193.201.224.28'),(5149,1,'2018-02-25 21:16:55','193.201.224.28'),(5150,1,'2018-02-25 22:09:39','212.129.6.191'),(5151,1,'2018-02-26 14:02:12','5.62.63.125'),(5152,1,'2018-02-26 18:39:37','185.29.8.10'),(5153,1,'2018-02-26 18:39:58','185.29.8.10'),(5154,1,'2018-02-26 18:40:18','185.29.8.10'),(5155,1,'2018-02-27 01:10:01','188.129.172.77'),(5156,1,'2018-02-27 02:01:23','110.249.143.106'),(5157,1,'2018-02-27 03:05:00','80.21.198.178'),(5158,1,'2018-02-27 15:34:33','83.142.83.26'),(5159,1,'2018-02-27 17:51:45','109.234.161.33'),(5160,1,'2018-02-27 17:52:07','109.234.161.33'),(5161,1,'2018-02-27 17:52:26','109.234.161.33'),(5162,1,'2018-02-27 18:52:34','109.234.161.33'),(5163,1,'2018-02-27 18:52:52','109.234.161.33'),(5164,1,'2018-02-27 18:53:13','109.234.161.33'),(5165,1,'2018-02-28 20:33:04','195.22.125.222'),(5166,1,'2018-02-28 20:33:21','195.22.125.222'),(5167,1,'2018-02-28 20:33:45','195.22.125.222'),(5168,1,'2018-02-28 20:42:23','185.183.107.148'),(5169,1,'2018-02-28 21:34:00','195.22.125.222'),(5170,1,'2018-02-28 21:34:16','195.22.125.222'),(5171,1,'2018-02-28 21:34:33','195.22.125.222'),(5172,1,'2018-03-01 23:55:59','193.201.224.28'),(5173,1,'2018-03-01 23:56:14','193.201.224.28'),(5174,1,'2018-03-02 06:36:20','80.255.13.25'),(5175,1,'2018-03-03 07:45:34','35.203.84.237'),(5176,1,'2018-03-03 07:45:55','35.203.84.237'),(5177,1,'2018-03-03 07:46:17','35.203.84.237'),(5178,1,'2018-03-03 08:36:08','82.202.205.12'),(5179,1,'2018-03-04 01:00:39','178.137.165.32'),(5180,1,'2018-03-04 01:00:56','178.137.165.32'),(5181,1,'2018-03-04 01:01:15','178.137.165.32'),(5182,1,'2018-03-04 04:00:52','91.200.12.9'),(5183,1,'2018-03-04 06:48:09','221.4.137.85'),(5184,1,'2018-03-04 07:05:09','39.109.124.97'),(5185,1,'2018-03-04 17:42:25','193.201.224.28'),(5186,1,'2018-03-04 17:43:13','193.201.224.28'),(5187,1,'2018-03-04 17:43:36','193.201.224.28'),(5188,1,'2018-03-04 19:21:13','5.62.60.31'),(5189,1,'2018-03-04 23:10:37','172.245.5.115'),(5190,1,'2018-03-04 23:10:59','172.245.5.115'),(5191,1,'2018-03-04 23:11:20','172.245.5.115'),(5192,1,'2018-03-05 15:14:57','198.20.91.191'),(5193,1,'2018-03-05 15:15:17','198.20.91.191'),(5194,1,'2018-03-05 15:15:37','198.20.91.191'),(5195,1,'2018-03-05 16:15:45','198.20.91.191'),(5196,1,'2018-03-05 16:16:04','198.20.91.191'),(5197,1,'2018-03-05 16:16:33','198.20.91.191'),(5198,1,'2018-03-05 19:01:49','81.17.29.10'),(5199,1,'2018-03-07 05:18:01','217.170.202.124'),(5200,1,'2018-03-07 17:00:25','91.200.13.5'),(5201,1,'2018-03-07 17:48:12','91.200.13.5'),(5202,1,'2018-03-08 01:07:38','190.13.106.93'),(5203,1,'2018-03-08 05:03:10','46.118.115.22'),(5204,1,'2018-03-08 05:03:26','46.118.115.22'),(5205,1,'2018-03-08 05:03:45','46.118.115.22'),(5206,1,'2018-03-08 07:41:06','82.209.196.39'),(5207,1,'2018-03-08 07:44:52','31.146.174.246'),(5208,1,'2018-03-08 10:23:35','80.255.5.197'),(5209,1,'2018-03-09 09:46:15','80.255.5.197'),(5210,1,'2018-03-09 12:00:19','185.234.218.247'),(5211,1,'2018-03-09 12:00:34','185.234.218.247'),(5212,1,'2018-03-09 12:01:41','185.234.218.247'),(5213,1,'2018-03-09 13:01:45','185.234.218.247'),(5214,1,'2018-03-09 13:02:14','185.234.218.247'),(5215,1,'2018-03-09 13:02:42','185.234.218.247'),(5216,1,'2018-03-09 14:02:46','185.234.218.247'),(5217,1,'2018-03-09 14:03:10','185.234.218.247'),(5218,1,'2018-03-09 14:03:32','185.234.218.247'),(5219,1,'2018-03-09 15:03:38','185.234.218.247'),(5220,1,'2018-03-09 15:04:12','185.234.218.247'),(5221,1,'2018-03-09 15:04:45','185.234.218.247'),(5222,1,'2018-03-09 16:05:13','185.234.218.247'),(5223,1,'2018-03-09 16:05:44','185.234.218.247'),(5224,1,'2018-03-09 16:06:18','185.234.218.247'),(5225,1,'2018-03-09 17:06:48','185.234.218.247'),(5226,1,'2018-03-09 17:07:17','185.234.218.247'),(5227,1,'2018-03-09 17:07:45','185.234.218.247'),(5228,1,'2018-03-09 18:07:55','185.234.218.247'),(5229,1,'2018-03-09 18:08:19','185.234.218.247'),(5230,1,'2018-03-09 18:08:43','185.234.218.247'),(5231,1,'2018-03-09 19:08:52','185.234.218.247'),(5232,1,'2018-03-09 19:09:08','185.234.218.247'),(5233,1,'2018-03-09 19:09:22','185.234.218.247'),(5234,1,'2018-03-10 07:03:08','185.183.107.152'),(5235,1,'2018-03-10 14:02:21','172.245.5.115'),(5236,1,'2018-03-10 14:02:42','172.245.5.115'),(5237,1,'2018-03-10 14:03:03','172.245.5.115'),(5238,1,'2018-03-10 23:54:43','92.243.232.33'),(5239,1,'2018-03-11 00:23:51','213.140.82.146'),(5240,1,'2018-03-11 19:27:35','185.183.107.152'),(5241,1,'2018-03-12 15:12:29','92.243.232.160'),(5242,1,'2018-03-12 15:41:21','109.198.133.40'),(5243,1,'2018-03-12 19:19:03','82.209.249.35'),(5244,1,'2018-03-12 19:47:56','220.191.237.75'),(5245,1,'2018-03-12 19:52:52','220.180.121.6'),(5246,1,'2018-03-12 22:55:46','185.183.107.152'),(5247,1,'2018-03-13 09:23:21','64.235.37.19'),(5248,1,'2018-03-13 09:23:48','64.235.37.19'),(5249,1,'2018-03-13 09:24:08','64.235.37.19'),(5250,1,'2018-03-13 20:43:58','92.243.253.208'),(5251,1,'2018-03-13 21:11:27','92.243.248.122'),(5252,1,'2018-03-14 00:22:54','185.183.107.152'),(5253,1,'2018-03-14 21:41:41','80.255.7.7'),(5254,1,'2018-03-15 00:14:21','109.198.131.41'),(5255,1,'2018-03-15 00:43:14','213.140.76.114'),(5256,1,'2018-03-16 10:52:16','80.255.7.7'),(5257,1,'2018-03-16 19:22:35','94.23.254.125'),(5258,1,'2018-03-17 16:26:36','80.255.5.212'),(5259,1,'2018-03-18 15:49:48','80.255.5.212'),(5260,1,'2018-03-19 16:49:45','80.255.5.212'),(5261,1,'2018-03-20 20:32:54','80.255.5.212'),(5262,1,'2018-03-21 03:17:41','144.217.210.86'),(5263,1,'2018-03-21 03:17:58','144.217.210.86'),(5264,1,'2018-03-21 03:18:17','144.217.210.86'),(5265,1,'2018-03-21 04:18:30','144.217.210.86'),(5266,1,'2018-03-21 04:18:48','144.217.210.86'),(5267,1,'2018-03-21 04:19:08','144.217.210.86'),(5268,1,'2018-03-21 06:13:23','144.217.210.86'),(5269,1,'2018-03-21 06:13:41','144.217.210.86'),(5270,1,'2018-03-21 06:14:00','144.217.210.86'),(5271,1,'2018-03-21 07:14:06','144.217.210.86'),(5272,1,'2018-03-21 07:14:25','144.217.210.86'),(5273,1,'2018-03-21 07:14:49','144.217.210.86'),(5274,1,'2018-03-21 21:40:27','80.255.7.6'),(5275,1,'2018-03-22 02:42:05','218.94.38.214'),(5276,1,'2018-03-22 02:42:06','220.164.2.123'),(5277,1,'2018-03-22 03:50:04','119.6.89.127'),(5278,1,'2018-03-22 04:34:42','221.2.157.133'),(5279,1,'2018-03-23 05:11:19','91.200.13.5'),(5280,1,'2018-03-23 18:54:27','188.165.193.197'),(5281,1,'2018-03-23 23:54:13','94.138.213.187'),(5282,1,'2018-03-23 23:54:32','94.138.213.187'),(5283,1,'2018-03-23 23:54:49','94.138.213.187'),(5284,1,'2018-03-24 00:55:04','94.138.213.187'),(5285,1,'2018-03-24 00:55:22','94.138.213.187'),(5286,1,'2018-03-24 00:55:38','94.138.213.187'),(5287,1,'2018-03-24 01:55:49','94.138.213.187'),(5288,1,'2018-03-24 01:56:05','94.138.213.187'),(5289,1,'2018-03-24 01:56:22','94.138.213.187'),(5290,1,'2018-03-24 02:56:26','94.138.213.187'),(5291,1,'2018-03-24 02:56:43','94.138.213.187'),(5292,1,'2018-03-24 02:57:00','94.138.213.187'),(5293,1,'2018-03-24 03:57:10','94.138.213.187'),(5294,1,'2018-03-24 03:57:26','94.138.213.187'),(5295,1,'2018-03-24 03:57:43','94.138.213.187'),(5296,1,'2018-03-24 08:15:03','5.62.60.127'),(5297,1,'2018-03-24 22:21:30','144.217.210.86'),(5298,1,'2018-03-24 22:21:47','144.217.210.86'),(5299,1,'2018-03-24 22:22:04','144.217.210.86'),(5300,1,'2018-03-24 22:45:56','51.15.90.156'),(5301,1,'2018-03-24 22:46:15','51.15.90.156'),(5302,1,'2018-03-24 22:46:32','51.15.90.156'),(5303,1,'2018-03-24 23:22:16','144.217.210.86'),(5304,1,'2018-03-24 23:22:34','144.217.210.86'),(5305,1,'2018-03-24 23:22:51','144.217.210.86'),(5306,1,'2018-03-24 23:46:35','51.15.90.156'),(5307,1,'2018-03-24 23:46:55','51.15.90.156'),(5308,1,'2018-03-24 23:47:11','51.15.90.156'),(5309,1,'2018-03-25 00:47:12','51.15.90.156'),(5310,1,'2018-03-25 00:47:29','51.15.90.156'),(5311,1,'2018-03-25 00:47:47','51.15.90.156'),(5312,1,'2018-03-25 07:41:22','83.142.83.27'),(5313,1,'2018-03-26 01:24:38','197.45.161.156'),(5314,1,'2018-03-26 02:01:47','103.4.147.67'),(5315,1,'2018-03-26 02:11:40','220.191.211.167'),(5316,1,'2018-03-26 02:46:04','177.135.101.101'),(5317,1,'2018-03-26 08:54:49','80.255.5.196'),(5318,1,'2018-03-27 13:18:18','80.255.5.196'),(5319,1,'2018-03-29 12:55:56','109.86.115.141'),(5320,1,'2018-03-30 00:14:29','41.33.229.210'),(5321,1,'2018-03-30 10:24:11','134.19.230.129'),(5322,1,'2018-03-30 10:29:27','186.215.197.183'),(5323,1,'2018-03-30 13:35:40','13.78.122.91'),(5324,1,'2018-03-30 15:15:46','91.200.12.12'),(5325,1,'2018-03-31 04:30:18','178.137.165.32'),(5326,1,'2018-03-31 04:30:37','178.137.165.32'),(5327,1,'2018-03-31 04:30:54','178.137.165.32'),(5328,1,'2018-03-31 05:31:09','178.137.165.32'),(5329,1,'2018-03-31 05:31:26','178.137.165.32'),(5330,1,'2018-03-31 05:31:42','178.137.165.32'),(5331,1,'2018-04-01 22:35:11','178.137.165.32'),(5332,1,'2018-04-01 22:35:29','178.137.165.32'),(5333,1,'2018-04-01 22:35:46','178.137.165.32'),(5334,1,'2018-04-02 00:16:50','109.86.115.141'),(5335,1,'2018-04-03 08:09:42','122.5.36.139'),(5336,1,'2018-04-03 10:32:01','130.0.30.242'),(5337,1,'2018-04-04 06:59:16','84.199.29.242'),(5338,1,'2018-04-04 06:59:35','84.199.29.242'),(5339,1,'2018-04-04 07:00:03','84.199.29.242'),(5340,1,'2018-04-05 03:26:21','87.98.227.4'),(5341,1,'2018-04-06 02:14:54','62.66.212.66'),(5342,1,'2018-04-06 02:52:41','222.218.17.189'),(5343,1,'2018-04-06 21:15:02','186.96.91.18'),(5344,1,'2018-06-03 03:13:28','37.187.88.203'),(5345,1,'2018-06-03 03:13:29','37.187.88.203'),(5346,1,'2018-06-03 03:13:29','37.187.88.203'),(5347,1,'2018-08-11 14:36:44','182.16.11.114'),(5348,1,'2018-08-11 14:36:48','182.16.11.114'),(5349,1,'2018-08-11 15:42:24','207.210.201.173'),(5350,1,'2018-08-11 15:42:28','207.210.201.173'),(5351,1,'2018-08-11 16:46:54','54.233.163.237'),(5352,1,'2018-08-11 16:46:57','54.233.163.237'),(5353,1,'2018-08-11 17:54:57','132.148.213.217'),(5354,1,'2018-08-11 17:54:59','132.148.213.217'),(5355,1,'2018-08-11 19:02:20','77.245.159.188'),(5356,1,'2018-08-11 21:12:10','199.188.200.86'),(5357,1,'2018-08-11 22:14:40','43.228.126.182'),(5358,1,'2018-08-11 22:14:42','43.228.126.182'),(5359,1,'2018-08-11 23:19:27','166.62.120.154'),(5360,1,'2018-08-11 23:19:29','166.62.120.154'),(5361,1,'2018-08-12 05:57:30','103.21.58.48'),(5362,1,'2018-08-12 05:57:34','103.21.58.48'),(5363,1,'2018-08-12 06:59:36','173.230.252.58'),(5364,1,'2018-08-12 06:59:38','173.230.252.58'),(5365,1,'2018-08-12 08:09:09','125.212.224.208'),(5366,1,'2018-08-12 08:09:12','125.212.224.208'),(5367,1,'2018-08-12 09:12:23','178.33.33.81'),(5368,1,'2018-08-12 09:12:27','178.33.33.81'),(5369,1,'2018-08-12 10:16:26','192.145.239.207'),(5370,1,'2018-08-12 10:16:28','192.145.239.207'),(5371,1,'2018-08-12 11:19:26','68.66.233.37'),(5372,1,'2018-08-12 11:19:28','68.66.233.37'),(5373,1,'2018-08-12 12:22:17','91.215.152.189'),(5374,1,'2018-08-12 12:22:19','91.215.152.189'),(5375,1,'2018-08-12 13:25:13','103.200.23.139'),(5376,1,'2018-08-12 13:25:15','103.200.23.139'),(5377,1,'2018-08-12 14:28:40','103.200.23.139'),(5378,1,'2018-08-12 14:28:42','103.200.23.139'),(5379,1,'2018-08-12 15:31:37','139.162.83.38'),(5380,1,'2018-08-12 15:31:41','139.162.83.38'),(5381,1,'2018-08-12 16:36:33','92.222.16.136'),(5382,1,'2018-08-12 16:36:34','92.222.16.136'),(5383,1,'2018-08-12 19:41:54','185.187.186.67'),(5384,1,'2018-08-12 19:42:30','185.187.186.67'),(5385,1,'2018-08-12 20:46:24','103.200.23.139'),(5386,1,'2018-08-12 20:46:27','103.200.23.139'),(5387,1,'2018-08-12 21:59:28','208.91.199.24'),(5388,1,'2018-08-12 21:59:43','208.91.199.24'),(5389,1,'2018-08-12 23:44:20','119.28.63.252'),(5390,1,'2018-08-12 23:44:23','119.28.63.252'),(5391,1,'2018-08-13 00:48:10','198.154.248.132'),(5392,1,'2018-08-13 00:48:13','198.154.248.132'),(5393,1,'2018-08-13 01:53:27','112.78.3.229'),(5394,1,'2018-08-13 01:53:29','112.78.3.229'),(5395,1,'2018-08-13 02:57:21','207.136.209.21'),(5396,1,'2018-08-13 02:57:22','207.136.209.21'),(5397,1,'2018-08-13 04:56:16','103.200.23.139'),(5398,1,'2018-08-13 04:56:18','103.200.23.139'),(5399,1,'2018-08-13 06:00:51','207.210.201.173'),(5400,1,'2018-08-13 06:00:55','207.210.201.173'),(5401,1,'2018-08-13 08:14:20','112.78.3.229'),(5402,1,'2018-08-13 08:14:22','112.78.3.229'),(5403,1,'2018-08-13 09:17:44','206.189.205.78'),(5404,1,'2018-08-13 09:17:46','206.189.205.78'),(5405,1,'2018-08-13 12:53:36','91.232.124.244'),(5406,1,'2018-08-13 12:53:38','91.232.124.244'),(5407,1,'2018-08-13 14:31:13','104.238.93.163'),(5408,1,'2018-08-13 14:31:16','104.238.93.163'),(5409,1,'2018-08-13 17:00:29','84.242.133.66'),(5410,1,'2018-08-13 17:00:31','84.242.133.66'),(5411,1,'2018-08-13 18:44:20','173.254.28.132'),(5412,1,'2018-08-13 18:44:22','173.254.28.132'),(5413,1,'2018-08-13 20:24:12','107.180.121.18'),(5414,1,'2018-08-13 20:24:13','107.180.121.18'),(5415,1,'2018-08-14 00:03:51','103.235.105.94'),(5416,1,'2018-08-14 00:03:53','103.235.105.94'),(5417,1,'2018-08-14 01:26:41','43.228.126.182'),(5418,1,'2018-09-29 23:19:09','198.71.235.71'),(5419,1,'2018-09-29 23:19:11','198.71.235.71'),(5420,1,'2018-09-30 00:02:50','187.108.203.174'),(5421,1,'2018-09-30 00:02:52','187.108.203.174'),(5422,1,'2018-09-30 19:03:33','198.71.235.11'),(5423,1,'2018-09-30 19:03:35','198.71.235.11'),(5424,1,'2018-09-30 20:04:49','5.189.134.138'),(5425,1,'2018-09-30 20:04:51','5.189.134.138'),(5426,1,'2018-09-30 20:54:35','64.207.144.156'),(5427,1,'2018-09-30 22:26:08','198.71.228.63'),(5428,1,'2018-09-30 23:12:44','148.72.232.157'),(5429,1,'2018-09-30 23:12:46','148.72.232.157'),(5430,1,'2018-10-01 11:11:27','37.187.146.54'),(5431,1,'2018-10-01 11:11:29','37.187.146.54'),(5432,1,'2018-10-01 13:46:41','50.62.176.39'),(5433,1,'2018-10-01 13:46:43','50.62.176.39'),(5434,1,'2018-10-01 15:53:20','182.50.151.70'),(5435,1,'2018-10-01 15:53:23','182.50.151.70'),(5436,1,'2018-10-01 17:37:53','184.168.200.210'),(5437,1,'2018-10-01 17:37:55','184.168.200.210'),(5438,1,'2018-10-01 18:28:44','27.254.81.96'),(5439,1,'2018-10-01 18:28:49','27.254.81.96'),(5440,1,'2018-10-01 19:14:00','50.62.176.89'),(5441,1,'2018-10-01 19:14:02','50.62.176.89'),(5442,1,'2018-10-01 20:24:31','68.171.217.98'),(5443,1,'2018-10-01 20:24:33','68.171.217.98'),(5444,1,'2018-10-01 21:30:13','162.253.224.4'),(5445,1,'2018-10-01 21:30:15','162.253.224.4'),(5446,1,'2018-10-01 22:31:19','23.238.16.4'),(5447,1,'2018-10-01 22:31:25','23.238.16.4'),(5448,1,'2018-10-01 23:45:55','182.50.135.63'),(5449,1,'2018-10-01 23:45:58','182.50.135.63'),(5450,1,'2018-10-02 00:59:37','206.189.136.36'),(5451,1,'2018-10-02 00:59:40','206.189.136.36'),(5452,1,'2018-10-02 01:42:25','45.40.166.170'),(5453,1,'2018-10-03 20:19:56','188.165.197.221'),(5454,1,'2018-10-03 20:22:35','188.165.197.221'),(5455,1,'2018-10-03 20:24:59','188.165.197.221'),(5456,1,'2018-10-10 09:22:18','51.38.81.241'),(5457,1,'2018-10-10 09:22:41','74.220.215.230'),(5458,1,'2018-10-10 13:54:13','160.153.154.169'),(5459,1,'2018-10-10 13:54:13','51.38.69.87'),(5460,1,'2018-10-10 22:17:22','178.170.164.188'),(5461,1,'2018-10-11 03:16:21','68.65.120.197'),(5462,1,'2018-10-11 06:55:50','149.28.169.167'),(5463,1,'2018-10-11 09:01:28','148.72.232.30'),(5464,1,'2018-10-11 12:45:38','185.67.45.160'),(5465,1,'2018-10-11 16:26:57','92.53.124.130'),(5466,1,'2018-10-11 18:34:07','176.28.118.42'),(5467,1,'2018-10-11 22:12:08','85.206.149.103'),(5468,1,'2018-10-12 01:51:38','148.72.232.158'),(5469,1,'2018-10-12 05:26:19','188.120.230.6'),(5470,1,'2018-10-12 09:20:07','182.50.135.62'),(5471,1,'2018-10-12 11:52:22','191.232.167.181'),(5472,1,'2018-10-12 19:03:46','63.247.85.138'),(5473,1,'2018-10-13 03:19:52','62.90.134.187'),(5474,1,'2018-10-13 11:34:35','62.90.134.187'),(5475,1,'2018-10-13 15:09:31','50.62.176.39'),(5476,1,'2018-10-13 19:23:08','104.237.2.41'),(5477,1,'2018-10-13 19:49:36','185.85.190.126'),(5478,1,'2018-10-13 19:49:37','185.85.190.126'),(5479,1,'2018-10-13 20:07:39','198.46.224.161'),(5480,1,'2018-10-13 20:07:41','198.46.224.161'),(5481,1,'2018-10-13 20:24:42','162.144.151.167'),(5482,1,'2018-10-13 20:24:45','162.144.151.167'),(5483,1,'2018-10-13 20:43:07','64.20.39.210'),(5484,1,'2018-10-13 20:43:08','64.20.39.210'),(5485,1,'2018-10-13 21:20:24','195.161.41.159'),(5486,1,'2018-10-13 21:20:26','195.161.41.159'),(5487,1,'2018-10-13 21:50:26','119.81.196.37'),(5488,1,'2018-10-13 21:50:28','119.81.196.37'),(5489,1,'2018-10-13 22:09:09','51.38.69.87'),(5490,1,'2018-10-13 22:09:11','51.38.69.87'),(5491,1,'2018-10-13 22:27:16','66.117.4.63'),(5492,1,'2018-10-13 22:27:18','66.117.4.63'),(5493,1,'2018-10-13 22:45:17','198.71.241.18'),(5494,1,'2018-10-13 22:45:19','198.71.241.18'),(5495,1,'2018-10-13 23:25:27','87.252.1.172'),(5496,1,'2018-10-13 23:25:28','87.252.1.172'),(5497,1,'2018-10-13 23:44:28','123.31.41.31'),(5498,1,'2018-10-13 23:44:30','123.31.41.31'),(5499,1,'2018-10-14 00:02:25','191.232.167.181'),(5500,1,'2018-10-14 01:45:36','185.4.66.20'),(5501,1,'2018-10-14 01:45:37','185.4.66.20'),(5502,1,'2018-10-14 02:02:43','93.125.99.17'),(5503,1,'2018-10-14 02:02:45','93.125.99.17'),(5504,1,'2018-10-14 02:21:04','195.161.41.159'),(5505,1,'2018-10-14 02:21:06','195.161.41.159'),(5506,1,'2018-10-14 02:38:48','51.38.81.241'),(5507,1,'2018-10-23 15:07:10','62.75.145.134'),(5508,1,'2018-10-23 15:07:11','50.62.176.17'),(5509,1,'2018-10-23 15:07:13','14.102.148.43'),(5510,1,'2018-10-23 15:07:14','148.72.232.157'),(5511,1,'2018-10-23 15:07:14','148.72.232.158'),(5512,1,'2018-10-23 15:41:09','213.251.182.106'),(5513,1,'2018-10-23 15:41:10','213.251.182.106'),(5514,1,'2018-10-23 16:14:01','46.30.45.99'),(5515,1,'2018-10-23 16:14:02','46.30.45.99'),(5516,1,'2018-10-23 16:47:10','182.50.135.85'),(5517,1,'2018-10-23 16:47:12','182.50.135.85'),(5518,1,'2018-10-23 17:19:44','5.101.156.204'),(5519,1,'2018-10-23 17:19:46','5.101.156.204'),(5520,1,'2018-10-23 17:52:57','148.72.232.109'),(5521,1,'2018-10-23 17:53:01','148.72.232.109'),(5522,1,'2018-10-23 18:27:42','51.38.81.241'),(5523,1,'2018-10-23 18:27:43','51.38.81.241'),(5524,1,'2018-10-23 19:00:37','64.207.144.156'),(5525,1,'2018-10-23 19:00:38','64.207.144.156'),(5526,1,'2018-10-23 19:33:20','47.90.78.26'),(5527,1,'2018-10-23 19:33:23','47.90.78.26'),(5528,1,'2018-10-23 20:09:23','148.72.232.157'),(5529,1,'2018-10-23 20:09:25','148.72.232.157'),(5530,1,'2018-10-23 20:44:15','84.52.175.41'),(5531,1,'2018-10-23 20:44:16','84.52.175.41'),(5532,1,'2018-10-23 21:18:23','104.237.2.41'),(5533,1,'2018-10-23 21:18:25','104.237.2.41'),(5534,1,'2018-10-23 21:52:40','103.27.239.3'),(5535,1,'2018-10-23 21:52:42','103.27.239.3'),(5536,1,'2018-10-23 22:25:21','50.62.176.102'),(5537,1,'2018-10-23 22:25:23','50.62.176.102'),(5538,1,'2018-10-23 22:58:36','45.40.166.168'),(5539,1,'2018-10-23 22:58:38','45.40.166.168'),(5540,1,'2018-10-23 23:31:41','185.4.66.20'),(5541,1,'2018-10-23 23:31:41','37.187.146.54'),(5542,1,'2018-10-23 23:31:42','37.187.146.54'),(5543,1,'2018-10-23 23:31:42','185.4.66.20'),(5544,1,'2018-10-23 23:31:47','148.72.232.39'),(5545,1,'2018-10-23 23:31:49','148.72.232.39'),(5546,1,'2018-10-24 00:04:22','46.30.45.99'),(5547,1,'2018-10-24 00:04:23','46.30.45.99'),(5548,1,'2018-10-24 00:37:10','104.168.177.3'),(5549,1,'2018-10-24 00:37:12','104.168.177.3'),(5550,1,'2018-10-24 03:00:03','69.162.107.34'),(5551,1,'2018-10-24 03:00:05','69.162.107.34'),(5552,1,'2018-10-24 03:38:04','158.69.119.138'),(5553,1,'2018-10-24 03:38:06','158.69.119.138'),(5554,1,'2018-10-24 04:11:05','198.100.148.154'),(5555,1,'2018-10-24 04:11:07','198.100.148.154'),(5556,1,'2018-10-24 04:51:31','94.126.169.121'),(5557,1,'2018-10-24 04:51:32','94.126.169.121'),(5558,1,'2018-10-24 05:25:02','206.189.136.36'),(5559,1,'2018-10-24 05:25:04','206.189.136.36'),(5560,1,'2018-10-24 07:41:04','46.252.158.56'),(5561,1,'2018-10-24 07:41:06','46.252.158.56'),(5562,1,'2018-12-15 06:06:34','5.62.43.52'),(5563,1,'2018-12-15 06:06:34','5.62.43.52'),(5564,1,'2018-12-15 06:06:35','5.62.43.52'),(5565,1,'2018-12-26 07:31:15','181.143.17.178'),(5566,1,'2018-12-26 07:31:34','140.227.207.211'),(5567,1,'2018-12-26 07:31:54','66.103.173.243'),(5568,1,'2018-12-26 07:32:16','139.59.80.140'),(5569,1,'2018-12-26 07:32:40','43.243.143.221'),(5570,1,'2018-12-26 07:33:04','94.198.195.42'),(5571,1,'2018-12-26 07:33:41','75.146.58.105'),(5572,1,'2018-12-26 07:34:07','125.25.54.139'),(5573,1,'2018-12-26 07:34:31','128.199.137.37'),(5574,1,'2018-12-26 07:34:55','95.80.93.44'),(5575,1,'2018-12-26 07:36:10','178.128.168.88'),(5576,1,'2018-12-26 07:36:31','182.52.31.122'),(5577,1,'2018-12-26 07:37:00','182.52.31.122'),(5578,1,'2018-12-26 07:38:18','185.251.216.128'),(5579,1,'2018-12-26 07:38:45','185.251.216.128'),(5580,1,'2018-12-26 07:39:11','182.52.31.122'),(5581,1,'2018-12-26 07:39:32','95.165.219.122'),(5582,1,'2018-12-26 07:39:59','178.128.168.88'),(5583,1,'2018-12-26 07:40:26','139.99.99.15'),(5584,1,'2018-12-26 07:40:49','181.129.133.74'),(5585,1,'2018-12-26 07:41:12','78.132.136.40'),(5586,1,'2018-12-26 07:41:32','207.180.207.12'),(5587,1,'2018-12-26 07:41:58','77.221.220.133'),(5588,1,'2018-12-26 07:43:28','94.253.15.130'),(5589,1,'2018-12-26 07:43:57','1.20.103.56'),(5590,1,'2018-12-26 07:44:47','109.94.127.33'),(5591,1,'2018-12-26 07:45:07','94.242.55.108'),(5592,1,'2018-12-26 07:46:02','119.28.143.241'),(5593,1,'2018-12-26 07:46:27','103.91.69.51'),(5594,1,'2018-12-26 07:47:12','178.128.168.88'),(5595,1,'2018-12-26 07:47:41','54.177.53.69'),(5596,1,'2018-12-26 07:48:05','173.255.144.25'),(5597,1,'2018-12-26 07:48:42','188.0.20.45'),(5598,1,'2018-12-26 07:49:36','182.160.122.182'),(5599,1,'2018-12-26 07:50:21','94.253.15.130'),(5600,1,'2018-12-26 07:50:38','94.253.15.130'),(5601,1,'2018-12-26 07:50:59','140.227.202.209'),(5602,1,'2018-12-26 07:51:41','207.180.207.12'),(5603,1,'2018-12-26 07:52:13','182.53.206.43'),(5604,1,'2018-12-26 07:52:50','118.175.207.104'),(5605,1,'2018-12-26 07:55:19','140.227.202.209'),(5606,1,'2018-12-26 08:04:41','185.34.20.164'),(5607,1,'2018-12-26 08:10:36','46.254.24.214'),(5608,1,'2018-12-26 08:11:39','142.93.57.81'),(5609,1,'2018-12-26 08:12:20','103.91.69.51'),(5610,1,'2018-12-26 08:13:08','202.131.248.94'),(5611,1,'2018-12-26 08:13:58','95.165.219.122'),(5612,1,'2018-12-26 08:15:24','103.209.131.3'),(5613,1,'2018-12-26 08:21:18','103.209.131.3'),(5614,1,'2018-12-26 08:22:10','202.131.248.94'),(5615,1,'2018-12-26 08:23:31','140.227.205.163'),(5616,1,'2018-12-26 08:43:10','95.165.219.122'),(5617,1,'2018-12-26 08:43:45','140.227.212.211'),(5618,1,'2018-12-26 08:44:55','103.91.69.51'),(5619,1,'2018-12-26 08:50:44','101.51.141.110'),(5620,1,'2018-12-26 08:54:30','54.177.53.69'),(5621,1,'2018-12-26 08:54:57','185.34.20.164'),(5622,1,'2018-12-26 08:55:19','103.209.131.3'),(5623,1,'2018-12-26 09:18:44','182.52.31.122'),(5624,1,'2018-12-26 09:20:01','110.74.193.235'),(5625,1,'2018-12-26 09:20:14','103.3.77.94'),(5626,1,'2018-12-26 09:26:35','95.165.219.122'),(5627,1,'2018-12-26 09:29:24','101.51.141.110'),(5628,1,'2018-12-26 09:29:43','47.244.62.234'),(5629,1,'2018-12-26 09:30:55','190.152.5.126'),(5630,1,'2018-12-26 09:31:21','109.197.190.34'),(5631,1,'2018-12-26 09:32:45','27.112.66.82'),(5632,1,'2018-12-26 09:34:13','140.227.71.235'),(5633,1,'2018-12-26 09:34:36','140.227.71.235'),(5634,1,'2018-12-26 09:35:42','181.129.133.74'),(5635,1,'2018-12-26 09:36:13','194.181.82.190'),(5636,1,'2018-12-26 09:36:35','200.229.230.237'),(5637,1,'2018-12-26 09:37:12','186.150.200.219'),(5638,1,'2018-12-26 09:37:30','176.56.66.84'),(5639,1,'2018-12-26 09:38:39','139.99.99.15'),(5640,1,'2018-12-26 09:39:20','173.255.144.25'),(5641,1,'2018-12-26 09:40:25','51.15.76.205'),(5642,1,'2018-12-26 09:40:49','139.99.99.15'),(5643,1,'2018-12-26 09:41:39','182.52.51.36'),(5644,1,'2018-12-26 09:42:00','212.56.152.147'),(5645,1,'2018-12-26 09:42:43','140.227.71.235'),(5646,1,'2018-12-26 09:43:07','51.38.146.63'),(5647,1,'2018-12-26 09:43:30','142.93.136.126'),(5648,1,'2018-12-26 09:43:53','142.93.57.81'),(5649,1,'2018-12-26 09:44:51','142.93.136.126'),(5650,1,'2018-12-26 09:45:14','103.91.69.51'),(5651,1,'2018-12-26 09:46:11','103.91.69.51'),(5652,1,'2018-12-26 09:46:32','94.242.55.108'),(5653,1,'2018-12-26 09:46:54','89.102.198.78'),(5654,1,'2018-12-26 09:47:18','47.244.62.234'),(5655,1,'2018-12-26 09:48:27','176.62.188.97'),(5656,1,'2018-12-26 09:48:43','207.180.207.12'),(5657,1,'2018-12-26 09:49:02','159.65.148.128'),(5658,1,'2018-12-26 09:49:25','103.91.69.51'),(5659,1,'2018-12-26 09:49:42','106.51.252.234'),(5660,1,'2018-12-26 09:50:00','103.209.131.3'),(5661,1,'2018-12-26 09:50:42','159.89.174.172'),(5662,1,'2018-12-26 09:51:17','212.7.230.7'),(5663,1,'2018-12-26 09:51:37','182.52.31.122'),(5664,1,'2018-12-26 09:51:59','173.255.144.25'),(5665,1,'2018-12-26 09:52:16','94.237.72.203'),(5666,1,'2018-12-26 09:52:37','88.250.65.90'),(5667,1,'2018-12-26 09:52:56','142.93.136.126'),(5668,1,'2018-12-26 09:53:29','203.135.152.209'),(5669,1,'2018-12-26 09:53:49','1.10.188.99'),(5670,1,'2018-12-26 09:54:31','82.209.12.102'),(5671,1,'2018-12-26 09:54:52','186.150.200.219'),(5672,1,'2018-12-26 09:55:36','47.90.125.157'),(5673,1,'2018-12-26 09:55:54','140.227.202.162'),(5674,1,'2018-12-26 09:57:04','194.181.82.190'),(5675,1,'2018-12-26 09:58:04','110.74.193.235'),(5676,1,'2018-12-26 09:58:24','62.213.118.162'),(5677,1,'2018-12-26 09:59:32','186.0.93.69'),(5678,1,'2018-12-26 09:59:54','95.87.210.126'),(5679,1,'2018-12-26 10:00:20','106.51.252.234'),(5680,1,'2018-12-26 10:00:36','62.213.118.162'),(5681,1,'2018-12-26 10:00:51','178.128.75.168'),(5682,1,'2018-12-26 10:01:13','85.11.114.135'),(5683,1,'2018-12-26 10:01:48','140.227.68.113'),(5684,1,'2018-12-26 10:02:06','125.26.99.208'),(5685,1,'2018-12-26 10:02:23','89.102.198.78'),(5686,1,'2018-12-26 10:02:42','95.87.210.126'),(5687,1,'2018-12-26 10:02:59','203.45.134.235'),(5688,1,'2018-12-26 10:03:21','27.112.66.82'),(5689,1,'2018-12-26 10:03:40','140.227.206.163'),(5690,1,'2018-12-26 10:04:47','128.199.244.175'),(5691,1,'2018-12-26 10:04:57','190.60.69.162'),(5692,1,'2018-12-26 10:05:13','140.227.52.142'),(5693,1,'2018-12-26 10:05:32','140.227.71.235'),(5694,1,'2018-12-26 10:05:55','140.227.211.35'),(5695,1,'2018-12-26 10:06:11','198.97.37.89'),(5696,1,'2018-12-26 10:07:02','140.227.211.35'),(5697,1,'2018-12-26 10:08:06','128.199.244.175'),(5698,1,'2018-12-26 10:08:28','71.240.182.6'),(5699,1,'2018-12-26 10:08:54','163.172.81.119'),(5700,1,'2018-12-26 10:09:17','140.227.52.142'),(5701,1,'2018-12-26 10:09:37','203.77.239.2'),(5702,1,'2018-12-26 10:10:15','91.213.244.42'),(5703,1,'2018-12-26 10:10:32','89.207.90.76'),(5704,1,'2018-12-26 10:10:51','178.128.31.153'),(5705,1,'2018-12-26 10:11:11','128.199.244.175'),(5706,1,'2018-12-26 10:11:35','182.53.206.49'),(5707,1,'2018-12-26 10:12:02','203.189.89.153'),(5708,1,'2018-12-26 10:12:20','183.88.214.47'),(5709,1,'2018-12-26 10:13:01','128.199.244.175'),(5710,1,'2018-12-26 10:13:19','89.208.20.250'),(5711,1,'2018-12-26 10:13:37','181.211.57.10'),(5712,1,'2018-12-26 10:13:58','109.74.142.138'),(5713,1,'2018-12-26 10:14:15','178.128.31.153'),(5714,1,'2018-12-26 10:14:35','176.62.188.97'),(5715,1,'2018-12-26 10:14:54','200.229.230.237'),(5716,1,'2018-12-26 10:15:14','85.9.250.244'),(5717,1,'2018-12-26 10:15:36','178.32.5.90'),(5718,1,'2018-12-26 10:17:05','212.42.197.170'),(5719,1,'2018-12-26 10:17:26','140.227.52.142'),(5720,1,'2018-12-26 10:17:45','122.54.20.222'),(5721,1,'2018-12-26 10:18:06','124.41.211.110'),(5722,1,'2018-12-26 10:18:28','181.196.17.53'),(5723,1,'2018-12-26 10:18:46','181.211.57.10'),(5724,1,'2018-12-26 10:19:06','132.248.54.127'),(5725,1,'2018-12-26 10:19:24','139.255.19.162'),(5726,1,'2018-12-26 10:19:42','140.227.211.35'),(5727,1,'2018-12-26 10:19:59','209.97.168.63'),(5728,1,'2018-12-26 10:20:18','51.38.234.95'),(5729,1,'2018-12-26 10:20:37','85.9.250.244'),(5730,1,'2018-12-26 10:20:55','47.75.194.109'),(5731,1,'2018-12-26 10:21:10','51.38.234.95'),(5732,1,'2018-12-26 10:21:27','198.97.37.89'),(5733,1,'2018-12-26 10:21:53','89.207.90.76'),(5734,1,'2018-12-26 10:22:16','89.208.20.250'),(5735,1,'2018-12-26 10:22:59','124.41.213.203'),(5736,1,'2018-12-26 10:23:20','186.3.155.150'),(5737,1,'2018-12-26 10:23:41','140.227.52.142'),(5738,1,'2018-12-26 10:23:59','43.245.184.202'),(5739,1,'2018-12-26 10:25:34','51.75.109.94'),(5740,1,'2018-12-26 10:25:50','182.52.229.166'),(5741,1,'2018-12-26 10:26:09','203.189.89.153'),(5742,1,'2018-12-26 10:26:29','101.109.255.18'),(5743,1,'2018-12-26 10:26:49','89.207.90.76'),(5744,1,'2018-12-26 10:27:58','124.41.213.203'),(5745,1,'2018-12-26 10:28:20','85.11.114.135'),(5746,1,'2018-12-26 10:28:49','47.90.125.157'),(5747,1,'2018-12-26 10:29:11','176.35.250.108'),(5748,1,'2018-12-26 10:29:29','125.25.80.31'),(5749,1,'2018-12-26 10:29:51','207.180.201.107'),(5750,1,'2018-12-26 10:30:12','46.101.1.250'),(5751,1,'2018-12-26 10:30:39','203.77.239.2'),(5752,1,'2018-12-26 10:30:59','178.128.31.153'),(5753,1,'2018-12-26 10:31:17','140.227.71.235'),(5754,1,'2018-12-26 10:31:42','85.9.250.244'),(5755,1,'2018-12-26 10:32:01','181.211.57.10'),(5756,1,'2018-12-26 10:32:26','84.43.188.204'),(5757,1,'2018-12-26 10:32:42','178.128.226.25'),(5758,1,'2018-12-26 10:33:02','140.227.204.165'),(5759,1,'2018-12-26 10:33:21','52.179.5.76'),(5760,1,'2018-12-26 10:33:38','89.207.90.76'),(5761,1,'2018-12-26 10:33:55','203.189.89.153'),(5762,1,'2018-12-26 10:34:15','190.60.69.162'),(5763,1,'2018-12-26 10:34:35','46.47.246.82'),(5764,1,'2018-12-26 10:35:05','84.43.188.204'),(5765,1,'2018-12-26 10:35:23','176.62.188.97'),(5766,1,'2018-12-26 10:35:44','94.242.55.108'),(5767,1,'2018-12-26 10:36:01','211.24.105.86'),(5768,1,'2018-12-26 10:36:22','46.228.93.126'),(5769,1,'2018-12-26 10:36:46','203.77.239.2'),(5770,1,'2018-12-26 10:37:10','177.234.19.50'),(5771,1,'2018-12-26 10:37:30','46.46.32.82'),(5772,1,'2018-12-26 10:37:53','163.172.81.119'),(5773,1,'2018-12-26 10:38:12','185.60.88.95'),(5774,1,'2018-12-26 10:38:45','91.219.235.12'),(5775,1,'2018-12-26 10:39:04','125.25.57.33'),(5776,1,'2018-12-26 10:39:23','96.9.88.7'),(5777,1,'2018-12-26 10:39:39','140.227.198.242'),(5778,1,'2018-12-26 10:40:16','62.73.127.10'),(5779,1,'2018-12-26 10:40:38','85.9.250.244'),(5780,1,'2018-12-26 10:41:09','80.91.17.113'),(5781,1,'2018-12-26 10:41:29','202.52.114.67'),(5782,1,'2018-12-26 10:41:56','202.74.241.236'),(5783,1,'2018-12-26 10:42:15','190.60.69.162'),(5784,1,'2018-12-26 10:42:33','140.227.198.242'),(5785,1,'2018-12-26 10:42:49','212.56.152.147'),(5786,1,'2018-12-26 10:43:59','88.250.65.90'),(5787,1,'2018-12-26 10:44:20','142.93.136.126'),(5788,1,'2018-12-26 10:44:39','52.179.5.76'),(5789,1,'2018-12-26 10:45:00','181.211.57.10'),(5790,1,'2018-12-26 10:45:22','194.224.188.82'),(5791,1,'2018-12-26 10:45:41','140.227.211.35'),(5792,1,'2018-12-26 10:46:03','1.10.186.100'),(5793,1,'2018-12-26 10:46:22','140.227.207.166'),(5794,1,'2018-12-26 10:46:41','185.28.19.174'),(5795,1,'2018-12-26 10:47:39','140.227.208.159'),(5796,1,'2018-12-26 10:48:02','178.128.173.108'),(5797,1,'2018-12-26 10:48:35','178.128.173.108'),(5798,1,'2018-12-26 10:48:54','62.73.127.10'),(5799,1,'2018-12-26 10:49:19','124.41.211.139'),(5800,1,'2018-12-26 10:49:55','163.172.81.119'),(5801,1,'2018-12-26 10:50:12','109.164.113.232'),(5802,1,'2018-12-26 10:50:47','163.172.81.119'),(5803,1,'2018-12-26 10:51:06','181.211.57.10'),(5804,1,'2018-12-26 10:51:25','217.6.96.147'),(5805,1,'2018-12-26 10:52:00','181.196.17.53'),(5806,1,'2018-12-26 10:52:20','142.44.240.173'),(5807,1,'2018-12-26 10:52:38','124.41.211.139'),(5808,1,'2018-12-26 10:53:36','109.164.113.232'),(5809,1,'2018-12-26 10:53:55','140.227.207.166'),(5810,1,'2018-12-26 10:54:26','185.60.88.95'),(5811,1,'2018-12-26 10:54:43','171.100.209.38'),(5812,1,'2018-12-26 10:55:00','103.218.240.182'),(5813,1,'2018-12-26 10:55:21','139.59.80.140'),(5814,1,'2018-12-26 10:55:40','176.62.188.97'),(5815,1,'2018-12-26 10:55:57','207.180.207.12'),(5816,1,'2018-12-26 10:56:14','64.140.135.179'),(5817,1,'2018-12-26 10:56:42','139.255.18.34'),(5818,1,'2018-12-26 10:57:00','185.22.172.94'),(5819,1,'2018-12-26 10:57:30','82.114.78.82'),(5820,1,'2018-12-26 10:57:50','211.24.105.86'),(5821,1,'2018-12-26 10:58:09','200.229.230.237'),(5822,1,'2018-12-26 10:58:25','94.242.55.108'),(5823,1,'2018-12-26 10:58:44','46.46.32.82'),(5824,1,'2018-12-26 10:59:01','140.227.211.35'),(5825,1,'2018-12-26 10:59:17','200.229.230.237'),(5826,1,'2018-12-26 10:59:36','114.33.59.156'),(5827,1,'2018-12-26 11:00:04','207.180.201.107'),(5828,1,'2018-12-26 11:00:21','140.227.210.165'),(5829,1,'2018-12-26 11:00:39','109.172.160.93'),(5830,1,'2018-12-26 11:01:01','202.131.248.94'),(5831,1,'2018-12-26 11:01:19','94.242.58.108'),(5832,1,'2018-12-26 11:01:37','112.175.72.12'),(5833,1,'2018-12-26 11:01:54','43.243.143.221'),(5834,1,'2018-12-26 11:02:38','132.248.54.127'),(5835,1,'2018-12-26 11:03:01','109.172.160.93'),(5836,1,'2018-12-26 11:03:22','103.209.131.3'),(5837,1,'2018-12-26 11:03:42','140.227.209.210'),(5838,1,'2018-12-26 11:04:01','213.247.192.131'),(5839,1,'2018-12-26 11:04:22','178.64.190.133'),(5840,1,'2018-12-26 11:04:57','185.28.250.173'),(5841,1,'2018-12-26 11:05:20','157.65.171.114'),(5842,1,'2018-12-26 11:05:38','124.41.211.139'),(5843,1,'2018-12-26 11:05:55','200.229.230.237'),(5844,1,'2018-12-26 11:06:12','212.56.152.147'),(5845,1,'2018-12-26 11:06:35','89.178.234.177'),(5846,1,'2018-12-26 11:06:53','84.53.238.49'),(5847,1,'2018-12-26 11:07:10','140.227.211.35'),(5848,1,'2018-12-26 11:07:28','84.42.202.253'),(5849,1,'2018-12-26 11:08:40','93.115.138.250'),(5850,1,'2018-12-26 11:09:02','176.62.188.97'),(5851,1,'2018-12-26 11:09:37','92.33.17.248'),(5852,1,'2018-12-26 11:09:57','81.163.57.46'),(5853,1,'2018-12-26 11:11:00','47.90.125.157'),(5854,1,'2018-12-26 11:11:28','81.163.57.46'),(5855,1,'2018-12-26 11:12:31','125.25.80.31'),(5856,1,'2018-12-26 11:12:58','125.25.80.31'),(5857,1,'2018-12-26 11:13:28','203.176.142.46'),(5858,1,'2018-12-26 11:13:52','92.33.17.248'),(5859,1,'2018-12-26 11:14:20','176.56.66.84'),(5860,1,'2018-12-26 11:14:43','110.74.193.235'),(5861,1,'2018-12-26 11:15:13','203.176.142.46'),(5862,1,'2018-12-26 11:15:33','92.33.17.248'),(5863,1,'2018-12-26 11:15:54','109.164.113.232'),(5864,1,'2018-12-26 11:16:58','125.25.80.31'),(5865,1,'2018-12-26 11:17:23','140.227.208.205'),(5866,1,'2018-12-26 11:17:45','194.224.188.82'),(5867,1,'2018-12-26 11:18:09','140.227.213.35'),(5868,1,'2018-12-26 11:18:38','159.192.104.169'),(5869,1,'2018-12-26 11:19:00','110.74.193.235'),(5870,1,'2018-12-26 11:19:18','109.164.113.232'),(5871,1,'2018-12-26 11:19:43','110.74.193.235'),(5872,1,'2018-12-26 11:20:01','123.200.23.46'),(5873,1,'2018-12-26 11:20:22','185.41.112.29'),(5874,1,'2018-12-26 11:20:37','83.169.38.236'),(5875,1,'2018-12-26 11:21:38','79.173.124.207'),(5876,1,'2018-12-26 11:22:01','203.176.142.46'),(5877,1,'2018-12-26 11:22:19','217.6.96.147'),(5878,1,'2018-12-26 11:22:37','35.224.248.29'),(5879,1,'2018-12-26 11:22:58','201.150.255.185'),(5880,1,'2018-12-26 11:23:13','83.169.38.236'),(5881,1,'2018-12-26 11:23:35','176.56.66.84'),(5882,1,'2018-12-26 11:24:18','175.126.192.99'),(5883,1,'2018-12-26 11:24:36','83.169.38.236'),(5884,1,'2018-12-26 11:24:59','203.176.142.46'),(5885,1,'2018-12-26 11:25:55','176.56.66.84'),(5886,1,'2018-12-26 11:26:41','217.6.96.147'),(5887,1,'2018-12-26 11:27:07','188.93.246.34'),(5888,1,'2018-12-26 11:27:37','109.164.113.232'),(5889,1,'2018-12-26 11:27:56','167.99.40.249'),(5890,1,'2019-01-10 14:36:58','27.254.81.96'),(5891,1,'2019-01-10 14:37:02','27.254.81.96'),(5892,1,'2019-01-10 19:30:32','77.81.165.49'),(5893,1,'2019-01-10 19:30:33','77.81.165.49'),(5894,1,'2019-01-10 21:46:31','192.99.5.123'),(5895,1,'2019-01-10 21:46:33','192.99.5.123'),(5896,1,'2019-01-10 23:15:23','68.171.211.178'),(5897,1,'2019-01-10 23:15:25','68.171.211.178'),(5898,1,'2019-01-11 00:45:24','182.50.132.82'),(5899,1,'2019-01-11 00:45:26','182.50.132.82'),(5900,1,'2019-01-11 03:31:31','212.47.228.121'),(5901,1,'2019-01-11 03:31:34','212.47.228.121'),(5902,1,'2019-01-11 04:51:18','50.116.121.27'),(5903,1,'2019-01-11 04:51:27','50.116.121.27'),(5904,1,'2019-01-11 06:07:10','47.88.216.10'),(5905,1,'2019-01-11 06:07:13','47.88.216.10'),(5906,1,'2019-01-11 07:17:26','160.153.154.169'),(5907,1,'2019-01-11 07:17:28','160.153.154.169'),(5908,1,'2019-01-11 08:24:37','128.199.47.31'),(5909,1,'2019-01-11 08:24:39','128.199.47.31'),(5910,1,'2019-01-11 09:28:17','213.251.182.107'),(5911,1,'2019-01-11 11:58:36','185.67.45.160'),(5912,1,'2019-01-11 11:58:40','185.67.45.160'),(5913,1,'2019-01-11 15:40:51','103.27.239.3'),(5914,1,'2019-01-11 15:40:54','103.27.239.3'),(5915,1,'2019-01-11 16:34:45','185.67.45.160'),(5916,1,'2019-01-11 16:34:47','185.67.45.160'),(5917,1,'2019-01-11 17:26:32','50.62.176.220'),(5918,1,'2019-01-11 17:26:34','50.62.176.220'),(5919,1,'2019-01-11 18:16:49','198.71.227.47'),(5920,1,'2019-01-11 19:06:18','93.125.99.17'),(5921,1,'2019-01-11 19:06:21','93.125.99.17'),(5922,1,'2019-01-11 19:50:46','188.120.230.6'),(5923,1,'2019-01-11 19:50:48','188.120.230.6'),(5924,1,'2019-01-11 20:34:32','148.72.232.62'),(5925,1,'2019-01-11 20:34:34','148.72.232.62'),(5926,1,'2019-01-13 00:51:26','199.188.200.86'),(5927,1,'2019-01-13 10:54:56','87.236.20.14'),(5928,1,'2019-01-13 10:54:59','87.236.20.14'),(5929,1,'2019-01-13 15:38:34','50.62.176.39'),(5930,1,'2019-01-13 19:17:03','198.71.227.145'),(5931,1,'2019-01-13 19:17:05','198.71.227.145'),(5932,1,'2019-01-13 22:31:01','159.89.176.26'),(5933,1,'2019-01-13 22:31:03','159.89.176.26'),(5934,1,'2019-01-13 22:31:07','46.252.205.154'),(5935,1,'2019-01-13 22:31:09','46.252.205.154'),(5936,1,'2019-01-13 22:31:10','198.71.227.145'),(5937,1,'2019-01-13 22:31:12','198.71.227.145'),(5938,1,'2019-01-14 01:27:21','148.72.232.30'),(5939,1,'2019-01-14 01:27:26','148.72.232.30'),(5940,1,'2019-01-14 04:14:32','148.72.232.39'),(5941,1,'2019-01-14 04:14:58','67.227.236.114'),(5942,1,'2019-01-14 06:59:33','148.72.232.62'),(5943,1,'2019-01-14 09:30:19','104.168.177.3'),(5944,1,'2019-01-14 11:56:27','104.168.177.3'),(5945,1,'2019-01-14 11:56:31','104.168.177.3'),(5946,1,'2019-01-14 15:48:18','198.1.73.228'),(5947,1,'2019-01-14 15:48:22','198.1.73.228'),(5948,1,'2019-01-14 19:41:40','198.50.184.66'),(5949,1,'2019-01-14 23:11:52','68.65.120.197'),(5950,1,'2019-01-14 23:11:54','68.65.120.197'),(5951,1,'2019-01-15 01:42:45','128.199.47.31'),(5952,1,'2019-01-15 01:42:45','164.132.160.230'),(5953,1,'2019-01-15 03:28:42','182.50.132.107'),(5954,1,'2019-01-15 03:28:45','182.50.132.107'),(5955,1,'2019-01-15 04:57:24','148.72.232.157'),(5956,1,'2019-01-15 04:57:32','148.72.232.157'),(5957,1,'2019-01-15 06:28:49','139.99.157.106'),(5958,1,'2019-01-15 07:56:04','81.88.49.11'),(5959,1,'2019-01-15 07:56:06','81.88.49.11'),(5960,1,'2019-01-15 10:40:49','123.31.41.31'),(5961,1,'2019-01-15 10:40:52','123.31.41.31'),(5962,1,'2019-01-15 14:24:45','195.178.106.24'),(5963,1,'2019-01-15 16:32:39','148.72.232.109'),(5964,1,'2019-01-15 16:32:41','148.72.232.109'),(5965,1,'2019-01-15 17:59:27','148.72.232.62'),(5966,1,'2019-01-15 17:59:30','148.72.232.62'),(5967,1,'2019-01-15 18:53:10','46.252.205.154'),(5968,1,'2019-01-15 18:53:12','46.252.205.154'),(5969,1,'2019-01-15 20:36:08','188.120.230.6'),(5970,1,'2019-01-15 21:24:09','148.72.232.64'),(5971,1,'2019-01-15 22:10:52','50.62.177.139'),(5972,1,'2019-01-15 23:31:09','77.81.165.49'),(5973,1,'2019-01-16 00:10:58','182.50.151.70'),(5974,1,'2019-01-16 00:11:00','182.50.151.70'),(5975,1,'2019-01-16 01:31:59','128.199.47.31'),(5976,1,'2019-01-16 01:32:01','128.199.47.31'),(5977,1,'2019-01-16 02:15:10','5.189.134.138'),(5978,1,'2019-01-16 02:15:14','5.189.134.138'),(5979,1,'2019-01-16 02:51:17','107.180.121.39'),(5980,1,'2019-01-16 02:51:17','173.230.252.250'),(5981,1,'2019-01-16 02:51:19','107.180.121.39'),(5982,1,'2019-01-16 02:51:19','173.230.252.250'),(5983,1,'2019-01-16 03:29:03','182.50.135.85'),(5984,1,'2019-01-16 04:02:55','192.169.232.130'),(5985,1,'2019-01-16 04:03:00','192.169.232.130'),(5986,1,'2019-01-16 04:38:03','104.238.93.163'),(5987,1,'2019-01-19 13:04:35','5.55.219.82'),(5988,1,'2019-01-19 13:04:51','82.97.201.203'),(5989,1,'2019-01-19 13:05:03','103.15.51.160'),(5990,1,'2019-01-19 13:05:22','185.214.144.161'),(5991,1,'2019-01-19 13:05:45','14.207.72.213'),(5992,1,'2019-01-19 13:06:01','27.123.1.46'),(5993,1,'2019-01-19 13:06:16','89.17.37.218'),(5994,1,'2019-01-19 13:06:44','182.54.160.233'),(5995,1,'2019-01-19 13:07:05','109.201.96.171'),(5996,1,'2019-01-19 13:07:22','109.201.96.171'),(5997,1,'2019-01-19 13:08:04','103.48.207.70'),(5998,1,'2019-01-19 13:09:20','182.160.127.53'),(5999,1,'2019-01-19 13:09:33','50.236.148.254'),(6000,1,'2019-01-19 13:10:58','85.12.193.210'),(6001,1,'2019-01-19 13:11:12','103.15.51.160'),(6002,1,'2019-01-19 13:11:23','188.94.228.94'),(6003,1,'2019-01-19 13:11:38','51.255.28.62'),(6004,1,'2019-01-19 13:11:52','140.227.209.210'),(6005,1,'2019-01-19 13:12:50','89.165.218.82'),(6006,1,'2019-01-19 13:13:12','194.15.36.131'),(6007,1,'2019-01-19 13:13:24','85.187.17.39'),(6008,1,'2019-01-19 13:13:38','178.128.208.74'),(6009,1,'2019-01-19 13:13:49','95.0.235.61'),(6010,1,'2019-01-19 13:14:01','95.0.235.61'),(6011,1,'2019-01-19 13:14:19','104.248.166.0'),(6012,1,'2019-01-19 13:14:33','104.248.166.0'),(6013,1,'2019-01-19 13:14:49','104.248.166.0'),(6014,1,'2019-01-19 13:15:20','172.83.138.45'),(6015,1,'2019-01-19 13:15:36','200.127.220.21'),(6016,1,'2019-01-19 13:15:50','178.128.92.137'),(6017,1,'2019-01-19 13:16:05','178.128.92.137'),(6018,1,'2019-01-19 13:16:19','95.0.235.61'),(6019,1,'2019-01-19 13:16:32','95.154.82.254'),(6020,1,'2019-01-19 13:16:49','140.227.213.209'),(6021,1,'2019-01-19 13:18:03','91.122.207.229'),(6022,1,'2019-01-19 13:18:39','182.52.87.167'),(6023,1,'2019-01-19 13:18:50','89.40.120.155'),(6024,1,'2019-01-19 13:19:36','61.5.192.14'),(6025,1,'2019-01-19 13:19:54','103.206.253.58'),(6026,1,'2019-01-19 13:20:08','103.83.7.50'),(6027,1,'2019-01-19 13:20:52','157.230.11.107'),(6028,1,'2019-01-19 13:21:09','140.227.213.209'),(6029,1,'2019-01-19 13:21:58','153.146.163.197'),(6030,1,'2019-01-19 13:22:13','217.73.133.102'),(6031,1,'2019-01-19 13:22:29','213.215.152.222'),(6032,1,'2019-01-19 13:22:45','36.89.189.239'),(6033,1,'2019-01-19 13:23:13','93.152.159.129'),(6034,1,'2019-01-19 13:23:36','113.161.128.102'),(6035,1,'2019-01-19 13:23:52','182.53.206.43'),(6036,1,'2019-01-19 13:24:15','195.133.232.58'),(6037,1,'2019-01-19 13:24:30','85.93.154.150'),(6038,1,'2019-01-19 13:24:44','89.165.218.82'),(6039,1,'2019-01-19 13:25:01','103.206.253.58'),(6040,1,'2019-01-19 13:25:14','195.133.232.58'),(6041,1,'2019-01-19 13:25:28','188.130.240.221'),(6042,1,'2019-01-19 13:25:45','188.130.240.221'),(6043,1,'2019-01-19 13:25:59','89.40.120.155'),(6044,1,'2019-01-19 13:26:41','176.62.188.158'),(6045,1,'2019-01-19 13:26:57','88.204.59.177'),(6046,1,'2019-01-19 13:27:10','83.97.108.8'),(6047,1,'2019-01-19 13:27:22','40.81.125.0'),(6048,1,'2019-01-19 13:27:39','196.214.175.163'),(6049,1,'2019-01-19 13:28:05','70.35.213.229'),(6050,1,'2019-01-19 13:28:22','203.201.174.82'),(6051,1,'2019-01-19 13:28:49','140.227.210.205'),(6052,1,'2019-01-19 13:29:02','138.197.182.151'),(6053,1,'2019-01-19 13:29:17','186.232.44.50'),(6054,1,'2019-01-19 13:29:32','77.232.137.35'),(6055,1,'2019-01-19 13:29:45','153.146.163.197'),(6056,1,'2019-01-19 13:29:57','51.38.71.101'),(6057,1,'2019-01-19 13:30:21','176.98.75.143'),(6058,1,'2019-01-19 13:30:33','86.101.208.251'),(6059,1,'2019-01-19 13:30:49','140.227.209.210'),(6060,1,'2019-01-19 13:31:32','118.174.64.70'),(6061,1,'2019-01-19 13:31:45','211.24.105.86'),(6062,1,'2019-01-19 13:32:00','178.128.92.137'),(6063,1,'2019-01-19 13:32:13','95.170.130.46'),(6064,1,'2019-01-19 13:32:25','176.62.188.158'),(6065,1,'2019-01-19 13:32:41','140.227.210.205'),(6066,1,'2019-01-19 13:32:54','183.88.214.47'),(6067,1,'2019-01-19 13:33:11','85.93.154.150'),(6068,1,'2019-01-19 13:33:42','140.227.210.205'),(6069,1,'2019-01-19 13:33:58','85.235.190.18'),(6070,1,'2019-01-19 13:34:10','182.253.122.124'),(6071,1,'2019-01-19 13:34:53','36.2.44.202'),(6072,1,'2019-01-19 13:35:07','217.73.133.102'),(6073,1,'2019-01-19 13:35:18','186.232.44.50'),(6074,1,'2019-01-19 13:35:29','93.91.112.247'),(6075,1,'2019-01-19 13:35:44','95.154.82.254'),(6076,1,'2019-01-19 13:36:08','85.172.31.239'),(6077,1,'2019-01-19 13:36:24','83.97.108.8'),(6078,1,'2019-01-19 13:36:38','95.154.82.254'),(6079,1,'2019-01-19 13:36:54','91.144.142.19'),(6080,1,'2019-01-19 13:37:06','1.10.186.100'),(6081,1,'2019-01-19 13:37:29','36.2.44.202'),(6082,1,'2019-01-19 13:37:41','220.130.172.122'),(6083,1,'2019-01-19 13:38:40','89.102.198.78'),(6084,1,'2019-01-19 13:38:53','95.170.208.42'),(6085,1,'2019-01-19 13:39:34','31.145.137.139'),(6086,1,'2019-01-19 13:39:45','89.165.218.82'),(6087,1,'2019-01-19 13:40:34','96.87.184.101'),(6088,1,'2019-01-19 13:40:47','95.170.208.42'),(6089,1,'2019-01-19 13:40:59','62.74.247.90'),(6090,1,'2019-01-19 13:41:16','103.206.253.58'),(6091,1,'2019-01-19 13:41:30','220.130.172.122'),(6092,1,'2019-01-19 13:41:42','87.249.21.193'),(6093,1,'2019-01-19 13:42:01','130.255.137.53'),(6094,1,'2019-01-19 13:42:12','35.185.201.225'),(6095,1,'2019-01-19 13:42:43','89.40.120.155'),(6096,1,'2019-01-19 13:42:54','92.39.56.3'),(6097,1,'2019-01-19 13:43:13','211.24.105.86'),(6098,1,'2019-01-19 13:43:24','185.22.174.69'),(6099,1,'2019-01-19 13:43:39','188.113.182.71'),(6100,1,'2019-01-19 13:43:53','79.173.124.194'),(6101,1,'2019-01-19 13:44:04','178.128.92.137'),(6102,1,'2019-01-19 13:44:20','103.15.51.160'),(6103,1,'2019-01-19 13:44:33','36.2.44.202'),(6104,1,'2019-01-19 13:44:45','213.234.24.150'),(6105,1,'2019-01-19 13:45:01','95.170.208.42'),(6106,1,'2019-01-19 13:45:13','1.10.186.100'),(6107,1,'2019-01-19 13:45:29','88.2.42.95'),(6108,1,'2019-01-19 13:45:44','94.242.59.245'),(6109,1,'2019-01-19 13:45:55','89.165.218.82'),(6110,1,'2019-01-19 13:46:32','176.118.55.245'),(6111,1,'2019-01-19 13:47:02','62.210.73.38'),(6112,1,'2019-01-19 13:47:44','118.174.196.174'),(6113,1,'2019-01-19 13:47:54','5.19.165.235'),(6114,1,'2019-01-19 13:48:11','46.29.195.210'),(6115,1,'2019-01-19 13:48:28','116.90.236.126'),(6116,1,'2019-01-19 13:48:41','46.29.195.210'),(6117,1,'2019-01-19 13:48:54','46.29.195.210'),(6118,1,'2019-01-19 13:49:07','70.35.213.229'),(6119,1,'2019-01-19 13:49:22','5.19.165.235'),(6120,1,'2019-01-19 13:49:35','110.49.69.66'),(6121,1,'2019-01-19 13:49:48','110.49.69.66'),(6122,1,'2019-01-19 13:50:11','162.255.170.2'),(6123,1,'2019-01-19 13:50:26','190.210.244.87'),(6124,1,'2019-01-19 13:50:41','167.99.159.230'),(6125,1,'2019-01-19 13:50:56','201.183.232.196'),(6126,1,'2019-01-19 13:51:38','182.253.122.22'),(6127,1,'2019-01-19 13:52:00','89.203.205.253'),(6128,1,'2019-01-19 13:52:12','70.35.213.229'),(6129,1,'2019-01-19 13:53:00','180.210.205.198'),(6130,1,'2019-01-19 13:53:45','118.174.196.174'),(6131,1,'2019-01-19 13:53:58','58.26.10.67'),(6132,1,'2019-01-19 13:54:18','104.248.220.253'),(6133,1,'2019-01-19 13:54:33','103.48.207.70'),(6134,1,'2019-01-19 13:54:47','182.53.96.237'),(6135,1,'2019-01-19 13:54:58','49.49.64.147'),(6136,1,'2019-01-19 13:55:25','77.43.252.65'),(6137,1,'2019-01-19 13:55:37','185.146.112.38'),(6138,1,'2019-01-19 13:55:51','180.250.45.27'),(6139,1,'2019-01-19 13:56:25','113.161.128.102'),(6140,1,'2019-01-19 13:56:48','189.195.132.86'),(6141,1,'2019-01-19 13:57:06','182.53.96.237'),(6142,1,'2019-01-19 13:57:21','124.41.211.119'),(6143,1,'2019-01-19 13:57:37','5.228.22.190'),(6144,1,'2019-01-19 13:57:49','128.127.98.59'),(6145,1,'2019-01-19 13:58:30','78.107.250.144'),(6146,1,'2019-01-19 13:58:41','70.35.213.229'),(6147,1,'2019-01-19 13:58:56','185.86.150.82'),(6148,1,'2019-01-19 13:59:10','212.25.44.96'),(6149,1,'2019-01-19 13:59:23','117.103.69.130'),(6150,1,'2019-01-19 13:59:37','85.93.154.150'),(6151,1,'2019-01-19 14:00:19','95.154.82.254'),(6152,1,'2019-01-19 14:01:12','62.210.73.38'),(6153,1,'2019-01-19 14:01:38','190.210.244.87'),(6154,1,'2019-01-19 14:01:48','185.86.150.82'),(6155,1,'2019-01-19 14:02:03','118.174.64.70'),(6156,1,'2019-01-19 14:02:25','113.161.128.102'),(6157,1,'2019-01-19 14:02:39','140.227.202.209'),(6158,1,'2019-01-19 14:02:50','211.24.105.86'),(6159,1,'2019-01-19 14:03:03','162.255.170.2'),(6160,1,'2019-01-19 14:03:16','109.201.96.171'),(6161,1,'2019-01-19 14:03:27','167.99.159.230'),(6162,1,'2019-01-19 14:03:38','109.60.137.186'),(6163,1,'2019-01-19 14:03:52','119.82.252.30'),(6164,1,'2019-01-19 14:04:03','158.255.51.213'),(6165,1,'2019-01-19 14:04:13','46.17.120.217'),(6166,1,'2019-01-19 14:04:29','37.228.65.107'),(6167,1,'2019-01-19 14:04:39','86.110.30.146'),(6168,1,'2019-01-19 14:05:05','5.35.93.157'),(6169,1,'2019-01-19 14:05:20','24.172.82.94'),(6170,1,'2019-01-19 14:06:05','180.210.205.198'),(6171,1,'2019-01-19 14:06:19','185.14.250.131'),(6172,1,'2019-01-19 14:06:42','103.47.175.101'),(6173,1,'2019-01-19 14:06:53','125.25.80.76'),(6174,1,'2019-01-19 14:07:03','110.164.87.80'),(6175,1,'2019-01-19 14:07:17','95.170.130.46'),(6176,1,'2019-01-19 14:07:40','110.74.221.90'),(6177,1,'2019-01-19 14:07:53','87.103.204.13'),(6178,1,'2019-01-19 14:08:03','206.189.244.133'),(6179,1,'2019-01-19 14:08:13','211.24.105.86'),(6180,1,'2019-01-19 14:08:25','5.189.172.203'),(6181,1,'2019-01-19 14:08:37','178.219.171.43'),(6182,1,'2019-01-19 14:08:50','43.242.242.196'),(6183,1,'2019-01-19 14:09:23','77.232.167.200'),(6184,1,'2019-01-19 14:09:33','5.19.165.235'),(6185,1,'2019-01-19 14:10:01','202.146.0.219'),(6186,1,'2019-01-19 14:10:13','180.180.218.204'),(6187,1,'2019-01-19 14:10:25','105.235.205.82'),(6188,1,'2019-01-19 14:10:50','140.227.202.209'),(6189,1,'2019-01-19 14:11:02','70.35.213.229'),(6190,1,'2019-01-19 14:11:11','151.3.53.246'),(6191,1,'2019-01-19 14:11:23','86.110.30.146'),(6192,1,'2019-01-19 14:11:34','186.208.220.248'),(6193,1,'2019-01-19 14:11:44','185.22.174.65'),(6194,1,'2019-01-19 14:11:58','128.127.98.59'),(6195,1,'2019-01-19 14:12:12','103.218.240.182'),(6196,1,'2019-01-19 14:12:52','183.88.214.47'),(6197,1,'2019-01-19 14:13:03','85.93.154.150'),(6198,1,'2019-01-19 14:13:18','1.10.186.100'),(6199,1,'2019-01-19 14:13:28','104.248.74.241'),(6200,1,'2019-01-19 14:13:38','80.72.69.155'),(6201,1,'2019-01-19 14:13:53','186.96.255.244'),(6202,1,'2019-01-19 14:14:04','109.60.137.186'),(6203,1,'2019-01-19 14:14:14','200.127.220.21'),(6204,1,'2019-01-19 14:14:26','91.187.93.147'),(6205,1,'2019-01-19 14:14:46','188.168.75.254'),(6206,1,'2019-01-19 14:15:29','190.210.244.87'),(6207,1,'2019-01-19 14:15:43','92.47.148.10'),(6208,1,'2019-01-19 14:16:25','212.22.80.224'),(6209,1,'2019-01-19 14:16:37','95.181.130.149'),(6210,1,'2019-01-19 14:16:54','172.83.138.45'),(6211,1,'2019-01-19 14:17:14','219.120.3.219'),(6212,1,'2019-01-19 14:17:26','138.197.182.151'),(6213,1,'2019-01-19 14:17:36','79.173.124.194'),(6214,1,'2019-01-19 14:17:47','176.62.188.158'),(6215,1,'2019-01-19 14:18:00','176.62.188.158'),(6216,1,'2019-01-19 14:18:21','210.2.153.149'),(6217,1,'2019-01-19 14:19:02','178.128.223.53'),(6218,1,'2019-01-19 14:19:17','183.88.214.47'),(6219,1,'2019-01-19 14:19:34','210.2.153.149'),(6220,1,'2019-01-19 14:20:02','160.119.128.202'),(6221,1,'2019-01-19 14:20:13','14.207.72.213'),(6222,1,'2019-01-19 14:20:25','176.62.188.158'),(6223,1,'2019-01-19 14:20:34','138.197.182.151'),(6224,1,'2019-01-19 14:20:45','167.99.79.1'),(6225,1,'2019-01-19 14:21:16','79.173.124.194'),(6226,1,'2019-01-19 14:22:19','113.161.128.102'),(6227,1,'2019-01-19 14:22:36','118.174.234.13'),(6228,1,'2019-01-19 14:22:55','122.116.211.55'),(6229,1,'2019-01-19 14:23:42','167.99.79.1'),(6230,1,'2019-01-19 14:23:54','177.84.120.202'),(6231,1,'2019-01-19 14:24:09','158.255.51.213'),(6232,1,'2019-01-19 14:24:30','46.232.143.253'),(6233,1,'2019-01-19 14:25:27','178.128.223.53'),(6234,1,'2019-01-19 14:25:40','177.84.120.202'),(6235,1,'2019-01-19 14:25:56','43.239.75.206'),(6236,1,'2019-01-19 14:26:10','182.53.96.237'),(6237,1,'2019-01-19 14:26:52','114.141.229.2'),(6238,1,'2019-01-19 14:27:08','118.174.234.13'),(6239,1,'2019-01-19 14:27:24','95.181.130.149'),(6240,1,'2019-01-19 14:28:05','152.0.243.97'),(6241,1,'2019-01-19 14:28:20','79.121.37.202'),(6242,1,'2019-01-19 14:28:41','43.242.242.196'),(6243,1,'2019-01-19 14:28:52','94.73.217.125'),(6244,1,'2019-01-19 14:29:07','178.128.92.137'),(6245,1,'2019-01-19 14:30:09','167.99.79.1'),(6246,1,'2019-01-19 14:30:22','91.222.167.213'),(6247,1,'2019-01-19 14:30:44','40.83.212.119'),(6248,1,'2019-01-19 14:30:59','120.29.125.97'),(6249,1,'2019-01-19 14:31:11','195.133.232.58'),(6250,1,'2019-01-19 14:31:25','124.41.211.119'),(6251,1,'2019-01-19 14:31:52','113.161.128.102'),(6252,1,'2019-01-19 14:32:05','40.81.125.0'),(6253,1,'2019-01-19 14:32:17','178.140.8.221'),(6254,1,'2019-01-19 14:32:30','189.124.195.185'),(6255,1,'2019-01-19 14:32:56','182.53.96.237'),(6256,1,'2019-01-19 14:33:14','46.101.167.43'),(6257,1,'2019-01-19 14:33:31','86.101.208.251'),(6258,1,'2019-01-19 14:33:44','96.9.72.241'),(6259,1,'2019-01-19 14:33:58','40.81.125.0'),(6260,1,'2019-01-19 14:34:10','176.118.55.245'),(6261,1,'2019-01-19 14:34:22','177.84.120.202'),(6262,1,'2019-01-19 14:35:09','92.247.2.26'),(6263,1,'2019-01-19 14:35:22','103.122.66.187'),(6264,1,'2019-01-19 14:36:28','167.99.79.1'),(6265,1,'2019-01-19 14:37:11','66.96.233.225'),(6266,1,'2019-01-19 14:38:08','122.154.151.52'),(6267,1,'2019-01-19 14:38:21','201.71.34.1'),(6268,1,'2019-01-19 14:38:35','86.122.192.171'),(6269,1,'2019-01-19 14:38:50','94.73.217.125'),(6270,1,'2019-01-19 14:39:00','31.41.68.79'),(6271,1,'2019-01-19 14:39:13','88.198.204.136'),(6272,1,'2019-01-19 14:39:36','85.130.31.204'),(6273,1,'2019-01-19 14:39:52','89.17.37.218'),(6274,1,'2019-01-19 14:40:03','185.22.174.65'),(6275,1,'2019-01-19 14:40:15','118.174.234.13'),(6276,1,'2019-01-19 14:40:59','176.120.200.69'),(6277,1,'2019-01-19 14:41:18','119.15.91.137'),(6278,1,'2019-01-19 14:41:33','185.79.243.137'),(6279,1,'2019-01-19 14:41:45','94.73.217.125'),(6280,1,'2019-01-19 14:41:55','109.60.140.47'),(6281,1,'2019-01-19 14:42:39','124.41.243.31'),(6282,1,'2019-01-19 14:42:49','203.189.143.201'),(6283,1,'2019-01-19 14:43:02','81.163.59.50'),(6284,1,'2019-01-19 14:43:14','176.197.103.210'),(6285,1,'2019-01-19 14:43:25','47.89.29.195'),(6286,1,'2019-01-19 14:43:35','91.222.167.213'),(6287,1,'2019-01-19 14:43:48','105.235.205.82'),(6288,1,'2019-01-19 14:43:58','81.200.63.108'),(6289,1,'2019-01-19 14:44:06','103.15.51.160'),(6290,1,'2019-01-19 14:44:20','188.187.62.10'),(6291,1,'2019-01-19 14:44:34','203.142.68.138'),(6292,1,'2019-01-19 14:44:45','176.62.182.29'),(6293,1,'2019-01-19 14:44:54','86.122.192.171'),(6294,1,'2019-01-19 14:45:30','188.68.95.166'),(6295,1,'2019-01-19 14:45:42','219.87.155.40'),(6296,1,'2019-01-19 14:46:02','219.87.155.40'),(6297,1,'2019-01-19 14:46:13','88.200.225.32'),(6298,1,'2019-01-19 14:46:32','197.210.129.142'),(6299,1,'2019-01-19 14:47:33','186.96.255.244'),(6300,1,'2019-01-19 14:47:42','36.91.133.63'),(6301,1,'2019-01-19 14:47:54','36.91.133.63'),(6302,1,'2019-01-19 14:48:03','110.44.126.132'),(6303,1,'2019-01-19 14:48:23','203.99.110.214'),(6304,1,'2019-01-19 14:48:33','110.44.126.132'),(6305,1,'2019-01-19 14:48:44','96.9.72.241'),(6306,1,'2019-01-19 14:48:58','187.45.106.176'),(6307,1,'2019-01-19 14:49:06','83.219.1.201'),(6308,1,'2019-01-19 14:49:55','115.75.20.89'),(6309,1,'2019-01-19 14:50:13','80.87.184.49'),(6310,1,'2019-01-19 14:50:22','125.26.99.208'),(6311,1,'2019-01-19 14:50:36','212.22.80.224'),(6312,1,'2019-01-19 14:50:46','36.91.133.63'),(6313,1,'2019-01-19 14:51:00','203.201.174.82'),(6314,1,'2019-01-19 14:51:28','103.76.151.179'),(6315,1,'2019-02-18 05:48:32','144.48.241.192'),(6316,1,'2019-02-18 05:48:34','144.48.241.192'),(6317,1,'2019-02-18 05:48:36','144.48.241.192'),(6318,1,'2019-03-19 16:27:40','104.155.105.44'),(6319,1,'2019-03-19 19:39:28','103.56.112.223'),(6320,1,'2019-03-19 19:39:29','103.56.112.223'),(6321,1,'2019-03-19 19:39:30','103.56.112.223'),(6322,1,'2019-03-19 20:02:18','195.201.87.175'),(6323,1,'2019-03-20 00:16:00','176.9.1.178'),(6324,1,'2019-03-20 04:51:34','103.28.36.185'),(6325,1,'2019-03-20 10:19:35','149.28.64.182'),(6326,1,'2019-03-20 16:33:30','153.92.9.1'),(6327,1,'2019-03-20 23:48:14','184.154.46.66'),(6328,1,'2019-03-21 04:44:25','52.64.106.232'),(6329,1,'2019-03-21 10:12:05','5.134.8.83'),(6330,1,'2019-03-21 15:09:52','67.217.34.68'),(6331,1,'2019-03-21 21:05:36','163.172.73.240'),(6332,1,'2019-03-22 02:39:32','199.79.62.18'),(6333,1,'2019-03-22 09:05:04','112.74.92.79'),(6334,1,'2019-03-22 15:08:28','134.119.45.154'),(6335,1,'2019-03-22 21:31:06','134.0.10.153'),(6336,1,'2019-03-23 04:44:56','104.254.213.194'),(6337,1,'2019-03-23 12:18:07','116.206.104.141'),(6338,1,'2019-03-23 19:15:31','212.129.10.52'),(6339,1,'2019-03-24 03:11:20','83.166.156.82'),(6340,1,'2019-03-24 12:34:25','84.16.67.102'),(6341,1,'2019-03-25 00:02:58','80.74.158.150'),(6342,1,'2019-03-26 03:49:09','185.2.4.75'),(6343,1,'2019-03-26 14:30:37','178.216.249.91'),(6344,1,'2019-03-26 17:21:25','179.188.51.133'),(6345,1,'2019-03-26 20:33:51','93.188.2.5'),(6346,1,'2019-03-27 00:14:16','182.50.132.92'),(6347,1,'2019-03-27 04:13:17','109.234.157.62'),(6348,1,'2019-03-27 08:41:10','108.170.9.250'),(6349,1,'2019-03-27 13:38:13','5.134.116.189'),(6350,1,'2019-03-27 18:52:24','132.148.223.83'),(6351,1,'2019-03-28 01:06:32','46.28.106.70'),(6352,1,'2019-03-28 04:28:32','104.238.145.234'),(6353,1,'2019-03-28 08:20:37','148.251.160.219'),(6354,1,'2019-03-28 12:36:58','50.62.176.227'),(6355,1,'2019-03-28 17:26:30','148.72.232.132'),(6356,1,'2019-03-28 23:27:58','47.52.136.196'),(6357,1,'2019-03-29 08:37:06','47.52.136.196'),(6358,1,'2019-03-29 20:28:22','185.104.29.68'),(6359,1,'2019-03-30 10:20:31','104.152.168.15'),(6360,1,'2019-03-31 17:38:53','103.15.226.181'),(6361,1,'2019-03-31 19:57:08','50.62.177.56'),(6362,1,'2019-03-31 22:45:04','156.67.212.154'),(6363,1,'2019-04-01 01:45:32','182.50.135.36'),(6364,1,'2019-04-01 05:05:41','198.143.186.137'),(6365,1,'2019-04-01 09:01:18','184.168.200.143'),(6366,1,'2019-04-01 11:50:26','198.71.224.90'),(6367,1,'2019-04-01 15:16:17','185.224.138.9'),(6368,1,'2019-04-01 19:08:20','198.20.110.106'),(6369,1,'2019-04-01 22:26:55','148.72.200.65'),(6370,1,'2019-04-02 01:54:18','182.50.132.88'),(6371,1,'2019-04-02 05:44:07','198.71.241.9'),(6372,1,'2019-04-02 10:06:20','153.92.6.54'),(6373,1,'2019-04-02 13:52:58','182.50.135.85'),(6374,1,'2019-04-02 17:44:29','198.71.226.23'),(6375,1,'2019-04-02 21:34:35','198.71.226.58'),(6376,1,'2019-04-03 01:24:20','103.50.162.147'),(6377,1,'2019-04-03 05:49:12','50.62.176.179'),(6378,1,'2019-04-03 11:02:23','148.66.147.26'),(6379,1,'2019-04-03 17:17:56','27.0.15.175'),(6380,1,'2019-04-03 23:20:38','50.62.176.16'),(6381,1,'2019-04-04 04:45:19','195.201.244.228'),(6382,1,'2019-04-04 12:21:59','148.66.145.166'),(6383,1,'2019-04-04 22:07:01','153.92.6.71'),(6384,1,'2019-04-05 11:06:49','192.145.239.28'),(6385,1,'2019-04-06 06:44:07','182.50.135.85'),(6386,1,'2019-05-06 21:44:45','103.15.217.121'),(6387,1,'2019-05-06 21:44:48','103.15.217.121'),(6388,1,'2019-05-06 23:06:12','187.110.226.96'),(6389,1,'2019-05-06 23:06:16','187.110.226.96'),(6390,1,'2019-05-07 00:08:45','195.74.38.117'),(6391,1,'2019-05-07 00:08:47','195.74.38.117'),(6392,1,'2019-05-07 00:11:07','103.8.25.104'),(6393,1,'2019-05-07 00:11:10','103.8.25.104'),(6394,1,'2019-05-07 01:07:29','188.120.230.6'),(6395,1,'2019-05-07 01:07:31','188.120.230.6'),(6396,1,'2019-05-07 02:08:47','194.154.20.35'),(6397,1,'2019-05-07 02:08:51','194.154.20.35'),(6398,1,'2019-05-07 03:02:09','119.59.97.123'),(6399,1,'2019-05-07 19:26:29','35.244.105.95'),(6400,1,'2019-05-07 19:26:32','35.244.105.95'),(6401,1,'2019-05-07 21:05:26','149.202.161.210'),(6402,1,'2019-05-07 21:05:28','149.202.161.210'),(6403,1,'2019-05-07 22:52:08','81.88.49.14'),(6404,1,'2019-05-07 22:52:11','81.88.49.14'),(6405,1,'2019-05-07 23:21:14','67.23.238.178'),(6406,1,'2019-05-07 23:21:16','67.23.238.178'),(6407,1,'2019-05-07 23:51:36','68.66.224.18'),(6408,1,'2019-05-07 23:51:39','68.66.224.18'),(6409,1,'2019-05-08 00:49:20','206.189.94.211'),(6410,1,'2019-05-08 00:49:25','206.189.94.211'),(6411,1,'2019-05-08 01:40:49','92.222.167.201'),(6412,1,'2019-05-08 02:25:23','5.189.174.76'),(6413,1,'2019-05-08 02:25:28','5.189.174.76'),(6414,1,'2019-05-08 03:11:19','94.130.119.20'),(6415,1,'2019-05-08 03:11:28','94.130.119.20'),(6416,1,'2019-05-08 04:37:40','27.254.81.83'),(6417,1,'2019-05-08 04:37:42','27.254.81.83'),(6418,1,'2019-05-08 05:22:20','93.125.99.123'),(6419,1,'2019-05-08 05:22:22','93.125.99.123'),(6420,1,'2019-05-08 06:04:36','185.11.180.242'),(6421,1,'2019-05-08 06:45:05','141.8.195.92'),(6422,1,'2019-05-08 06:45:07','141.8.195.92'),(6423,1,'2019-05-08 07:46:45','139.255.26.58'),(6424,1,'2019-05-08 07:46:47','139.255.26.58'),(6425,1,'2019-05-08 08:24:04','192.145.239.17'),(6426,1,'2019-05-08 08:24:06','192.145.239.17'),(6427,1,'2019-05-08 08:57:58','80.212.235.171'),(6428,1,'2019-05-08 08:58:00','80.212.235.171'),(6429,1,'2019-05-08 10:08:30','159.89.176.26'),(6430,1,'2019-05-08 10:08:34','5.196.52.42'),(6431,1,'2019-05-08 10:08:37','92.222.168.130'),(6432,1,'2019-05-08 10:43:04','119.59.97.123'),(6433,1,'2019-05-08 10:43:06','119.59.97.123'),(6434,1,'2019-05-08 11:17:36','101.99.73.233'),(6435,1,'2019-05-08 11:17:38','112.78.2.233'),(6436,1,'2019-05-08 11:55:41','68.66.200.199'),(6437,1,'2019-05-08 11:55:44','68.66.200.199'),(6438,1,'2019-05-08 12:31:25','176.28.118.42'),(6439,1,'2019-05-08 12:31:27','176.28.118.42'),(6440,1,'2019-05-08 13:08:06','91.189.172.23'),(6441,1,'2019-05-08 13:08:09','91.189.172.23'),(6442,1,'2019-05-08 13:50:23','164.132.160.230'),(6443,1,'2019-05-08 14:31:33','141.8.195.92'),(6444,1,'2019-05-08 15:18:13','185.28.62.8'),(6445,1,'2019-05-08 15:55:53','92.222.168.130'),(6446,1,'2019-05-08 15:55:56','92.222.168.130'),(6447,1,'2019-05-08 16:35:59','164.132.160.230'),(6448,1,'2019-05-08 16:36:01','164.132.160.230'),(6449,1,'2019-05-08 18:01:07','123.30.191.186'),(6450,1,'2019-05-08 18:42:33','138.197.65.185'),(6451,1,'2019-05-08 18:42:35','138.197.65.185'),(6452,1,'2019-05-08 19:26:16','213.251.182.103'),(6453,1,'2019-05-08 19:26:20','5.61.30.19'),(6454,1,'2019-05-08 20:34:30','203.13.68.190'),(6455,1,'2019-05-08 20:34:33','203.13.68.190'),(6456,1,'2019-05-08 21:29:27','51.38.42.39'),(6457,1,'2019-05-08 21:29:29','51.38.42.39'),(6458,1,'2019-05-08 22:11:29','46.17.46.174'),(6459,1,'2019-05-08 23:16:50','85.214.143.63'),(6460,1,'2019-05-08 23:16:52','85.214.143.63'),(6461,1,'2019-05-08 23:56:28','192.99.5.123'),(6462,1,'2019-05-08 23:56:30','192.99.5.123'),(6463,1,'2019-05-09 02:05:50','185.2.4.121'),(6464,1,'2019-05-09 03:34:31','171.244.142.202'),(6465,1,'2019-05-09 03:34:35','171.244.142.202'),(6466,1,'2019-05-09 04:08:17','37.46.135.181'),(6467,1,'2019-05-09 04:08:19','37.46.135.181'),(6468,1,'2019-05-09 05:49:14','198.71.228.8'),(6469,1,'2019-05-09 06:32:23','27.254.81.83'),(6470,1,'2019-05-09 07:10:01','47.190.19.75'),(6471,1,'2019-05-09 07:10:21','103.227.176.23'),(6472,1,'2019-05-09 07:47:54','112.196.37.245'),(6473,1,'2019-05-09 07:47:55','112.196.37.245'),(6474,1,'2019-05-09 08:26:13','67.227.236.114'),(6475,1,'2019-05-09 08:26:15','67.227.236.114'),(6476,1,'2019-05-09 09:02:01','173.198.242.82'),(6477,1,'2019-05-09 09:02:03','173.198.242.82'),(6478,1,'2019-05-09 09:35:50','157.181.151.155'),(6479,1,'2019-05-09 09:36:29','159.89.176.26'),(6480,1,'2019-05-09 10:14:46','103.101.160.35'),(6481,1,'2019-05-09 10:14:49','103.101.160.35'),(6482,1,'2019-05-09 10:47:13','207.246.240.106'),(6483,1,'2019-05-09 10:47:14','93.125.99.118'),(6484,1,'2019-05-09 10:47:27','96.125.164.243'),(6485,1,'2019-05-09 10:47:52','68.66.200.199'),(6486,1,'2019-05-09 10:52:00','43.229.60.51'),(6487,1,'2019-05-14 00:50:53','67.23.239.142'),(6488,1,'2019-05-14 02:50:57','89.46.107.165'),(6489,1,'2019-05-14 04:58:54','89.46.105.140'),(6490,1,'2019-05-14 07:06:41','31.220.110.11'),(6491,1,'2019-05-14 09:11:34','89.46.107.172'),(6492,1,'2019-05-14 13:29:07','94.130.76.255'),(6493,1,'2019-05-14 15:40:19','153.92.9.53'),(6494,1,'2019-05-14 19:55:55','107.190.136.226'),(6495,1,'2019-05-14 22:06:05','112.213.89.106'),(6496,1,'2019-05-15 00:13:39','31.220.110.11'),(6497,1,'2019-05-15 02:20:31','171.244.17.17'),(6498,1,'2019-05-15 04:24:41','50.62.208.168'),(6499,1,'2019-05-15 06:33:03','182.50.135.60'),(6500,1,'2019-05-15 10:54:16','27.254.142.83'),(6501,1,'2019-05-15 13:03:10','198.71.227.10'),(6502,1,'2019-05-15 15:14:46','104.238.120.73'),(6503,1,'2019-05-15 17:23:45','89.46.105.133'),(6504,1,'2019-05-15 19:32:33','89.46.107.165'),(6505,1,'2019-05-15 21:42:35','77.79.227.53'),(6506,1,'2019-05-15 23:51:12','148.72.232.57'),(6507,1,'2019-05-16 01:59:08','160.153.156.136'),(6508,1,'2019-05-16 04:08:14','148.72.232.157'),(6509,1,'2019-05-16 06:15:54','83.136.216.101'),(6510,1,'2019-05-16 08:22:43','72.167.190.61'),(6511,1,'2019-05-16 10:34:03','198.71.226.8'),(6512,1,'2019-05-16 12:38:14','50.62.176.28'),(6513,1,'2019-05-16 14:45:13','198.71.226.25'),(6514,1,'2019-05-16 16:52:15','198.71.227.10'),(6515,1,'2019-05-16 18:56:50','89.46.105.125'),(6516,1,'2019-05-16 21:03:27','156.67.213.101'),(6517,1,'2019-05-16 23:08:53','182.50.132.110'),(6518,1,'2019-05-17 01:13:36','148.72.232.56'),(6519,1,'2019-05-17 17:58:39','173.236.47.26'),(6520,1,'2019-05-17 19:08:01','186.64.119.85'),(6521,1,'2019-05-17 20:20:01','103.80.31.10'),(6522,1,'2019-05-17 21:28:19','89.46.105.132'),(6523,1,'2019-05-17 22:38:47','160.153.157.129'),(6524,1,'2019-05-17 23:47:30','186.64.119.95'),(6525,1,'2019-05-18 00:59:43','156.67.213.101'),(6526,1,'2019-05-18 02:08:59','35.163.239.191'),(6527,1,'2019-05-18 03:20:29','50.62.208.45'),(6528,1,'2019-05-18 04:28:23','172.104.132.228'),(6529,1,'2019-05-18 05:39:33','39.105.177.201'),(6530,1,'2019-05-20 03:29:28','185.224.137.151'),(6531,1,'2019-05-20 04:42:50','160.153.147.22'),(6532,1,'2019-05-20 05:57:37','160.153.154.20'),(6533,1,'2019-05-20 07:12:50','194.135.87.105'),(6534,1,'2019-05-20 08:26:50','147.135.1.145'),(6535,1,'2019-05-20 09:42:42','83.136.216.101'),(6536,1,'2019-05-20 10:57:08','184.168.200.86'),(6537,1,'2019-05-20 12:10:46','50.62.177.136'),(6538,1,'2019-05-20 13:25:35','50.62.177.32'),(6539,1,'2019-05-20 14:38:04','82.102.216.222'),(6540,1,'2019-05-20 15:51:49','198.71.230.2'),(6541,1,'2019-05-20 17:04:02','182.50.132.9'),(6542,1,'2019-05-20 19:30:08','67.23.239.2'),(6543,1,'2019-05-20 20:41:23','156.67.215.51'),(6544,1,'2019-05-20 21:51:17','45.56.100.50'),(6545,1,'2019-05-20 23:01:28','89.46.107.210'),(6546,1,'2019-05-21 00:13:36','198.71.230.66'),(6547,1,'2019-05-21 01:25:25','184.168.200.53'),(6548,1,'2019-05-21 02:33:02','198.71.231.18'),(6549,1,'2019-05-21 03:40:16','160.153.154.5'),(6550,1,'2019-05-21 04:45:19','89.46.105.158'),(6551,1,'2019-05-21 05:53:38','89.46.107.118'),(6552,1,'2019-05-21 07:03:28','89.46.107.107'),(6553,1,'2019-05-21 08:13:22','182.50.135.73'),(6554,1,'2019-05-21 09:22:16','184.154.77.82'),(6555,1,'2019-05-21 10:29:46','185.224.138.9'),(6556,1,'2019-05-21 11:34:03','107.180.123.16'),(6557,1,'2019-05-21 12:37:02','89.46.106.158'),(6558,1,'2019-05-21 13:39:16','54.203.207.179'),(6559,1,'2019-05-21 14:46:50','185.224.138.9'),(6560,1,'2019-05-21 15:49:32','185.201.11.151'),(6561,1,'2019-05-21 16:53:06','107.180.120.47'),(6562,1,'2019-05-21 17:55:09','148.251.233.195'),(6563,1,'2019-05-21 18:59:28','131.153.50.234'),(6564,1,'2019-05-21 19:57:08','50.62.176.48'),(6565,1,'2019-05-21 20:57:08','89.46.106.188'),(6566,1,'2019-05-21 21:54:10','185.125.78.12'),(6567,1,'2019-05-21 22:49:43','185.201.11.151'),(6568,1,'2019-05-21 23:42:50','31.170.166.184'),(6569,1,'2019-05-22 00:29:11','188.116.17.193'),(6570,1,'2019-05-22 01:08:06','156.67.213.151'),(6571,1,'2019-05-23 00:07:46','153.92.10.1'),(6572,1,'2019-05-23 01:14:37','145.239.130.235'),(6573,1,'2019-05-23 02:25:18','185.201.11.24'),(6574,1,'2019-05-23 03:34:38','148.72.232.126'),(6575,1,'2019-05-23 04:47:53','89.46.106.98'),(6576,1,'2019-05-23 07:11:45','185.224.137.176'),(6577,1,'2019-05-23 08:23:56','156.67.213.151'),(6578,1,'2019-05-23 09:35:07','89.252.182.71'),(6579,1,'2019-05-23 10:49:00','64.37.62.186'),(6580,1,'2019-05-23 12:02:38','18.214.219.22'),(6581,1,'2019-05-23 13:11:59','104.238.120.71'),(6582,1,'2019-05-23 14:22:11','198.71.230.8'),(6583,1,'2019-05-23 15:31:16','89.46.107.101'),(6584,1,'2019-05-23 16:40:16','74.142.232.241'),(6585,1,'2019-05-23 17:49:53','89.42.216.41'),(6586,1,'2019-05-23 18:56:59','182.50.135.71'),(6587,1,'2019-05-23 20:05:37','50.62.177.208'),(6588,1,'2019-05-23 21:10:59','160.153.155.4'),(6589,1,'2019-05-23 23:24:08','50.62.208.41'),(6590,1,'2019-05-24 00:31:39','158.69.158.227'),(6591,1,'2019-05-24 01:35:42','50.62.177.201'),(6592,1,'2019-05-24 03:45:39','83.136.216.151'),(6593,1,'2019-05-24 04:49:17','198.71.230.52'),(6594,1,'2019-05-24 05:52:55','103.67.235.63'),(6595,1,'2019-05-24 06:53:19','47.244.79.88'),(6596,1,'2019-05-24 07:55:11','89.46.104.195'),(6597,1,'2019-05-24 08:56:43','89.46.105.110'),(6598,1,'2019-05-24 09:59:10','198.71.241.51'),(6599,1,'2019-05-24 11:04:29','89.252.179.61'),(6600,1,'2019-05-24 12:07:08','50.62.177.32'),(6601,1,'2019-05-24 13:12:27','198.71.241.15'),(6602,1,'2019-05-24 14:21:16','67.23.239.60'),(6603,1,'2019-05-24 15:27:12','185.162.171.114'),(6604,1,'2019-05-24 16:33:28','156.67.213.51'),(6605,1,'2019-05-24 17:41:30','50.62.176.168'),(6606,1,'2019-05-24 18:49:11','185.224.138.9'),(6607,1,'2019-05-24 19:56:09','198.71.239.1'),(6608,1,'2019-05-24 21:02:58','72.167.190.223'),(6609,1,'2019-05-24 22:12:32','89.46.109.246'),(6610,1,'2019-05-24 23:21:13','104.206.191.222'),(6611,1,'2019-05-25 00:30:08','67.23.239.60'),(6612,1,'2019-05-25 01:41:01','50.62.177.32'),(6613,1,'2019-05-25 02:51:45','83.136.216.51'),(6614,1,'2019-05-25 04:04:32','139.162.47.49'),(6615,1,'2019-05-25 05:15:31','89.46.105.123'),(6616,1,'2019-05-25 06:27:06','188.121.57.15'),(6617,1,'2019-05-25 07:37:10','185.23.21.47'),(6618,1,'2019-05-25 08:48:39','148.66.146.14'),(6619,1,'2019-05-25 10:01:01','148.66.145.141'),(6620,1,'2019-05-25 11:14:42','50.62.177.105'),(6621,1,'2019-05-25 12:30:12','198.71.230.48'),(6622,1,'2019-05-25 13:48:40','89.46.106.143'),(6623,1,'2019-05-25 15:05:02','156.67.213.101'),(6624,1,'2019-05-25 16:24:26','160.153.153.139'),(6625,1,'2019-05-25 17:44:57','83.136.216.101'),(6626,1,'2019-05-25 19:07:49','198.71.230.48'),(6627,1,'2019-05-25 20:33:04','198.46.81.20'),(6628,1,'2019-05-25 21:58:17','160.153.147.136'),(6629,1,'2019-05-25 23:23:27','89.46.108.157'),(6630,1,'2019-05-26 00:54:12','103.118.158.46'),(6631,1,'2019-05-26 02:24:04','31.220.110.149'),(6632,1,'2019-05-26 03:53:20','156.67.213.151'),(6633,1,'2019-05-26 05:25:05','107.180.120.63'),(6634,1,'2019-05-26 06:54:45','160.153.146.157'),(6635,1,'2019-05-26 08:25:09','50.62.177.102'),(6636,1,'2019-05-26 09:57:50','62.219.78.155'),(6637,1,'2019-05-26 11:29:06','156.67.213.151'),(6638,1,'2019-05-26 12:59:09','198.71.236.66'),(6639,1,'2019-05-26 14:31:55','89.46.107.148'),(6640,1,'2019-05-26 16:02:55','89.46.107.147'),(6641,1,'2019-05-26 17:32:44','107.180.121.21'),(6642,1,'2019-05-26 19:03:02','198.71.230.8'),(6643,1,'2019-05-26 20:31:10','89.46.106.108'),(6644,1,'2019-05-26 22:00:30','89.46.106.245'),(6645,1,'2019-05-26 23:32:48','50.62.177.182'),(6646,1,'2019-05-27 01:01:54','107.180.109.57'),(6647,1,'2019-05-27 02:32:54','62.219.78.155'),(6648,1,'2019-05-27 04:03:42','160.153.156.132'),(6649,1,'2019-05-27 05:38:50','107.180.120.45'),(6650,1,'2019-05-27 07:12:30','50.62.177.213'),(6651,1,'2019-05-27 08:49:13','50.62.177.177'),(6652,1,'2019-05-27 10:29:08','184.168.27.127'),(6653,1,'2019-05-27 12:09:29','182.50.132.92'),(6654,1,'2019-05-27 13:54:25','94.73.147.77'),(6655,1,'2019-05-27 15:35:41','160.153.147.136'),(6656,1,'2019-05-27 17:19:27','185.224.138.9'),(6657,1,'2019-05-27 18:36:31','185.98.131.139'),(6658,1,'2019-05-27 19:25:08','39.108.235.98'),(6659,1,'2019-05-27 19:26:18','39.108.235.98'),(6660,1,'2019-05-27 19:26:25','39.108.235.98'),(6661,1,'2019-05-28 12:14:58','176.9.104.177'),(6662,1,'2019-05-28 13:24:04','148.66.145.21'),(6663,1,'2019-05-28 14:34:19','89.46.106.218'),(6664,1,'2019-05-28 15:36:48','31.220.20.114'),(6665,1,'2019-05-28 16:41:49','67.227.187.254'),(6666,1,'2019-05-28 17:46:45','89.46.105.168'),(6667,1,'2019-05-28 18:49:56','185.224.138.55'),(6668,1,'2019-05-28 19:54:19','148.72.232.64'),(6669,1,'2019-05-28 20:57:50','160.153.156.132'),(6670,1,'2019-05-28 22:01:22','160.153.157.139'),(6671,1,'2019-05-29 23:14:03','198.71.236.61'),(6672,1,'2019-05-30 00:27:09','89.46.108.207'),(6673,1,'2019-05-30 01:43:05','89.46.107.182'),(6674,1,'2019-05-30 03:01:54','89.252.182.201'),(6675,1,'2019-05-30 04:21:41','64.15.186.216'),(6676,1,'2019-05-30 05:42:54','182.50.151.61'),(6677,1,'2019-05-30 07:05:30','89.32.248.92'),(6678,1,'2019-05-30 08:29:33','185.224.138.46'),(6679,1,'2019-05-30 09:53:54','89.32.251.13'),(6680,1,'2019-05-30 11:21:06','188.121.57.46'),(6681,1,'2019-05-30 12:31:57','50.62.177.168'),(6682,1,'2019-05-30 14:58:41','185.94.99.234'),(6683,1,'2019-05-30 16:03:23','89.46.105.254'),(6684,1,'2019-05-30 17:10:35','178.128.66.88'),(6685,1,'2019-05-30 18:15:07','120.79.213.119'),(6686,1,'2019-05-30 19:20:34','88.212.237.4'),(6687,1,'2019-05-30 20:24:21','89.46.107.118'),(6688,1,'2019-05-30 21:27:04','107.180.123.20'),(6689,1,'2019-05-30 22:26:59','209.208.57.11'),(6690,1,'2019-05-30 23:28:02','193.168.193.141'),(6691,1,'2019-05-31 00:23:35','198.71.234.37'),(6692,1,'2019-05-31 13:09:44','193.168.193.141'),(6693,1,'2019-05-31 14:21:26','186.64.116.115'),(6694,1,'2019-05-31 14:22:02','186.64.116.115'),(6695,1,'2019-05-31 15:29:53','89.46.107.107'),(6696,1,'2019-05-31 17:46:26','103.58.151.9'),(6697,1,'2019-05-31 18:54:16','148.72.232.50'),(6698,1,'2019-05-31 20:01:28','185.224.137.9'),(6699,1,'2019-05-31 21:07:43','176.53.62.67'),(6700,1,'2019-05-31 22:14:02','198.71.235.84'),(6701,1,'2019-05-31 23:19:59','112.78.2.185'),(6702,1,'2019-06-01 00:25:42','103.9.159.48'),(6703,1,'2019-06-01 01:34:02','160.153.147.26'),(6704,1,'2019-06-01 02:39:17','198.71.234.37'),(6705,1,'2019-06-01 03:45:06','89.252.187.221'),(6706,1,'2019-06-01 04:50:26','186.64.119.95'),(6707,1,'2019-06-01 05:57:25','89.46.107.147'),(6708,1,'2019-06-01 07:02:44','89.46.107.97'),(6709,1,'2019-06-01 08:07:54','50.62.176.7'),(6710,1,'2019-06-01 09:14:23','72.167.190.199'),(6711,1,'2019-06-01 10:21:45','94.73.144.214'),(6712,1,'2019-06-01 11:29:37','148.72.232.151'),(6713,1,'2019-06-01 12:41:16','89.46.105.248'),(6714,1,'2019-06-01 13:53:21','47.99.205.137'),(6715,1,'2019-06-01 13:54:21','47.99.205.137'),(6716,1,'2019-06-03 15:20:35','93.188.2.5'),(6717,1,'2019-06-03 16:30:36','148.66.145.144'),(6718,1,'2019-06-03 17:39:31','104.238.100.122'),(6719,1,'2019-06-03 18:48:39','182.50.132.25'),(6720,1,'2019-06-03 19:57:32','186.64.114.200'),(6721,1,'2019-06-03 21:04:56','107.180.109.68'),(6722,1,'2019-06-03 22:11:44','198.71.228.59'),(6723,1,'2019-06-03 23:19:38','89.46.107.213'),(6724,1,'2019-06-04 01:30:38','153.92.6.150'),(6725,1,'2019-06-04 02:37:39','188.121.57.32'),(6726,1,'2019-06-04 03:42:23','148.72.232.59'),(6727,1,'2019-06-04 04:47:12','172.104.176.216'),(6728,1,'2019-06-04 05:53:17','72.167.190.175'),(6729,1,'2019-06-04 06:58:07','89.46.108.155'),(6730,1,'2019-06-04 08:03:54','89.46.105.241'),(6731,1,'2019-06-04 09:09:50','31.220.20.114'),(6732,1,'2019-06-04 10:15:25','31.220.20.197'),(6733,1,'2019-06-04 11:23:36','160.153.156.34'),(6734,1,'2019-06-04 12:30:01','185.106.211.211'),(6735,1,'2019-06-04 13:32:06','89.46.105.242'),(6736,1,'2019-06-04 14:32:33','198.71.236.75'),(6737,1,'2019-06-04 15:32:40','162.144.122.34'),(6738,1,'2019-06-04 16:29:34','182.50.135.54'),(6739,1,'2019-06-04 17:25:26','162.255.118.193'),(6740,1,'2019-06-04 18:16:22','85.187.128.10'),(6741,1,'2019-06-04 19:02:05','72.167.190.170'),(6742,1,'2019-06-04 19:02:43','72.167.190.170'),(6743,1,'2019-06-04 19:38:48','46.250.221.7'),(6744,1,'2019-06-04 20:12:54','162.144.122.34'),(6745,1,'2019-06-04 20:37:51','182.50.135.84'),(6746,1,'2019-06-05 09:33:58','69.162.123.154'),(6747,1,'2019-06-05 10:46:01','209.205.214.18'),(6748,1,'2019-06-05 11:53:32','103.249.111.186'),(6749,1,'2019-06-05 13:02:32','103.205.96.109'),(6750,1,'2019-06-05 14:13:10','107.180.108.6'),(6751,1,'2019-06-05 15:23:16','182.50.132.37'),(6752,1,'2019-06-05 16:30:32','89.46.107.199'),(6753,1,'2019-06-05 17:38:12','162.244.253.203'),(6754,1,'2019-06-05 18:46:48','148.66.147.18'),(6755,1,'2019-06-05 19:52:09','182.50.135.69'),(6756,1,'2019-06-05 21:03:15','50.116.45.41'),(6757,1,'2019-06-05 22:04:19','160.153.156.131'),(6758,1,'2019-06-05 23:09:45','50.62.208.146'),(6759,1,'2019-06-06 00:15:34','89.46.106.171'),(6760,1,'2019-06-06 00:16:47','89.46.106.171'),(6761,1,'2019-06-06 01:18:59','160.153.147.36'),(6762,1,'2019-06-06 02:23:47','134.119.45.86'),(6763,1,'2019-06-06 03:30:12','50.62.177.102'),(6764,1,'2019-06-06 04:32:00','89.46.107.202'),(6765,1,'2019-06-06 05:31:40','148.72.232.154'),(6766,1,'2019-06-06 06:33:05','89.46.106.233'),(6767,1,'2019-06-06 07:35:50','107.180.108.14'),(6768,1,'2019-06-06 07:37:21','107.180.108.14'),(6769,1,'2019-06-06 09:33:38','176.53.35.101'),(6770,1,'2019-06-06 10:32:21','148.66.145.8'),(6771,1,'2019-06-06 11:31:32','89.40.173.72'),(6772,1,'2019-06-06 12:25:33','89.46.107.209'),(6773,1,'2019-06-06 13:14:56','103.58.151.9'),(6774,1,'2019-06-06 13:58:24','51.68.11.215'),(6775,1,'2019-06-06 14:32:21','160.153.153.15'),(6776,1,'2019-06-07 19:21:28','50.62.161.105'),(6777,1,'2019-06-07 20:20:24','77.68.64.24'),(6778,1,'2019-06-07 21:30:10','50.62.177.32'),(6779,1,'2019-06-07 22:38:21','136.243.73.142'),(6780,1,'2019-06-07 23:45:31','112.78.2.185'),(6781,1,'2019-06-08 00:54:09','107.180.123.20'),(6782,1,'2019-06-08 02:03:54','89.46.107.143'),(6783,1,'2019-06-08 03:10:56','50.62.177.177'),(6784,1,'2019-06-08 04:18:30','91.134.139.150'),(6785,1,'2019-06-08 05:27:47','207.210.200.221'),(6786,1,'2019-06-08 06:40:19','148.66.146.37'),(6787,1,'2019-06-08 07:52:16','185.224.137.84'),(6788,1,'2019-06-08 09:06:15','89.46.108.119'),(6789,1,'2019-06-08 10:22:32','148.72.232.162'),(6790,1,'2019-06-08 11:32:37','185.201.11.24'),(6791,1,'2019-06-08 12:44:15','160.153.154.139'),(6792,1,'2019-06-08 13:49:58','79.137.121.144'),(6793,1,'2019-06-08 14:55:21','185.224.137.194'),(6794,1,'2019-06-08 15:57:07','89.46.108.203'),(6795,1,'2019-06-08 16:59:47','148.66.146.14'),(6796,1,'2019-06-08 18:06:08','89.46.106.157'),(6797,1,'2019-06-08 19:02:49','89.46.107.138'),(6798,1,'2019-06-08 20:02:43','50.62.176.150'),(6799,1,'2019-06-08 21:09:17','50.116.37.247'),(6800,1,'2019-06-08 22:08:05','31.220.20.197'),(6801,1,'2019-06-08 23:11:10','103.27.206.17'),(6802,1,'2019-06-09 00:17:56','72.167.190.17'),(6803,1,'2019-06-09 01:21:26','198.71.241.1'),(6804,1,'2019-06-09 02:28:46','120.77.243.231'),(6805,1,'2019-06-09 04:38:45','50.62.177.225'),(6806,1,'2019-06-09 05:46:38','104.238.120.77'),(6807,1,'2019-06-09 06:54:21','68.66.248.29'),(6808,1,'2019-06-09 08:05:47','185.206.163.74'),(6809,1,'2019-06-09 09:13:31','185.94.99.234'),(6810,1,'2019-06-09 10:24:34','185.224.137.9'),(6811,1,'2019-06-09 11:35:43','51.15.189.102'),(6812,1,'2019-06-09 12:49:25','50.62.176.47'),(6813,1,'2019-06-09 14:03:07','160.153.153.156'),(6814,1,'2019-06-09 15:20:05','148.66.146.15'),(6815,1,'2019-06-09 16:39:08','64.188.5.250'),(6816,1,'2019-06-09 17:59:57','94.130.219.156'),(6817,1,'2019-06-09 19:21:21','182.50.151.87'),(6818,1,'2019-06-09 20:45:57','37.128.148.129'),(6819,1,'2019-06-09 22:13:35','112.78.2.48'),(6820,1,'2019-06-09 23:43:13','185.106.211.211'),(6821,1,'2019-06-10 01:17:07','83.136.216.101'),(6822,1,'2019-06-10 02:56:09','72.167.190.228'),(6823,1,'2019-06-10 04:35:46','50.62.208.170'),(6824,1,'2019-06-10 06:18:23','89.46.108.212'),(6825,1,'2019-06-10 08:04:26','198.71.235.70'),(6826,1,'2019-06-10 09:51:42','107.180.108.31'),(6827,1,'2019-06-10 11:40:27','176.53.35.101'),(6828,1,'2019-06-10 13:31:54','160.153.156.134'),(6829,1,'2019-06-10 15:25:27','72.52.144.82'),(6830,1,'2019-06-10 17:25:05','198.71.228.51'),(6831,1,'2019-06-10 19:25:59','68.65.122.200'),(6832,1,'2019-06-10 21:31:24','188.116.17.193'),(6833,1,'2019-06-10 23:36:52','134.119.45.86'),(6834,1,'2019-06-11 01:47:00','89.46.105.175'),(6835,1,'2019-06-11 04:02:02','198.71.236.66'),(6836,1,'2019-06-11 06:20:28','31.220.20.90'),(6837,1,'2019-06-11 08:42:44','89.46.105.241'),(6838,1,'2019-06-11 11:04:15','89.46.108.209'),(6839,1,'2019-06-11 13:33:13','160.153.153.30'),(6840,1,'2019-06-11 16:01:09','72.52.238.104'),(6841,1,'2019-06-11 18:33:58','198.71.234.24'),(6842,1,'2019-06-11 21:11:38','89.46.108.189'),(6843,1,'2019-06-11 23:55:26','89.46.105.178'),(6844,1,'2019-06-12 02:41:16','89.46.105.249'),(6845,1,'2019-06-12 08:21:10','89.46.107.212'),(6846,1,'2019-06-12 11:15:15','50.62.177.215'),(6847,1,'2019-06-12 14:19:28','199.192.17.22');
/*!40000 ALTER TABLE `sd_login_fails` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_options`
--
DROP TABLE IF EXISTS `sd_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=60777 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_options`
--
LOCK TABLES `sd_options` WRITE;
/*!40000 ALTER TABLE `sd_options` DISABLE KEYS */;
INSERT INTO `sd_options` VALUES (1,'siteurl','http://alford.org.uk','yes'),(2,'home','http://alford.org.uk','yes'),(3,'blogname','Alford Business Community','yes'),(4,'blogdescription','for all your Alford, Aberdeenshire, Scotland business information','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','bensykes@bensykes.co.uk','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%','yes'),(29,'rewrite_rules','a:223:{s:11:\"services/?$\";s:28:\"index.php?post_type=services\";s:41:\"services/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:36:\"services/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:28:\"services/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=services&paged=$matches[1]\";s:12:\"employees/?$\";s:29:\"index.php?post_type=employees\";s:42:\"employees/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=employees&feed=$matches[1]\";s:37:\"employees/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=employees&feed=$matches[1]\";s:29:\"employees/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=employees&paged=$matches[1]\";s:15:\"testimonials/?$\";s:32:\"index.php?post_type=testimonials\";s:45:\"testimonials/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=testimonials&feed=$matches[1]\";s:40:\"testimonials/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=testimonials&feed=$matches[1]\";s:32:\"testimonials/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=testimonials&paged=$matches[1]\";s:10:\"clients/?$\";s:27:\"index.php?post_type=clients\";s:40:\"clients/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=clients&feed=$matches[1]\";s:35:\"clients/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=clients&feed=$matches[1]\";s:27:\"clients/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=clients&paged=$matches[1]\";s:11:\"projects/?$\";s:28:\"index.php?post_type=projects\";s:41:\"projects/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:36:\"projects/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:28:\"projects/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=projects&paged=$matches[1]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:36:\"services/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"services/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"services/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"services/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"services/([^/]+)/embed/?$\";s:41:\"index.php?services=$matches[1]&embed=true\";s:29:\"services/([^/]+)/trackback/?$\";s:35:\"index.php?services=$matches[1]&tb=1\";s:49:\"services/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:44:\"services/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:37:\"services/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&paged=$matches[2]\";s:44:\"services/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&cpage=$matches[2]\";s:33:\"services/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?services=$matches[1]&page=$matches[2]\";s:25:\"services/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"services/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"services/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"services/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"employees/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"employees/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"employees/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"employees/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"employees/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"employees/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"employees/([^/]+)/embed/?$\";s:42:\"index.php?employees=$matches[1]&embed=true\";s:30:\"employees/([^/]+)/trackback/?$\";s:36:\"index.php?employees=$matches[1]&tb=1\";s:50:\"employees/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?employees=$matches[1]&feed=$matches[2]\";s:45:\"employees/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?employees=$matches[1]&feed=$matches[2]\";s:38:\"employees/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?employees=$matches[1]&paged=$matches[2]\";s:45:\"employees/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?employees=$matches[1]&cpage=$matches[2]\";s:34:\"employees/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?employees=$matches[1]&page=$matches[2]\";s:26:\"employees/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"employees/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"employees/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"employees/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"employees/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"employees/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:53:\"testimonials/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?testimonials=$matches[1]&feed=$matches[2]\";s:48:\"testimonials/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?testimonials=$matches[1]&feed=$matches[2]\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"clients/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"clients/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"clients/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"clients/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"clients/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"clients/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"clients/([^/]+)/embed/?$\";s:40:\"index.php?clients=$matches[1]&embed=true\";s:28:\"clients/([^/]+)/trackback/?$\";s:34:\"index.php?clients=$matches[1]&tb=1\";s:48:\"clients/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?clients=$matches[1]&feed=$matches[2]\";s:43:\"clients/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?clients=$matches[1]&feed=$matches[2]\";s:36:\"clients/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?clients=$matches[1]&paged=$matches[2]\";s:43:\"clients/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?clients=$matches[1]&cpage=$matches[2]\";s:32:\"clients/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?clients=$matches[1]&page=$matches[2]\";s:24:\"clients/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"clients/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"clients/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"clients/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"clients/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"clients/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"projects/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"projects/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"projects/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"projects/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"projects/([^/]+)/embed/?$\";s:41:\"index.php?projects=$matches[1]&embed=true\";s:29:\"projects/([^/]+)/trackback/?$\";s:35:\"index.php?projects=$matches[1]&tb=1\";s:49:\"projects/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:44:\"projects/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:37:\"projects/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&paged=$matches[2]\";s:44:\"projects/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&cpage=$matches[2]\";s:33:\"projects/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?projects=$matches[1]&page=$matches[2]\";s:25:\"projects/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"projects/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"projects/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"projects/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&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:24:{i:0;s:37:\"wp-hide-security-enhancer/wp-hide.php\";i:1;s:27:\"ad-inserter/ad-inserter.php\";i:3;s:19:\"akismet/akismet.php\";i:4;s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";i:5;s:38:\"contact-form-7-designer/cf7-styles.php\";i:6;s:33:\"contact-form-7-modules/hidden.php\";i:7;s:42:\"contact-form-7-modules/send-all-fields.php\";i:8;s:36:\"contact-form-7/wp-contact-form-7.php\";i:9;s:27:\"dw-megamenu/dw-megamenu.php\";i:10;s:35:\"dw-social-share/dw-social-share.php\";i:11;s:9:\"hello.php\";i:12;s:33:\"import-html-pages/html-import.php\";i:13;s:19:\"jetpack/jetpack.php\";i:14;s:27:\"js_composer/js_composer.php\";i:15;s:32:\"login-lockdown/loginlockdown.php\";i:16;s:41:\"post-type-switcher/post-type-switcher.php\";i:17;s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";i:18;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:19;s:29:\"spam-captcha/spam-captcha.php\";i:20;s:33:\"sydney-toolbox/sydney-toolbox.php\";i:21;s:57:\"universal-google-analytics/universal-google-analytics.php\";i:22;s:17:\"unyson/unyson.php\";i:23;s:24:\"wordpress-seo/wp-seo.php\";i:24;s:35:\"wp-date-remover/wp-date-remover.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','sydney','yes'),(41,'stylesheet','sydney','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','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','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:5:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:950:\"<aside id=\"text-9\" class=\"widget widget_text\">\r\n<div class=\"textwidget\">\r\n<h2>What We Do</h2>\r\nAlford Business Community delivers professional, practical and individual business support services to entrepreneurs and existing businesses in the surrounding areas of Alford, Aberdeenshire, Scotland.\r\n<h3>Specialities</h3>\r\nOur speciality is understanding\r\nour clients requirements and working together with them to facilitate business growth.\r\n<h3>Business Activity</h3>\r\nWe also help businesses to re-focus their business activity resulting in increased profitability.\r\nWe can help you achieve a balance between working for yourself and your personal life.\r\n<h3>Our Aims</h3>\r\nOur aim is to help you to apply your motivation, resources and time in an effective way, which will enable you to achieve both your personal and professional goals.\r\n\r\n</div>\r\n</aside>\r\n<aside id=\"text-7\" class=\"widget widget_text\">\r\n<div class=\"textwidget\"></div>\r\n</aside>\";s:6:\"filter\";s:7:\"content\";}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:139:\"<a href=\"http://benedict.co.uk/About_YOU\">Published and populated by Benedict</a> | Primrose Street Shoreditch London, EC2A | 07949 185 514\";s:6:\"filter\";s:7:\"content\";}i:5;a:3:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:757:\"Alford Business Community delivers professional, practical and individual business support services to entrepreneurs and existing businesses in the surrounding areas of Alford, Aberdeenshire, Scotland.\r\n\r\nOur speciality is understanding\r\nour clients requirements and working together with them to facilitate business growth.\r\n\r\nWe also help businesses to re-focus their business activity resulting in increased profitability.\r\nWe can help you achieve a balance between working for yourself and your personal life.\r\n\r\n<aside id=\"text-9\" class=\"widget widget_text\">\r\n<div class=\"textwidget\">\r\n\r\nOur aim is to help you to apply your motivation, resources and time in an effective way, which will enable you to achieve both your personal and professional goals.\";s:6:\"filter\";s:7:\"content\";}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:2:{s:33:\"import-html-pages/html-import.php\";s:26:\"html_import_remove_options\";s:29:\"spam-captcha/spam-captcha.php\";a:2:{i:0;s:12:\"spam_captcha\";i:1;s:20:\"uninstall_removedata\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','7','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','38590','yes'),(92,'sd_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:15:\"wpseo_bulk_edit\";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:15:\"wpseo_bulk_edit\";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,'fresh_site','0','yes'),(94,'widget_pages','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:20:\"See More Information\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}}','yes'),(95,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"dw_megamenu_widget\";a:7:{i:0;s:8:\"search-2\";i:1;s:6:\"text-2\";i:2;s:14:\"recent-posts-2\";i:3;s:17:\"recent-comments-2\";i:4;s:10:\"archives-2\";i:5;s:12:\"categories-2\";i:6;s:6:\"meta-2\";}s:9:\"sidebar-1\";a:2:{i:0;s:6:\"text-5\";i:1;s:7:\"pages-3\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:1:{i:0;s:6:\"text-3\";}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:10:{i:1562324717;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:1562325772;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1562331132;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1562331155;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:1562331176;a:1:{s:23:\"aiowps_daily_cron_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1562331248;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:1562332592;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1562348072;a:1:{s:24:\"akismet_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:1562408559;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(108,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1502283205;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(121,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"4.8.9\";s:7:\"current\";s:3:\"4.8\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1552446213;s:5:\"retry\";b:0;}','no'),(122,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:23:\"bensykes@bensykes.co.uk\";s:7:\"version\";s:5:\"4.8.9\";s:9:\"timestamp\";i:1552446213;}','no'),(123,'_site_transient_timeout_browser_3182f755614c06389a440066daa2f279','1502887955','no'),(124,'_site_transient_browser_3182f755614c06389a440066daa2f279','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"60.0.3112.90\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(126,'can_compress_scripts','0','no'),(127,'_site_transient_timeout_community-events-cb13f455d16c515745da3796a057d9d5','1502326357','no'),(128,'_site_transient_community-events-cb13f455d16c515745da3796a057d9d5','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"217.206.184.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"WP Meetup Frankfurt\";s:3:\"url\";s:59:\"https://www.meetup.com/wpmeetup-frankfurt/events/240726510/\";s:6:\"meetup\";s:26:\"WP Meetup Frankfurt #wpFRA\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/wpmeetup-frankfurt/\";s:4:\"date\";s:19:\"2017-08-08 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Frankfurt, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:50.115097;s:9:\"longitude\";d:8.695598;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:32:\"WordPress Meetup Düsseldorf #12\";s:3:\"url\";s:68:\"https://www.meetup.com/Dusseldorf-WordPress-Meetup/events/240635926/\";s:6:\"meetup\";s:28:\"Düsseldorf WordPress Meetup\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/Dusseldorf-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-08-08 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Düsseldorf, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:51.231049;s:9:\"longitude\";d:6.795832;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:50:\"WordPress-Meetup Koblenz #2 - Alles rund um Themes\";s:3:\"url\";s:65:\"https://www.meetup.com/WordPress-Meetup-Koblenz/events/241999011/\";s:6:\"meetup\";s:24:\"WordPress Meetup Koblenz\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/WordPress-Meetup-Koblenz/\";s:4:\"date\";s:19:\"2017-08-09 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Koblenz, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:50.361607;s:9:\"longitude\";d:7.597952;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:44:\"WordPress Meetup Köln #48 - Zeig dein Theme\";s:3:\"url\";s:62:\"https://www.meetup.com/WordPress-Meetup-Koln/events/242264157/\";s:6:\"meetup\";s:22:\"WordPress Meetup Köln\";s:10:\"meetup_url\";s:45:\"https://www.meetup.com/WordPress-Meetup-Koln/\";s:4:\"date\";s:19:\"2017-08-15 18:45:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Köln, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:50.948479;s:9:\"longitude\";d:6.94499;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"WordPress @ FroSCon\";s:3:\"url\";s:67:\"https://www.meetup.com/WordPress-Meetup-Bonn-wpbn/events/242331508/\";s:6:\"meetup\";s:27:\"WordPress Meetup Bonn #wpbn\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/WordPress-Meetup-Bonn-wpbn/\";s:4:\"date\";s:19:\"2017-08-19 10:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:29:\"53757 Sankt Augustin, Germany\";s:7:\"country\";s:2:\"de\";s:8:\"latitude\";d:50.780041;s:9:\"longitude\";d:7.182372;}}}}','no'),(129,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1502326359','no'),(130,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 21:26:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.9-alpha-41234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.8.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 21:26:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4875\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release. This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the release […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Weston Ruter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2560:\"<p>After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release.</p>\n<p>This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.8.1\">release notes</a>, the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.8.1&group=component\">tickets closed</a>, and the <a href=\"https://core.trac.wordpress.org/log/branches/4.8?rev=41210&stop_rev=40891\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.1.</p>\n<p>Thanks to everyone who contributed to 4.8.1:<br />\n<a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev/\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/greuben/\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sa3idho/\">Said El Bakkali</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 07:50:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4885\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"After a particularly busy month in June, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July. Weekly meeting for new core […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5644:\"<p>After a particularly busy month <a href=\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\">in June</a>, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July.</p>\n<hr />\n<h2>Weekly meeting for new core contributors</h2>\n<p>Onboarding new contributors is a persistent issue for most WordPress contribution teams. While every team welcomes any new contributors, the path to getting deeply involved can be tricky to find at times.</p>\n<p>This month, the Core team implemented a fantastic new initiative: <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">weekly meetings for new core contributors</a> as a way to encourage involvement and foster fresh contributions. The meetings not only focus on bugs suited to first-time contributors, they also make space for experienced contributors to help out individuals who may be new to developing WordPress core.</p>\n<p>The meetings are held every Wednesday at 19:00 UTC in the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>Increased focus on PHP practices in WordPress core</h2>\n<p>In bringing people together to improve WordPress core, a new channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> named #core-php is designed to focus on PHP development in the project.</p>\n<p>Along with this increased concentration on PHP, a <a href=\"https://make.wordpress.org/core/2017/07/06/announcement-for-weekly-php-meetings/\">new weekly meeting is now taking place</a> every Monday at 18:00 UTC in #core-php to improve WordPress core’s PHP practices.</p>\n<h2>Sharp rise in meetup group growth</h2>\n<p>The dashboard events widget in WordPress 4.8 displays local, upcoming WordPress events for the logged in user. The events listed in this widget are pulled from the <a href=\"https://www.meetup.com/pro/wordpress/\">meetup chapter program</a>, as well as the <a href=\"https://central.wordcamp.org/schedule\">WordCamp schedule</a>.</p>\n<p>This widget provides greater visibility of official WordPress events, and encourages community involvement in these events. It’s safe to say that the widget has achieved its goals admirably — since WordPress 4.8 was released a little over a month ago, 31 new meetup groups have been formed with 15,647 new members across the whole program. This is compared to 19 new groups and only 7,071 new members in the same time period last year.</p>\n<p>You can find a local meetup group to join <a href=\"https://www.meetup.com/pro/wordpress/\">on meetup.com</a>, and if you would like to get involved in organizing events for your community, you can find out more about the inner workings of the program <a href=\"https://make.wordpress.org/community/meetups/\">on the Community Team site</a> or by joining the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress 4.8.1 due for imminent release</h2>\n<p>WordPress 4.8 cycle’s first maintenance release will be published in the coming week, more than a month after 4.8 was released. This release fix some important issues in WordPress core and the majority of users will find that their sites will update to this new version automatically.</p>\n<p>If you would like to help out by testing this release before it goes live, you can follow the <a href=\"https://make.wordpress.org/core/handbook/testing/beta/\">beta testing guide</a> for WordPress core. To get further involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>The WordPress mobile apps have been updated with <a href=\"https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/\">a brand new text editor</a>.</li>\n<li>In a recent push to encourage WordPress users to upgrade their PHP versions, two features have been proposed – one <a href=\"https://core.trac.wordpress.org/ticket/41191\">to provide a notice to users</a> and another to <a href=\"https://core.trac.wordpress.org/ticket/40934\">allow PHP version requirements to be specified by plugins and themes</a>.</li>\n<li>John Maeda wrote <a href=\"https://make.wordpress.org/design/2017/07/14/whywordpress2/\">a great post</a> celebrating the freedom that WordPress offers.</li>\n<li>Gutenberg, the new text editor for WordPress, is <a href=\"https://make.wordpress.org/core/2017/07/28/whats-new-in-gutenberg-28th-july/\">in continual development</a> — everyone is invited to <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>.</li>\n<li>The WordPress Meta team is starting <a href=\"https://make.wordpress.org/meta/2017/07/26/experiment-wordcamp-org-bug-scrubs/\">a new initiative</a> to bring the community together to focus on fixing bugs across the WordCamp.org network.</li>\n<li>Volunteer applications for WordCamp US <a href=\"https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/\">are now open</a>.</li>\n</ul>\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4885\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2017 11:42:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4865\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"We’re starting a new regular feature on this blog today. We’d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we’ll be posting a roundup of all the major WordPress news at the end of every month. Aside from other general […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9225:\"<p><i>We’re starting a new regular feature on this blog today. We’d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we’ll be posting a roundup of all the major WordPress news at the end of every month.</i></p>\n<p>Aside from other general news, the three big events in June were the release of WordPress 4.8, WordCamp Europe 2017, and the WordPress Community Summit. Read on to hear more about these as well as other interesting stories from around the WordPress world.</p>\n<hr />\n<h2>WordPress 4.8</h2>\n<p>On June 8, a week before the Community Summit and WordCamp Europe,<a href=\"https://wordpress.org/news/2017/06/evans/\"> WordPress 4.8 was released</a>.You can read<a href=\"https://make.wordpress.org/core/2017/05/26/wordpress-4-8-field-guide/\"> the Field Guide</a> for a comprehensive overview of all the features of this release (the News and Events widget in the dashboard is one of the major highlights).</p>\n<p>Most people would either have their version auto-updated, or their hosts would have updated it for them. For the rest, the updates have gone smoothly with no major issues reported so far.</p>\n<p>This WordPress release saw contributions from 346 individuals; you can find their names in <a href=\"https://wordpress.org/news/2017/06/evans/\">the announcement post</a>. To get involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<h2>WordCamp Europe 2017</h2>\n<p><a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe 2017</a> was held in Paris between June 15-17. The event began with a Contributor Day, followed by two days of talks and community goodness. The talks were live-streamed, but you can still catch all the recordings <a href=\"http://wordpress.tv/event/wordcamp-europe-2017/\">on WordPress.tv</a>. The organisers also published <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\">a handy wrap-up of the event</a>.</p>\n<p>WordCamp Europe exists to bring together the WordPress community from all over the continent, as well as to inspire local communities everywhere to get their own events going — to that end, the event was a great success, as a host of new meetup groups have popped up in the weeks following WordCamp Europe.</p>\n<p>The work that Contributor Day participants accomplished was both varied and valuable, covering all aspects of the WordPress project — have a look through <a href=\"https://make.wordpress.org/\">the Make blogs</a> for updates from each team.</p>\n<p>Finally, we also learned during the event that <a href=\"https://2017.europe.wordcamp.org/2017/06/17/belgrade-serbia-to-host-wordcamp-europe-2018/\">WordCamp Europe 2018 will be held in Belgrade, Serbia</a>, continuing the tradition of exploring locations and communities across the continent.</p>\n<h2>WordPress Community Summit</h2>\n<p>The fourth WordPress Community Summit took place during the two days leading up to WordCamp Europe 2017. This event is an invite-only unconference where people from all over the WordPress community come together to discuss some of the more difficult issues in the community, as well as to make plans for the year ahead in each of the contribution teams.</p>\n<p>As the Summit is designed to be a safe space for all attendees, the notes from each discussion are in the process of being anonymized before we publish them on <a href=\"https://make.wordpress.org/summit/\">the Summit blog</a> (so stay tuned – they’ll show up there over the next few weeks).</p>\n<p>You can already see the final list of topics that were proposed for the event <a href=\"https://make.wordpress.org/summit/2017/06/10/community-summit-2017-final-list-of-topic/\">here</a> (although a few more were added during the course of the two day Summit).</p>\n<h2>WordPress marketing push continues apace</h2>\n<p>As part of the push to be more intentional in marketing WordPress (as per Matt Mullenweg’s <a href=\"http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">2016 State of the Word</a>), the Marketing team has launched two significant drives to obtain more information about who uses WordPress and how that information can shape their outreach and messaging efforts.</p>\n<p><a href=\"https://make.wordpress.org/marketing/2017/06/15/wordpress-case-studies-and-usage-survey/\">The team is looking for WordPress case studies</a> and is asking users, agencies, and freelancers to take a WordPress usage survey. This will go a long way towards establishing a marketing base for WordPress as a platform and as a community — and many people in the community are looking forward to seeing this area develop further.</p>\n<p>To get involved in the WordPress Marketing team, you can visit <a href=\"https://make.wordpress.org/marketing/\">their team blog</a>.</p>\n<h2>New Gutenberg editor available for testing</h2>\n<p>For some time now, the Core team has been hard at work on a brand-new text editor for WordPress — this project has been dubbed “Gutenberg.” The project’s ultimate goal is to replace the existing TinyMCE editor, but for now it is in beta and available for public testing — <a href=\"https://wordpress.org/plugins/gutenberg/\">you can download it here as a plugin</a> and install it on any WordPress site.</p>\n<p>This feature is still in beta, so we don’t recommend using it on a production site. If you test it out, though, you’ll find that it is a wholly different experience to what you are used to in WordPress. It’s a more streamlined, altogether cleaner approach to the text-editing experience than we’ve had before, and something that many people are understandably excited about. Matt Mullenweg discussed the purpose of Gutenberg in more detail during <a href=\"http://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">his Q&A at WordCamp Europe</a>.</p>\n<p>There are already a few reviews out from <a href=\"https://kinsta.com/blog/gutenberg-wordpress-editor/\">Brian Jackson at Kinsta</a>, <a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\">Aaron Jorbin</a>, and <a href=\"https://www.mattcromwell.com/gutenberg-first-impressions/\">Matt Cromwell</a> (among many others). Keep in mind that the project is in constant evolution at this stage; when it eventually lands in WordPress core (probably in v5.0), it could look very different from its current iteration — that’s what makes this beta stage and user testing so important.</p>\n<p>To get involved with shaping the future of Gutenberg, please <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>. You can also visit <a href=\"https://github.com/WordPress/gutenberg\">the project’s GitHub repository</a> to report issues and contribute to the codebase.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li style=\"font-weight: 400\">Bridget Willard <a href=\"https://make.wordpress.org/community/2017/06/21/proposed-wordcamp-editorial-calendar/\">has proposed an editorial calendar</a> to assist WordCamp organizers with publishing content for their event.</li>\n<li style=\"font-weight: 400\">A new kind of niche WordCamp, <a href=\"https://2017-denver.journalist.wordcamp.org/\">WordCamp for Publishers in Denver</a>, has opened ticket sales.</li>\n<li style=\"font-weight: 400\">The WordPress iOS app was updated with <a href=\"https://en.blog.wordpress.com/2017/06/21/an-all-new-media-library-for-the-wordpress-ios-app/\">a fresh, new media library</a> this month.</li>\n<li style=\"font-weight: 400\">It looks like <i>Underscores</i>, the popular WordPress starter theme, <a href=\"https://themeshaper.com/2017/06/26/the-future-of-underscores-and-a-new-committer/\">has a bright future ahead of it</a>, with a renewed vision and new committer.</li>\n<li style=\"font-weight: 400\">The always-inspiring Tom McFarlin <a href=\"https://tommcfarlin.com/simple-autoloader-for-wordpress\">has released a simple autoloader for WordPress</a> that looks very useful indeed.</li>\n<li style=\"font-weight: 400\">After a bit of a discussion on Twitter regarding the differences between WordPress.org, WordPress.com, and Jetpack, <a href=\"https://helen.wordpress.com/2017/06/21/restaurant-vs-meal-kit-vs-grocery-shopping-or-wordpress-com-vs-jetpack-vs-wordpress-org/\">Helen Hou-Sandí came up with a great analogy</a> and an interesting post about it all.</li>\n<li style=\"font-weight: 400\">If you’re interested in contributing specifically to the JavaScript or PHP areas of the WordPress core codebase, then the new #core-js and #core-php channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> are perfect for you.</li>\n</ul>\n<p><i>If you have a story we should consider including in the next “Month in WordPress” post, please </i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i>submit it here</i></a><i>.</i></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.8 “Evans”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2017/06/evans/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Jun 2017 14:49:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4770\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"An Update with You in Mind Gear up for a more intuitive WordPress! Version 4.8 of WordPress, named “Evans” in honor of jazz pianist and composer William John “Bill” Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand. Though some […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:34144:\"<h2 style=\"text-align: center\">An Update with You in Mind</h2>\n<p><img class=\"aligncenter size-large wp-image-4816\" src=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=632%2C316&ssl=1\" alt=\"\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=1024%2C512&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=300%2C150&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=768%2C384&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1264&ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Gear up for a more intuitive WordPress!</h3>\n<p>Version 4.8 of WordPress, named “Evans” in honor of jazz pianist and composer William John “Bill” Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand.</p>\n<p>Though some updates seem minor, they’ve been built by hundreds of contributors with <em>you</em> in mind. Get ready for new features you’ll welcome like an old friend: link improvements, <em>three</em> new media widgets covering images, audio, and video, an updated text widget that supports visual editing, and an upgraded news section in your dashboard which brings in nearby and upcoming WordPress events.</p>\n<hr />\n<h2 style=\"text-align: center\">Exciting Widget Updates</h2>\n<p><img class=\"size-large wp-image-4776 aligncenter\" src=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=632%2C436&ssl=1\" alt=\"\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=1024%2C706&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=300%2C207&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=768%2C530&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Image Widget</h3>\n<p>Adding an image to a widget is now a simple task that is achievable for any WordPress user without needing to know code. Simply insert your image right within the widget settings. Try adding something like a headshot or a photo of your latest weekend adventure — and see it appear automatically.</p>\n<h3>Video Widget</h3>\n<p>A welcome video is a great way to humanize the branding of your website. You can now add any video from the Media Library to a sidebar on your site with the new Video widget. Use this to showcase a welcome video to introduce visitors to your site or promote your latest and greatest content.</p>\n<h3>Audio Widget</h3>\n<p>Are you a podcaster, musician, or avid blogger? Adding a widget with your audio file has never been easier. Upload your audio file to the Media Library, go to the widget settings, select your file, and you’re ready for listeners. This would be a easy way to add a more personal welcome message, too!</p>\n<h3>Rich Text Widget</h3>\n<p>This feature deserves a parade down the center of town! Rich-text editing capabilities are now native for Text widgets. Add a widget anywhere and format away. Create lists, add emphasis, and quickly and easily insert links. Have fun with your newfound formatting powers, and watch what you can accomplish in a short amount of time.</p>\n<hr />\n<h2 style=\"text-align: center\">Link Boundaries</h2>\n<div id=\"v-8BDWH3QG-1\" class=\"video-player\"><video id=\"v-8BDWH3QG-1-video\" width=\"632\" height=\"342\" poster=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Link Boundaries\" src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg?resize=632%2C342\" data-recalc-dims=\"1\" /></div><p>Link Boundaries</p></video></div>\n<p>Have you ever tried updating a link, or the text around a link, and found you can’t seem to edit it correctly? When you edit the text after the link, your new text also ends up linked. Or you edit the text in the link, but your text ends up outside of it. This can be frustrating! With link boundaries, a great new feature, the process is streamlined and your links will work well. You’ll be happier. We promise.</p>\n<hr />\n<h2 style=\"text-align: center\">Nearby WordPress Events</h2>\n<p><img class=\"aligncenter wp-image-4779 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=632%2C465&ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=1024%2C753&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=300%2C221&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=768%2C565&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?w=1126&ssl=1 1126w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Did you know that WordPress has a thriving offline community with groups meeting regularly in more than 400 cities around the world? WordPress now draws your attention to the events that help you continue improving your WordPress skills, meet friends, and, of course, publish!</p>\n<p>This is quickly becoming one of our favorite features. While you are in the dashboard (because you’re running updates and writing posts, right?) all upcoming WordCamps and official WordPress Meetups — local to you — will be displayed.</p>\n<p>Being part of the community can help you improve your WordPress skills and network with people you wouldn’t otherwise meet. Now you can easily find your local events just by logging in to your dashboard and looking at the new Events and News dashboard widget.</p>\n<hr />\n<h2 style=\"text-align: center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/17/cleaner-headings-in-the-admin-screens/\">More Accessible Admin Panel Headings</a></h3>\n<p>New CSS rules mean extraneous content (like “Add New” links) no longer need to be included in admin-area headings. These panel headings improve the experience for people using assistive technologies.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/removal-of-core-embedding-support-for-wmv-and-wma-file-formats/\">Removal of Core Support for WMV and WMA Files</a></h3>\n<p>As fewer and fewer browsers support Silverlight, file formats which require the presence of the Silverlight plugin are being removed from core support. Files will still display as a download link, but will no longer be embedded automatically.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/multisite-focused-changes-in-4-8/\">Multisite Updates</a></h3>\n<p>New capabilities have been introduced to 4.8 with an eye towards removing calls to<br />\n<code>is_super_admin()</code>. Additionally, new hooks and tweaks to more granularly control site and user counts per network have been added.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/23/addition-of-tinymce-to-the-text-widget/\">Text-Editor JavaScript API</a></h3>\n<p>With the addition of TinyMCE to the text widget in 4.8 comes a new JavaScript API for instantiating the editor after page load. This can be used to add an editor instance to any text area, and customize it with buttons and functions. Great for plugin authors!</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/\">Media Widgets API</a></h3>\n<p>The introduction of a new base media widget REST API schema to 4.8 opens up possibilities for even more media widgets (like galleries or playlists) in the future. The three new media widgets are powered by a shared base class that covers most of the interactions with the media modal. That class also makes it easier to create new media widgets and paves the way for more to come.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/16/customizer-sidebar-width-is-now-variable/\">Customizer Width Variable</a></h3>\n<p>Rejoice! New responsive breakpoints have been added to the customizer sidebar to make it wider on high-resolution screens. Customizer controls should use percentage-based widths instead of pixels.</p>\n<hr />\n<h2 style=\"text-align: center\">The Squad</h2>\n<p>This release was led by <a href=\"https://matt.blog\">Matt</a> and <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, with the help of the following fabulous folks. There are 346 contributors with props in this release, with 106 of them contributing for the first time. Pull up some Bill Evans on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/1naveengiri\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/4nickpick\">4nickpick</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abhishek\">abhishek</a>, <a href=\"https://profiles.wordpress.org/abhishekfdd\">Abhishek Kumar</a>, <a href=\"https://profiles.wordpress.org/abrain\">abrain</a>, <a href=\"https://profiles.wordpress.org/kawauso\">Adam Harley (Kawauso)</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamsoucie\">Adam Soucie</a>, <a href=\"https://profiles.wordpress.org/afzalmultani\">Afzal Multani</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/apmarshall\">Alex Floyd Marshall</a>, <a href=\"https://profiles.wordpress.org/alexkingorg\">Alex King</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rockwell15\">Andrew Rockwell</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/arena94\">arena94</a>, <a href=\"https://profiles.wordpress.org/arshidkv12\">Arshid</a>, <a href=\"https://profiles.wordpress.org/aryamaaru\">Arun</a>, <a href=\"https://profiles.wordpress.org/asalce\">asalce</a>, <a href=\"https://profiles.wordpress.org/ashokkumar24\">ashokkumar24</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/bcworkz\">bcworkz</a>, <a href=\"https://profiles.wordpress.org/bharatkambariya\">Bharat Kambariya</a>, <a href=\"https://profiles.wordpress.org/blobfolio\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/drrobotnik\">Brandon Lavigne</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard\">Bridget Willard</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90\">Bunty</a>, <a href=\"https://profiles.wordpress.org/camikaos\">Cami Kaos</a>, <a href=\"https://profiles.wordpress.org/carl-alberto\">Carl Alberto</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/cazm\">cazm</a>, <a href=\"https://profiles.wordpress.org/ccprog\">ccprog</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/chiragpatel\">Chirag Patel</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/cklosows\">Chris Klosowski</a>, <a href=\"https://profiles.wordpress.org/chris_dev\">Chris Mok</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/coreymckrill\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/courtneypk\">Courtney P.K.</a>, <a href=\"https://profiles.wordpress.org/cristianozanca\">Cristiano Zanca</a>, <a href=\"https://profiles.wordpress.org/csloisel\">csloisel</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/clarinetlord\">Cyrus Collier</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/diddledan\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/darshan02\">Darshan_dj</a>, <a href=\"https://profiles.wordpress.org/darthaud\">darthaud</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbenton\">davidbenton</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dhanendran\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dharm1025\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dhaval-parekh\">Dhaval Parekh</a>, <a href=\"https://profiles.wordpress.org/dingo_bastard\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/doublehhh\">DoubleH</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drivingralle\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/dspilka\">dspilka</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/ejner69\">Ejner Galaz</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/emirpprime\">emirpprime</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/endif-media\">Ethan Allen</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fibonaccina\">fibonaccina</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/francina\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/fstaude\">Frank Neumann-Staude</a>, <a href=\"https://profiles.wordpress.org/f-j-kaiser\">Franz Josef Kaiser</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/ghosttoast\">Gustave F. Gerhardt</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">hedgefield</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/helgatheviking\">helgatheviking</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ig_communitysites\">ig_communitysites</a>, <a href=\"https://profiles.wordpress.org/zinigor\">Igor Zinovyev</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/iv3rson76\">Ivan Stefanov</a>, <a href=\"https://profiles.wordpress.org/ivantedja\">ivantedja</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert\">Jack Reichert</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami\">Jaydeep Rami</a>, <a href=\"https://profiles.wordpress.org/jazbek\">jazbek</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jenblogs4u\">Jen Miller</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jesseenterprises\">jesseenterprises</a>, <a href=\"https://profiles.wordpress.org/jigneshnakrani\">Jignesh Nakrani</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jjcomack\">jjcomack</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/chanthaboune\">Josepha</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/vijustin\">Justin McGuire</a>, <a href=\"https://profiles.wordpress.org/certainstrings\">Justin Tucker</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kafleg\">kafleg</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/karinedo\">karinedo</a>, <a href=\"https://profiles.wordpress.org/zoonini\">Kathryn</a>, <a href=\"https://profiles.wordpress.org/kaushik\">kaushik</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr\">kjellr</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kostasx\">kostasx</a>, <a href=\"https://profiles.wordpress.org/kubik-rubik\">kubik-rubik</a>, <a href=\"https://profiles.wordpress.org/kuck1u\">KUCKLU</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leemon\">leemon</a>, <a href=\"https://profiles.wordpress.org/lewiscowles\">LewisCowles</a>, <a href=\"https://profiles.wordpress.org/liammcarthur\">LiamMcArthur</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukasbesch\">lukasbesch</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/mp518\">Mahesh Prajapati</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/maguiar\">Mario Aguiar</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusfd\">Matheus Martins</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mathieuhays\">mathieuhays</a>, <a href=\"https://profiles.wordpress.org/matias\">matias</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mayurk\">Mayur Keshwani</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/menakas\">Menaka S.</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/michelleweber\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milindmore22\">Milind More</a>, <a href=\"https://profiles.wordpress.org/mitraval192\">Mithun Raval</a>, <a href=\"https://profiles.wordpress.org/mmdeveloper\">MMDeveloper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mohanjith\">mohanjith</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrgregwaugh\">MrGregWaugh</a>, <a href=\"https://profiles.wordpress.org/mschadegg\">mschadegg</a>, <a href=\"https://profiles.wordpress.org/codegeass\">Muhammet Arslan</a>, <a href=\"https://profiles.wordpress.org/dots\">MULTIDOTS</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/naomicbush\">Naomi C. Bush</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nsundberg\">Nicklas Sundberg</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nitin-kevadiya\">Nitin Kevadiya</a>, <a href=\"https://profiles.wordpress.org/kailanitish90\">Nitish Kaila</a>, <a href=\"https://profiles.wordpress.org/nobremarcos\">nobremarcos</a>, <a href=\"https://profiles.wordpress.org/nosegraze\">NoseGraze</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/iaaxpage\">page-carbajal</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/philipjohn\">Philip John</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/psoluch\">Piotr Soluch</a>, <a href=\"https://profiles.wordpress.org/postpostmodern\">postpostmodern</a>, <a href=\"https://profiles.wordpress.org/pranalipatel\">Pranali Patel</a>, <a href=\"https://profiles.wordpress.org/pratikshrestha\">Pratik Shrestha</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/printsachen1\">printsachen1</a>, <a href=\"https://profiles.wordpress.org/priyankabehera155\">Priyanka Behera</a>, <a href=\"https://profiles.wordpress.org/prosti\">prosti</a>, <a href=\"https://profiles.wordpress.org/ptbello\">ptbello</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafaehlers\">Rafael Ehlers</a>, <a href=\"https://profiles.wordpress.org/raggedrobins\">raggedrobins</a>, <a href=\"https://profiles.wordpress.org/raisonon\">raisonon</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/rclations\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/redrambles\">redrambles</a>, <a href=\"https://profiles.wordpress.org/reidbusi\">reidbusi</a>, <a href=\"https://profiles.wordpress.org/reldev\">reldev</a>, <a href=\"https://profiles.wordpress.org/rellect\">rellect</a>, <a href=\"https://profiles.wordpress.org/arena\">RENAUT</a>, <a href=\"https://profiles.wordpress.org/rensw90\">rensw90</a>, <a href=\"https://profiles.wordpress.org/reportermike\">reportermike</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/riddhiehta02\">Riddhi Mehta</a>, <a href=\"https://profiles.wordpress.org/aussieguy123\">Robbie Cahill</a>, <a href=\"https://profiles.wordpress.org/sanchothefat\">Robert O\'Rourke</a>, <a href=\"https://profiles.wordpress.org/littlerchicken\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/runciters\">runciters</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sagarkbhatt\">Sagar Bhatt</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samantha-miller\">Samantha Miller</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/sathyapulse\">sathyapulse</a>, <a href=\"https://profiles.wordpress.org/sboisvert\">sboisvert</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/sgolemon\">sgolemon</a>, <a href=\"https://profiles.wordpress.org/shadyvb\">Shady Sharaf</a>, <a href=\"https://profiles.wordpress.org/shanee\">shanee</a>, <a href=\"https://profiles.wordpress.org/shashwatmittal\">Shashwat Mittal</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shulard\">shulard</a>, <a href=\"https://profiles.wordpress.org/slbmeh\">slbmeh</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stormrockwell\">Storm Rockwell</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/supercoder\">Supercoder</a>, <a href=\"https://profiles.wordpress.org/cybr\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/gonom9\">taggon</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/takayukister\">Takayuki Miyoshi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/technopolitica\">technopolitica</a>, <a href=\"https://profiles.wordpress.org/teinertb\">teinertb</a>, <a href=\"https://profiles.wordpress.org/tejas5989\">tejas5989</a>, <a href=\"https://profiles.wordpress.org/terwdan\">terwdan</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/themiked\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/thepelkus\">thepelkus</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/topher1kenobe\">Topher</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/triplejumper12\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tymvie\">tymvie</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/vaishuagola27\">vaishu.agola27</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wpfo\">wpfo</a>, <a href=\"https://profiles.wordpress.org/xrmx\">xrmx</a>, <a href=\"https://profiles.wordpress.org/ze3kr\">ze3kr</a>, and <a href=\"https://profiles.wordpress.org/h3llas\">Zeljko Ascic</a>.\n<p> </p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.8. Their efforts bring WordPress 4.8 fully translated to 38 languages at release time with more on the way.</p>\n<p>Do you want to report on WordPress 4.8? <a href=\"https://s.w.org/images/core/4.8/wp-4-8_press-kit.zip\">We’ve compiled a press kit</a> featuring information about the release features, and some media assets to help you along.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress — we hope you enjoy!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.8 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2017/06/wordpress-4-8-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jun 2017 22:13:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4765\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:336:\"The second release candidate for WordPress 4.8 is now available. To test WordPress 4.8, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip). We’ve made a handful of changes since releasing RC 1 last week. For more details about what’s new in version 4.8, check out the […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1173:\"<p>The second release candidate for WordPress 4.8 is now available.</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40866&stop_rev=40847\">a handful of changes</a> since releasing RC 1 last week. For more details about what’s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/\">RC1</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>Happy testing!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4765\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.8 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 May 2017 23:04:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4758\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"The release candidate for WordPress 4.8 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on Thursday, June 8, but we need your help to get there. If you haven’t tested 4.8 yet, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2365:\"<p>The release candidate for WordPress 4.8 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on <strong>Thursday, June 8</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.8 yet, now is the time!</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40840&stop_rev=40821\">a handful of changes</a> since releasing Beta 2 earlier this week. For more details about what’s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.8 and update your plugin’s <em>Tested up to</em> version in the readme to 4.8. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>This release’s haiku is courtesy of <a href=\'https://profiles.wordpress.org/matveb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matveb</a>:</p>\n<p><em>Érrese uno</em><br />\n<em>Cien veces y más</em><br />\n<em>Erre ce dos</em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4758\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.8 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 May 2017 00:02:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4749\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.8 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.8, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1621:\"<p>WordPress 4.8 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.8, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.8-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> blog post. Since then, we’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=40819&stop_rev=40664&limit=100&sfp_email=&sfph_mail=\">over 50 changes</a> in Beta 2.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>WordPress four point eight<br />\nOne step closer to release<br />\nPlease test Beta 2!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4749\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.5 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 22:39:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4734\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"WordPress 4.7.5 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2349:\"<p>WordPress 4.7.5 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CSRF) vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.5&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4734\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress Now on HackerOne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 May 2017 16:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4730\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:322:\"WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that WordPress is now officially […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1715:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We’ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.8 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 May 2017 00:15:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4727\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"We’re planning a smaller WP release early next month, bringing in three major enhancements: An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it’s hard to describe.) A revamp of the dashboard news widget to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1148:\"<p>We’re planning a smaller WP release early next month, bringing in three major enhancements:</p>\n<ul>\n<li>An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it’s hard to describe.)</li>\n<li>A revamp of the dashboard news widget to bring in nearby and upcoming events including meetups and WordCamps.</li>\n<li>Several new media widgets covering images, audio, and video, and an enhancement to the text widget to support visual editing.</li>\n</ul>\n<p>The first beta of 4.8 is now available for testing. You can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> (or just run trunk) to try the latest and greatest, and each of these areas could use a ton of testing. Our goals are to make editing posts with links more intuitive, make widgets easier for new users and more convenient for existing ones, and get many more people aware of and attending our community events.</p>\n<p><em>Four point eight is here<br />\nSmall changes with a big punch<br />\nBig ones come later</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4727\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 09 Aug 2017 12:52:37 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 02 Aug 2017 21:26:25 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}}s:5:\"build\";s:14:\"20170712130846\";}','no'),(131,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1502326360','no'),(132,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1502283160','no'),(133,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1502326362','no'),(134,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"HeroPress: WordPress Ate My Life—In a Good Way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://heropress.com/essays/wordpress-ate-life-good-way/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-ate-life-good-way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11502:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/080917-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Thanks to the WordPress meetup, I found focus, fun, friends, and what passes for fame.\" /><p>I did not spend my childhood wanting to grow up to be a WordPress consultant. Given that I was born in 1967, long before the World Wide Web even existed, I would have had to be clairvoyant to aspire to any kind of web development. I was intrigued by computers when I first encountered the TRS-80 at the age of 12, but other than learning a few lines of BASIC, I didn’t pursue programming.</p>\n<p>Parenthetically, I don’t think it was because girls weren’t encouraged to become programmers. This was even before the days of the Control Data Institute commercials on TV. Programming as a career for anyone at all was not in the minds of the general public, at least not in Ohio. And although I thought computers were cool (being a science fiction fan and all), I didn’t have any clear sense of what you could do with them. I never made the mental connection between writing a 10-line program in BASIC and eventually creating something like a video game or a word-processing program.</p>\n<p>During my freshman year in college, I fell into the Classics Vortex, and ended up going to graduate school to study Greek and Latin drama. I expected to get my degree and a university teaching job.</p>\n<blockquote><p>I spoke at a few conferences and published a few papers. And I discovered the World Wide Web.</p></blockquote>\n<p>I’d gotten online in 1985, also in my freshman year at Brown. We were on BITNET and someone in the computer center showed me how to get onto Relay when I was down their using the mainframe to write essays with. (Fly, sledgehammer, boom.) The Internet came into being about the time I got to graduate school in 1989, and someone showed me the Web in 1994. It blew me away, because a visual medium of communication is vastly superior to a text-based medium when you’re talking about theatrical productions.</p>\n<p>By the end of 1994 I’d moved to England and created my first web page. (We didn’t have websites in those days, just ‘pages.’ Even if there were lots of pages. And wow, I just wrote that in inverted commas rather than quotation marks, as if my brain shifted itself back to Britain just thinking about it.)</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/DIDASKALIA-1998-min.png\"><img class=\"size-large wp-image-2017\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/DIDASKALIA-1998-min-1024x506.png\" alt=\"Sallie’s first website, Didaskalia, as it was in 1998\" width=\"960\" height=\"474\" /></a>Sallie’s first website, Didaskalia, as it was in 1998\n<p>So you’d think that maybe, from there, I would have gotten into a career in web development whether or not WordPress had ever existed, but that wasn’t what actually happened.</p>\n<h3>When Your Body Isn’t Your Friend</h3>\n<p>While I was still in graduate school, I developed a debilitating chronic illness that prevented me from finishing my PhD due to a combination of physical and cognitive problems, and although I started to get better at first, by the end of 1998, when I had to return to the US, my condition had worsened to the point where I wasn’t sure I’d ever be able to work. I spent about 18 months just going to doctors and therapists and support groups. When I did start working, it was as a caregiver, doing extremely simple tasks, because my confidence in my ability to do knowledge work of any kind was so badly damaged.</p>\n<p>I eventually started doing more kinds of things to earn money: clerical work, basic tech support, writing. Somewhere in there, I helped a couple of people with their websites, even though I’d missed a whole lot of the evolution of the Web. (I’m not at all sorry to have skipped Flash.) I was feeling considerably better thanks to new medication, and easing my way toward being self-supporting, but at the time I discovered WordPress in 2005, I was suffering from a bad case of Multiple Business Personality Disorder. I had a number of useful skills, but no clear focus or unifying principle.</p>\n<p>I had started my first blog on Blogger in January 2005, but within a few months I found myself hanging out with a lot of podcasters, and almost all of them used WordPress because the PodPress plugin (RIP) made it so easy to publish feeds with enclosures. I started to explore WordPress further, and within a few years had migrated my blog from Blogger because they stopped allowing you to self-host your blog. WordPress had meanwhile introduced pages, making it possible to build an entire website rather than having an HTML website and a WordPress blog.</p>\n<h3>Finding Community</h3>\n<p>But WordPress would probably have remained a sideline if I hadn’t started going to WordPress meetups. I was at a podcasting meetup in San Francisco in late 2008 when someone mentioned a WordPress meetup in SF. I went to a meeting (I think in January 2009) and someone THERE mentioned that there was a WordPress meetup starting in the East Bay, closer to where I lived. I went to that meeting in February 2009…and the rest is history.</p>\n<blockquote><p>It wasn’t that the first meetup was such an amazing experience. The organizer was new at running a meetup and we were all strangers to each other. But somehow talking about our shared interest in WordPress just made us more interested.</p></blockquote>\n<p>I’ve always been a service junkie, and I’d been involved with other networking groups for years, so it wasn’t long before I found myself co-organizer, helping to plan and run the meetup and welcoming new members as they joined. Through the meetup, I started to learn more about the WordPress community and open source software. A group of us went to WordCamp SF 2009.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/WordCampSF-2010-min.jpg\"><img class=\"size-full wp-image-2019\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/WordCampSF-2010-min.jpg\" alt=\"East Bay WordPress Meetup members at WCSF 2010\" width=\"1776\" height=\"2336\" /></a>East Bay WordPress Meetup members at WCSF 2010\n<p>Because of the meetup, I made more and more connections in the wider WordPress community. Because of the meetup, I learned a lot more about WordPress than I would have on my own, in part because I often had to teach it. Because of the meetup, more WordPress-related work came to me. I started to learn more code, little bits and fragments at a time. WordPress drew me in deeper and deeper as time progressed. In 2012, I officially registered WP Fangirl, and since that time, almost all my income has come from WordPress work.</p>\n<h3>All the WordCamps</h3>\n<p>I went to all the San Francisco WordCamps between 2009 and 2014, after which WordCamp US was instituted. By the time the first WordCamp Sacramento was announced in 2015, all the meetup presentations I’d done gave me the confidence to submit a talk. It was accepted. I’ve since spoken at WCLAX 2016 and WCSAC 2016. I’m working on my presentation for WCSAC 2017. (I’d love to travel for more meetups, but it’s not in the budget.)</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/Sallie_Goetsch-min.jpg\"><img class=\"size-full wp-image-2021\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/Sallie_Goetsch-min.jpg\" alt=\"Speaking at WordCamp LAX 2016\" width=\"1920\" height=\"1086\" /></a>Speaking at WordCamp LAX 2016\n<p>The experience I had with the Meetup made me want to connect more and more with other WordPress people, and to help out where I could. As I said, I’m a service junkie, so I readily embraced the idea of giving back to the community. I’m not a good enough developer (yet, anyway) to be a core contributor, but there are lots of ways to contribute. The main one, in my case, is organizing the meetup, though it took me until 2016 to join the official WordPress Community meetup program.</p>\n<p>I was also very active in the main WordPress LinkedIn group for several years, which led to O’Reilly hiring me as the technical reviewer for WordPress: The Missing Manual. (It may also have contributed to the gig I had in 2011 making WordPress videos for Peachpit Press and the one in 2012 and 2013 teaching WordPress for Mediabistro.)</p>\n<p>I started listening to WordPress podcasts in about 2006, though WP Weekly is the only one of those early shows that’s still around. There are tons of new WP podcasts now, more than I can keep up with. I got invited to participate in one, the WP-Tonic panel, starting in 2015. You can hear me being mouthy and opinionated there almost every week. I follow WordPress people on Twitter, belong to WordPress Slack teams, and have been known to dream about WordPress.</p>\n<p>Thanks to the WordPress meetup, I found focus, fun, friends, and what passes for fame. I’m still working on fortune, but I can tell you that the secret to the many great referrals I’ve gotten from my extensive network of WordPress connections is this: don’t go into it looking for what you can get. Just concentrate on what you can give, and never stop learning.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress Ate My Life—In a Good Way\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Ate%20My%20Life%E2%80%94In%20a%20Good%20Way&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-ate-life-good-way%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Ate My Life—In a Good Way\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-ate-life-good-way%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-ate-life-good-way%2F&title=WordPress+Ate+My+Life%E2%80%94In+a+Good+Way\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Ate My Life—In a Good Way\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-ate-life-good-way/&media=https://heropress.com/wp-content/uploads/2017/08/080917-min-150x150.jpg&description=WordPress Ate My Life—In a Good Way\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Ate My Life—In a Good Way\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-ate-life-good-way/\" title=\"WordPress Ate My Life—In a Good Way\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-ate-life-good-way/\">WordPress Ate My Life—In a Good Way</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2017 12:00:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Sallie Goetsch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Live from Publish: Challenges facing the WordPress Economy — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=38415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://poststatus.com/live-publish-challenges-facing-wordpress-economy-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1719:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p>In this episode, Brian and Joe are live at Post Status Publish and answer questions from the conference audience. They are asked about mistakes they think the WordPress product ecosystem is making, the challenges of working remotely, and many more existential questions.</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/0550d90d.mp3\">https://audio.simplecast.com/0550d90d.mp3</a>\n<p><a href=\"https://audio.simplecast.com/0550d90d.mp3\">Direct Download</a></p>\n<p>Publish was a lot of fun, and we’ll have more audio, video, and pictures available over the coming weeks.</p>\n<h3>Sponsor: Liquid Web</h3>\n<p><span><a href=\"https://www.liquidweb.com/managedwordpress/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Liquid Web</a> was the platinum sponsor of the Publish podcast, and therefore this episode of the podcast as well. If you haven’t tried Liquid Web’s Managed WordPress product, it’s time. They are doing awesome work in this space for mission critical sites.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2017 00:29:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress Core Fields API Project Sees Renewed Interest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73965\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wordpress-core-fields-api-project-sees-renewed-interest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5551:\"<p>As work continues at a feverish pace <a href=\"https://make.wordpress.org/core/2017/08/08/discovering-gutenberg-and-next-steps/\">on Gutenberg</a>, many developers throughout the community are <a href=\"https://github.com/WordPress/gutenberg/issues/952\">engaging in discussions</a> on how <a href=\"https://wptavern.com/gutenberg-development-team-confirms-meta-box-api-will-not-be-formally-deprecated\">meta boxes will be handled</a> in the new editor. The team is <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320644682\">considering various solutions</a> and <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320638392\">some </a>have <a href=\"https://twitter.com/scottkclark/status/894488147966517248\">suggested</a> that a Fields API in core would have made the future of meta boxes less of an issue.</p>\n<p>I reached out to <a href=\"https://www.scottkclark.com/\">Scott Kingsley Clark</a>, lead developer of the <a title=\"Pods Framework for WordPress\" href=\"http://pods.io/\" target=\"_blank\" rel=\"noopener\">Pods Framework</a> and one of the main contributors to the <a href=\"https://make.wordpress.org/core/tag/fields-api/\">Fields API project</a>. Clark explains what the Fields API is, its current status, its relationship to the meta box discussions, and how to contribute.</p>\n<p><strong>For those who don’t know, what is the Fields API project? How would it impact users?</strong></p>\n<p>It’s a <a href=\"https://github.com/sc0ttkclark/wordpress-fields-api\">feature proposal</a> for WordPress core to allow registering fields to different screens in the admin area through a single API. For posts, this would add new meta boxes and fields within them. For users, it would add new sections and fields to the profile screen. The goal is to integrate with all of the different admin screens including, Posts, Terms, Users, Media, and Comments.</p>\n<p>Typical users would notice that the fields added by plugins they are using all have a similar look and feel. That’s really an oversimplification of what’s going on behind the scenes, but it’s one of the big benefits as well, since it shouldn’t really affect end-users beyond improving consistency of different screens and potential redesigns.</p>\n<p><strong>What has caused progress on the project to slow down?</strong></p>\n<p>I was out-of-town for a all-hands company meetup, lead organized WordCamp Dallas-Fort Worth 2016, and ran PodsCamp 2016 in Austin, TX, all in the span of about a month and a half. It was intense, but somehow last summer I thought I could manage moving too.</p>\n<p>We were in the process of showing our house, almost all of the time, so that we could sell it. The buying process was full of thorns, with a move that was pretty fun. I also started a new job at Modern Tribe in February, 2017.</p>\n<p>In retrospect, yes that was way too much but the challenge was met and the only thing that suffered was the Fields API project, which was no easy feat. It’s unfortunate, but I’m glad to be getting back into things again this month.</p>\n<p><strong>Are new contributors showing a renewed interest in the project?</strong></p>\n<p>Yes. We recently had a few people become interested in helping. When I’ve got help, I’m 300% more productive. It’s much easier to bounce ideas off of others with shared experience than it is going alone.</p>\n<p><strong>How does the API relate to how meta boxes could be handled in Gutenberg? If the API were in core, how would it influence the discussion?</strong></p>\n<p>Here’s where the irony sets in. If we were successful in getting a Fields API into WordPress before Gutenberg was a thing, the ability for Gutenberg to revamp as much as it has planned to revamp in the post editor, would not be as hindered as it is now.</p>\n<p>The biggest problem I see facing Gutenberg is reining in the scope that covers meta boxes. They need to get things working for meta boxes that are already being registered and used by plugin developers.</p>\n<p>If Fields API were a part of WordPress, they would still need to keep backwards compatibility but I could easily add a meta box with my fields into the proposed Gutenberg meta boxes (still in discussion) with just a few lines of code. Plus, my fields and meta boxes registered using the Fields API would work just fine on pre-Gutenberg sites.</p>\n<p>Another parallel here would be the User edit screen, which has had <a href=\"https://make.wordpress.org/core/2015/08/03/fields-api-request-for-review-of-direction/\">much discussion</a> about revamping the way it looks. It’s very difficult to revamp it and give it consistency without a Fields API already in place. It’s not impossible, but many problems come to the surface during any approach to ‘React-ify’ it, utilize meta boxes, or whatever it would use.</p>\n<p><strong>How can people get involved/contribute to the Fields API project?</strong></p>\n<p>I’m very excited to have others interested in moving the project along. I’m eager to gain more interest. They can join us in <a href=\"https://wordpress.slack.com/messages/C04MWK7PZ/\">#core-fields</a> on <a href=\"https://wordpress.slack.com/\">WordPress Slack</a> if anyone is interested. They can also follow the <a href=\"https://github.com/sc0ttkclark/wordpress-fields-api\">project on GitHub</a> where pull requests are welcomed.</p>\n<p>Clark also says that the GitHub repository will be revamped soon to provide more focus on making the project a feature-plugin first instead of a core proposal.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2017 21:47:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Gutenberg Development Team Confirms Meta Box API Will Not be Formally Deprecated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73939\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/gutenberg-development-team-confirms-meta-box-api-will-not-be-formally-deprecated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8674:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/boxes.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/25716750@N06/2527068003\">Doors Open Toronto 2008 – Toronto Archives</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>The discussion surrounding <a href=\"https://github.com/WordPress/gutenberg/issues/952\" target=\"_blank\">how Gutenberg will handle meta boxes</a> heated up over the weekend after a participant <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320230104\" target=\"_blank\">commented</a> on the GitHub issue with concern regarding meta box support being removed from the most recent milestone.</p>\n<p>“I see this vital issue has been removed from any milestone,” @steveangstrom said. “It has been de-prioritized again while bells and whistles for blog editing get lots of work and are added to betas. This is very worrying for the future of WordPress as a CMS.”</p>\n<p>James Nylen, one of the lead developers on the project, reassured followers of the topic that the Gutenberg team has not forgotten about the issue but rather that it is “an extremely complicated issue that we are only beginning to look into, along with many, many other priorities for getting the editor working well.” He also <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320523428\" target=\"_blank\">asked</a> for help from the community in planning and testing implementations for supporting meta boxes.</p>\n<p>This response left many things unclear. Participants in the discussion, many of whom are developers concerned about about the prospect of having to rewrite all of their meta boxes as React components, are wondering why meta boxes cannot work alongside the new Gutenberg editor and why the team chose to include meta boxes in the scope of the project.</p>\n<p>“Is it possible to replace the existing TinyMCE post editor with Gutenberg while leaving the rest of the interface, including meta boxes and existing hooks, unchanged?” Kevin Hoffman asked. When Nylen clarified that Gutenberg, as written today, is intended to be a <code>post_content</code> editor, Hoffman summarized the concerns that many developers have expressed:</p>\n<blockquote><p>If Gutenberg is truly intended to be a <code>post_content</code> editor, then meta boxes should be left alone as they are not concerned with <code>post_content</code>.</p>\n<p>Furthermore the need for an API to translate PHP meta boxes into React meta boxes is a manufactured problem. It does not have to be a problem, but it has become a problem because somewhere along the line it was decided that rewriting the <code>post_content</code> editor should also completely change how meta boxes work.</p>\n<p>You’ve outlined the tremendous challenge of writing such an API in <a href=\"https://github.com/WordPress/gutenberg/pull/2251\" target=\"_blank\">#2251</a>. Translating PHP meta boxes into React for a popular custom fields solution like ACF is challenging enough, let alone trying to do so for every meta box implementation that exists today, popular or not. It does not scale.</p></blockquote>\n<p>As the Gutenberg contributors shared that they have only just begun to look into the meta box issue, it’s now clear why there is no roadmap for how the project will handle “legacy” PHP meta boxes. In July, Nylen said, “If I had to guess where we will end up here: current metaboxes will be moved to a “legacy” area and we will provide APIs, documentation, and examples for registering ‘new-style’ metabox-block-thingies.”</p>\n<p>Plugin developers who manage meta box libraries, agencies, and other concerned parties are following the ticket to find out how to plan for the WordPress 5.0, which has been targeted as the Gutenberg release. Andrey Savchenko <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320574699\" target=\"_blank\">asked</a> if WordPress plans to formally deprecate the meta box API, which finally drew a clear answer from the team. Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320644682\" target=\"_blank\">responded</a>:</p>\n<blockquote><p><strong>“Does WordPress intend to formally deprecate Metabox API?”</strong><br />\nNo.</p>\n<p>The question that is not fully answered yet is how do meta-boxes work in the context of the Gutenberg editor. Should they remain the same or evolve? How can we move towards the design goals with the least amount of disruption possible?</p>\n<p>This issue has been lingering not due to a lack of desire, but lack of resources. The primary focus for this project is to offer a rich content editing interface that optimizes for direct manipulation of user content through the notion of blocks. (Having used meta-boxes extensively for various projects, I believe blocks can offer a better step forwards for many of those needs while providing a better user experience.)”</p></blockquote>\n<p>Ventura listed several options the team has considered for handling meta boxes and requested help from the community to build the best solution:</p>\n<ul>\n<li>If we detect a meta-box is registered we can fallback to the old interface, nothing changes.</li>\n<li>We could split editing the content and modifying meta information into two screens or stages.</li>\n<li>We can try to see how feasible it is to render these as they are (PHP) below the content: <a href=\"https://github.com/WordPress/gutenberg/pull/2251\" target=\"_blank\">#2251</a>.</li>\n<li>A theme/plugin/CPT could unregister the new interface as needed.</li>\n<li>Various items that relied on meta boxes could be converted to blocks for UI (still storing data separately).</li>\n<li>We could implement API based meta boxes extensibility like the Fields API.</li>\n</ul>\n<p>When pressed to answer the question of why meta boxes are being included in the context of the new editor, Gutenberg design lead Joen Asmussen clarified how the team decided to include meta boxes in the scope of the project:</p>\n<blockquote><p>Gutenberg did start just with the editor box. The kickoff goal was to unify multiple disparate interfaces under a single unified block interface. It quickly become apparent that in order for us to create a compelling experience revolving around this unified block interface, we had to consider the full writing flow, including settings and publishing.</p>\n<p>If the key strength of WordPress is to make it easy for anyone to create rich posts, then we can’t just design for those of us who already know how to use the editor. We have to consider users who’ve never used WordPress before, and what they expect in a modern publishing interface. Otherwise we’d just be adding cognitive load to an already heavy interface.</p></blockquote>\n<p>The question of how meta boxes will fit into the context of the Gutenberg editor is still open. Participants in the discussion are eager to have this question answered for the sake of backwards compatibility and also because it affects ongoing decisions regarding Gutenberg development and screen design.</p>\n<p>“I completely get how much work has been done towards the ‘screen’ replacement approach,” Xavi Ivars <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320771891\" target=\"_blank\">commented</a> on the issue. “But shouldn’t a project that started with the goal of a ‘post content editor’ replacement, have gone back to the community before deciding unilaterally that it would replace the whole editor screen?”</p>\n<p>The meta box API isn’t being deprecated but there’s also no clear path forward for how Gutenberg will support “legacy” PHP meta boxes. The Gutenberg team said the issue has not been solved due to lack of resources. The project needs community input and better communication if the team is going to land on a solution that will seamlessly usher the majority of WordPress sites into the Gutenberg era with the least amount of breakage.</p>\n<p>Currently, <a href=\"https://github.com/WordPress/gutenberg/pull/2251\" target=\"_blank\">the feasibility of rendering legacy PHP meta boxes below the content</a> is fraught with challenges and still up for debate. If there isn’t enough time or client resources for developers to rewrite their work into JS-driven meta boxes, then a clear path for opting out of the Gutenberg interface may be necessary for sites that need to preserve the legacy “PHP” meta boxes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2017 19:54:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: Gutenberg 0.7.0 Adds Opt-In Usage Tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73912\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/gutenberg-0-7-0-adds-opt-in-usage-tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6286:\"<p><a href=\"https://make.wordpress.org/core/2017/08/04/whats-new-in-gutenberg-4th-august/\" target=\"_blank\">Gutenberg 0.7.0</a> was released just before the weekend with improvements to the writing flow and greater flexibility for theme authors to add their own customizations. Last week’s version 0.6.0 release made significant changes to the way paragraphs are created within text blocks, allowing for blocks to split when pressing enter. However, it inserted a “New Paragraph” placeholder that was distracting for users trying to stay in the flow of writing.</p>\n<p>Version 0.7.0 <a href=\"https://github.com/WordPress/gutenberg/pull/2161\" target=\"_blank\">hides placeholders on focus</a>, providing a cleaner experience of starting a new paragraph. After a user has already intuitively initiated a new paragraph by pressing enter, the “New Paragraph” placeholder holds little value. Removing the placeholder is a minor improvement that brings Gutenberg closer to providing a better experience for long-form writing.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/new-paragraph-gutenberg-0-7-0.png?ssl=1\"><img /></a></p>\n<p>This release also introduces <a href=\"https://github.com/WordPress/gutenberg/pull/2186\" target=\"_blank\">theme support for customized color palettes and a shared component</a>, such as cover text and button blocks. The sample code below shows how easy it would be for theme authors to implement their own color palettes.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/theme-support-color-palette.png?ssl=1\"><img /></a></p>\n<p>Gutenberg contributors have also added <a href=\"https://github.com/WordPress/gutenberg/pull/2021\" target=\"_blank\">theme support for wide images</a>. According to the inline docs, this allows for some blocks, such as the image block, to define a “wide” or “full” alignment by adding the corresponding classname to the block’s wrapper ( <code>alignwide</code> or <code>alignfull</code> ).</p>\n<p>These additions offer theme developers a better picture of where Gutenberg is headed in regards to themes. The plugin’s contributors are slowly building in more points of customization so that theme authors can add or override Gutenberg’s styles and provide additional opt-in features to their users.</p>\n<p>Theme support for wide images has already been committed to Tammie Lister’s experimental <a href=\"https://github.com/WordPress/gutenberg-theme\" target=\"_blank\">Gutenberg Theme</a>. The project was created to showcase how Gutenberg will interact with WordPress themes and is still a work in progress.</p>\n<h3>Gutenberg Adds Opt-In Data Collection</h3>\n<p>After updating the Gutenberg plugin to 0.7.0 and navigating to the editor, users are presented with the option to opt into data collection about their usage of the editor. The usage data, which is anonymous and does not include post content, is sent to WordPress.com for future analysis. Gutenberg contributor James Nylen explained how the data tracking works in a <a href=\"https://make.wordpress.org/core/2017/08/06/opt-in-usage-tracking-in-gutenberg/\" target=\"_blank\">post</a> on Make.WordPress.org.</p>\n<p>“The Gutenberg plugin contains a mechanism to count how often specific actions occur over time,” Nylen said. “If the user has previously clicked ‘Yes’ on this screen, and an event occurs that has an associated <a href=\"https://github.com/WordPress/gutenberg/search?utf8=%E2%9C%93&q=bumpStat&type=\" target=\"_blank\">bumpStat call</a> in the Gutenberg code, then this event is sent to WordPress.com servers by loading a special ‘pixel’ image.”</p>\n<p>Gutenberg’s tracking code stores the “group” and “name” sent with the bumpStat call (short strings of text), along with the time the event was recorded. Nylen said the team will use the data to improve the editor based on usage patterns. This data collection information is currently only available to those with access to WordPress.com servers.</p>\n<p>“As Gutenberg is an open-source community project, we view this data as belonging to the WordPress community, so we also plan to make this data available via a public dashboard,” Nylen said.</p>\n<p>He shared an example of the data that has been collected from the plugin over the past few days since 0.7.0 was released. This chart is a preview of the number and types of blocks that users have added to posts while testing the editor.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/gutenberg-add-block-total-e1502130689795.png?ssl=1\"><img /></a></p>\n<p>“The approach taken here is very similar to Calypso’s event tracking code,” Nylen said in the <a href=\"https://github.com/WordPress/gutenberg/pull/2140\" target=\"_blank\">pull request for adding the data collection</a>. “We can use the data added in this PR to inform various decisions such as default order for blocks and whether some blocks are less suitable for core, and more generally this is a very useful technique to collect user experience data.”</p>\n<p>The majority of Gutenberg’s chief contributors are Automattic employees, so it makes sense that they would use the options and infrastructure available to them to quickly get data collection going in Gutenberg. However, the data from these tests needs to be shared with the greater WordPress community as soon as possible, since it is being collected in the name of the WordPress project. Ideally, it would have been set up to be displayed publicly before asking users to opt into the collection.</p>\n<p>Gutenberg contributors are also considering making the data collection more modular so that it could be used with other WordPress feature plugins or existing features in the future.</p>\n<p>“Maybe the tracking could be its own module, it could be useful outside of the editor (and other WP feature plugins later),” Riad Benguella <a href=\"https://github.com/WordPress/gutenberg/pull/2140#discussion_r130839438\" target=\"_blank\">said</a>. “Longer term (or not), WP.org needs its own tracking infrastructure and this could be very useful to enhance WordPress.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Aug 2017 20:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: Trademark Trial and Appeal Board Dismisses Automattic’s Trademark Dispute Against Chris Pearson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://wptavern.com/trademark-trial-and-appeal-board-dismisses-automattics-trademark-dispute-against-chris-pearson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4102:\"<p>In July 2015, Automattic <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">won its <span class=\"_Tgc\"> Uniform Domain-Name Dispute-Resolution Policy</span> (UDRP) case</a> against <a href=\"http://www.pearsonified.com/\">Chris Pearson</a> regarding Thesis.com after the <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">panel determined</a> that he failed to establish all three elements required under the ICANN Policy.</p>\n<blockquote><p>A party must satisfy all three of the burdens imposed under the Policy in order for the Panel to order transfer of a domain name from the entity registering it. Here, Complainant failed to establish that Respondent registered and used the disputed domain name in bad faith.</p>\n<p><em>See Starwood Hotels & Resorts Worldwide, Inc. v. Samjo CellTech.Ltd</em>, FA 406512 (Nat. Arb. Forum Mar. 9, 2005) (finding that the complainant failed to establish that respondent registered and used the disputed domain name in bad faith because mere assertions of bad faith are insufficient for a complainant to establish Policy ¶ 4(a)(iii)). Therefore, the Panel finds that Complainant failed to support its allegations under Policy ¶ 4(a)(iii) and finds for Respondent.</p></blockquote>\n<p>This allowed Automattic to maintain ownership of <a href=\"https://themeshaper.com/\">Thesis.com</a>. Automattic retaliated by <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=1\">filing a petition</a> for cancellation with the United States Patent and Trademark Office. In the petition, Automattic argued that the three trademarks owned by Pearson, DIYTHEMES, THESIS THEME, and THESIS, should be cancelled.</p>\n<p>For the past two years, legal teams for both parties have gone back and forth filing briefs, requests for extensions, and other documents. Earlier this year on April 20th, the Trademark Trial and Appeal Board <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=19\">dismissed the case</a> citing a lack of evidence and testimony from Automattic that establishes real interest and a reasonable belief in damages.</p>\n<blockquote><p>The record is devoid of any evidence concerning the nature of Petitioner’s (Automattic) commercial activities and its interest in Respondent’s (Chris Pearson) registered marks. Proof of standing in a Board proceeding is a low threshold.</p>\n<p>For example, Petitioner could have submitted testimony or competent documentary evidence as to its asserted need to use the terms comprising the marks and nature of its business activities to establish its standing.</p>\n<p>Petitioner neglected to do so. Thus, on the record before us, Petitioner has failed to establish a ‘real interest’ and ‘reasonable belief in damage.’ Accordingly, the cancellation proceeding is dismissed for Petitioner’s lack of standing.</p></blockquote>\n<p>On May 22nd,<a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=20\"> Automattic filed a motion</a> for the board to reconsider its decision. On June 1st, the <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=21\">board denied the request</a> making its decision final.</p>\n<blockquote><p>Petitioner has failed to establish any error in the Final Decision. Rather, Petitioner expresses disagreement with the result reached and argues, for the first time on reconsideration, positions it should have alleged in its petition to cancel, supported with testimony and/or competent evidence, and raised in its trial brief.</p>\n<p>We will not infer from Petitioner’s scant allegations and evidence, and silence in its brief, proof of its standing to bring this cancellation proceeding. Petitioner’s motion for reconsideration is denied.</p></blockquote>\n<p>The decision allows Pearson to retain ownership of the DIYTHEMES, THESIS THEME, and THESIS trademarks. It’s unclear if this outcome will lead to more legal actions from either party. At the time of publishing, Pearson did not return a request for comment regarding the outcome and what his plans are for the Trademarks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Aug 2017 00:56:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: In Case You Missed It – Issue 22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=73917&preview=true&preview_id=73917\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6881:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>WordPress Foundation is Taking Submissions for The Kim Parsell Memorial Scholarship</h2>\n<p>For the third year in a row, the WordPress Foundation will award a woman contributor with financial need who has never attended WordCamp US the <a href=\"https://2017.us.wordcamp.org/kim-parsell-memorial-scholarship-2017/\">Kim Parsell Memorial Scholarship</a>. The scholarship was created in memory of Kim Parsell who <a href=\"https://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away\">passed away in 2015</a>.</p>\n<p>The scholarship covers the cost of the following:</p>\n<ul>\n<li>Travel to and from Nashville from the recipient’s home city,</li>\n<li>Hotel stay for the duration of the event,</li>\n<li>A ticket to WordCamp US 2017.</li>\n</ul>\n<p>The deadline to apply for the scholarship is Tuesday, August 15th at 12a.m. Pacific.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://2017.us.wordcamp.org/kim-parsell-memorial-scholarship-2017/\">Kim Parsell Memorial Scholarship 2017</a></p></blockquote>\n<p></p>\n<h2>The WordPress Economy is Fine</h2>\n<p>In a <a href=\"https://poststatus.com/future-wordpress-economy-im-not-worried/\">guest post</a> for Post Status, Joshua Strebel, founder of Pagely, explains why he’s not worried about the WordPress economy.</p>\n<blockquote><p>In all channels, new market entrants or existing small shops are being out-gunned by the established players, or the buyers needs are being met upon install.</p>\n<p>So is the WordPress ecosystem shrinking? Yes, segments of it are and will continue to do so. It’s like in any industry: the car replaced the horse and the robot replaced the factory worker. What was successful in the New Market phase may not work in the more mature, ‘Existing Market’ phase we are in.</p></blockquote>\n<p>It’s a good read and it’s interesting to think about what new segments will be created that don’t exist.</p>\n<h2>WPCampus 2017 Videos Are Now Available</h2>\n<p>WPCampus has published <a href=\"https://wpcampus.org/videos/\">all of the videos</a> from its 2017 conference. They’re available to watch for free either on the site or the organization’s <a href=\"https://www.youtube.com/wpcampusorg\">YouTube channel</a>. If you attended WPCampus 2017 or watched the livestream, please consider taking <a href=\"https://2017.wpcampus.org/conference-survey/\">the following survey</a> that will help organizers plan for future events.</p>\n<h2>WordPress Case Studies Needed</h2>\n<p>The WordPress marketing team has published a survey seeking case studies from agencies, enterprises, and clients who use WordPress. The team has provided a sample <a href=\"https://make.wordpress.org/marketing/files/2017/08/WordPress-Marketing-Sample-Case-Study.pdf\">Case Study</a> that can be used as a template. The case studies will help determine how WordPress is being used and help focus future marketing efforts.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/marketing/2017/08/02/calling-all-wordpress-agencies/\">Calling all WordPress Agencies</a></p></blockquote>\n<p></p>\n<h2>New Preferred Languages Prototype</h2>\n<p>Pascal Birchler unveiled an updated prototype of the preferred languages project. The project adds UI to the WordPress backend that allows users to select multiple preferred languages. WordPress will try to load the translations for the first language that’s available. If it’s not available, it will fall back to the next language in the list.</p>\n<p>Birchler is seeking feedback on the newest <a href=\"https://github.com/swissspidy/preferred-languages\">version of the plugin</a> and is working towards it being a merge candidate for WordPress 4.9.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/core/2017/05/20/preferred-languages-the-prototype/\">Preferred Languages: The Prototype</a></p></blockquote>\n<p></p>\n<h2>WordPress’ Emerging Dominance as a CMS of Choice for Law Firms</h2>\n<p>Kevin O’ Keefe <a href=\"http://abovethelaw.com/2017/08/wordpress-to-dominate-as-content-management-system-for-all-law-firms/\">explains why</a> WordPress is likely to become the dominant CMS of choice for law firms.</p>\n<blockquote><p>Just as Word has replaced WordPerfect as the word processing solution of choice for law firms, WordPress is likely to replace other content management systems for law firms, both large and small.</p></blockquote>\n<h2>WordPress 4.9 Expected This November</h2>\n<p>In the last developer’s chat, WordPress 4.9 development kicked off and is expected to be released in November. This release will focus on editing code, managing plugins and themes, a user-centric way to customize a site, and improvements to features recently added. Mel Choyce and Weston Ruter are co-release leads.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/core/2017/08/03/dev-chat-summary-august-2nd-4-9-week-1/\">Dev Chat Summary: August 2nd (4.9 week 1)</a></p></blockquote>\n<p></p>\n<h2>Volunteers Needed for WordCamp US</h2>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/\">WCUS Needs You: Volunteer Applications Are Now Open</a></p></blockquote>\n<p></p>\n<h2>A Visit From St. Gutenberg</h2>\n<p><a href=\"https://wordpress.org/support/topic/catastophe-how-to-destroy-wordpress-in-2-weeks/\">Perhaps the greatest one-star review on the WordPress plugin directory. </a></p>\n<h2>Minniepuu and Wapauul!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the <a href=\"http://wapuu.jp/2015/12/12/wapuu-origins/\">unofficial mascot</a> of the WordPress project. Minniepuu and Wapauul, designed by <a href=\"http://marktimemedia.com/\">Michelle Schulp</a>, are the mascots of WordCamp Minneapolis 2017 that’s taking place this weekend.</p>\n<p>Minneapolis and St. Paul, MN are commonly referred to as the Twin Cities and the city’s Major League Baseball team is the Minnesota Twins.</p>\n<img />WordCamp Minneapolis 2017 Wapuus\n<p>That’s it for issue twenty-two. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Aug 2017 00:18:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Publishers Are Moving Back to WordPress After Short Experiments with Medium\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73902\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/publishers-are-moving-back-to-wordpress-after-short-experiments-with-medium\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8358:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/migration.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://www.flickr.com/photos/hyku/2267820888/\">hyku</a> – <a href=\"http://creativecommons.org/licenses/by-sa/2.0/\">cc</a>\n<p><a href=\"https://www.theawl.com/\" target=\"_blank\">The Awl</a>, <a href=\"https://thinkprogress.org/\" target=\"_blank\">ThinkProgress</a>, <a href=\"https://filmschoolrejects.com/\" target=\"_blank\">Film School Rejects</a>, and several other publishers have moved back to WordPress after short experiments on Medium. In early 2016, Medium convinced a collection of small, independent publications to move to its platform but shortly thereafter discontinued its unsuccessful ad-driven publishing model <a href=\"https://www.buzzfeed.com/charliewarzel/when-you-launch-your-publication-the-same-day-medium-changes\" target=\"_blank\">without notifying publishers</a>.</p>\n<p>In March 2017, Medium CEO Ev Williams announced that his solution to fix the broken, ad-driven media industry was to fire up <a href=\"https://wptavern.com/medium-aims-to-fix-broken-media-with-new-5-subscription-program\" target=\"_blank\">a new $5 subscription program</a> that would put articles behind a paywall inside of the Medium network.</p>\n<p>Today The Awl, The Hairpin, and The Billfold announced the publications have <a href=\"https://www.theawl.com/2017/08/somethings-different/\" target=\"_blank\">moved back to WordPress</a> after switching to Medium in April 2016.</p>\n<p>“The move to Medium was a cool experiment, in my opinion, but the year is up and personally I missed the ads,” The Awl Editor Silvia Killingsworth said. <a href=\"https://www.thebillfold.com/2017/08/change-is-the-only-constant-in-life/\" target=\"_blank\">The Billfold’s announcement</a> cited Mediums’ recent changes as the reason for the move back to WordPress:</p>\n<blockquote><p>Our move to Medium was an experiment to explore a different kind of business model, and that experiment is over now that the platform has moved in a different direction (<a href=\"https://www.axios.com/publishers-flee-medium-amid-business-model-changes-2440471520.html\" target=\"_blank\">you can read more in-depth about those changes here</a>).</p>\n<p>Adapting to change is all part of the many joys of being a small, independent publisher.</p></blockquote>\n<h3>Film School Rejects Returns to WordPress After 1-Year Experiment with Medium</h3>\n<p><a href=\"https://filmschoolrejects.com/what-happened-with-medium/\" target=\"_blank\">Film School Rejects (FSR) also returned to WordPress in May</a> after a year-long, rocky experiment with Medium. The publication was one of Medium’s first 12 premium publishers.</p>\n<p>“To be honest, I can’t afford, nor would my heart hold up for, a move back to a private server and WordPress,” FSR founder Neil Miller <a href=\"https://www.poynter.org/2017/why-publishers-are-sticking-with-medium-for-now/444507/\" target=\"_blank\">told Poynter in January</a> after Medium announced it was pivoting away from ad-driven media. “So, barring a miracle, my site will live and die on Medium. I’m optimistic that I’ll find some sort of solution and be able to remain on Medium.”</p>\n<p>Ultimately, Medium’s goals as a publisher of subscription content were at odds with FSR’s ability to sustain the publication. Miller said they had ported 10 years of content over to the platform after being promised a beautiful user experience and a way forward that would allow FSR to grown the business, continue to pay its writers, and keep the publication on the cutting edge.</p>\n<p>“What we were sold when we joined their platform is very different from what they’re offering as a way forward,” Miller told Poynter. “It’s almost as if Ev Williams wasn’t concerned that he was pulling out the rug from underneath publishers who had placed their trust in his vision for the future of journalism.”</p>\n<p>After moving FSR back to WordPress, Miller said the partnership with Medium was great until the company changed course to become a different type of platform.</p>\n<p>“As time went on, it became clear that Medium’s priorities had shifted from being a platform for independent publishers to being itself a publisher of premium, subscription-based content,” he said. “As we learned more about their future plans for the now-existent Medium ‘Members Only’ program, it became clear that our site wouldn’t be able to continue to operate the way we always had.”</p>\n<p>Miller said the process of trying a new platform and returning to WordPress made him realize that he “missed some of the customizable features of WordPress,” which led his team to work on some new features they will be launching in the future. The site has reinstated its banner advertising on pages.</p>\n<p>“We’d love to be able to do this all without any ads, but there’s no money in that,” Miller said. “And guess who doesn’t get paid if the site can’t make any money? The people who write articles, edit the site, make video essays, curate One Perfect Shot, and host podcasts.”</p>\n<h3>ThinkProgress Exits Medium, Founder Says Platform is No Longer Developed with Publishers in Mind</h3>\n<p><a href=\"https://thinkprogress.org/\" target=\"_blank\">ThinkProgress</a> was one of the largest publications to make the move to Medium last August. After less than a year, the site has moved back to WordPress, its previous publishing platform. ThinkProgress founder Judd Legum told <a href=\"http://www.poynter.org/2017/with-big-plans-to-staff-up-thinkprogress-is-leaving-medium-behind-update/465424/\" target=\"_blank\">Poynter</a> that the lack of advertising capabilities was not the reason his publication left the platform but rather because Medium no longer serves the best interests of publishers.</p>\n<p>“I’m certainly not eager to have a bunch of ads on the site — and we’re not going to,” Legum said. “I’d love to have none. And if it were possible, I’d be interested in figuring out a model where we don’t have to have any. But if it’s connected to a platform that’s not going to be developed with publishers in mind, it doesn’t really make sense to think through that as a platform. That sealed it for me.”</p>\n<p>ThinkProgress is taking its 8 to 10 million unique pageviews per month back into the independent publishing space. It is the latest of several other publishers leaving Medium after having been persuaded in 2016 to jump into Ev Williams’ experiment with initial promises of free hosting, more traffic, and advertising money. Not all of the sites are moving back to WordPress, but most are looking to free themselves from Medium’s experiment on publishers and regain the ability to sell advertising and/or subscriptions.</p>\n<p><a href=\"https://www.axios.com/bill-simmons-moves-the-ringer-from-medium-to-vox-media-2426770782.html\" target=\"_blank\">The Ringer moved to Vox Media</a> at the end of May after Medium discontinued its advertising model. <a href=\"https://www.poynter.org/2017/after-being-wooed-by-medium-some-publishers-are-beginning-to-leave/459998/\" target=\"_blank\">The Pacific Standard left Medium</a> to focus on building custom features to drive subscription growth.</p>\n<p>Backchannel also moved its site off of the platform and <a href=\"https://www.wired.com/story/backchannel-is-moving-to-wired\" target=\"_blank\">is now publishing on Wired.com</a>. “In the time since Backchannel launched, Medium has shifted its business strategy, and it’s no longer as focused on helping publications like ours profit,” BackChannel Editor Jessi Hempel said.</p>\n<p>Medium’s new <a href=\"https://medium.com/membership\" target=\"_blank\">subscription revenue model</a> and partner program are still in beta but the returns have not been enough to convince publishers to stay, even with costly migrations back to tried and proven platforms like WordPress. Ad-driven publishing may not be the most ideal way to keep a publication afloat, but publishers moving away from Medium are not willing to stay on for the the startup’s experiment at the expense of their writers and staff.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2017 23:09:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: WordPress 4.8.1 Released, Adds Custom HTML Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/wordpress-4-8-1-released-adds-custom-html-widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:901:\"<p>WordPress 4.8.1 <a href=\"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\">is available for download</a> or as an update from the WordPress Dashboard. This release contains 29 bug fixes and improvements. The most notable addition is a dedicated <a href=\"https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\">Custom HTML widget</a>.</p>\n<img />Custom HTML Widget in WordPress 4.8.1\n<p>The Custom HTML widget works similar to the Text widget in WordPress 4.7 and below. To see a full list of changes in WordPress 4.8.1, check out the <a href=\"https://codex.wordpress.org/Version_4.8.1\">release notes</a>. If you think you’ve discovered a bug, please report it in as much detail as possible on the <a href=\"https://wordpress.org/support/forum/how-to-and-troubleshooting/\">WordPress support forums</a>. Twenty-two people contributed to this release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 20:26:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Website as Resume\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47486\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2017/08/website-as-resume/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1422:\"<p>The illustrious Chance the Rapper was looking for a new intern.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I\'m looking for an intern, someone with experience in putting together decks and writing proposals</p>\n<p>— Lil Chano From 79th (@chancetherapper) <a href=\"https://twitter.com/chancetherapper/status/846441791385677824\">March 27, 2017</a></p></blockquote>\n<p></p>\n<p>Some people responded with regular resumes, replying as images, but Negele “Hopsey” Hospedales <a href=\"https://chancehirehospey.com/\">decided to make a website on WordPress.com</a>:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">maybe I\'m extra, but I think resumes are old fashion. I built a website instead. <a href=\"https://twitter.com/hashtag/ChanceHireHospey?src=hash\">#ChanceHireHospey</a><a href=\"https://t.co/DmYvxAQu61\">https://t.co/DmYvxAQu61</a></p>\n<p>— madebyhosp. (@Hospey) <a href=\"https://twitter.com/Hospey/status/846612517723947008\">March 28, 2017</a></p></blockquote>\n<p></p>\n<p>The happy ending is <a href=\"http://www.billboard.com/articles/news/lifestyle/7882484/chance-the-rapper-intern-interview-Negele-Hospedales\">written up in Billboard: he got the gig and went on tour with Chance</a>. Hospey wrote a great article on it himself: <a href=\"https://hospeyhowto.com/2017/07/29/how-to-work-for-your-favourite-rapper/\">How To Work For Your Favourite Rapper</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 10:23:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: Akismet WordPress Plugin 3.3.4 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1955\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://blog.akismet.com/2017/08/03/akismet-wordpress-plugin-3-3-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1571:\"<p>Version 3.3.4 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>3.3.4 has a few fixes and enhancements that should make everyone’s lives better:</p>\n<ul>\n<li>URL previews in the WordPress admin will now begin preloading when the cursor moves near the link so they appear faster once you move your mouse over the link.</li>\n<li>When a comment is caught by both the Comment Blacklist and Akismet, Akismet will now leave it in Trash instead of moving it out of Trash and into Spam.</li>\n<li>A bug has been fixed that was preventing a notice from being shown when a site’s firewall was preventing it from connecting to Akismet’s servers.</li>\n<li>Akismet will no longer log all of its debug information unless a new constant (<code>AKISMET_DEBUG</code>) is also enabled, even if <code>WP_DEBUG</code> and <code>WP_DEBUG_LOG</code> are both enabled.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1955/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1955/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1955&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 04:25:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WPWeekly Episode 283 – A Visit From St. Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=73870&preview=true&preview_id=73870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/wpweekly-episode-283-a-visit-from-st-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2823:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I start off the show with an adaptation of ‘<a href=\"https://www.poets.org/poetsorg/poem/visit-st-nicholas\">A Visit from St. Nicholas</a>‘ created by Clement Clarke Moore. Since we didn’t have a guest, Jacoby and I opened up about our personal lives which turned into a conversation about remote working from home. We also discussed the news of the week, including SiteLock’s acquisition of Patchman, WordPress 4.8.1, and Adobe discontinuing Flash.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/a-fix-for-wordpress-weekly-subscribers-using-pocket-casts\">A Fix for WordPress Weekly Subscribers Using Pocket Casts</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\">WordPress 4.8.1 Adds a Dedicated Custom HTML Widget</a><br />\n<a href=\"https://wptavern.com/sitelock-acquires-patchmans-malware-and-vulnerability-detection-technology-expands-wordpress-customer-base-to-4-million\">SiteLock Acquires Patchman’s Malware and Vulnerability Detection Technology, Expands WordPress Customer Base to 4 Million</a><br />\n<a href=\"https://wptavern.com/adobe-to-discontinue-flash-support-and-updates-in-2020\">Adobe to Discontinue Flash Support and Updates in 2020</a><br />\n<a href=\"https://wptavern.com/blog-passes-100000-registrations-66-5-of-purchased-domains-are-in-use\">.blog Passes 100,000 Registrations, 66.5% of Purchased Domains are in Use</a><br />\n<a href=\"https://wptavern.com/buddypress-2-9-adds-ability-to-safely-edit-a-groups-permalink\">BuddyPress 2.9 Adds Ability to Safely Edit A Group’s Permalink</a><br />\n<a href=\"https://wptavern.com/new-dobby-plugin-captures-and-hides-unwanted-wordpress-admin-notices\">New Dobby Plugin Captures and Hides Unwanted WordPress Admin Notices</a></p>\n<h2>Picks of the Week:</h2>\n<p>An entertaining <a href=\"https://wordpress.org/support/topic/catastophe-how-to-destroy-wordpress-in-2-weeks/\">one-star review</a> of Gutenberg based on ‘A Visit from St. Nicholas’ poem by Clement Clarke Moore.<b></b></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 9th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #283:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 01:25:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: WordPress Polyglots Team Fuels International Community Growth with 3rd Global Translation Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73789\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/wordpress-polyglots-team-fuels-international-community-growth-with-3rd-global-translation-day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6613:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/04/wordpress-global-translation-day.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://wptranslationday.org/\" target=\"_blank\">3rd Global WordPress Translation Day</a> has been set for September 30, 2017. The success of previous events has generated momentum to continue the 24-hour global translation sprints and has also increased the visibility of the Polyglots team’s contributions. These sprints have provided a catalyst for the team’s growth from 5,000 contributors in April 2015 to 17,000 in November 2016. The greater WordPress community has also grown in tandem, as reliable translations are the lifeblood of international WordPress usage.</p>\n<p>One way of measuring the growth of the global community is the checking the status of local meetups. After the addition of the dashboard events widget in WordPress 4.8, the community has seen a sharp rise in <a href=\"https://www.meetup.com/pro/wordpress/\" target=\"_blank\">meetup group</a> growth, according to <a href=\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\" target=\"_blank\">recent stats</a> from the community team. The widget displays local WordPress events for logged-in users.</p>\n<p>“It’s safe to say that the widget has achieved its goals admirably — since WordPress 4.8 was released a little over a month ago, 31 new meetup groups have been formed with 15,647 new members across the whole program,” Hugh Lashbrooke said. “This is compared to 19 new groups and only 7,071 new members in the same time period last year.”</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/wordpress-meetups.png?ssl=1\"><img /></a></p>\n<p>Much of that growth can be attributed to the growth of the international WordPress community, which has continued to advance the concept of <a href=\"https://make.wordpress.org/community/2017/07/18/regional-camps-take-2/\" target=\"_blank\">regional WordCamps</a> for countries and continents. These include events such as WordCamp Netherlands, WordCamp Europe, and the planned WordCamp Asia, that bring larger groups of WordPress enthusiasts together around a common region.</p>\n<p>In 2014, the WordPress community hosted 80 WordCamps in 29 countries. At the conclusion of 2016, there were 115 total WordCamps hosted in 41 different countries.</p>\n<p><a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" target=\"_blank\">WordPress’ usage</a> continues to grow every year, and the percentage of non-English-speaking users is also expanding. In 2014, non-English WordPress downloads surpassed English downloads for the first time.</p>\n<p>Last July, <a href=\"https://wptavern.com/wordpress-stats-page-redesigned-adds-new-data-on-installs-by-langauge\" target=\"_blank\">53.9% of WordPress sites used the English (US) locale</a>. That number has dropped to 50% as of today, as international usage continues to rise.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/wordpress-locales-july-2017.png?ssl=1\"><img /></a>Stats from WordPress.org July 2017\n<p>Rahul Bansal’s lightning talk at WordCamp Europe identified one example of <a href=\"http://wordpress.tv/2017/06/21/rahul-bansal-how-translation-sprints-helps-bring-in-new-contributors/\" target=\"_blank\">how the translation sprints are bringing in new contributors in India</a>. In the past, meetup groups have had a problem with retaining new users, who often come to their first meetup lacking both a sense of belonging and confidence in contributing. Bansal and other Polyglots members had an idea to remove this block to contributing by getting new users involved in translating WordPress.</p>\n<p>During the last global translation day event, Bansal helped organize a local group to translate WordPress core into Hindi, Marathi, and Gujarati. They also translated the subtitles for the WordPress 4.6 release video. The key was that the leaders did not participate in translating strings but rather focused on guiding new translators – 90% ended up being first-time contributors.</p>\n<p>WordPress 4.6 shipped with support for 50 languages and the complete Gujarati translation was added to core just a few days before the release. Its inclusion in the release made WordPress more accessible to approximately 65.5 million Gujarati speakers worldwide.</p>\n<div class=\"embed-wrap\"></div>\n<p>The 3rd Global WordPress Translation Day falls on the same day that the <a href=\"https://www.un.org/press/en/2017/ga11914.doc.htm\" target=\"_blank\">United Nations has designated as International Translation Day</a>, a new initiative to recognize “the role of professional translation in connection with nations and fostering peace, understanding, and development.”</p>\n<p>WordPress has only just begun to explore its potential to democratize publishing and hasn’t even cracked the ice in terms of usage across the world’s most popular languages. Sites using the various Chinese and Arabic locales make up less than 2% of international usage, despite these languages having more than a billion native speakers combined. If WordPress adoption takes off in these parts of the world, it will create a whole new wave of contribution and vastly expand the world market for commercial plugins and themes. The Polyglots team are on the forefront of making this possible.</p>\n<p>The first two WPTranslationDay events were held in April and November of 2016. The <a href=\"https://wptavern.com/2nd-global-wordpress-translation-day-brings-780-translators-together-across-133-locales\" target=\"_blank\">second event had a 74% increase in participation over the first</a> with a total of 780 translators participating. This year organizers are aiming to host more local translation sprints to surpass the 67 held in November. If you want to join the Polyglots team to help serve WordPress’ growing international community, you can attend or <a href=\"https://docs.google.com/spreadsheets/d/1Fecq1StAPn9nDgabGMLdXiqszWkkxP6-5cM5YHXwLPg/edit?usp=drivesdk\" target=\"_blank\">organize one of the local events</a>, <a href=\"https://www.crowdcast.io/e/gwtd3/\" target=\"_blank\">watch sessions live on CrowdCast</a>, <a href=\"https://docs.google.com/spreadsheets/d/1Fecq1StAPn9nDgabGMLdXiqszWkkxP6-5cM5YHXwLPg/edit?usp=drivesdk\" target=\"_blank\">organize a remote event</a>, <a href=\"https://wptranslationday.org/call-for-speaker/\" target=\"_blank\">become a speaker</a>, or start translating at <a href=\"http://translate.wordpress.org\" target=\"_blank\">translate.wordpress.org</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 00:36:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Dev Blog: WordPress 4.8.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2547:\"<p>After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release.</p>\n<p>This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.8.1\">release notes</a>, the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.8.1&group=component\">tickets closed</a>, and the <a href=\"https://core.trac.wordpress.org/log/branches/4.8?rev=41210&stop_rev=40891\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.1.</p>\n<p>Thanks to everyone who contributed to 4.8.1:<br />\n<a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev/\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/greuben/\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sa3idho/\">Said El Bakkali</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 21:26:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Weston Ruter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"HeroPress: Your Skills Speak Louder Than Your Gender\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2006\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://heropress.com/essays/skills-speak-louder-gender/?utm_source=rss&utm_medium=rss&utm_campaign=skills-speak-louder-gender\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6358:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/080217-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Do not put up with discrimination, talk about it openly, and stand against it.\" /><blockquote><p>I don’t usually talk or even think about gender in relation to my career. I’m a female developer but I’ve never really felt like that is anything too special and more importantly I have rarely felt like my gender mattered.</p></blockquote>\n<p>As a kid I thought I would become an artist or a dancer. It wasn’t until I had to choose the university to apply to that I decided to go with something more practical so I went with Computer Science. I hadn’t really done much with code before that, except for having a Lord of the Rings discussion board with my friends and making doing some HTML & CSS related to that. After the first year of school I was already making my first WordPress sites to paying customers.</p>\n<p>After graduating I have been a full-time employee in a developer position as well as a freelancer. I’ve worked both in Finland and in the USA. During my career I have actually been surprised how easy it has been for me, a woman in the male-dominated industry, to find work, to get promoted and to get recognition. I have not faced much discrimination or prejudice related to my gender, and the great professionals I have got to work with have always been interested in my skills beyond anything else.</p>\n<p>So how come there is such a huge gender gap in the industry? I’ve witnessed it myself many times – being the only woman in a WordPress meetup of thirty people, or not having to queue at all to women’s bathroom in a tech conference with over 1000 attendees. There is no doubt that women are as capable as men, so whatever the reason is I really hope the future women would see the fun, problem-solving profession of a programmer as a great career option.</p>\n<h3>A few tips for an aspiring developer</h3>\n<p>I want to encourage everyone considering a developer career to take action and go for it. The tech industry is full of very clever and inspiring people and I promise you will not be bored. More importantly it is a safe career choice: the job market is great and the companies and the different tech communities are generally very open and welcoming. If you want to be a woman person in tech, remember:</p>\n<ol>\n<li><strong>Do not accept <del>gender</del> any discrimination</strong><br />\nOne great thing about being a developer is the current status of the job market. There is a lot more demand than there is supply, so you can choose who you work with. Do not put up with discrimination, talk about it openly and stand against it. I’ve been lucky enough not to face much judgement based on my gender. I’ve worked both in Finland and in the US and the biggest challenges I’ve faced have been clients that have been surprised that a woman is the tech lead in their project. Usually after a few hours of working together the prejudice disappears – it has always been enough to just be professional and stay true to myself.</li>\n<li><strong>Be active and give back</strong><br />\nIt is important to be active in your community and help other people out in their careers. Everyone benefits from a striving local community and also it is a great opportunity to make new connections and open new doors in your career.Being an organiser of WordCamp Finland & WordPress Helsinki meetup group for the last few years has really given me more than it has taken. I’ve learnt a lot and met many inspiring people, and it has opened up new career options for me too. The best thing tho has been just seeing the Finnish community grow so much and get more active by the day.</li>\n<li><strong>It’s skills that matter</strong><br />\nThis is really what it comes down to. Are you developing your skills constantly? Are you willing to keep up with the industry? You do not have to be the best developer, but you should be confident in your skills and be willing to always learn new ones. I believe that this is the only thing that matters in the end – not your gender.</li>\n</ol>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Your Skills Speak Louder Than Your Gender\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Your%20Skills%20Speak%20Louder%20Than%20Your%20Gender&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fskills-speak-louder-gender%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Your Skills Speak Louder Than Your Gender\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fskills-speak-louder-gender%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fskills-speak-louder-gender%2F&title=Your+Skills+Speak+Louder+Than+Your+Gender\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Your Skills Speak Louder Than Your Gender\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/skills-speak-louder-gender/&media=https://heropress.com/wp-content/uploads/2018/08/080217-min-150x150.jpg&description=Your Skills Speak Louder Than Your Gender\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Your Skills Speak Louder Than Your Gender\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/skills-speak-louder-gender/\" title=\"Your Skills Speak Louder Than Your Gender\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/skills-speak-louder-gender/\">Your Skills Speak Louder Than Your Gender</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 11:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Sonja Jaakkola\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Dev Blog: The Month in WordPress: July 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4885\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5643:\"<p>After a particularly busy month <a href=\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\">in June</a>, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July.</p>\n<hr />\n<h2>Weekly meeting for new core contributors</h2>\n<p>Onboarding new contributors is a persistent issue for most WordPress contribution teams. While every team welcomes any new contributors, the path to getting deeply involved can be tricky to find at times.</p>\n<p>This month, the Core team implemented a fantastic new initiative: <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">weekly meetings for new core contributors</a> as a way to encourage involvement and foster fresh contributions. The meetings not only focus on bugs suited to first-time contributors, they also make space for experienced contributors to help out individuals who may be new to developing WordPress core.</p>\n<p>The meetings are held every Wednesday at 19:00 UTC in the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>Increased focus on PHP practices in WordPress core</h2>\n<p>In bringing people together to improve WordPress core, a new channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> named #core-php is designed to focus on PHP development in the project.</p>\n<p>Along with this increased concentration on PHP, a <a href=\"https://make.wordpress.org/core/2017/07/06/announcement-for-weekly-php-meetings/\">new weekly meeting is now taking place</a> every Monday at 18:00 UTC in #core-php to improve WordPress core’s PHP practices.</p>\n<h2>Sharp rise in meetup group growth</h2>\n<p>The dashboard events widget in WordPress 4.8 displays local, upcoming WordPress events for the logged in user. The events listed in this widget are pulled from the <a href=\"https://www.meetup.com/pro/wordpress/\">meetup chapter program</a>, as well as the <a href=\"https://central.wordcamp.org/schedule\">WordCamp schedule</a>.</p>\n<p>This widget provides greater visibility of official WordPress events, and encourages community involvement in these events. It’s safe to say that the widget has achieved its goals admirably — since WordPress 4.8 was released a little over a month ago, 31 new meetup groups have been formed with 15,647 new members across the whole program. This is compared to 19 new groups and only 7,071 new members in the same time period last year.</p>\n<p>You can find a local meetup group to join <a href=\"https://www.meetup.com/pro/wordpress/\">on meetup.com</a>, and if you would like to get involved in organizing events for your community, you can find out more about the inner workings of the program <a href=\"https://make.wordpress.org/community/meetups/\">on the Community Team site</a> or by joining the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress 4.8.1 due for imminent release</h2>\n<p>WordPress 4.8 cycle’s first maintenance release will be published in the coming week, more than a month after 4.8 was released. This release fix some important issues in WordPress core and the majority of users will find that their sites will update to this new version automatically.</p>\n<p>If you would like to help out by testing this release before it goes live, you can follow the <a href=\"https://make.wordpress.org/core/handbook/testing/beta/\">beta testing guide</a> for WordPress core. To get further involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>The WordPress mobile apps have been updated with <a href=\"https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/\">a brand new text editor</a>.</li>\n<li>In a recent push to encourage WordPress users to upgrade their PHP versions, two features have been proposed – one <a href=\"https://core.trac.wordpress.org/ticket/41191\">to provide a notice to users</a> and another to <a href=\"https://core.trac.wordpress.org/ticket/40934\">allow PHP version requirements to be specified by plugins and themes</a>.</li>\n<li>John Maeda wrote <a href=\"https://make.wordpress.org/design/2017/07/14/whywordpress2/\">a great post</a> celebrating the freedom that WordPress offers.</li>\n<li>Gutenberg, the new text editor for WordPress, is <a href=\"https://make.wordpress.org/core/2017/07/28/whats-new-in-gutenberg-28th-july/\">in continual development</a> — everyone is invited to <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>.</li>\n<li>The WordPress Meta team is starting <a href=\"https://make.wordpress.org/meta/2017/07/26/experiment-wordcamp-org-bug-scrubs/\">a new initiative</a> to bring the community together to focus on fixing bugs across the WordCamp.org network.</li>\n<li>Volunteer applications for WordCamp US <a href=\"https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/\">are now open</a>.</li>\n</ul>\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 07:50:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Jetpack 5.2 Brings Major Improvements to the Contact Form Module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/jetpack-5-2-brings-major-improvements-to-the-contact-form-module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2280:\"<p>Jetpack’s <a href=\"https://jetpack.com/support/contact-form/\" target=\"_blank\">Contact Form module</a> hasn’t seen too many changes since its first release (<a href=\"https://jetpack.com/2012/04/24/jetpack-1-3-released-contact-forms/\" target=\"_blank\">version 1.3</a>) in 2012. It is easily one of the most compelling features included in the plugin and has long been overdue for a refresh.</p>\n<p>Today’s <a href=\"https://jetpack.com/2017/08/01/jetpack-5-2-new-contact-form/\" target=\"_blank\">5.2 release</a> brings major improvements to the Contact Form module. Previously, Jetpack launched the form builder as a small popup in the post editor. The refreshed design brings form editing and previewing into the main content area where users can customize fields and labels and re-order them using drag-and-drop. At the bottom of the form users can click a button to add new fields. These interface updates bring the module more in line with other leading contact form plugins.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/jetpack-updated-contact-form.png?ssl=1\"><img /></a></p>\n<p>Jetpack 5.2 also improves the recommended features list for new users with better explanations of the features and benefits of each. The release also reduces the plugin’s zip file by 500kb and reduces the code required to run the Comment Likes module.</p>\n<p>Comment Likes were introduced in <a href=\"https://jetpack.com/2017/07/05/jetpack-5-1-comment-likes/\" target=\"_blank\">version 5.1</a>, offering users a new way of interacting within the comments. Hovering over the number of likes will display the Gravatars of the users who liked the comment. The feature does not require Jetpack Comments to be enabled. The two work independently of each other.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/comment-likes.png?ssl=1\"><img /></a></p>\n<p>In attempting to add Comment Likes to the Tavern, we found the module has a conflict with the <a href=\"https://wordpress.org/plugins/epoch/\" target=\"_blank\">Epoch</a> commenting plugin plugin. We have temporarily disabled the plugin until compatibility for Comment Likes is added. We are testing the module to see how it affects interaction in the comments of our posts.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 03:28:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: A Fix for WordPress Weekly Subscribers Using Pocket Casts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73803\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/a-fix-for-wordpress-weekly-subscribers-using-pocket-casts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2140:\"<p>Last week, you may have noticed that the Tavern was intermittently offline and generating errors. We’ve been experiencing technical issues for the past several months but they peaked last week. After working with Bluehost, they migrated the site from a VPS, to a Dedicated Server that has more powerful hardware.</p>\n<p>Since the migration, we’ve noticed the site is more responsive, loads quicker, and doesn’t generate any errors. If you see an error or experience problems accessing the site, please report them to us <a href=\"https://twitter.com/wptavern\">on Twitter</a>.</p>\n<p>Last month, a number of WordPress Weekly listeners <a href=\"https://wptavern.com/episodes-271-280-of-wordpress-weekly-are-now-available\">reported</a> that they were unable to access recent episodes through Apple’s Podcasting app, Stitcher, and other applications. After reconverting the MP3s and getting them to work on Apple’s Podcasting app, I continued to receive reports from <a href=\"https://www.shiftyjelly.com/pocketcasts/\">Pocket Casts</a> subscribers that the files were not available.</p>\n<p>After confirming the issue, I reconverted the MP3s three times with different conversion software. I also used tools to diagnose and confirm that the files were not corrupted. Despite my efforts, Pocket Casts continued to encounter problems accessing the files.</p>\n<p>I was running out of options until Josh Eby reported that, deleting the app from his device, reinstalling it, and re-syncing his library fixed the problem.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">So I decided to delete all of my app data for pocket casts and re-sync my library. I downloaded them again and it worked for 280…</p>\n<p>— Josh Eby (@josheby) <a href=\"https://twitter.com/josheby/status/892130949319847936\">July 31, 2017</a></p></blockquote>\n<p></p>\n<p>I followed his advice and indeed, recent episodes of WordPress Weekly are available again in Pocket Casts. If you’re subscribed to the show using Pocket Casts and can not access episodes 280-282, please consider going through the steps listed above.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2017 19:09:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: New Dobby Plugin Captures and Hides Unwanted WordPress Admin Notices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73783\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/new-dobby-plugin-captures-and-hides-unwanted-wordpress-admin-notices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3482:\"<p>With the right combination of plugins and events, the WordPress admin area can quickly become a confusing mess of notices. WordPress’ notification system is often abused and overused by plugin authors who want to inject upsells and announcements into the admin. These can stack up like a pile of junk mail vying for users’ attention when they are trying to manage their sites. Ultimately, notice overload decreases users’ enjoyment of the software and may contribute to making it a chore to log into WordPress.</p>\n<p>The new <a href=\"https://wordpress.org/plugins/wp-dobby/\" target=\"_blank\">Dobby plugin</a> from <a href=\"https://tfrommen.de\" target=\"_blank\">Thorsten Frommen</a> attempts to solve this problem by capturing and hiding unwanted admin notices. Frommen, a WordPress engineer at Inpsyde, was inspired to create the plugin after he saw a recent tweet from Torsten Landsiedel showing “Everyday life in the WordPress dashboard.”</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"de\" dir=\"ltr\">Alltag im WordPress Dashboard. <a href=\"https://t.co/lofO7544uL\">pic.twitter.com/lofO7544uL</a></p>\n<p>— Torsten Landsiedel (@zodiac1978) <a href=\"https://twitter.com/zodiac1978/status/886646392730648577\">July 16, 2017</a></p></blockquote>\n<p></p>\n<p>Dobby rolls up WordPress admin notices and keeps them hidden behind a “Reveal” button that toggles a color-coded list of notices into view. It captures all the notices that are printed via the admin notice hooks, such as <code>network_admin_notices</code>, <code>user_admin_notices</code>, <code>admin_notices</code> and <code>all_admin_notices</code>. Dobby will post an admin notice if any notices have been captured.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/dobby.gif?ssl=1\"><img /></a></p>\n<p>Frommen said the target audience for his plugin is “all the people sick and tired of too many admin notifications, which are oftentimes of no real value at all.” Dobby has a filter available for users to define what “too many” means for themselves. The <a href=\"https://github.com/tfrommen/Dobby\" target=\"_blank\">plugin’s GitHub repository</a> has examples of how to use the Dobby filter threshold, which lets users customize the minimum number of admin notices required to trigger Dobby to start hiding them.</p>\n<p>“It certainly is possible that people may miss (critical) messages with Dobby being active,” Frommen said. “However, Dobby is smart enough to style his admin notice according to the most critical one captured. This means that Dobby’s notice will have error styling if there was an error notice captured. If the most critical one was a warning, that’s what Dobby’s notice will be as well. Otherwise, it’s an info notice.”</p>\n<p>Within the first 10 minutes of requesting translations after announcing that Dobby was on WordPress.org, Frommen received German and Dutch translations for the plugin. The plugin UI has only two strings, which makes it a simple, 5-minute translation job.</p>\n<p>Frommen is considering adding a filter for people to define what kind of notices they would like Dobby to capture. He welcomes suggestions, <a href=\"https://github.com/tfrommen/Dobby\" target=\"_blank\">contributions on GitHub</a>, and <a href=\"https://translate.wordpress.org/projects/wp-plugins/wp-dobby\" target=\"_blank\">more translations</a> from the WordPress community.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2017 18:30:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: Gutenberg 0.6.0 Changes Text/Paragraph Block Behavior, Adds New Cover Text and Read More Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73735\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/gutenberg-0-6-0-changes-textparagraph-block-behavior-adds-new-cover-text-and-read-more-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8165:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/paragraph.jpg?ssl=1\"><img /></a>photo credit: A Tiny Break From The Rain <a href=\"http://www.flickr.com/photos/78814955@N00/34165889514\"><img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f430.png\" alt=\"🐰\" class=\"wp-smiley\" />Adventures In Wonderland & Through The Looking Glass<img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f430.png\" alt=\"🐰\" class=\"wp-smiley\" /></a> – <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a>\n<p><a href=\"https://make.wordpress.org/core/2017/07/28/whats-new-in-gutenberg-28th-july/\" target=\"_blank\">Gutenberg 0.6.0</a> was released over the weekend with significant changes to the way paragraphs are created within text blocks. In previous versions of the plugin, pressing enter would create a line break inside a paragraph. This release modifies the behavior of the text/paragraph block to <a href=\"https://github.com/WordPress/gutenberg/pull/1989\" target=\"_blank\">split the block when a user presses enter</a>. (Line breaks can still be created by pressing SHIFT+ENTER.)</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/gutenberg-new-paragraph.png?ssl=1\"><img /></a></p>\n<p>This update is a small improvement in that it hides the text formatting bar when you continue on with a new paragraph, but the slightest scroll or move of the mouse brings it back into view. Contributors are <a href=\"https://github.com/WordPress/gutenberg/pull/1812#issuecomment-314045186\" target=\"_blank\">considering adding a buffer</a> at some point that would only trigger the UI after the mouse moves a certain number of pixels.</p>\n<p>Unfortunately, the “New Paragraph” placeholder text is intrusive and distracting. It is a constant, unwanted reminder of the structure of your document, which is not helpful if you are trying to stay in the flow of writing.</p>\n<p>Gutenberg may improve the experience of vertically stacking differently formatted content, but the writing experience still needs a great deal of work before it can be comparable to what WordPress currently provides. The new editor still gets in the way of writing, instead of silently enabling it.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I love Gutenberg so far, but this is too many dongles to display at the moment of focusing on writing. <a href=\"https://t.co/Xpb19KgG01\">pic.twitter.com/Xpb19KgG01</a></p>\n<p>— Daniel Bachhuber (@danielbachhuber) <a href=\"https://twitter.com/danielbachhuber/status/889944454643064832\">July 25, 2017</a></p></blockquote>\n<p></p>\n<p>After browsing the Gutenberg repository’s 400+ issues queue, it’s clear that contributors are aware of the jarring experience for writers and are working to improve it in every release. However, the beta software is not anywhere near ready for long-form writing, as the intrusive UI places too many cognitive demands on the writer.</p>\n<h3>New Blocks in 0.6.0: “Cover Text” and “Read More”</h3>\n<p>This release introduces a <a href=\"https://github.com/WordPress/gutenberg/pull/2036\" target=\"_blank\">new “Cover Text” block</a> that includes background, text color, and full-width options. Color swatches are available in the sidebar block options and contributors are planning to add filters to allow plugin and theme authors to supply a custom palette.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/cover-text.png?ssl=1\"><img /></a></p>\n<p>Version 0.6.0 also includes a <a href=\"https://github.com/WordPress/gutenberg/pull/1440\" target=\"_blank\">new “Read More” block</a> that inserts a read more link with instant visual feedback within the content.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/read-more-block.png?ssl=1\"><img /></a></p>\n<p>This release also brings several improvements to existing blocks, autosaving for drafts, and initial support for undo/redo keyboard functions.</p>\n<h3>Gutenberg’s Negative Reviews are Piling Up on WordPress.org</h3>\n<p>Gutenberg contributors are regularly shipping weekly releases, with many features added as bare bones placeholders that will be iterated on in future releases. New blocks are being developed simultaneously with core editing features. Some testers have <a href=\"https://wptavern.com/gutenberg-0-5-0-adds-new-verse-block-for-poetry-and-a-new-display-for-recent-blocks#comment-224944\" target=\"_blank\">bemoaned the proliferation of blocks</a> that may seldom be used while the basic writing experience continues to lag behind.</p>\n<p><a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\" target=\"_blank\">Gutenberg plugin reviews</a> are currently averaging 2.3 out of 5 stars on WordPress.org, with 46 1-star reviews, 21 5-star reviews, and a handful in between. While the reviews are not a full representation of all who are testing Gutenberg, they provide a small window into users’ current expectations, delights, and frustrations with the editor. Gutenberg contributors are monitoring these forums and using the feedback to create bug reports.</p>\n<p>Many reviewers have left 1-star ratings, begging WordPress to keep it as a plugin instead of adding it to core. One reviewer even took to verse to further elaborate on his one-star review titled “<a href=\"https://wordpress.org/support/topic/catastophe-how-to-destroy-wordpress-in-2-weeks/\" target=\"_blank\">A Visit from St. Gutenberg</a>” with an adaptation of the classic poem “<a href=\"https://en.wikipedia.org/wiki/A_Visit_from_St._Nicholas\" target=\"_blank\">The Night Before Christmas</a>:”</p>\n<blockquote><p>\nA bundle of blocks he had flung on his back,<br />\nAnd he looked like a coder just opening his pack.</p>\n<p>His eyes—how they twinkled! his dimples, how merry!<br />\n“Who needs MCE, when we have blocks and so many?”</p></blockquote>\n<p>Many reviewers find Gutenberg to be “unnecessarily complex” for actions that were previously easy to perform in the editor.</p>\n<p>“I have several websites – two are for business and include blogs (technical posts, how-tos, etc),” @quantaweb <a href=\"https://wordpress.org/support/topic/please-make-it-a-plugin-not-part-of-core/\" target=\"_blank\">said</a>. “I’m also the editor of a literary magazine. This doesn’t work for any of these sites. It’s not easier to write blogs with it, and it does nothing to ease the work of importing critical essays and poetry into the literary magazine — and formatting them — either…Gutenberg is unnecessarily complex.”</p>\n<p>Some of the 1-star reviews come laced with threats to move to another CMS and splinter the WordPress community if Gutenberg is included in core.</p>\n<p>“By removing all the traditional editor buttons and trying to make a minimalist design the usefulness and ease of use has been drastically reduced,” @ovann86 <a href=\"https://wordpress.org/support/topic/great-example-of-why-developers-are-not-ux-experts/\" target=\"_blank\">said</a>. “I found myself either not being able to do very basic content management or having to click, hover and look for the buttons – instead of them being visible and available immediately…If this was made core I would likely be forced to move to another CMS.”</p>\n<p>Early testing of beta software is not for everyone, as many are unable to look past the initial bugs and clunky implementations to see the potential of the editor to improve WordPress’ severely fragmented content creation experience. Matt Mullenweg jumped onto the forums as recently as two weeks ago to <a href=\"https://wordpress.org/support/topic/not-ready-for-prime-time-14/#post-9316327\" target=\"_blank\">respond to testers’ feedback</a>.</p>\n<p>“We definitely agree it’s not ready for prime time yet, that’s why we’re doing extensive public testing and iteration while it’s in the plugin phase,” Mullenweg said. “Thank you for your feedback and I hope you try it again in a few months with an open mind.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2017 23:26:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"BuddyPress: BuddyPress 2.9.0 – ‘La Lombarda’\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=267251\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://buddypress.org/2017/07/buddypress-2-9-0-la-lombarda/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6217:\"<p>BuddyPress is happy to announce the immediate availability of it’s latest release 2.9 ‘La Lombarda’ <a href=\"https://en-gb.wordpress.org/plugins/buddypress/2.9.0\">available for download </a> or updatable from your WordPress install plugin directory.</p>\n<p>This release features a range of improvements and updates for both core functionality and templates.</p>\n<p><strong>Amongst a range of improvements and enhancements:</strong></p>\n<ul>\n<li>BP legacy templates are updated for aria labels to bring a vastly improved level of accessibility to layouts.</li>\n<li>In line with current practises anchor title attributes are replaced with an enhanced version usable for all devices, BP Tooltips now provides pop up title requirements on mouse hover or keyboard focus.</li>\n<li>Provide the capability to edit the Group slug: now site admins may edit the group name and the permalink in the dashboard.</li>\n<li>Prevent group invites being sent to users that have already received one.</li>\n<li>Uploading of profile images in mobile devices improved as well as better handling of files with non ASCII characters.</li>\n<li>Email links to private message threads now re-direct logged out users to the login screen, logged in users are directed to message thread.</li>\n<li>New template tag <code>bp_group_link()</code></li>\n<li>Add an order_by parameter for activity queries.</li>\n</ul>\n<p>You can see the full set of changes on our codex page <a href=\"https://codex.buddypress.org/releases/version-2-9-0/\">Version 2.9.0</a></p>\n<p><strong>Comments & feedback</strong><br />\nPlease report any issues to the <a href=\"https://buddypress.org/support/\">Buddypress Support Forum</a> or open a ticket on our <a href=\"https://buddypress.trac.wordpress.org/\">Trac development home</a>.</p>\n<p><strong>Contributors</strong><br />\nBuddypress is a volunteer project and the core team acknowledges the contributions from everyone listed below that helped to bring 2.9 to the community.</p>\n<ul class=\"wp-credits-list\">\n<li><a href=\"https://profiles.wordpress.org/55don/\"> 55don</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/aaronoftomorrow/\"> AaronOfTomorrow</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/allianse/\"> allianse</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/antonioeatgoat/\"> Antonio Mangiacapra (antonioeatgoat)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/benjlipchak/\"> Benj (benjlipchak)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/boonebgorges/\"> Boone B Gorges (boonebgorges)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/bhargavbhandari90/\"> Bunty (bhargavbhandari90)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/sbrajesh/\"> Brajesh Singh (sbrajesh)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/needle/\"> Christian Wach (needle)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/brandonliles/\"> brandonliles</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/danbp/\"> danbp</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dcavins/\"> David Cavins (dcavins)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dkelm/\"> dkelm</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dsar/\"> dsar</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dsided/\"> dsided</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/henry.wright\"> Henry Wright (henry.wright)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/hnla/\"> Hugo (hnla)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/idofri/\"> Ido Friedlander (idofri)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/uscore713/\"> Jay (uscore713)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/johnbillion/\"> John Blackbourn (johnbillion)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/johnjamesjacoby/\"> John James Jacoby (johnjamesjacoby)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/juanho/\"> Juanho</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/lakrisgubben/\"> lakrisgubben</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/Offereins\"> Laurens Offereins (Offereins)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/lne1030/\"> lne1030</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/lenasterg/\"> lenasterg</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/maniou/\"> Maniou</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/imath/\"> Mathieu Viet (imath)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/mercime/\"> mercime</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/tw2113/\"> Michael Beckwith (tw2113)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/mikegillihan/\"> Mike Gillihan (MikeGillihan)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/milindmore22/\"> Milind More (milindmore22)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/modemlooper/\"> modemlooper</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/mrjarbenne/\"> mrjarbenne</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/nicolaskulka/\"> Nicolas Kulka (NicolasKulka)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/oelita/\"> Oelita</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/DJPaul/\"> Paul Gibbs (DJPaul)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/pareshradadiya/\"> paresh.radadiya (pareshradadiya)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/r-a-y/\"> r-a-y</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/espellcaste/\"> Renato Alves (espellcaste)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/rianrietveld/\"> Rian Rietveld (rianrietvelde)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/elhardoum/\"> Samuel Elh (elhardoum)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/seventhqueen/\"> seventhqueen</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/slaffik/\"> Slava Abakumov (slaffik)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/netweb/\"> Stephen Edgar (netweb)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/vishalkakadiya/\"> Vishal Kakadiya (vishalkakadiya)</a>, </li>\n</ul>\n<p> <strong>La Lombada</strong><br />\nThis release is named after what is thought to the oldest and thus first Italian restaurant in the UK established circa 1922 in Aberdeen.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2017 21:39:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hugo Ashmore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: Dmitry Mayorov Discusses the Challenges of Organizing WordCamp Moscow and the Future of WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=69311\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/dmitry-mayorov-discusses-the-challenges-of-organizing-wordcamp-moscow-and-the-future-of-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2956:\"<p>While at WordCamp Europe I had the opportunity to meet Russian designer and developer <a href=\"https://dmtrmrv.com/\" target=\"_blank\">Dmitry Mayorov</a>, whose themes I had noticed earlier in the year in the <a href=\"https://wordpress.org/themes/author/iamdmitrymayorov/\" target=\"_blank\">WordPress Theme Directory</a>. Mayorov’s design style is reminiscent of other niche theme developers like Anders Norén and Mike McAlister. He launched his own commercial themes business on <a href=\"https://themepatio.com/\" target=\"_blank\">ThemePatio.com</a> two years ago and his free <a href=\"https://wordpress.org/themes/counter/\" target=\"_blank\">Counter</a> and <a href=\"https://wordpress.org/themes/maker/\" target=\"_blank\">Maker</a> themes collectively have more than 3,000 active installs on WordPress.org.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/04/counter.png?ssl=1\"><img /></a><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/04/maker.png?ssl=1\"><img /></a></p>\n<p> </p>\n<p>Mayorov started taking part in meetups in Russia in 2013. Following WordCamp Moscow 2015, Konstantin Kovshenin asked him if he would take on the role of lead organizer. Mayorov is organizing <a href=\"https://2017.moscow.wordcamp.org/\" target=\"_blank\">WordCamp Moscow 2017</a>, which is scheduled for August 12. In our interview below, he describes a few of the challenges organizers face in uniting the Russian WordPress community that is spread out over such a large land mass.</p>\n<p>Mayorov also discusses how he began creating WordPress themes and how clients’ needs influenced his <a href=\"https://themepatio.com/about/\" target=\"_blank\">theme development philosophy</a>. He aspires to create themes that are fast, content-focused, and minimalistic, without the bloat of hundreds of font options and pre-built site layouts. Mayorov also gave us his predictions for the future of the theme industry.</p>\n<p>“I think it’s going to go two directions at the same time,” Mayorov said. “I think that page builders and multi-purpose themes wont go anywhere but I also think that niche themes are here to stay as well. Not everybody is looking for a page builder.</p>\n<p>“I see the tendency that at first when people get introduced to WordPress they discover theme marketplaces. They think, ‘Ok this is the top seller, I’m going to go with this theme.’ For some people it works, and there’s nothing wrong with that, because sometimes you have challenges where you need to create a website like yesterday…Once they see that there is another way, they start to research other theme developers and shops, realizing that there are simple themes that work faster and are easier to use, and that you don’t need to spend two hours trying to create the homepage. They will use those themes as well. These are the themes I’m trying to build.”</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2017 19:57:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Customize Snapshots 0.6.0 Adds the Ability to Name and Merge Changesets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/customize-snapshots-0-6-0-adds-the-ability-to-name-and-merge-changesets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5032:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/snapshots.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/T80PGTWXHZ\">Freestocks.org</a>\n<p>Contributors to the <a href=\"https://wordpress.org/plugins/customize-snapshots/\" target=\"_blank\">Customize Snapshots</a> feature plugin are steadily building a UI for managing Customizer changesets using the changesets infrastructure added in WordPress 4.7. <a href=\"https://make.xwp.co/2017/07/27/customize-snapshots-0-6-release/\" target=\"_blank\">Version 0.6.0</a> of the plugin was released this month with an expanded interface for managing the complexities of multi-user editing in the Customizer.</p>\n<p>The previous version of Customize Snapshots already supported scheduling but this release introduces a new multi-select save button that allows users to publish, save draft, save as pending, or schedule changes.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/customize-snapshots-multi-select-button.png?ssl=1\"><img /></a></p>\n<p>Version 0.6.0 adds the ability to name changesets, which is especially helpful for site owners who are sorting and previewing changes submitted by multiple editors. The list of changesets has links for previewing on the frontend, editing in the Customizer, or inspecting the changeset’s content on the edit post screen.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/saved-changesets.png?ssl=1\"><img /></a></p>\n<p>This release introduces the ability to merge multiple changesets into a single changeset, which users can then preview and publish all at once.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/merge-changesets.png?ssl=1\"><img /></a></p>\n<p>Contributors have not yet worked out how this feature will handle conflicting changes submitted by multiple users. It currently accepts whatever change was made more recently, but this isn’t ideal in certain situations. <a href=\"https://github.com/xwp/wp-customize-snapshots/issues?q=is%3Aissue%20is%3Aopen%20conflict\" target=\"_blank\">Conflict resolution</a> is on the team’s radar to address in future iterations of the plugin and they are discussing several different approaches.</p>\n<p>“Merging changesets would definitely lie in the realm of a power user feature,” Customize component co-maintainer Weston Ruter said. “It would probably not be proposed for core. Nevertheless, the existence of the feature is a demonstration of the kinds of things that can be possible when working with changesets.”</p>\n<p>In addition to co-leading WordPress’ Customizer team, Ruter is also the CTO at XWP, where several of the agency’s clients are actively using the Customize Snapshots plugin. News Corp Australia and Beachbody are two companies that have invested in the plugin’s development and are successfully using it at scale on their network of sites.</p>\n<p>“When paired with the Customize Posts plugin, it gets really powerful because you can edit multiple posts and pages, along with any of their postmeta, while also editing widgets, nav menus, and any other settings, and all of these changes are all bundled together in a single changeset,” Ruter said. “This changeset can then be previewed on the frontend, including by sharing the URL with an unauthenticated user (like a 3rd party who can’t even access the Customizer), and they can click around the site with all of the customizations applied as if they had been published.”</p>\n<p>Ruter said the Customizer team isn’t currently targeting a WordPress release for getting these new UI additions added to core but rather view the progress as “prototypes for what could be merged into core, bit by bit.” He identified several tickets that the plugin provides prototype interfaces for:</p>\n<ul>\n<li><a href=\"https://core.trac.wordpress.org/ticket/28721\" target=\"_blank\">#28721</a>: Scheduled changes for the customizer</li>\n<li><a href=\"https://core.trac.wordpress.org/ticket/31089\" target=\"_blank\">#31089</a>: Add revisions and statuses for changesets</li>\n<li><a href=\"https://core.trac.wordpress.org/ticket/21666\" target=\"_blank\">#21666</a>: Customizer reset/undo/revert</li>\n<li><a href=\"https://core.trac.wordpress.org/ticket/39896\" target=\"_blank\">#39896</a>: Customizer: Allow users to Draft changes before Publishing</li>\n</ul>\n<p>“Core development is still very much focused on the editor — Gutenberg — so the far-reaching Customizer changes are not being emphasized yet,” Ruter said. Meanwhile progress continues on the Customize Snapshots plugin, which was completely rewritten for the 0.6.0 release after most of its infrastructure was merged into WordPress 4.7. Ruter’s team is not sure which features will eventually land in core, but the various Customizer feature plugins give users an idea of the power of the changesets infrastructure that is already included in WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2017 22:58:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: .blog Passes 100,000 Registrations, 66.5% of Purchased Domains are in Use\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/blog-passes-100000-registrations-66-5-of-purchased-domains-are-in-use\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5297:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/blog.png?ssl=1\"><img /></a></p>\n<p>The .blog domain extension, managed by Automattic subsidiary Knock Knock WHOIS There (KKWT), opened registration to the public in November 2016 and has just <a href=\"https://my.blog/2017/07/26/100000-blogs/\" target=\"_blank\">passed the 100,000 registration milestone</a>. The extension is averaging 300 new .blog domains registered per day and is quickly gaining popularity among new generic TLDs. According to the most recent stats available at nTLDStats, <a href=\"https://ntldstats.com/tld/blog\" target=\"_blank\">.blog registrations</a> have climbed steadily and predictably every month since its public launch.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/blog-registrations.png?ssl=1\"><img /></a>.blog registrations according to ntldstats.com\n<p>Automattic, which operates independently from KKWT as a registrar, currently has the largest market share of .blog domain registrars at 62.8%. Other smaller pieces of the pie continue to see increasing numbers of registrations. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/registrar-market-share-blog.png?ssl=1\"><img /></a></p>\n<p>“When a .blog domain is sold through any .blog registrar, it operates like all other top-level domains (TLDs),” .blog representative Erica Varlese said. “This means that the registry, in this case Knock Knock WHOIS There, receives the wholesale cost, ICANN receives their fees, and the registrar retains the rest.”</p>\n<p>The .blog team has started experimenting with different marketing programs to promote the extension among registrars and launched its first campaigns last month.</p>\n<p>“These programs are available to any .blog accredited registrar and, through participation, allows them to provide .blog domains to their customers at a discounted rate,” Varlese said. “It is designed to test price elasticity and various end-user marketing techniques that best fit each registrars’ unique customer-base.”</p>\n<p>Registration for .blog domains is fully integrated into WordPress.com’s domain offerings, but Varlese said that Knock Knock WHOIS There, as a separate company, is not informed of the specific details of their domain roadmap. The subsidiary also does not track how many of the .blog domains are running WordPress, as the extension is platform agnostic and in use across many different blogging services. </p>\n<p>So far .blog domain customers include both individuals and businesses, including some e-commerce and community sites. Varlese said the main benefit to acquiring a .blog domain is that customers are more likely to get and use a name they always wanted (example.blog), versus settling for a more complicated variation, such as blog.example.com.</p>\n<p>“Using a blog domain is also a great way to embrace engagement with your community,” Varlese said. “In addition to individual and personal bloggers, we also see larger brands using blogs to engage with their customers. Visiting <a href=\"http://stackoverflow.blog\" target=\"_blank\">stackoverflow.blog</a>, for example, is intuitive. The domain lets me know right away what type of content and interaction to expect versus what my expectations would be when prompted to visit stackoverflow.com. Both are equally important and both add value to the customer’s online experience.”</p>\n<p>Many people purchase a domain just to sit on it for the right time to use it or sell. Greater usage of .blog domains promotes visibility on the web, which is why registrars place value on how many have launched websites using the extension. </p>\n<p>“Our goal is steady, long-term growth while continuing to increase our usage rates,” Varlese said. “We want every .blog domain to resolve to a unique content site or blog. Usage is an important metric for us. It positively contributes to help the new TLD marketplace thrive and grow organically. It is at the forefront of every decision we make, including marketing and rebate programs for our registrars, as well as our dotblogger program, which gives online influencers easy access to all .blog domains, including premium and reserved domains.”</p>\n<p>The .blog team’s 100,000 registrations milestone post cites usage stats from Pandalytics, a domains data service, that are not publicly available. </p>\n<p>“66.5% of .blog domains have a unique website associated with them, compared to an average of 39.3% for both new and legacy TLDs, according to recent research by Daniel Ruzzini-Mejia (co-founder and CSO of DomainsBot Srl, the company behind big-data analysis platform Pandalytics),” Varlese said. “Ruzzini-Mejia also found more than 250 .blog domains that use an eCommerce platform.” </p>\n<p>This is an interesting find in an era where many have claimed that blogs are dead. If the indie web proponents have their way, blogs may have another renaissance yet, and could become the anchors of commerce and identity online. The healthy usage numbers the .blog extension has posted in its first year are a strong indicator that the concept of blogging still holds an important place on the web. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2017 18:09:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Adobe to Discontinue Flash Support and Updates in 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/adobe-to-discontinue-flash-support-and-updates-in-2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3530:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/adobe-flash.png?ssl=1\"><img /></a></p>\n<p>Adobe <a href=\"https://blogs.adobe.com/conversations/2017/07/adobe-flash-update.html\" target=\"_blank\">announced</a> today that it will discontinue Flash support and updates at the end of 2020. Flash played an important part in the history of the web, inspiring many of the open standards and formats that the web has moved on to embrace.</p>\n<blockquote><p>Given this progress, and in collaboration with several of our technology partners – including Apple, Facebook, Google, Microsoft and Mozilla – Adobe is planning to end-of-life Flash. Specifically, we will stop updating and distributing the Flash Player at the end of 2020 and encourage content creators to migrate any existing Flash content to these new open formats.</p></blockquote>\n<p>Last year most major browsers moved to block Flash, requiring users to enable it manually for sites where they wish to view Flash content. Microsoft, Google, and Mozilla were on deck today with announcements of their own regarding future Flash support. Firefox is the most aggressive with its <a href=\"https://blog.mozilla.org/futurereleases/2017/07/25/firefox-roadmap-flash-end-life/\" target=\"_blank\">plan to disable Flash for most users in 2019</a>. Only those running an Extended Support Release will be able to continue using it through the end of 2020 and no version of Firefox will load the plugin after Adobe discontinues security patches.</p>\n<p><a href=\"https://www.blog.google/products/chrome/saying-goodbye-flash-chrome/\" target=\"_blank\">Chrome is also phasing out support for Flash</a> and plans to remove it completely from the browser toward the end of 2020.</p>\n<p>“Three years ago, 80 percent of desktop Chrome users visited a site with Flash each day,” Google Chrome Product Manager Anthony Laforge said. “Today usage is only 17 percent and continues to decline.</p>\n<p>“This trend reveals that sites are migrating to open web technologies, which are faster and more power-efficient than Flash. They’re also more secure, so you can be safer while shopping, banking, or reading sensitive documents.”</p>\n<p>The Microsoft Edge team also <a href=\"https://blogs.windows.com/msedgedev/2017/07/25/flash-on-windows-timeline/#QKXFIeE23ZSoZLlh.97\" target=\"_blank\">announced</a> its plans to phase out Flash from both Microsoft Edge and Internet Explorer with complete removal from all supported versions of Microsoft Windows by the end of 2020.</p>\n<p>Although <a href=\"http://blog.kongregate.com/html5-is-here/\" target=\"_blank\">HTML5 adoption is growing among game developers</a>, Adobe’s announcement means major changes for segments of the the gaming, education, and video industries that have not yet migrated to newer, open formats. This news will also make obsolete dozens of WordPress <a href=\"https://wordpress.org/plugins/search/flash/\" target=\"_blank\">plugins that were created to upload and display Flash content</a>.</p>\n<p>Adobe’s announcement was met with thanks and “good riddance,” with many calling for an even speedier timeline. Many are also concerned about all the orphaned content and .swf games on the web that Flash’s disappearance will create. Adobe has received many requests on Twitter for the company to consider open sourcing the old Flash Player codebase for the sake of compatibility and archiving content. Adobe has not officially replied to any of these requests.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2017 04:01:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"HeroPress: Random Diary Chapters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://heropress.com/essays/random-diary-chapters/?utm_source=rss&utm_medium=rss&utm_campaign=random-diary-chapters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7699:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/072617-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress combines people together from all over the world. Maybe WordPress is important after all.\" /><blockquote><p>There goes my hero<br />\nWatch him as he goes<br />\nThere goes my hero<br />\nHe’s ordinary</p></blockquote>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>I have no idea what I’m going to write about. How about people? Ordinary people are heroes to me. People who are willing to help one another. People just like you and me.</p>\n<p>Well, at least like you <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /> – if you’re for some reason reading my diary.</p>\n<h2>Who’s teaching who</h2>\n<p>I still remember when I build my first website with table layouts while studying math in the University of Jyväskylä. Those were the days! But it doesn’t feel like yesterday anymore. More like day before.</p>\n<p>Nevertheless being a math teacher has been the perfect choice for me. It’s been fun, challenging, and rewarding. I’ve probably learnt lot more from students than they have from me.</p>\n<p>Heck, they even got me into WordPress when I was taking my ex-students short film course. Was it 2008? Something like that. We needed a website for our short film and had only 1-2 days. Students gave me link to WordPress.com and I was sold. Getting site up and running was easy and fast.</p>\n<p>“Well come here and do it yourself!!” – drama class student shouted.</p>\n<p>That’s another good lesson I’ve learnt.</p>\n<blockquote><p>It’s so easy to give negative feedback (don’t do it like that) without doing anything yourself or giving constructive feedback.</p></blockquote>\n<p>Oh boy I still feel ashamed when I judged a book by it’s cover. This time the book cover was a blonde girl asking weird questions with high voice. I was a prison of my prejudice and instantly assumed she must be bad at math. How wrong was I. She was brilliant.</p>\n<p>At least the prison gate is now open if I just understand to walk out.</p>\n<h2>Who am I</h2>\n<p>Sometimes I wonder what other people think of me? Do they think I’m open minded teacher, or front-developer who cares about accessibility. But does any of that matter? Job title really doesn’t tell anything who I am. Or anybody else.</p>\n<p>But who am I? I’m not sure how to define me. I’m no dad or husband. I do have several good traits but there are also demons inside me. Lack of empathy is one of them. And that comes down to this:</p>\n<p>In the end <strong>I’m a selfish asshole</strong>.</p>\n<p>It’s okay to be selfish from time to time but it’s not okay to let people down big time when they need me most. Being an ordinary human being is not one of my strengths but I’ll promise to work on it.</p>\n<h2>Friends will be friends</h2>\n<p>I consider myself lucky. I have lovely parents and two crazy big brothers. And over the years I have made friendships that last forever.</p>\n<p>I hope everybody have a friend who is like a bridge between other friends. Someone who is always organizing something fun: bowling, music gigs, dinners, sports. Someone who is always nice to others and would never hurt a fly.</p>\n<p>I had a friend like that.</p>\n<p>But as a return I couldn’t help him enough. Shadows of life had taken over him. He could not see the light anymore. He died by suicide before christmas 2015.</p>\n<p>Now he can’t fall anymore. He will always be our beloved one and we’ll miss him more than words can express. So many songs reflects to memories we have. For example this Finnish song that I heard exactly one year after his death. (<a href=\"http://lyricstranslate.com/en/rakastettu-beloved.html\">Lyrics in english</a>).</p>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>Why is it so much easier to talk about other problems but not your own. Why is it so hard to ask help when you really need it.</p>\n<h2>Life goes on</h2>\n<p>Do I need to say anything. No I don’t.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/summer-of-2017-peaceful-mind-after-sauna.jpg\"><img class=\"size-full wp-image-1995\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/summer-of-2017-peaceful-mind-after-sauna.jpg\" alt=\"View of the water form the shore.\" width=\"1000\" height=\"750\" /></a>Summer 2017. Peaceful state of mind after a sauna.\n<p> </p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/my-dear-friends-rock.jpg\"><img class=\"size-full wp-image-1996\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/my-dear-friends-rock.jpg\" alt=\"Sami and 2 friends\" width=\"1000\" height=\"751\" /></a>My dear friends rock!\n<p> </p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/friends-will-be-friends.jpg\"><img class=\"size-full wp-image-1997\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/friends-will-be-friends.jpg\" alt=\"Sami and two friends\" width=\"1000\" height=\"750\" /></a>Friends will be friends forever.\n<h2>WordPress is not important</h2>\n<p>WordPress is not important. People behind it are, they have feelings. I wish more people would remember that when commenting on blog posts, Slack, or other online tools with shitty attitudes.</p>\n<blockquote><p>Being nice and constructive goes a long way.</p></blockquote>\n<p>At the same time it’s amazing to notice how WordPress combines people together from all over the world. In WordCamps and meetups I have found new friends that really matter. That feels good.</p>\n<p>Maybe WordPress is important after all.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Random Diary Chapters\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Random%20Diary%20Chapters&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Frandom-diary-chapters%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Random Diary Chapters\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Frandom-diary-chapters%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Frandom-diary-chapters%2F&title=Random+Diary+Chapters\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Random Diary Chapters\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/random-diary-chapters/&media=https://heropress.com/wp-content/uploads/2017/07/072617-150x150.jpg&description=Random Diary Chapters\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Random Diary Chapters\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/random-diary-chapters/\" title=\"Random Diary Chapters\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/random-diary-chapters/\">Random Diary Chapters</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2017 00:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sami Keijonen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"WPTavern: SiteLock Acquires Patchman’s Malware and Vulnerability Detection Technology, Expands WordPress Customer Base to 4 Million\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73626\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"https://wptavern.com/sitelock-acquires-patchmans-malware-and-vulnerability-detection-technology-expands-wordpress-customer-base-to-4-million\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4480:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/sitelock-logo.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.sitelock.com/\" target=\"_blank\">SiteLock</a>, a website security company, has <a href=\"https://www.sitelock.com/pr/extends-web-security-leadership-patchman-acquisition\" target=\"_blank\">acquired</a> <a href=\"http://patchman.co/\" target=\"_blank\">Patchman</a>, a Dutch security startup that offers automated vulnerability patching and malware removal for hosting providers. Prior to the acquisition SiteLock protected 6 million sites, with 2.2 million of them running on WordPress. The addition of Patchman extends SiteLock’s customer base to 12 million sites and more than 4 million of those are powered by WordPress.</p>\n<p>Patchman detects vulnerabilities in <a href=\"https://patchman.zendesk.com/hc/en-us/articles/200236661-Which-applications-does-Patchman-scan-and-fix-\" target=\"_blank\">a wide range of popular applications</a> and quarantines and patches threats automatically. The quarantine feature neutralizes malicious files by removing them from public access. Patchman supports detection and patching for WordPress 3.x and later.</p>\n<p>Historically, the service has not included patches for plugins but it has applied them on a case-by-case basis for high impact vulnerabilities, including a few found in WP Super Cache, MailPoet, and the open source Genericons font project. The Patchman dashboard allows users to easily track files where vulnerabilities have been detected, view status, and revert patches if necessary.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/patchman-dashboard.jpg?ssl=1\"><img /></a></p>\n<p>Patchman’s single focus on hosting providers gives SiteLock the opportunity to offer more options to its hosting partners. With the acquisition, the company is now partering with more than 500 hosting providers, including BlueHost, 1&1, Web.com, InMotion, Melbourne IT, GMO (NTT), and many others.</p>\n<p>“During our early talks, Patchman was not looking to be acquired and SiteLock wasn’t looking to acquire,” SiteLock President Neill Feather said. After meeting at the WorldHostingDays show in Rust, Germany in late March this year and at another show in Los Angeles, the companies found they shared similar goals and would be in a better position working together.</p>\n<p>“It truly was a matter of 1+1=3,” Feather said. “Traditionally, SiteLock is very strong in detecting and removing malware for end users. Patchman offers a service tailored specifically to hosting providers and aimed at fixing the security vulnerabilities that hackers exploit to infect websites with malware. By working together we are able to address a wider market and offer a broader solution to the problems that we solve for our customers. We can now attack the problem from multiple angles.”</p>\n<p>Patchman’s technology will compliment SiteLock’s existing security features but the company has not yet decided how it will be incorporated into its security plans for customers. Feather said the team is still jointly building out its future roadmap to give hosts and end customers access to a wider range of products. They are also considering making Patchman’s detection technology compatible with more products in the WordPress ecosystem.</p>\n<p>Feather could not disclose any specifics on revenue generated by <a href=\"https://wpdistrict.sitelock.com/products/\" target=\"_blank\">SiteLock’s WordPress security products</a> but approximately 30% of its newly expanded customer base is running on WordPress.</p>\n<p>“What we can say is that we’re heavily invested in the WordPress community and plan on continuing to do so,” Feather said.</p>\n<p>“I’m excited that the increased number of sites we now protect across multiple platforms means we’ll be able to identify malware and malicious trends more efficiently than we’ve been able to already, and that’s good for every end user,” SiteLock’s WordPress Evangelist Adam Warner said. “Secondly, although we already have solutions for our partners, Patchman allows web hosts to offer increased security options for advanced users of their platforms. Being a WordPress guy, I’m excited about the possibility we now have to extend the capabilities of Patchman to plugins and other WordPress-specific software.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2017 18:46:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Watch WordCamp Varna Wapuus Get Designed in Real Time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/watch-wordcamp-varna-wapuus-get-designed-in-real-time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1390:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/wordcamp-varna-wapuus.jpg?ssl=1\"><img /></a></p>\n<p>The very first <a href=\"https://2017.varna.wordcamp.org/\" target=\"_blank\">WordCamp Varna</a> will be held September 2-3 at the <a href=\"https://www.ue-varna.bg/en/\" target=\"_blank\">University of Economics</a>. Varna is a beautiful city in Bulgaria on the Black Sea and a popular spot for summer holidays. It is the first Bulgarian WordCamp to be held outside of Sofia.</p>\n<p><a href=\"https://2017.varna.wordcamp.org/tickets/\" target=\"_blank\">Tickets are on sale</a> for EUR 10 (BGN 20) and include all the sessions, lunch, a #WCVAR 2017 T-shirt, and a few drinks at the after party. There are 102 remaining for the conference and 14 remaining tickets for the kids’ workshop (ages 7-14).</p>\n<p>The location naturally inspired a maritime sticker pack collection for attendees, featuring four new wapuu designs. The collection was designed by the vector graphic illustrators at <a href=\"https://graphicmama.com/\" target=\"_blank\">GraphicMama</a>, a design partner for the WordCamp. Ever wonder how much effort goes into designing all the individualized creations in the <a href=\"http://jawordpressorg.github.io/wapuu/\" target=\"_blank\">world of wapuus</a>? Check out the video below to see how WordCamp Varna’s wapuu designs were brought to life.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2017 04:14:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: New Aztec Editor for WordPress Mobile Apps Now in Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73587\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/new-aztec-editor-for-wordpress-mobile-apps-now-in-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3353:\"<p>WordPress’ iOS and Android apps will soon be getting a new editor. The appearance of the new editor, codenamed “Aztec,” is very similar to the old one but is light years ahead of its predecessor in both speed and reliability. Aaron Douglas, iOS engineer at Automattic, announced the <a href=\"https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/\" target=\"_blank\">open beta for Aztec</a> today with a side-by-side comparison video of the old and new editors. A copy and paste test with 500 paragraphs on iPhone 6s demonstrates Aztec’s instantaneous response while the old editor takes two-minutes to render the text.</p>\n<p></p>\n<p>In addition to better speed and performance, Aztec’s use of OS-provided text controls makes it possible to offer full support for accessibility technologies like iOS’ VoiceOver and Android’s TalkBack. It also adds the ability to draft using dictation.</p>\n<p>Aztec introduces a new undo/redo tool at the top of the screen as a quick option for fixing mistakes. It also provides a simpler, more reliable experience using spell check.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/aztec-testing.png?ssl=1\"><img /></a></p>\n<p>The Aztec beta is available to all users in the latest updates of the app (8.0 for iOS, 7.8 for Android). After opening the app you will see a popup for enabling the new editor. It can also be toggled on/off by going to Me > App Settings and selecting “Set the Editor Type.”</p>\n<p>The mobile team has made it easy to test and give feedback without leaving the app. Tapping the “beta” button at the top of the editor will open a “What’s New in the Beta” page with a bug button at the top that you can use to report bugs and send feedback. At the moment, the beta does not support shortcodes or video and WordPress gallery features. Keep in mind that it’s not 100% ready for use and heavy users of the mobile apps are likely to discover glitches.</p>\n<p>Aztec is open source (GPL 2.0) and packaged as a rich-text editor component in its own GitHub repository (<a href=\"https://github.com/wordpress-mobile/WordPress-Aztec-iOS\" target=\"_blank\">iOS</a> | <a href=\"https://github.com/wordpress-mobile/WordPress-Aztec-Android\" target=\"_blank\">Android</a>) so that developers can use it in their own applications and contribute code back to the project.</p>\n<p>“Quite literally, there is nothing like this out there – every editor we could find uses a web view or has very limited support for any HTML,” Douglas said. “Our hope is the Aztec editor is seen as a component that can be used by many iOS and Android apps to provide a rich HTML editing experience. We feel that we could garner a bigger contributor base to the mobile apps simply because this component exists, is free and open, and is super awesome.”</p>\n<p>The project is a few months behind the <a href=\"https://make.wordpress.org/mobile/2017/04/08/introducing-the-aztec-mobile-editors/\" target=\"_blank\">schedule published in April</a>, which had open beta targeted for May and the full release for the end of this month. Depending on how well the beta testing period goes, users could see the new Aztec editor included in the mobile apps within the next few months.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2017 22:59:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: Hamilton: A Free WordPress Portfolio Theme for Photographers, Illustrators, and Designers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72881\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/hamilton-a-free-wordpress-portfolio-theme-for-photographers-illustrators-and-designers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3779:\"<p><a href=\"https://wordpress.org/themes/hamilton/\" target=\"_blank\">Hamilton</a> is a new portfolio theme released by Swedish designer and developer <a href=\"http://www.andersnoren.se/\" target=\"_blank\">Anders Norén</a> during his summer vacation. It was created for photographers, illustrators, designers, and image-heavy blogs. The theme displays portfolio items in a minimal, masonry-style grid with an optional tagline on the front page.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/hamilton-white-black-1.jpg?ssl=1\"><img /></a></p>\n<p>“Hamilton has a pretty simple design at its core, so when it was more or less finished, I decided to add a couple of fun theme options to make it more customizable,” Norén said. “The main one is the Dark Mode. With a click of the mouse in the WordPress Customizer, you can change Hamilton from dark text on a white background to white text on a dark background.”</p>\n<p>The Customizer also includes a few other helpful options for portfolio sites:</p>\n<ul>\n<li>Set a custom background image or color</li>\n<li>Replace the navigation toggle in the header with the Primary Menu on desktop</li>\n<li>Change two-column default post grid display to three columns on desktop</li>\n<li>Display titles in the post previews</li>\n<li>Add a title to front page when it’s set to display latest posts</li>\n</ul>\n<p>The theme is beautifully responsive to various devices and screen sizes. Norén’s typography choices are clean and readable on mobile.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/hamilton-on-mobile-e1500914561475.png?ssl=1\"><img /></a></p>\n<p>Hamilton includes <a href=\"http://andersnoren.se/themes/hamilton/offscreen-magazine-collection/\" target=\"_blank\">styles for the default WordPress image gallery</a> with more interesting options available to create complex galleries stacked with different numbers of columns. It also supports Jetpack’s Infinite Scroll module and has styles for blockquotes, pullquotes, and left/right/center aligned media.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/hamilton-pullquotes.png?ssl=1\"><img /></a></p>\n<p>One of the most unique features of the theme is the <a href=\"http://andersnoren.se/themes/hamilton/resume/\" target=\"_blank\">Resume template</a>. It gives users the option to add a simple resume to their portfolios, without having to add a plugin. The template uses basic HTML for formatting with h1 header tags, horizontal rules, and unordered lists. The template could use a bit more documentation, since not all users are familiar with HTML, but it’s a useful addition for simple portfolio sites.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/resume-template.png?ssl=1\"><img /></a></p>\n<p>Check out a <a href=\"http://andersnoren.se/themes/hamilton/\" target=\"_blank\">live demo</a> along with the <a href=\"http://andersnoren.se/themes/hamilton/style-guide/\" target=\"_blank\">style guide</a> to see the theme in action.</p>\n<p><a href=\"https://wordpress.org/themes/hamilton/\" target=\"_blank\">Hamilton</a> is Anders Norén’s 15th theme approved for the WordPress Theme Directory. When he submitted it to the Theme Review Team, he anticipated that it would take a month or two for it to get through the review process. His previously submitted theme, Davis, took approximately nine months to make it through the queue. He was surprised to find that Hamilton <a href=\"https://twitter.com/andersnoren/status/887559567135186944\" target=\"_blank\">went through the process in under a month</a>. After less than a week on WordPress.org, the theme has already been downloaded more than 200 times.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2017 19:27:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: Members 2.0 Adds Capability Registration System, Introduces New Settings Screen for Add-Ons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/members-2-0-adds-capability-registration-system-introduces-new-settings-screen-for-add-ons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6254:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/members.png?ssl=1\"><img /></a></p>\n<p>Eight years ago, Justin Tadlock moved back home to Alabama and was living in the spare bedroom of his grandparents’ house with nothing more than a laptop and a suitcase. Over the course of a few months he started going deeper into learning about writing WordPress plugins and produced <a href=\"https://wordpress.org/plugins/members/\" target=\"_blank\">Members</a>, a role management plugin for WordPress. The first major overhaul of the plugin came in 2015 with version 1.0’s expansion of features and a new UI for editing roles.</p>\n<p>Members has built up a user base of more than 100,000 active installs since it first <a href=\"http://justintadlock.com/archives/2009/09/17/members-wordpress-plugin\" target=\"_blank\">launched in 2009</a>. Tadlock estimates that over the last couple years, 40% of <a href=\"https://themehybrid.com/\" target=\"_blank\">Theme Hybrid</a> customers are primarily there for support and small tweaks to the Members plugin. He decided it was time to begin investing more in the plugin and its community.</p>\n<p>Tadlock released <a href=\"https://themehybrid.com/weblog/members-version-2-0\" target=\"_blank\">Members 2.0</a> this week. The plugin manages core WordPress capabilities but 2.0 adds the ability for plugins to register custom capabilities. The labels for the capabilities can be internationalized so users can manage the plugin in their own languages in human-readable form.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-human-caps.png?ssl=1\"><img /></a></p>\n<p>This release also adds the ability to use the WordPress editor for writing custom post error messages, making it easy to direct visitors to registration or other important information regarding access to the content.</p>\n<p>Members 2.0 lets users add multiple roles when creating a new user from the Add User screen. It also introduces the ability to bulk add or remove roles from users, even when multiple roles have been enabled.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-bulk-users.png?ssl=1\"><img /></a></p>\n<p>This version of the plugin serves some of its data using the WP REST API and a new setting was added to authenticate users who are accessing the REST API endpoints. This protects content from being exposed on sites that have the “private site” setting enabled. Tadlock plans to write a tutorial about what he has learned in integrating the REST API with the plugin.</p>\n<h3>Tadlock Aims to Monetize Members with Add-Ons, Renews Efforts to Develop a Community of Add-On Developers</h3>\n<p>Members 2.0 introduces a new Settings screen that ties in with Tadlock’s future plans to monetize the plugin. The new screen includes a view for add-ons. Tadlock has two add-ons available currently and has written an API for third-party developers to register their own add-ons to be visible on this screen.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-addons.png?ssl=1\"><img /></a></p>\n<p>“The plan is to create some small add-on plugins,” Tadlock said. “There’s already two: <a href=\"https://themehybrid.com/plugins/members-role-levels\" target=\"_blank\">Members – Role Levels</a>, which is paid, and <a href=\"https://themehybrid.com/plugins/members-role-hierarchy\" target=\"_blank\">Members – Role Hierarchy</a>, which I was hired to build and was allowed to release to the community for free. I’ve got a few small plugins like those in mind that’ll be in a lower price range.”</p>\n<p>Tadlock also plans to release a more robust version of the “Content Permissions” feature as another add-on. He has received numerous feature requests from users over the years about what they would like to see in this plugin. The add-on will offer a variety of different ways to show/hide content.</p>\n<p>I asked Tadlock if he has considered building payment gateway add-ons so users can charge for memberships. He said the idea is on the table.</p>\n<p>“I’m not sure if I’m going to build those or someone else,” Tadlock said. “I’ve mentioned it to some other developers. It would be a good place to start building add-ons.” His current setup uses Easy Digital Downloads with a couple of plugins to bridge it with Members and ThemeHybrid.com.</p>\n<p>A plugin like Members has the potential to have a large, third-party ecosystem of plugins for payments and additional features, but Tadlock was focused on other projects during the first few years after it launched.</p>\n<p>“I haven’t actively pursued the add-on angle,” Tadlock said. “Instead, I focused more on themes during most of that time. Now, I’m focusing more on plugin development. It’s my fault for not nurturing a community of add-on developers, which is something I’m trying to do more of now.”</p>\n<p>Tadlock said many of the developers he knows are working with Members because they like that it gives them a solid foundation to build on for client work. He hopes to persuade some of them to release some of that code back as commercial add-ons or free plugins in the WordPress plugin directory.</p>\n<p>Since launching the plugin eight years ago, Tadlock has aimed to make it behave as if it were a natural part of WordPress. At its core, Members is a role and capability management plugin and not a one-size-fits all membership plugin.</p>\n<p>“It’s more or less a UI over what you could do with code already,” Tadlock said. “Most of all, it tries not to get in your way. Every membership site has its own unique needs. It’s tough building something that suits everyone. That’s why I’d rather have that foundation of Members just exposing the roles/caps system with third-party add-ons that suit various users’ needs.</p>\n<p>“Other membership plugins often try to please everyone or pigeon-hole everything into their custom system. I like more to have a bit more flexibility without the bloat.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2017 21:37:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WordPress 4.8.1 Adds a Dedicated Custom HTML Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2681:\"<p>When WordPress <a href=\"https://wptavern.com/wordpress-4-8-evans-released-featuring-nearby-wordpress-events-new-media-widgets-and-link-boundaries\">4.8 was released</a> last month, it introduced TinyMCE functionality to the Text widget. Unfortunately, this <a href=\"https://wordpress.org/support/topic/how-to-disable-visual-editor-in-the-text-widget/\">caused issues</a> for those who use Custom HTML as the Visual editor often strips out portions of the code.</p>\n<p>WordPress <a href=\"https://wordpress.org/download/release-archive/#beta-and-rc\">4.8.1 Beta 1</a> is available for testing and addresses this problem by including a dedicated Custom HTML widget.</p>\n<p>“For advanced users or any user who needs to paste in HTML snippets, there is now a dedicated ‘Custom HTML’ widget that is specifically for adding arbitrary HTML to your sidebar,” Weston Ruter, said.</p>\n<p>“This widget will retain the application of the <code>widget_text</code> filters, in addition to having a new dedicated <code>widget_custom_html_content</code> filter.</p>\n<p>“For use cases that involve adding content to your sidebar, the Text widget will continue to feature the same Visual editing interface that the post editor has (TinyMCE).”</p>\n<p>Users who access Text widgets that have Custom HTML in WordPress 4.8.1, will see a note at the top of the widget that suggests using the Custom HTML widget.</p>\n<p><img /></p>\n<p>If a user pastes or types HTML into a text widget with the Visual editor active, WordPress displays an Admin Pointer suggesting that they use the Text tab instead or use the Custom HTML widget.</p>\n<img />Text Widget Admin Pointer\n<p>The Custom HTML widget works similar to the Text widget in WordPress 4.7 and below.</p>\n<img />Custom HTML Widget\n<p>Sites that have existing Text widgets containing custom HTML that may be modified by the Visual editor, are opened in a legacy mode.</p>\n<p>Legacy mode retains the old Text widget interface, including the checkbox on whether or not to automatically add paragraphs. This change prevents the Visual editor from altering code.</p>\n<p>Ruter says the ideal way to test these improvements is to install it on a staging site that has Text widgets containing HTML and are known to be problematic in WordPress 4.8. After upgrading, check to see if the widgets open in legacy mode.</p>\n<p>WordPress 4.8.1 is scheduled to be released on August 1st. Please report any bugs or errors you encounter in as much detail as possible to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">WordPress Alpha/Beta</a> section of the support forums.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2017 18:31:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: Petition to Re-License React has been Escalated to Facebook’s Engineering Directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/petition-to-re-license-react-has-been-escalated-to-facebooks-engineering-directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7983:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/flags.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/04XDXYUMGQ\">manu schwendener</a>\n<p>React users are <a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\">petitioning Facebook to re-license React.js</a> after the Apache Software Foundation announced its decision to ban Apache PMC members from using any technology licensed with Facebook’s BSD+Patents License. So far the GitHub <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">issue</a> has received 627 “thumbs up” emoji and 66 comments from concerned React users who are hoping for a change in licensing.</p>\n<p>Many respondents on the thread said that ASF’s decision affects their organizations’ ability to continue using React in projects.</p>\n<p>“Apache CouchDB and others will switch away from React if we have to,” CouchDB committer Robert Newson <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315596902\" target=\"_blank\">said</a>. “We’d rather not, it’s a lot of work for no real gain, but we don’t have a choice. Changing license can be simple (RocksDB completed that change in a day).”</p>\n<p>“My team, at LinkedIn, is also having legal troubles using React for our internal projects,” LinkedIn software Denis Ivanov <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316500996\" target=\"_blank\">said</a>. “We would love to see a change on this front.”</p>\n<p>Software developer Clark Evans <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315607798\" target=\"_blank\">commented</a> on how React’s current licensing might affect medical research institutes, and suggested that Facebook consider an Apache 2.0 license because it includes equitable patent grants.</p>\n<blockquote><p>Since U.S. based universities rely upon patent licensing as part of their legislatively mandated technology transfer initiatives, they are growing far more cautious in their due diligence. For this reason, at some universities, software written with React may be shunned. Existing projects using React software may be asked to remove the React software software dependency. Please strongly consider this proposal, since our RexDB work is used at major universities, we do not wish to rework to use a React alternative.</p></blockquote>\n<p>Several participants in the discussion commented that they would like to use React but the licensing makes it impossible for their companies.</p>\n<p>“Other large companies such as mine (Adobe) can’t use React, Pop, etc. for the very same reason,” Corey Lucier <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316046522\" target=\"_blank\">said</a>. “We’d love to participate in the project, contribute to each, etc. but Facebook’s heavy-handed PATENTS clause is a showstopper.”</p>\n<p>“Even mid-size companies like mine (ViaSat) are starting to disallow the use of Facebook’s ‘open-source’ projects for this reason,” software developer Aaron Yoshitake <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316102045\" target=\"_blank\">said</a>. “We’d like to build React web and native apps, but it seems that any sensible legal department will recommend against agreeing to Facebook’s asymmetric patent grant.”</p>\n<h3>Internal Discussions Continue at Facebook, Re-Licensing Issue has been Escalated to Engineering Directors</h3>\n<p>Dan Abramov, co-author of Redux, Create React App, and React Hot Loader, shared with participants that Facebook is having internal discussions about the re-licensing issue but cautioned them to temper their optimism. He returned to throw some ice on the conversation, which has grown more heated over the past few days, when he said it could only remain an open discussion if everyone involved remains civil. Many participants are concerned about the future of the React-based software that they have already invested thousands of hours of work into.</p>\n<p>“I understand that everyone is frustrated about this issue,” Abramov <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316223034\" target=\"_blank\">said</a>. “Personally I am just as frustrated to spend time, energy, and emotional wellbeing on legal mumbo jumbo that is preventing people from using React. I would much prefer to spend this time on working together to make it better.</p>\n<p>“But the reality of this situation is that the maintainers of React (people like me that you’re interacting on the issue tracker) are not the ones making these decisions. Each of us is doing what we can to show different perspectives on this issue to the people who can make those decisions, and we appreciate your feedback too. But we can only keep discussion open if everyone stays civil and respectful.”</p>\n<p>Abramov also pointed out in a follow-up update that a bug tracker isn’t the best avenue for a legal discussion, especially since most participants are software developers and not lawyers. Many have mistaken the thread as a way to communicate with Facebook but there are just a handful of software developers who are representing the React community’s concerns.</p>\n<p>“We have heard you very well, and we have passed on your concerns,” Abramov said. “But repeating the same points over and over in different threads does not help move this forward, and creates a lot of noise and stress for the maintainers who are already empathetic to your cause.”</p>\n<p>Several participants expressed frustration that the React community cannot participate in the discussions more directly. However, as React is both an open source project and a product of Facebook, the company’s leadership has the last word on licensing issues.</p>\n<p>“I understand that software developers like us are not the best people to discuss legal details,” software consultant Erik Doernenburg <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316318170\" target=\"_blank\">said</a>. “However, wouldn’t the logical consequence be that the Facebook Legal team, who make such decisions, become active in this forum? Shouldn’t it be possible that all relevant details pertaining to a piece of open source software are discussed in the open? It is incredibly frustrating to have such an important aspect of open software discussed behind closed doors.”</p>\n<p>It’s not known whether Facebook is considering another change to its Patents grant or a complete re-licensing. Participants in the discussion are also concerned about other Facebook open source projects like GraphQL, Relay, React Native, and Flow, which share the same BSD+Patents License and are widely used by the open source community.</p>\n<p>Dan Abramov left an <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316739812\" target=\"_blank\">update</a> today to let the community know that no resolution is available this week. However, the update seemed more positive than the first one, which discouraged participants from being optimistic about a change.</p>\n<p>“I want to point out that there is a real momentum behind this discussion internally,” Abramov said. “There are going to be more meetings next week escalating this up to the engineering directors. As you imagine they are quite busy, so this is taking more time than we thought.</p>\n<p>“Again, I can’t promise you any specific conclusion, and there is no clarity on where this will land. But please know there are people working on getting your voice heard.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jul 2017 22:37:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WPWeekly Episode 282 – Talking WooCommerce with Cody Landefeld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=73448&preview=true&preview_id=73448\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpweekly-episode-282-talking-woocommerce-with-cody-landefield\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3381:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"https://twitter.com/codyL\">Cody Landefeld</a>, Senior web strategist and founder of <a href=\"https://modeeffect.com/\">Mode Effect</a>. Landefeld describes some of the challenges that shop owners face and provides insight into a couple of WooCommerce projects Mode Effect has recently built.</p>\n<p>We discussed the future of WooCommerce and the odds of it turning into a SaaS product. Landefeld shares his thoughts on WooCommerce <a href=\"https://wptavern.com/woocommerce-drops-50-renewal-discount-on-subscriptions\">dropping its 50% renewal discount</a> on subscriptions. Even though the discount is gone, he believes it’s still an affordable option for most users. To close out the show, Jacoby and I discuss the news of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/aj-morris-acquires-ithemes-exchange\">AJ Morris Acquires iThemes Exchange</a><br />\n<a href=\"https://wptavern.com/jetpack-professional-plan-introduces-unlimited-access-to-200-commercial-themes\">Jetpack Professional Plan Introduces Unlimited Access to 200+ Commercial Themes</a><br />\n<a href=\"https://wptavern.com/bbpress-2-5-13-readds-sanitization-to-anonymous-user-data\">bbPress 2.5.13 Readds Sanitization to Anonymous User Data</a><br />\n<a href=\"https://wptavern.com/wp-rollback-adds-multisite-compatibility-and-changelog-preview\">WP Rollback Adds Multisite Compatibility and Changelog Preview</a><br />\n<a href=\"https://wptavern.com/gutenberg-0-5-0-adds-new-verse-block-for-poetry-and-a-new-display-for-recent-blocks\">Gutenberg 0.5.0 Adds New Verse Block for Poetry and a New Display for Recent Blocks</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://ahmadawais.com/gutenberg-boilerplate/\">Gutenberg Boilerplate For Third-Party Custom Blocks</a> by Ahmad Awais. The boilerplate is a great way to learn the basics on creating custom blocks for Gutenberg. It comes with four example blocks.</p>\n<ul>\n<li>A block with custom CSS for editor and front end</li>\n<li>A block with ES6 or ESNext and a Webpack build process</li>\n<li>A block with editable content</li>\n<li>A block to click Tweet the contents of that block</li>\n</ul>\n<p>Awais also shared his thoughts on the Gutenberg project.</p>\n<p><a href=\"https://wordpress.org/plugins/add-admin-css/\">Add Admin CSS</a> – Using this plugin you’ll easily be able to define additional CSS (inline and/or files by URL) to be added to all administration pages. You can define CSS to appear inline in the admin head (within style tags), or reference CSS files to be linked.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 2nd 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #282:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jul 2017 01:19:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: The State of JavaScript 2017 Survey is Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/the-state-of-javascript-2017-survey-is-now-open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2708:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/stateof-javascript-2017.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"http://stateofjs.com/\" target=\"_blank\">State of JavaScript 2017 Survey</a> is now open to web professionals of all backgrounds. The intent of the survey is to provide an overview of the rapidly changing landscape of JavaScript frameworks and tools by gauging which technologies are growing in popularity and which ones people are liking and using less.</p>\n<p>The survey, created by <a href=\"http://twitter.com/SachaGreif\" target=\"_blank\">Sacha Greif</a> and <a href=\"http://michaelrambeau.com/\" target=\"_blank\">Michael Rambeau</a>, should take approximately 10 minutes to complete. Topics include JavaScript frontend and backend tools and frameworks, state management solutions, testing tools, CSS, build tools, mobile and desktop technologies, package managers, text editors, salaries, and more.</p>\n<p>Last year’s 89-question survey received more than 9,300 responses. <a href=\"https://wptavern.com/state-of-javascript-survey-results-published-react-emerges-as-clear-winner-in-front-end-frameworks\" target=\"_blank\">Results</a> showed that React ranked higher than other front-end frameworks in terms of developer satisfaction at 92%, followed closely by Vue.js at 89%.</p>\n<p>It will be interesting to see if and how these results change with many open source project and companies growing wary of using React after the Apache Software Foundation’s recent decision to<a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\"> ban Apache PMC members from using any technology licensed with Facebook’s BSD+Patents License</a>. A licensing issue that <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">jeopardizes more companies’ ability to use Facebook’s popular open source technologies</a> could precipitate a decline in React’s preeminence among frontend frameworks.</p>\n<p>Sacha Greif reports that the survey has <a href=\"https://twitter.com/SachaGreif/status/887473181539188736\" target=\"_blank\">received more than 3,500 responses in less than 24 hours</a>, a remarkable number compared to 9,300 over the course of three weeks last year. This response affirms the value that <a href=\"https://wptavern.com/state-of-javascript-survey-results-published-react-emerges-as-clear-winner-in-front-end-frameworks\" target=\"_blank\">last year’s results</a> provided to web professionals who are attempting to navigate the ever-expanding JavaScript ecosystem.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 20:16:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: bbPress 2.5.13 Readds Sanitization to Anonymous User Data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/bbpress-2-5-13-readds-sanitization-to-anonymous-user-data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1328:\"<p>The bbPress development team <a href=\"https://bbpress.org/blog/2017/07/bbpress-2-5-13/\">has released</a> bbPress 2.5.13. This release fixes a few bugs, most notably, it readds sanitization to anonymous user data that was accidentally removed in previous versions.</p>\n<p>Those who allow anonymous users to create topics and replies on their forums are encouraged to update immediately.</p>\n<p>“This feature is not widely used on public forums because spammers aggressively target these kinds of sites, but for communities that rely on this feature, please know you can safely upgrade to 2.5.13 without any issues,” John James Jacoby, lead developer of bbPress and BuddyPress, said.</p>\n<p>As a reminder, beginning with bbPress 2.5.12, the minimum version of WordPress supported is 4.7. If you’re using an older version of WordPress, Jacoby recommends using or staying with bbPress 2.5.11.</p>\n<p>bbPress 2.6 is still in the release candidate phase as developers iron out a few issues discovered on WordPress.org.</p>\n<p>Users can <a href=\"https://wordpress.org/plugins/bbpress/\">download the latest versio</a><a href=\"https://wordpress.org/plugins/bbpress/\">n</a> of bbPress from WordPress.org or browse to Dashboard > Updates, and upgrade from within WordPress.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 18:22:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Zagreb to Host 3rd WordCamp in Croatia, September 1-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72737\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/zagreb-to-host-3rd-wordcamp-in-croatia-september-1-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4747:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/zagreb-croatia.png?ssl=1\"><img /></a>photo credit: Archives of Zagreb Tourist Board – Author: Marko Vrdoljak\n<p><a href=\"https://2017.zagreb.wordcamp.org/\" target=\"_blank\">WordCamp Zagreb</a> will be held September 1-3 and organizers are anticipating 300 attendees. This is the third WordCamp to be held in Croatia, following WordCamp Rijeka (2015) and WordCamp Split (2016). Although it changes cities every year, the camp is known as Croatia’s annual WordCamp.</p>\n<p>“Having WordCamp change cities each year is quite normal for us,” WordCamp Croatia co-organizer and Zagreb meetup organizer Emanuel Blagonic said. “A lot of people from other cities travel to meetups too. Our largest meetup in Zagreb, which usually has 80+ people present and 100+ live stream viewers, usually has people attending from a 300km circle around Zagreb. People also travel to Split when there are meetups there.”</p>\n<p>A renewed <a href=\"https://make.wordpress.org/community/2017/07/18/regional-camps-take-2/\" target=\"_blank\">discussion on regional WordCamps</a> is firing up on the WordPress Community team P2 blog, as the topic was discussed at the Community Summit and with recent developments in <a href=\"https://wptavern.com/wordcamp-netherlands-reinstated-for-2018\" target=\"_blank\">WordCamp Netherlands being reinstated</a> and <a href=\"https://wptavern.com/wordsesh-asia-now-in-planning-for-2018-wordcamp-asia-targeted-for-2019\" target=\"_blank\">WordCamp Asia a possibility for 2019</a>. Croatia is another example of a country where a national WordCamp might benefit the community.</p>\n<p>“When we started with organizing a WordCamp in Croatia, as a community we hoped that WordCamp will help us boost local communities, thus not having everything centralized in Zagreb (where most other meetups happen, i.e. PHP, Design, UX, JavaScript, Python, etc.),” Blagonic said. “As a community we strongly believe that every region is different and it should be viewed like that. So far we are organizing WordCamps ‘no matter what,’ but having a ‘national WordCamp would mean more Croatian sponsors and better coverage from national media.”</p>\n<p>WordCamp Zagreb will be a three-day event, beginning with workshops on the first day as the event has done in previous years. Organizers are planning for 12 workshops in four tracks that will be open to public registration. The main conference will be held Saturday with two tracks. Contributor Day will close out the event on Sunday, followed by a walking tour of the city.</p>\n<p>Friday’s workshops will be held mostly in Croatian, except a few, such as WordPress Basics and Public Speaking, which will be conducted in English. All of the conference talks this year will be in English.</p>\n<p>“Croatia is a tourist country and most of the people here speak good English, which is often used at large tech events,” Blagonic said. “With that in mind, every WordCamp so far was (mostly) in English, which means it’s quite welcoming for people outside Croatia, too (Slovenia, Austria, Italy, Germany) – and our community likes to meet new people. Unlike WordCamps, we see Meetups as strong local events so we usually have talks in Croatian there.”</p>\n<p>Blagonic said every year so far the WordCamp has had approximately 20% of its attendees traveling from outside Croatia, as the country is relatively small with a population of 4 million. Most attendees travel to the WordCamp from other parts of Croatia.</p>\n<p>Croatia currently has five local meetups, but only the two in Zagreb and Split have enough members to meet regularly. Blagonic said he sees the meetups as a way to help local communities grow and views the WordCamp as “a celebration of the country community.” However, he believes centralizing the larger events too much would be detrimental to growing the fledgling WordPress communities in the smaller cities.</p>\n<p>“I’d say that in Croatia (and in the region) we have a young democracy and we still haven’t found the best way to connect with people,” Blagonic said. “For example, there are four big cities in Croatia where most of the things happen, and the tech scene is quite strong in them. If you go outside of these four hubs, a lot fewer things happen, which is a problem for people living outside. We believe that having a centralized country is bad for growing local communities (outside these areas) so with changing cities each year and with traveling to other Meetups/WordCamps we hope that we will change how people feel about it. “</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 18:11:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Donncha: WP Super Cache 1.5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89500337\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://odd.blog/2017/07/19/wp-super-cache-1-5-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5935:\"<p>WP Super Cache is a fast full-page caching plugin for WordPress. Download it from your dashboard or get it <a href=\"https://wordpress.org/plugins/wp-super-cache/\">here</a>.</p>\n<p>Version 1.5.0 has been in development for some time. It has a ton of bug fixes and new features. </p>\n<h3>REST API</h3>\n<p>The headline new feature is REST API access to the settings. This will allow developers to create their own interface to the settings of the plugin. Unfortunately it isn’t yet documented but you can see the code <a href=\"https://github.com/Automattic/wp-super-cache/tree/master/rest\">in the rest directory</a>. Start with load.php where you’ll find the code that registers all the endpoints. Users who access the API must be logged in as admin users. If you want to test the API, see the end of this post.</p>\n<h3>Settings Page</h3>\n<p>We have also simplified the settings page to make it easier to choose which caching method is used. </p>\n<p><img /></p>\n<p>Instead of maybe confusing the user with technical words like PHP, mod_rewrite and WP-Cache we have split them up into “Simple” and “Expert” delivery methods, and done away with mentioning WP-Cache completely. Simple delivery uses PHP, expert uses mod_rewrite and well, WP-Cache got the boot because it’s always active anyway.</p>\n<p>WP-Cache caching is always active, but it can be disabled in different ways.</p>\n<ul>\n<li> Disable caching for known users.</li>\n<li> Don’t cache pages with GET parameters</li>\n<li> Disable caching of feeds</li>\n</ul>\n<h3>Headers</h3>\n<p>We <a href=\"https://github.com/Automattic/wp-super-cache/pull/287\">expanded the number of headers</a> cached by the plugin. The list of headers was borrowed from <a href=\"https://cometcache.com/\">Comet Cache</a>. However, anonymous users will still only see the bare minimum like content-length or content-type. If you need to use security headers like “X-Frame-Options” or “Content-Security-Policy” you should enable caching of HTTP headers. This unfortunately disables super caching so only WP-Caching is used but it’s still very fast (and faster in this release than before which I will get to below). You can also use the “wpsc_known_headers” filter to modify the list of recognised headers.</p>\n<h3>WP-Cache Reorganisation</h3>\n<p>WP-Cache cache files are split into two files – one holds the page content, the other (meta file) holds information about the page such as cookies, headers and url. In the past these files were stored in two directories which could become a problem if there were many thousands of those files. Even with only a few hundred files, maintenance could be an issue as deleting related files (like page archives, or copies of the front page) needed every meta file to be inspected.<br />\nNow the files are stored in the supercache directory structure that mirrors your permalink structure. Deleting related files is is simpler and serving files will be faster as the operating system won’t need to open a directory of thousands of files.<br />\nIf you currently rely on WP-Cache files, the plugin will still look for them where they are, but new WP-Cache files will be created in cache/supercache/example.com/ (where example.com is your hostname).</p>\n<h3>Sitemaps</h3>\n<p>We added support for caching sitemaps, but your sitemap plugin will need to cooperate to get it to work. The sitemap plugin needs to identify the sitemap request as a feed. Jetpack 5.1 now supports this since <a href=\"https://github.com/Automattic/jetpack/pull/7397\">#7397</a>. You can disable the caching by excluding feeds from caching.</p>\n<h3>Debugging Improved</h3>\n<p>The debug log is now protected by a username/password. For convenience, the username and password are the same but they are a long md5 string:</p>\n<p><img /></p>\n<p>Deleting the log file clears it and resets it ready for more logging. Before, toggling debugging would create a new debug log and the old one would be kept around, but not linked, until deleted by garbage collection, and of course they were text files anyone could access.</p>\n<p>This release includes lots of other small bug fixes and changes. Take a look at the <a href=\"https://github.com/Automattic/wp-super-cache/pulls?q=is%3Apr+is%3Aclosed\">number of closed PRs</a> for an exhaustive list of those changes!</p>\n<h3>Testing the REST API</h3>\n<p>There are a number of ways to send POST requests to a web server but one I like is using curl in a shell script. You’ll need two bits of information from the website:</p>\n<ol>\n<li> The “wordpress_logged_in” cookie from your browser.</li>\n<li> The wp_rest nonce which you can get by adding `echo wp_create_nonce( ‘wp_rest’ );` somewhere on your site where you’re logged in. It’s good for 24 hours.</li>\n</ol>\n<p>My test script looks something like this:<br />\n<code>export NONCE=\'1234567890\'<br />\nexport COOKIE=\'wordpress_logged_in_xxxxxxxxxxxxxxxxxxxx=1234567890\'<br />\ncurl -v -X \"GET\" -H \"Content-Type: application/json\" -H \"X-WP-Nonce: $NONCE\" -H \"Cache-Control: no-cache\" -H \"Cookie: wordpress_test_cookie=WP+Cookie+check; $COOKIE\" \\<br />\n-d \'{}\' \"https://example.com/wp-json/wp-super-cache/v1/settings/\"</code></p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\n<p><a href=\"https://odd.blog/\" rel=\"external nofollow\">Source</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 12:25:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"HeroPress: Becoming Myself Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1978\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://heropress.com/essays/becoming-myself-again/?utm_source=rss&utm_medium=rss&utm_campaign=becoming-myself-again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6018:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/071917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community is, slowly but surely, helping me get rid of my ingrown fear of the unknown, of others.\" /><p>It’s so easy to become secluded and sit at home, in your own bubble, but it wasn’t until a group of people literally pulled me in with their welcoming atmosphere and demeanor, that I realised that I could function amongst other people as well (even if it was somewhat limited).</p>\n<h3>In The Beginning</h3>\n<p>To understand my bubble, you need to also know a little about me, or rather, about my childhood. I had a less than ideal childhood. I have a great family, lived in a great house, even in the “best country in the world” as they say. And despite this, I say I wasn’t happy with my childhood. My school years were the reason, they were rough. At times I think back and feel like events that unfolded were parts of ridiculous scenes from an over the top movie.</p>\n<p>All in all, the days seemed generic enough, except my school days were a thing of dread. I would suffer physical and verbal abuse throughout my schooldays, even going to and from school, I had no real friends (victim by association is understandably not something a child would want to intentionally walk into. I understand this as an adult, but as a child it’s not that easy).</p>\n<blockquote><p>Because of my treatment over the years, I developed trust issues, I got a fear for everyone around me, and it was growing stronger and stronger over the years.</p></blockquote>\n<p>I suppressed it, I lied about it, and I got terrifyingly good at the lying part.</p>\n<p>This is why I was drawn to the internet: I didn’t have to interact with people, I didn’t need to go outside where the others were, I could just do my thing and move on. I could live in my own bubble.</p>\n<h3>Finding WordPress</h3>\n<p>But then the darndest thing happened. I’d been stuck on a project, I needed help, and I turned to a support room for an open source project, for WordPress. If you’ve ever tried to get help in a chat before, you’ll know what kind of an experience it can be, the snarky reactions to your code, the nitpicking of using the wrong terminology, it’s not fun. This place though, they didn’t care that I was not only using the wrong terms, but my entire code was a horrible mess.</p>\n<blockquote><p>Where I would usually get the help I needed and move on, popping back in my bubble of solitude, I instead wanted to be like these people, I wanted to use what I learnt to let others get helped.</p></blockquote>\n<p>Over the years, I all but devote myself to that place. Nobody knew me, I liked staying under the radar, but eventually I got pushed into a team meeting. I was intrigued, so I would watch, I’d say hi, and progressively make my opinions heard. Yet, I would stick to my bubble, once the meeting was over I was back on my own.</p>\n<h3>And Then I Went To WordCamp</h3>\n<p>Until I got to attend my first big WordCamp, the last one held in San Francisco, I was ecstatic! I’d never been to a big conference before, as I didn’t like crowds, but I knew some of the people who would be there. They were people who had been friendly and inviting in the most genuine way imaginable. It’s not easy being worried whenever you’re out amongst people, but this group of people, this community, I didn’t have that fear around them.</p>\n<blockquote><p>I somehow made WordCamps my safe space.</p></blockquote>\n<p>They are where I can, if only for a short while, leave that bubble, leave the need to be alone, and be a part of something great! I use them as fuel to get through the hard times, I can look forward to meeting people, people who value my opinions and my experience. People who genuinely want to listen and most of all, care about you! The WordPress community is, slowly but surely, helping me get rid of my ingrown fear of the unknown, of others.</p>\n<p>The community is helping me become myself again.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Becoming Myself Again\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Becoming%20Myself%20Again&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Becoming Myself Again\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F&title=Becoming+Myself+Again\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Becoming Myself Again\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/becoming-myself-again/&media=https://heropress.com/wp-content/uploads/2017/07/071917-150x150.jpg&description=Becoming Myself Again\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Becoming Myself Again\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/becoming-myself-again/\" title=\"Becoming Myself Again\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/becoming-myself-again/\">Becoming Myself Again</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 12:00:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Marius Jensen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: New WordPress Contributors Meeting Provides Opportunities to Ask Questions and Learn the Ropes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://wptavern.com/new-wordpress-contributors-meeting-provides-opportunities-to-ask-questions-and-learn-the-ropes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2270:\"<p>Contributing to WordPress or other open source projects can be intimidating for first-time contributors. Sometimes, all you need is a helping hand to overcome fear, intimidation, or other barriers.</p>\n<p>In 2013, with the help of Konstantin Obenland, a WordPress core developer, I overcame my fear and <a href=\"https://wptavern.com/i-contributed-to-the-core-of-wordpress-and-you-can-too\">contributed my first patch</a> to WordPress.</p>\n<p>This is one of the principles behind a <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">new weekly meeting</a> that is geared towards new contributors.</p>\n<p>“The new contributors meeting is the perfect place to come if you are new to contributing to WordPress core and have questions,<em>” </em>Adam Silverstein, WordPress core contributor, said.</p>\n<p>Every Wednesday at 3PM Eastern Daylight Time, users can visit the #core WordPress Slack channel and ask questions related to patches, tickets, and review the <a href=\"https://core.trac.wordpress.org/tickets/good-first-bugs\">good-first-bugs report</a> on Trac.</p>\n<p>The first meeting was <a href=\"https://make.wordpress.org/core/2017/07/10/new-contributors-meeting-recap-july-5/\">held on July 5th</a> where participants asked questions about working with Git in WordPress core, applying patches, and unit testing. In <a href=\"https://make.wordpress.org/core/2017/07/18/new-contributors-meeting-recap-july-12/\">the second meeting</a>, participants discussed whether or not new contributors are allowed to make changes to tickets.</p>\n<p>Other topics mentioned include, which repositories to use, clarification on contributing to core versus updating the WordPress Developer’s site, and which tickets to select for review.</p>\n<p>The next meeting is on Wednesday, July 19th at 3PM Eastern. If you have any questions on how to contribute to WordPress, be sure to join the WordPress #core Slack channel at that time and ask away.</p>\n<p>Meeting notes with links to discussions, tickets mentioned, and other resources are published on the Make WordPress Core blog under the <a href=\"https://make.wordpress.org/core/tag/new-contributors/\">#new-contributors</a> tag</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 05:09:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WP Rollback Adds Multisite Compatibility and Changelog Preview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wp-rollback-adds-multisite-compatibility-and-changelog-preview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4021:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/undo-button.jpg?ssl=1\"><img /></a></p>\n<p>In the two years since <a href=\"https://wordpress.org/plugins/wp-rollback/\" target=\"_blank\">WP Rollback</a> launched on WordPress.org, the plugin has racked up more than 30,000 active installations with nearly all 5-star reviews. It allows users to roll back any WordPress.org plugin or theme to a previous version with just a few clicks and also <a href=\"https://wordimpress.com/beta-testing-wordpress-plugins-with-wp-rollback/\" target=\"_blank\">supports beta versions of plugins</a>.</p>\n<p>It’s easy to see why the plugin is so popular. Navigating buggy updates is a natural part of life when maintaining a self-hosted website and not all users have a separate testing environment for their websites. This tool gives them a basic diagnostic tool and the confidence to apply updates knowing they can easily roll it back in case of a problem. Many reviewers cite the plugin as having been “a lifesaver” when applying WooCommerce or Yoast SEO updates that had unexpected results.</p>\n<p>The <a href=\"https://wordpress.org/support/topic/apparently-not-working-for-themes-rollback-on-multisites/\" target=\"_blank\">lone one-star review of WP Rollback</a> was given because the user anticipated multisite compatibility and was unable to get it to work. That issue has been solved in the latest update.</p>\n<p><a href=\"https://wordimpress.com/wprollback-wordpress-multisite/\" target=\"_blank\">WP Rollback 1.5</a> is fully compatible with multisite networks, giving super admins the ability to roll back extensions from the network plugin/themes screen or from the the plugins/themes screen of the primary site in the network. Sub-sites do not have the ability to roll back plugins and themes for the entire network. The UI for rolling back themes on the network admin screen is identical to the plugin screens, as multisite doesn’t have the fancy theme preview screen that single site installs have.</p>\n<p>Version 1.5 also adds the ability for users to preview the changelog for previous versions of a plugin. This makes it convenient for users to quickly view the changes for each version without leaving the admin.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/rollback_changelog.gif?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordimpress.com\" target=\"_blank\">WordImpress</a>, the folks behind WP Rollback, have considered adding core rollbacks and database savepoints, but both features have serious potential drawbacks that could turn it into a high support-demanding plugin. In its current state, the plugin is virtually support-free.</p>\n<p>Matt Cromwell, Head of Support and Community Outreach at WordImpress, said the team thought about monetizing the plugin in the beginning, but is not pursing any plans to do so at this time.</p>\n<p>“We think of it as just one of the many ways we are giving back to the WP community,” Cromwell said. “Our preference would be for the core team to consider it as a potential feature plugin for eventual core inclusion.”</p>\n<p>Cromwell said WordImpress hasn’t made any intentional steps to see if core folks are interested in WP Rollback becoming a feature plugin, but the team has purposely built it to be as close to core standards as possible. He believes it would be relatively easy to implement in WordPress.</p>\n<p>Suggestions for new features, general feedback, and bug reports are welcome on WP Rollback’s <a href=\"https://github.com/WordImpress/WP-Rollback\" target=\"_blank\">GitHub repository</a>. The plugin’s authors recommend backing up your site before using it to rollback plugins and themes or testing rollbacks on a staging site first. WP Rollback is not capable of rolling back changes a plugin update has made to the database, so a backup can come in handy if the database changes are incompatible with previous versions.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2017 22:24:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"WPTavern: React Users Petition Facebook to Re-license React.js after Apache Software Foundation Bans BSD+Patents License in Dependencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73216\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9983:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/apache-software-foundation.png?ssl=1\"><img /></a></p>\n<p>The Apache Software Foundation <a href=\"https://issues.apache.org/jira/browse/LEGAL-303?focusedCommentId=16088663&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16088663\" target=\"_blank\">issued a notice</a> over the weekend, indicating that it has added <a href=\"https://code.facebook.com/pages/850928938376556\" target=\"_blank\">Facebook’s BSD+Patents license</a> to its <a href=\"https://www.apache.org/legal/resolved#category-x\" target=\"_blank\">Category X list of disallowed licenses</a> for <a href=\"https://www.apache.org/dev/pmc.html\" target=\"_blank\">Apache PMC members</a>. This is the license that Facebook uses for most of its open source projects.</p>\n<p>A representative from Facebook’s <a href=\"https://github.com/facebook/rocksdb\" target=\"_blank\">RocksDB</a> team <a href=\"https://issues.apache.org/jira/browse/LEGAL-303?focusedCommentId=16088730&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16088730\" target=\"_blank\">commented</a> on the Apache Foundation’s post to advise that the project will meet the August 31st deadline for relicensing in order to be in compliance with Apache PMC member requirements, and that change has been <a href=\"https://github.com/facebook/rocksdb/commit/3c327ac2d0fd50bbd82fe1f1af5de909dad769e6\" target=\"_blank\">committed</a> today:</p>\n<blockquote><p>The RocksDB team is adjusting the licensing such that it will be dual-licensed under the Apache 2 and GPL 2 (for MySQL compatibility) licenses. This should happen shortly and well ahead of August 31st. I’ll leave the history and philosophy around licensing alone since it’s generally a complex discussion to have and I’m not sure that it has actually been fully captured in this thread especially vis a vis Facebook’s intent.</p>\n<p>Hopefully this morning’s guidance to PMCs can be adjusted since I don’t think any of us see a bunch of extra engineering effort as a desirable thing across the ASF projects which are already making use of RocksDB</p></blockquote>\n<p>In light of the ASF Legal Affairs Committee’s decision to disallow the BSD+Patents License in Apache projects, ASF member Joan Touzet opened an issue on the React repository urging Facebook to consider re-licensing React.js under Apache License v2.0 and GPL 2:</p>\n<blockquote><p>\nThis has led to a lot of upset and frustration in the Apache community, especially from projects requiring similarly-licensed code as direct dependencies – the chief of these being RocksDB.</p>\n<p>We (the Apache Software Foundation) have just received word that RocksDB will be re-licensing their code under the dual Apache License v2.0 and GPL 2 licenses.</p>\n<p>As a user of React.JS in an ASF top-level project (Apache CouchDB), please consider re-licensing React.JS under similar terms. Otherwise, many ASF projects such as our own will have to stop relying on and building with React.</p></blockquote>\n<p>Although the re-licensing of RocksDB solves that particular project’s problem, ASF’s ban of Facebook’s BSD+Patents license means other widely used technologies from Facebook, including React.js, are still banned. This is likely to cause problems for many open source projects.</p>\n<p>Harshavardhana, from the <a href=\"https://www.minio.io/\" target=\"_blank\">Minio</a> team, commented in support of the petition to Facebook for re-licensing React.</p>\n<p>“Our object storage browser UI is based on React and we are Apache 2.0 licensed,” he said. “It would be unfortunate and time consuming to migrate but we will have to do that in lieu of new information regarding Apache incompatibility. Please consider re-licensing React.”</p>\n<p>Contributors to <a href=\"https://github.com/omcljs/om\" target=\"_blank\">Om</a>, a ClojureScript interface for React, are also <a href=\"https://github.com/omcljs/om/issues/882\" target=\"_blank\">discussing whether or not the ASF’s new requirements will affect their project</a>. Greg Stein, commenting on behalf of ASF, clarified the reasons behind the organization’s decision to ban Facebook’s BSD+Patents license:</p>\n<blockquote><p>Please note that the ASF chose this path for policy reasons, rather than “license incompatibility”. We don’t want downstream users of Apache code to be surprised by the PATENTS grant that (was) in RocksDB and (is) in React. Users should only need to follow the ALv2, with no further constraints.</p>\n<p>These license can work together (IMO) and simply provide two sets of restrictions upon users.</p></blockquote>\n<p>Stein said it was not ASF’s lawyers who made the decision but rather the organization’s policy decision to “disallow FB/BSD+Patent license to be mixed into the software the Foundation releases to users.”</p>\n<h3>Facebook is Internally Discussing the Re-Licensing Matter</h3>\n<p>Dan Abramov, co-author of Redux, Create React App, and React Hot Loader, <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315707719\" target=\"_blank\">joined the discussion on GitHub</a> regarding re-licensing with a brief and ambiguous summary about how Facebook is handling the petition to re-license.</p>\n<p>“To give you a small update, there are going to be more internal discussions about this for about a week,” Abramov said. “This is about as much as I can say. I wouldn’t be too optimistic about this changing for React but we’ll see. @daveman692 has kindly agreed to provide an update when these discussions are over.”</p>\n<p>Dropping the patent grant entirely, which would be the most convenient way of solving this issue for open source projects, isn’t likely to happen. React has already gone through re-licensing twice during its short history. It was originally licensed under Apache 2.0 but this was changed in October 2014 to the BSD License plus the patent grant, which included a highly controversial termination provision. In April 2015, the patent grant was changed slightly to allow licensees to continue to use the software in the event that a patent lawsuit did not include a counterclaim against Facebook or its affiliates in a matter unrelated to React.js.</p>\n<p>The termination provision in Facebook’s BSD+Patents License continues to be unpopular and is regarded suspiciously by many open source project maintainers. When the Drupal project began <a href=\"http://buytaert.net/selecting-a-client-side-framework-for-drupal\" target=\"_blank\">considering a client-side framework to supersede Backbone.js</a>, Dries Buytaert passed on React based on what he said was “a potentially unacceptable patent clause,” citing <a href=\"https://github.com/Automattic/wp-calypso/issues/650\" target=\"_blank\">pushback from WordPress.com’s Calypso and React contributors</a>.</p>\n<p>The WordPress open source project has not formally announced its decision on which JavaScript framework will be included in core, but all signs point to React. WordPress’ upcoming Gutenberg editor is built on React and its chief contributors are Automattic employees who work on React-based products for WordPress.com. Gutenberg continues to plough forward at a breakneck pace with no indication of a rewrite, and WordPress co-creator Matt Mullenweg has been outspoken about his preference for using React.</p>\n<p>Although Automattic’s legal counsel has said the company is <a href=\"https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause\" target=\"_blank\">comfortable using React for its product under the project’s current license </a>, others in the WordPress community are not as amenable to including the framework in core.</p>\n<p>The Open Source Initiative (OSI) includes a generic <a href=\"https://opensource.org/licenses/BSDplusPatent\" target=\"_blank\">BSD+Patent license</a> listed among its approved licenses, but Facebook’s particular BSD+Patent license has not been submitted. Robert Pierce, a partner at El Camino Legal, <a href=\"https://www.elcaminolegal.com/single-post/2016/10/04/Facebook-Reactjs-License\" target=\"_blank\">contends</a> that the license termination provision ought to be impermissible in an open source license because it exists to protect Facebook from patent litigation that is completely unrelated to React code:</p>\n<blockquote><p>Facebook touts React.js as open source software. But in my mind the license termination provision of the Additional Grant of Patent Rights takes the offering outside the realm of open source software.</p>\n<p>The patent license offered in the Additional Grant of Patent Rights (v.2) is conditioned upon the licensee not bringing a patent infringement lawsuit against Facebook or its affiliates. Thus, the licensee pays a price to use the library. It is not a price paid with money. The price demanded by Facebook for use of the library is that the licensee refrain from exercising any of its patent rights against Facebook or its affiliates.</p></blockquote>\n<p>Pierce views Facebook’s publication of React source code as leverage to win some protection against patent lawsuits, which he deems to be “too greedy an approach for Facebook to claim open source status.”</p>\n<p>The open source community has widely speculated about the implications of including Facebook’s BSD+Patent license as a dependency, but the license has not yet been tested in court. The Apache Software Foundation is the first major organization to take a hard line stance on the controversial license and this has caught Facebook’s attention. Facebook representatives have promised an update on the petition for re-licensing after its internal discussions have concluded.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2017 03:25:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Stylishly Display Weather Conditions with the Weather Atlas Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/stylishly-display-weather-conditions-with-the-weather-atlas-widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2207:\"<p>If you’re looking for an easy way to display weather conditions on your site, check out the new <a href=\"https://wordpress.org/plugins/weather-atlas/\">Weather Atlas Widget</a> by <span class=\"byline\"><span class=\"author vcard\"><a href=\"https://profiles.wordpress.org/weatheratlas\">Yu Media Group d.o.o</a>. Once activated, browse to Appearance > Widgets, and add the Weather Atlas widget to a sidebar. </span></span></p>\n<img />Weather Atlas Settings\n<p>As you begin typing, a drop-down list of cities is displayed. This helps choose the correct city. From here, users can configure the following settings:</p>\n<ul>\n<li>Display temperatures in Fahrenheit or Celsius</li>\n<li>Use English or Spanish language</li>\n<li>Horizontal or Vertical Layout – Horizontal displays more information such as five-day forecasts</li>\n<li>Font size. By default, the widget uses the font size specified in the theme</li>\n<li>Background color</li>\n<li>Text Color</li>\n<li>Headings</li>\n</ul>\n<p>Users can display sunrise and sunset times, heat index, wind chills, UV index, wind speeds, humidity, and pressure. You can also hide or display hourly forecasts.</p>\n<img />Forecast for Cleveland, Ohio\n<p>It’s recommended that for three-hour forecasts, you use the vertical layout and for five-hour forecasts, the horizontal layout. The same recommendations apply for daily forecasts.</p>\n<p>The widget not only looks nice but it also changes color based on temperature. Shades of blue represent cooler temperatures while shades of red represent warmer temperatures.</p>\n<img />Temperatures Represented by Colors\n<p>By default, the bottom of the widget displays the text, “Weather from Weather Atlas”. However, if you choose to display the detailed forecast, the text is replaced with a Detailed Forecast link. This link takes visitors to a page on Weather-Atlas.com that displays detailed weather conditions for the selected city.</p>\n<p>I tested the Weather Atlas Widget on WordPress 4.8 and didn’t encounter any issues. It’s <a href=\"https://wordpress.org/plugins/weather-atlas/\">available for free</a> on the WordPress plugin directory.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2017 01:55:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Gutenberg Boilerplate Demonstrates How to Build Custom Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73202\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/gutenberg-boilerplate-demonstrates-how-to-build-custom-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4716:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/gutenberg-boilerplate.jpg?ssl=1\"><img /></a></p>\n<p>Gutenberg is still in beta but developers are already getting ready for creating their own custom blocks. Over the weekend Ahmad Awais released a new project called <a href=\"https://ahmadawais.com/gutenberg-boilerplate/\" target=\"_blank\">Gutenberg Boilerplate For Third-Party Custom Blocks</a>. Awais’ introductory post includes a rundown of his thoughts on the current pros and cons of developing for the Gutenberg project. Although he appreciates the technology behind Gutenberg and the improvements over shortcodes, he is not fully sold on the concept of putting everything into blocks. To learn more, he decided to jump into the code.</p>\n<p>“I am still making up my mind with how Gutenberg will fit in the WordPress core,” Awais said. “There are so many things which are both good and bad about it. So, instead of ranting about it, I wanted to do something more productive. I went ahead, studied the source code and received a lot of help from Gutenberg contributors (Matias Ventura, James Nylen, Riad Benguella, Andrew Duthie, Joen, etc.) to finally build a Gutenberg Boilerplate project.”</p>\n<p>Awais’ <a href=\"https://github.com/ahmadawais/Gutenberg-Boilerplate/\" target=\"_blank\">Gutenberg Boilerplate</a> is a good starting place for learning more of the basics about developing for the editor. It comes in the form of a plugin that offers four examples of how to build different kinds of custom Gutenberg blocks, with and without a build process:</p>\n<ul>\n<li>A block with custom CSS for editor and front end</li>\n<li>A block with ES6 or ESNext and a Webpack build process</li>\n<li>A block with editable content</li>\n<li>A block to click Tweet the contents of that block</li>\n</ul>\n<p>For example, the tweet block, which is something that might previously been handled with a shortcode, is an example that includes four files: block.js to register the custom Gutenberg block, editor.css, style.css, and index.php.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/4-gb.gif?ssl=1\"><img /></a></p>\n<p>Awais noticed that many developers were wanting to try building third-party blocks, but Gutenberg’s documentation for this was outdated and/or non-existent. He got involved in contributing to the project’s documentation after discovering the docs describing how to enqueue block and block editor assets were not available. This gave him the inspiration to create a boilerplate.</p>\n<p>“Both as a theme/plugin developer, I think there’s going to be a steep learning curve here for just about everyone – users as well as developers,” Awais said. “WordPress development just became very complicated with the Gutenberg project. I’m also not sure how devs will start writing extensions. Some users might expect them to keep the shortcodes for the old editor. Some might ask for blocks in the new one. Is there an API or back-compat? In short everything is changing and this change has both pros and cons.”</p>\n<p>These concerns also tie into the larger discussion around <a href=\"https://github.com/WordPress/gutenberg/issues/952\" target=\"_blank\">how Gutenberg can support legacy metaboxes that use the old PHP framework</a>, instead of updating to the new JS.</p>\n<p>“New metaboxes should be written in JS, and will appear in the Post Settings sidebar alongside the stock ones,” Gutenberg contributor Joen Asmussen said. “Metaboxes written in PHP should ideally be upgraded to be JS, but should continue to work in their PHP form also.” Asmussen has proposed an “Extended Settings” panel to house legacy metaboxes in a section below the editor. It would appear only when legacy plugins and metaboxes are enabled, as shown in the mockup below.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/extended-settings-mockup.png?ssl=1\"><img /></a></p>\n<p>Discussion regarding how to support metaboxes is still ongoing. With so many important issues like this up in the air, it’s too early to know what the future of extending Gutenberg will look like. At the moment, the project is undergoing rapid development and changes, so extending Gutenberg may evolve drastically over a short period of time. If the editor is to preserve the same flexibility and customization opportunities of its predecessor, the project will need to ensure that it is easy to create custom blocks and extensions while continuing to support older PHP metabox infrastructure that is currently widely used.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jul 2017 20:28:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Gutenberg 0.5.0 Adds New Verse Block for Poetry and a New Display for Recent Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72830\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/gutenberg-0-5-0-adds-new-verse-block-for-poetry-and-a-new-display-for-recent-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5718:\"<p>Another round of Gutenberg updates was released today. Last weekend brought <a href=\"https://make.wordpress.org/core/2017/07/08/whats-new-in-gutenberg-july-8th/\" target=\"_blank\">version 0.4.0</a>, which didn’t have too many noteworthy visible changes on the frontend but introduced an API for handling pasted content. Gutenberg developers are aiming to have specific handling for converting pasted content from applications like Word, Markdown, and Google Docs to native WordPress blocks. Version 0.4.0 also added navigation between blocks using arrow keys and included a new approach for rendering embed frames.</p>\n<p><a href=\"https://make.wordpress.org/core/2017/07/14/whats-new-in-gutenberg-14th-july/\" target=\"_blank\">Gutenberg 0.5.0</a> hit dashboards today. One major improvement to the writing flow is that the editor will now avoid showing block UI while the user is typing and/or starting a new paragraph in a text block. You can test this by typing and pressing enter twice to begin a new text block. No UI should be visible during this process. Small improvements like this one are gradually bringing a bit more zen to the editor, which is still full of confusing and surprising experiences.</p>\n<p>Version 0.5.0 adds the ability to upload images via drag-and-drop onto image block placeholders. The example below shows one of my tests. While the image is uploading, it fades in and out. This experience is a bit disconcerting, especially if the upload never resolves. I’m not certain this UI provides the best communication for the status of the image upload.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/gutenberg-image-upload.gif?ssl=1\"><img /></a></p>\n<p>This version also introduces a new Verse block, which is intended for poetry. It has a slight indent, as compared to a plain text block, but it doesn’t yet work well with copy and paste. Unless you are a poet composing in WordPress, it’s far more likely that you will be pasting in poetry content from somewhere else on the web. Other than the initial bugs, it’s a useful block for those who often post verse.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/verse-block.png?ssl=1\"><img /></a></p>\n<p>With the growing number of block types, it can be cumbersome to sort through all of them when adding a new block. Gutenberg 0.5.0 implements a new display for recent blocks. A maximum of eight are shown and the most recently used ones are displayed at the top. It does not yet persist between editor sessions, but Gutenberg contributors plan to add that in the future.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/recent-blocks.png?ssl=1\"><img /></a></p>\n<p>Other notable improvements in this release include the following:</p>\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1833\" target=\"_blank\">New tabs mode for the sidebar</a> to switch between post settings and block inspector</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1816\" target=\"_blank\">Display warning message</a> when navigating away from the editor with unsaved changes</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1872\" target=\"_blank\">Mobile implementation</a> of block mover, settings, and delete actions</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1852\" target=\"_blank\">Search through all tabs</a> on the inserter and hide tabs</li>\n<li>Enable <a href=\"https://github.com/WordPress/gutenberg/pull/1889\" target=\"_blank\">ability to add custom classes</a> to blocks (via inspector)</li>\n<li>Add <a href=\"https://github.com/WordPress/gutenberg/pull/1896\" target=\"_blank\">“table of contents” document outline</a> for headings (with empty heading validation)</li>\n</ul>\n<h3>Writing Long-Form Content with Gutenberg is Still a Frustrating Experience</h3>\n<p>Gutenberg in its current state is a long way away from being an editor that users would embrace for long-form writing. It still contains many unnerving bugs that steal user confidence. For example, when pasting in multiple paragraphs from a lorem ipsum generator, the editor gave me a white screen and I lost all of the content in my post. After a bit of testing I found that pasting in paragraphs one at a time worked.</p>\n<p>This kind of frustrating and unexpected behavior has caused many testers to wonder why it isn’t being referred to as alpha software instead of beta. WordPress contributor Jon Brown summed up this common sentiment in a <a href=\"https://make.wordpress.org/core/2017/07/08/whats-new-in-gutenberg-july-8th/#comment-32799\" target=\"_blank\">comment</a> on the 0.4.0 release post.</p>\n<p>“It’s getting better, but it honestly still feels more like a 0.0.4 alpha than a 0.4.0 beta,” Brown said. “I’ve tried writing long form content several times with each version since 0.1.0 and each time I’m quickly frustrated by the lack of flow between blocks. It’s more frustrating than TinyMCE.”</p>\n<p>Gutenberg needs to make significant progress before it can be suitable for writing anything more than a few short paragraphs. It’s nearly impossible to get into the flow of creating long-form content with the prominence of the block UI. Right now, the editor just gets in the way. The current UI is skewed heavily towards frequent block creation. It is clutter-some and distracting for pure writing tasks. Following the evolution of the editor, with its fast-paced development cycle, is exhilarating after years of stagnation. But the project is sorely in need of a breakthrough where the Gutenberg UI finally gets out of the way of writing.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 15 Jul 2017 05:14:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: Jetpack Professional Plan Introduces Unlimited Access to 200+ Commercial Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73055\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/jetpack-professional-plan-introduces-unlimited-access-to-200-commercial-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3407:\"<p>Automattic has been teasing its plan to add commercial themes to Jetpack for several months after introducing theme installation for self-hosted users from WordPress.com. In March, the plugin <a href=\"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-themes\" target=\"_blank\">opened up access to all of WordPress.com’s free themes via the Jetpack Manage interface</a>. All signs pointed to Automattic developing the infrastructure to offer commercial themes via Jetpack upgrades. At that time, however, Jetpack team member Richard Muscat said that Automattic had “no immediate plans to sell themes at this time.”</p>\n<p></p>\n<p>Yesterday those subscribed to the Jetpack Announcements email were notified that <a href=\"https://wordpress.com/professional-sites/\" target=\"_blank\">commercial themes have landed</a> in the <a href=\"https://jetpack.com/install/professional/\" target=\"_blank\">Jetpack Professional plan</a>, which is regularly priced at $24.92/month or $299/year. Customers will have unlimited access to more than 200 commercial themes that are already available on WordPress.com. Jetpack users on the free plan will see all the themes available in the WordPress.com theme browser with a prompt to upgrade for the ones that are commercial.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/jetpack-themes.png?ssl=1\"><img /></a></p>\n<p>The announcement also noted that any themes users elect to use will be automatically backed up and regularly scanned for malware as part of the security services included in the package. For those who are running a multisite network, each site will need its own Jetpack Professional subscription to have access to the commercial themes.</p>\n<p>For years the WordPress community has speculated about what Automattic’s long game was for Jetpack, and many believed it was only a matter of time before the plugin started offering commercial upgrades. It was <a href=\"https://jetpack.com/2011/03/09/blast-off/\" target=\"_blank\">introduced to the WordPress world in 2011</a> as a way to provide feature parity between WordPress.com and self-hosted sites. The first version included just eight modules, but fellow plugin developer and entrepreneurs in the community were immediately aware of its commercial potential.</p>\n<p>In 2016, Automattic CEO Matt Mullenweg <a href=\"https://wptavern.com/woocommerce-powers-42-of-all-online-stores\" target=\"_blank\">identified both Jetpack and WooCommerce as “multi-billion dollar opportunities”</a> that could each individually be larger than WordPress.com. The plugin is now active on more than 3 million WordPress sites. Automattic’s aggressive commercialization of Jetpack in the past two years is the fulfillment of initial predictions about where the plugin was headed.</p>\n<p>The new commercial themes offering significantly raises the value of the Jetpack Professional plan, which was previously targeted at business users who require unlimited storage, Google Analytics, and additional SEO features. With the addition of unlimited use of 200+ themes, Automattic has expanded the Professional plan to be more compelling for non-business users who are simply interested in gaining access to a collection of professionally-supported themes.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 21:46:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"BuddyPress: BuddyPress 2.9.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=267012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://buddypress.org/2017/07/buddypress-2-9-0-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2980:\"<p>Today sees BP 2.9.0 move to The final testing phase <strong>Release Candidate 1</strong>.</p>\n<p>This is the last chance to test out this release and report back any issues found before final release in approximately two weeks time.</p>\n<p>Any issues found can be reported to our <a href=\"https://buddypress.trac.wordpress.org/newticket\"> trac ticket home </a>, or raised on the support forum.</p>\n<p>Amongst other improvements and fixes to look out for are:</p>\n<ul>\n<li>Fixing display of older activity comments.</li>\n<li>Correction of message when removing friends that are not friends.</li>\n<li>Group invites – omit sending to previously invited members.</li>\n<li>Profile image upload fix for IE Edge breaksIOS fix.</li>\n<li>Correct issue with hidden group & CSS specificity.</li>\n<li>URL compatibility for LightSpeed.</li>\n<li>Fix inability resizing of member avatar for cyrillic character filenames.</li>\n</ul>\n<p>For a full list of commits see <a href=\"https://buddypress.trac.wordpress.org/query?keywords=~&milestone=2.9&group=status&col=id&col=summary&col=keywords&col=owner&col=type&col=priority&col=component&col=version&order=priority\">2.9 tickets</a> A full changelog will be available when we release the final version.</p>\n<p>You can download the plugin to test from the WP repo <a href=\"https://downloads.wordpress.org/plugin/buddypress.2.9.0-RC1.zip\">BP 2.9.0-RC1</a> or grab a copy from our SVN repo.</p>\n<p>A reminder to all theme developers that there are changes to template markup that could effect layouts and ask that they check their themes carefully, the changes are listed below along with changelog links; again any issues or problems please report as soon as possible to the BP trac or slack channel.</p>\n<p><strong>Template changes</strong></p>\n<p>In this release there are a number of improvements to templates that add a level of improved a11y performance and markup changes for better semantics & Standards.</p>\n<p>Theme authors may want to pay particular attention to changes to profile field visibility links and the profile field descriptions where significant markup changes are made that effect positioning of these elements – changesets for these are <a href=\"https://buddypress.trac.wordpress.org/changeset/11617\">r11617</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/11618\">r11618</a></p>\n<p><strong>Nouveau – new template pack</strong></p>\n<p>If you’re looking for Nouveau as we mentioned in the beta2 announcement we have delayed the release of this new template pack to ensure it receives as much code checking & refinement as possible and we’ll be looking to probably package this as it’s own release shortly after 2.9 is released.</p>\n<p>We thank you in advance for all testing and reports and it need not be mentioned but please don’t run Beta or RC releases in a production environment only on test installs.</p>\n<p>Regards,<br />\nThe BuddyPress team.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 12:57:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hugo Ashmore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: CoKinetic Systems Pursues $100 Million GPL License Violation Case Against Panasonic Avionics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72923\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/cokinetic-systems-pursues-100-million-gpl-license-violation-case-against-panasonic-avionics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7082:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/paper-plane.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/8176740@N05/5703519506\">Paper Plane</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Open source software has made its way into nearly every industry, but a recent open source security and risk analysis shows <a href=\"https://wptavern.com/2017-open-source-security-and-risk-analysis-report-shows-widespread-gpl-license-conflicts\" target=\"_blank\">widespread license compliance risks</a>, with 75% of the audited applications including GPL license conflicts. Although most violations are unintentional, there are some cases where companies do not comply with the license in order to block competitors from developing similar software.</p>\n<p>GPL enforcement doesn’t often lead to litigation. When it does, most other avenues of resolving the complaint have already been exhausted. A lawsuit in the air transport industry is currently bringing more attention to the gravity of not complying with open source software licensing requirements.</p>\n<p><a href=\"http://www.cokinetic.com/\" target=\"_blank\">CoKinetic Systems</a>, a developer and manufacturer of in-flight entertainment (IFE) software, has <a href=\"https://www.unitedstatescourts.org/federal/nysd/470007/1-0.html\" target=\"_blank\">filed a case against Panasonic Avionics</a> that includes allegations of a fairly egregious breach of the GPL. The complaint alleges that Panasonic Avionics has monopolized the Panasonic IFE Software and Media Services Market by deliberately refusing to distribute the source code for its open-source Linux-based operating system:</p>\n<blockquote><p>More specifically, Panasonic has built the Linux-Based Panasonic Core Software using the open-source Linux kernel, which is clearly governed by the GPL, together with Panasonic’s own modified Linux modules, which are likewise governed by the GPL. </p>\n<p>Indeed, Panasonic has itself affirmatively identified its own modified modules as being subject to the GPL, because the original Linux modules were specifically designed to generate warning messages if other code is linked with or otherwise combined with the Linux modules that are not licensed under the GPL. To suppress these warnings, Panasonic willfully acted to insert code into its own modules to indicate that they were licensed under the GPL.</p>\n<p>Panasonic has incorporated a massive amount of open source modules, programs, and libraries into the Linux-Based Panasonic Core Software, without distributing notices or source code to the Linux-Based Panasonic Core Software, or even to any part of it…By deliberately refusing to distribute the source code to the Linux-Based Panasonic Core Software in accordance with its GPL obligations, Panasonic intentionally deprives competitors in the market from having the ability to develop software that can access the basic features and capabilities of Panasonic IFE Hardware.</p></blockquote>\n<p>CoKinetic Systems contends that Panasonic’s refusal to distribute its source code voids its GPL license and “potentially exposes Panasonic to billions of dollars in statutory damages for hundreds of thousands of hardware installations that willfully infringe copyrights belonging to hundreds or even thousands of software developers that freely contributed source code to Linux.”</p>\n<p>Furthermore, the complaint details how competitors have to rely on Panasonic’s APIs in order to offer software services to airlines using Panasonic’s IFE hardware, because they do not have access to the source code for the Linux-based core software. CoKinetic claims that Panasonic also deliberately blocks competitor products by its selective distribution of its APIs, resulting in stifled industry innovation and monopoly control over the Panasonic IFE Software and Media Services Market.</p>\n<p>Perhaps the worst and most grave allegation in the complaint is that, in addition to locking up the source code and doling out access to the APIs, Panasonic also maliciously sabotaged its own APIs in order to give the appearance that it is the only reliable software service provider for its hardware, which CoKinetic claims is inferior and sold at monopolistic prices.</p>\n<blockquote><p>Panasonic also is able to use its control over the Linux-Based Panasonic Core Software in order to make ongoing, undisclosed, and often malicious modifications to its source code, deliberately “breaking” Panasonic’s own APIs in order to purposely and maliciously sabotage the performance of third-party software products that Panasonic deems a competitive threat — particularly CoKinetic software.</p></blockquote>\n<p>In the introduction to the case, CoKinetic cites a litany of anti-competitive conduct the company has engaged in over the past decade before detailing the current allegations. The case is not purely an open source license dispute, as the plaintiff also alleges that Panasonic abused regulatory processes, engaged in acts of corporate espionage, defamed CoKinetic, paid commercial bribes, and employed unlawful means to monopolize the Panasonic IFE Software and Media Services Market.</p>\n<p>CoKinetic is seeking compensatory damages for Panasonic’s GPL ongoing GPL breaches. The specific amount would be determined at the trial but the company believes it to be in excess of $100 million. The company also wants the court to compel Panasonic to publicly disclose and distribute the source code.</p>\n<p>This isn’t a case where distributing the source code is just a small sticking point or just a matter of principle. It has the potential to open up the IFE industry for faster progress and greater innovation. Many reading this article have undoubtedly used Panasonic’s IFE products when flying with the company’s customers, which include Emirates Airlines, Delta Air Lines, Virgin America, and United Airlines. With the source code available, airline customers could remove Panasonic’s software from their IFE hardware and replace it with their own software solutions.</p>\n<p>The <a href=\"https://www.unitedstatescourts.org/federal/nysd/470007/1-0.html\" target=\"_blank\">complaint</a>, which was filed in the Southern District of New York in March, demands a jury trial. An initial pre-trial conference was held in May, but the case has been slow moving. The Court gave a deadline for the Defendant to file its motion to dismiss, but deadlines have since been extended. The Court also strongly recommended that the two parties retain a private mediator but it’s not clear how outside mediation could solve such a far-reaching matter that impacts so many vendors. <a href=\"https://www.pacermonitor.com/public/case/20747763/CoKinetic_Systems,_Corp_v_Panasonic_Avionics_Corporation\" target=\"_blank\">Additional documents</a> are due over the next few months, so it will be some time before there are updates on the progress of the case.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 04:39:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: AJ Morris Acquires iThemes Exchange\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73071\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/aj-morris-acquires-ithemes-exchange\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3545:\"<p>In 2013, iThemes <a href=\"https://wptavern.com/ithemes-launches-e-commerce-plugin-exchange\">released Exchange</a>, an e-commerce platform that aimed to make selling online as simple as possible. Today, the company <a href=\"https://ithemes.com/2017/07/13/ithemes-exchange-new-home-exchangewpcom/\">announced</a> that AJ Morris, Product Manager at Liquid Web, has taken over the project.</p>\n<p>“When approached about taking over iThemes Exchange early this year, we wanted to be sure the project and our customers went into very competent hands, someone who will love and care for them as much as we do,” Cory Miller, founder of iThemes, said.</p>\n<p>“Having spent four and a half years investing in the project and in you and your success, we did not take this lightly.</p>\n<p>“After numerous conversations over the past several months, we believe the best home for Exchange is with ExchangeWP LLC led by AJ Morris.”</p>\n<p>Everything iThemes Exchange related will transition to <a href=\"https://exchangewp.com/\">ExchangeWP.com</a>. Toolkit, Plugin Suite, Exchange Pro Pack, and iThemes Exchange Add-on customers will be given accounts for free support and upgrades through August 2018 at ExchangeWP.com.</p>\n<p>Beginning today, customers will no longer be able to purchase Exchange or its add-ons through iThemes as the company transfers licenses and products to ExchangeWP. However, iThemes will continue to provide customer support until the transition is completed, expected to happen in early August.</p>\n<p>Morris says he’ll continue to focus on making e-commerce simple and will provide regular updates to customers to provide insight into what goes into transition a product from one company to another and where the product is heading.</p>\n<p>“These days, it’s very easy to get WordPress up and running so you can start blogging,” Morris said. “But when you want to add e-commerce to the mix, it’s a bit different.”</p>\n<p>“With big players like WooCommerce out there, it becomes too much too quickly for the average content producer to get their store up and running.</p>\n<p>“Exchange is going to continue focusing on the independent publishers that want to keep the revenue they can, while providing a simplistic experience in an easy-to-use e-commerce plugin that will help get their stores online quickly.”</p>\n<p>Allowing Morris to take over the project frees up resources for iThemes to focus on three of its flagship products; BackupBuddy, iThemes Security, and iThemes Sync. In addition to their core products, the company says it will soon release a new project.</p>\n<p>“My job as CEO is to be a steward of the time and resources we have at iThemes in order to serve you best,” Miller said.</p>\n<p>“We’ve realized for a while that it was past time for us to refocus our finite resources on the projects that have the most growth and potential for our company and you.</p>\n<p>“That meant we either needed to find a new home for Exchange or sunset the project. I’m thankful we didn’t have to do the latter.”</p>\n<p><a href=\"https://ajmorris.me/\">Morris</a> is a <a href=\"https://profiles.wordpress.org/ajmorris\">long-time member</a> of the WordPress community and <a href=\"https://wordpress.tv/speakers/aj-morris/\">has spoken</a> at several WordCamps. With Morris taking over the reigns, existing customers won’t have to worry about finding a replacement.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 01:00:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: Akismet WordPress Plugin 3.3.3 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1953\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://blog.akismet.com/2017/07/13/akismet-wordpress-plugin-3-3-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1413:\"<p>Version 3.3.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>For a full list of the changes in this release, see the <a href=\"https://plugins.trac.wordpress.org/log/akismet/trunk?action=stop_on_copy&mode=stop_on_copy&rev=1695995&stop_rev=1676206&limit=100&sfp_email=&sfph_mail=\">revision log</a>, but here are some notable fixes:</p>\n<ul>\n<li>The number of spam blocked that is displayed on the WordPress dashboard will now be more accurate and updated more frequently.</li>\n<li>We fixed a bug in the Akismet widget that could cause PHP warnings.</li>\n<li>We’ve improved Akismet’s compatibility with other plugins by removing a workaround that only targeted very old versions of WordPress.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1953/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1953/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1953&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Jul 2017 22:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 09 Aug 2017 12:52:40 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 09 Aug 2017 12:30:10 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20170712130846\";}','no'),(135,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1502326365','no'),(136,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1502283165','no'),(137,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1502326365','no'),(138,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\'>WordPress 4.8.1 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://heropress.com/essays/wordpress-ate-life-good-way/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-ate-life-good-way\'>HeroPress: WordPress Ate My Life—In a Good Way</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/live-publish-challenges-facing-wordpress-economy-draft-podcast/\'>Post Status: Live from Publish: Challenges facing the WordPress Economy — Draft podcast</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-core-fields-api-project-sees-renewed-interest\'>WPTavern: WordPress Core Fields API Project Sees Renewed Interest</a></li></ul></div>','no'),(139,'_transient_timeout_plugin_slugs','1502370993','no'),(140,'_transient_plugin_slugs','a:24:{i:0;s:27:\"ad-inserter/ad-inserter.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:38:\"contact-form-7-designer/cf7-styles.php\";i:5;s:33:\"contact-form-7-modules/hidden.php\";i:6;s:42:\"contact-form-7-modules/send-all-fields.php\";i:7;s:27:\"dw-megamenu/dw-megamenu.php\";i:8;s:35:\"dw-social-share/dw-social-share.php\";i:9;s:9:\"hello.php\";i:10;s:33:\"import-html-pages/html-import.php\";i:11;s:19:\"jetpack/jetpack.php\";i:12;s:32:\"login-lockdown/loginlockdown.php\";i:13;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:14;s:41:\"post-type-switcher/post-type-switcher.php\";i:15;s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";i:16;s:29:\"spam-captcha/spam-captcha.php\";i:17;s:33:\"sydney-toolbox/sydney-toolbox.php\";i:18;s:57:\"universal-google-analytics/universal-google-analytics.php\";i:19;s:17:\"unyson/unyson.php\";i:20;s:27:\"js_composer/js_composer.php\";i:21;s:35:\"wp-date-remover/wp-date-remover.php\";i:22;s:37:\"wp-hide-security-enhancer/wp-hide.php\";i:23;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(141,'recently_activated','a:1:{s:35:\"add-html-to-pages/html-on-pages.php\";i:1502283335;}','yes'),(142,'aiowpsec_db_version','1.9','yes'),(143,'aio_wp_security_configs','a:81:{s:19:\"aiowps_enable_debug\";s:0:\"\";s:36:\"aiowps_remove_wp_generator_meta_info\";s:0:\"\";s:25:\"aiowps_prevent_hotlinking\";s:0:\"\";s:28:\"aiowps_enable_login_lockdown\";s:1:\"1\";s:28:\"aiowps_allow_unlock_requests\";s:0:\"\";s:25:\"aiowps_max_login_attempts\";i:3;s:24:\"aiowps_retry_time_period\";i:5;s:26:\"aiowps_lockout_time_length\";i:60;s:28:\"aiowps_set_generic_login_msg\";s:0:\"\";s:26:\"aiowps_enable_email_notify\";s:0:\"\";s:20:\"aiowps_email_address\";s:23:\"bensykes@bensykes.co.uk\";s:27:\"aiowps_enable_forced_logout\";s:0:\"\";s:25:\"aiowps_logout_time_period\";s:2:\"60\";s:39:\"aiowps_enable_invalid_username_lockdown\";s:0:\"\";s:43:\"aiowps_instantly_lockout_specific_usernames\";a:0:{}s:32:\"aiowps_unlock_request_secret_key\";s:20:\"7y2ajuwoy6zc997r01hi\";s:26:\"aiowps_enable_whitelisting\";s:1:\"1\";s:27:\"aiowps_allowed_ip_addresses\";s:14:\"217.206.184.92\";s:27:\"aiowps_enable_login_captcha\";s:0:\"\";s:34:\"aiowps_enable_custom_login_captcha\";s:0:\"\";s:25:\"aiowps_captcha_secret_key\";s:20:\"5lgaz5wyfs68nemt3tbw\";s:42:\"aiowps_enable_manual_registration_approval\";s:0:\"\";s:39:\"aiowps_enable_registration_page_captcha\";s:0:\"\";s:27:\"aiowps_enable_random_prefix\";s:0:\"\";s:31:\"aiowps_enable_automated_backups\";s:0:\"\";s:26:\"aiowps_db_backup_frequency\";s:1:\"4\";s:25:\"aiowps_db_backup_interval\";s:1:\"2\";s:26:\"aiowps_backup_files_stored\";s:1:\"2\";s:32:\"aiowps_send_backup_email_address\";s:0:\"\";s:27:\"aiowps_backup_email_address\";s:23:\"bensykes@bensykes.co.uk\";s:27:\"aiowps_disable_file_editing\";s:0:\"\";s:37:\"aiowps_prevent_default_wp_file_access\";s:0:\"\";s:22:\"aiowps_system_log_file\";s:9:\"error_log\";s:26:\"aiowps_enable_blacklisting\";s:0:\"\";s:26:\"aiowps_banned_ip_addresses\";s:0:\"\";s:28:\"aiowps_enable_basic_firewall\";s:1:\"1\";s:31:\"aiowps_enable_pingback_firewall\";s:0:\"\";s:38:\"aiowps_disable_xmlrpc_pingback_methods\";s:0:\"\";s:34:\"aiowps_block_debug_log_file_access\";s:0:\"\";s:26:\"aiowps_disable_index_views\";s:0:\"\";s:30:\"aiowps_disable_trace_and_track\";s:0:\"\";s:28:\"aiowps_forbid_proxy_comments\";s:0:\"\";s:29:\"aiowps_deny_bad_query_strings\";s:0:\"\";s:34:\"aiowps_advanced_char_string_filter\";s:0:\"\";s:25:\"aiowps_enable_5g_firewall\";s:0:\"\";s:25:\"aiowps_enable_6g_firewall\";s:0:\"\";s:26:\"aiowps_enable_custom_rules\";s:0:\"\";s:19:\"aiowps_custom_rules\";s:0:\"\";s:25:\"aiowps_enable_404_logging\";s:0:\"\";s:28:\"aiowps_enable_404_IP_lockout\";s:0:\"\";s:30:\"aiowps_404_lockout_time_length\";s:2:\"60\";s:28:\"aiowps_404_lock_redirect_url\";s:16:\"http://127.0.0.1\";s:31:\"aiowps_enable_rename_login_page\";s:0:\"\";s:28:\"aiowps_enable_login_honeypot\";s:0:\"\";s:43:\"aiowps_enable_brute_force_attack_prevention\";s:0:\"\";s:30:\"aiowps_brute_force_secret_word\";s:0:\"\";s:24:\"aiowps_cookie_brute_test\";s:0:\"\";s:44:\"aiowps_cookie_based_brute_force_redirect_url\";s:16:\"http://127.0.0.1\";s:59:\"aiowps_brute_force_attack_prevention_pw_protected_exception\";s:0:\"\";s:51:\"aiowps_brute_force_attack_prevention_ajax_exception\";s:0:\"\";s:19:\"aiowps_site_lockout\";s:0:\"\";s:23:\"aiowps_site_lockout_msg\";s:0:\"\";s:30:\"aiowps_enable_spambot_blocking\";s:1:\"1\";s:29:\"aiowps_enable_comment_captcha\";s:1:\"1\";s:31:\"aiowps_enable_autoblock_spam_ip\";s:0:\"\";s:33:\"aiowps_spam_ip_min_comments_block\";s:0:\"\";s:32:\"aiowps_enable_automated_fcd_scan\";s:0:\"\";s:25:\"aiowps_fcd_scan_frequency\";s:1:\"4\";s:24:\"aiowps_fcd_scan_interval\";s:1:\"2\";s:28:\"aiowps_fcd_exclude_filetypes\";s:0:\"\";s:24:\"aiowps_fcd_exclude_files\";s:0:\"\";s:26:\"aiowps_send_fcd_scan_email\";s:0:\"\";s:29:\"aiowps_fcd_scan_email_address\";s:23:\"bensykes@bensykes.co.uk\";s:27:\"aiowps_fcds_change_detected\";b:0;s:22:\"aiowps_copy_protection\";s:0:\"\";s:40:\"aiowps_prevent_site_display_inside_frame\";s:0:\"\";s:32:\"aiowps_prevent_users_enumeration\";s:0:\"\";s:28:\"aiowps_block_fake_googlebots\";s:1:\"1\";s:35:\"aiowps_lockdown_enable_whitelisting\";s:0:\"\";s:36:\"aiowps_lockdown_allowed_ip_addresses\";s:0:\"\";s:35:\"aiowps_enable_registration_honeypot\";s:0:\"\";}','yes'),(144,'wpcf7','a:2:{s:7:\"version\";s:5:\"4.8.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1502283178;s:7:\"version\";s:5:\"4.5.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(147,'widget_ai_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(148,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(150,'html_import','a:46:{s:14:\"root_directory\";s:48:\"/var/www/alford.org.uk/html/html-files-to-import\";s:7:\"old_url\";s:0:\"\";s:10:\"index_file\";s:10:\"index.html\";s:15:\"file_extensions\";s:14:\"html,htm,shtml\";s:8:\"skipdirs\";s:25:\"images,includes,Templates\";s:14:\"preserve_slugs\";i:0;s:6:\"status\";s:7:\"publish\";s:11:\"root_parent\";i:0;s:4:\"type\";s:4:\"page\";s:9:\"timestamp\";s:9:\"filemtime\";s:14:\"import_content\";i:0;s:14:\"content_region\";s:0:\"\";s:11:\"content_tag\";s:3:\"div\";s:14:\"content_tagatt\";s:2:\"id\";s:14:\"content_attval\";s:7:\"content\";s:10:\"clean_html\";i:0;s:6:\"encode\";i:1;s:10:\"allow_tags\";s:99:\"<p><br><img><a><ul><ol><li><dl><dt><dd><blockquote><cite><em><i><strong><b><h2><h3><h4><h5><h6><hr>\";s:16:\"allow_attributes\";s:18:\"href,alt,title,src\";s:13:\"import_images\";i:0;s:16:\"import_documents\";i:0;s:14:\"document_mimes\";s:84:\"rtf,doc,docx,xls,xlsx,csv,ppt,pps,pptx,ppsx,pdf,zip,wmv,avi,flv,mov,mpeg,mp3,m4a,wav\";s:9:\"fix_links\";i:0;s:12:\"import_title\";i:0;s:12:\"title_region\";s:0:\"\";s:9:\"title_tag\";s:5:\"title\";s:12:\"title_tagatt\";s:0:\"\";s:12:\"title_attval\";s:0:\"\";s:17:\"remove_from_title\";s:0:\"\";s:12:\"title_inside\";i:0;s:9:\"meta_desc\";i:1;s:4:\"user\";i:0;s:13:\"page_template\";i:0;s:8:\"firstrun\";b:1;s:11:\"import_date\";i:0;s:11:\"date_region\";s:0:\"\";s:8:\"date_tag\";s:3:\"div\";s:11:\"date_tagatt\";s:2:\"id\";s:11:\"date_attval\";s:4:\"date\";s:12:\"import_field\";a:1:{i:0;s:1:\"0\";}s:16:\"customfield_name\";a:1:{i:0;s:0:\"\";}s:18:\"customfield_region\";a:1:{i:0;s:0:\"\";}s:15:\"customfield_tag\";a:1:{i:0;s:3:\"div\";}s:18:\"customfield_tagatt\";a:1:{i:0;s:5:\"class\";}s:18:\"customfield_attval\";a:1:{i:0;s:10:\"fieldclass\";}s:16:\"customfield_html\";a:1:{i:0;s:0:\"\";}}','no'),(153,'jetpack_activated','1','yes'),(154,'jetpack_sync_settings_disable','0','yes'),(155,'jetpack_file_data','a:2:{s:3:\"4.4\";a:50:{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:64:\"Transform image galleries into gorgeous, full-screen slideshows.\";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:\"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:245:\"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, 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:44:\"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:\"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:\"\";}}s:5:\"5.2.1\";a:55:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"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:75:\"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:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.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:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";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:74:\"Display different types of content on your site with custom content types.\";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:53:\"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:50:\"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:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";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:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";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:26:\"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:33:\"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:41:\"Block suspicious-looking sign in activity\";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:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";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:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}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:62:\"Allow users to log into this site using WordPress.com accounts\";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:87:\"Allow users to subscribe to your posts and comments and receive notifications via 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:61:\"Display image galleries in a variety of elegant arrangements.\";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:21:\"Appearance, Jumpstart\";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:27:\"Fast, ad-free video hosting\";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'),(156,'jetpack_available_modules','a:1:{s:5:\"5.2.1\";a:42:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";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:\"masterbar\";s:3:\"4.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:6:\"search\";s:3:\"5.0\";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'),(157,'jetpack_options','a:2:{s:7:\"version\";s:14:\"4.4:1502283181\";s:11:\"old_version\";s:14:\"4.4:1502283181\";}','yes'),(158,'loginlockdownAdminOptions','a:6:{s:17:\"max_login_retries\";i:3;s:14:\"retries_within\";i:5;s:14:\"lockout_length\";i:60;s:25:\"lockout_invalid_usernames\";s:2:\"no\";s:17:\"mask_login_errors\";s:2:\"no\";s:16:\"show_credit_link\";s:3:\"yes\";}','yes'),(159,'loginlockdown_db_version','1.0','no'),(160,'siteorigin_panels_initial_version','2.4.18','no'),(161,'spam_captcha_options','a:3:{s:12:\"contactform7\";b:0;s:16:\"hash_sha1_plugin\";s:40:\"79cd738bc0355315f54b8c3d5a2771bb67af39fd\";s:11:\"captcha_css\";s:43:\".captcha_image {\n \n}\n.captcha_comment {\n \n}\";}','yes'),(162,'plugin_error_on_activation','','yes'),(164,'wph_environment_hash','b03cd6325c8e5c5ba66b3f894eff4356','yes'),(165,'wph_settings','a:3:{s:15:\"module_settings\";a:0:{}s:13:\"recovery_code\";s:32:\"f1d79577e24696ee0487a75fe83ff0a8\";s:7:\"version\";s:7:\"1.4.5.1\";}','yes'),(168,'wpseo','a:25:{s:14:\"blocking_files\";a:1:{i:0;s:39:\"/var/www/alford.org.uk/html/sitemap.xml\";}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:3:\"5.2\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:20:\"enable_setting_pages\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1502283200;}','yes'),(169,'wpseo_permalinks','a:9:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}','yes'),(170,'wpseo_titles','a:53:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;}','yes'),(171,'wpseo_social','a:20:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"4857413f31cd3ed64718434219e731b3\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(172,'wpseo_rss','a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}','yes'),(173,'wpseo_internallinks','a:10:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:23:\"post_types-post-maintax\";i:0;}','yes'),(174,'wpseo_xml','a:16:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:14:\"excluded-posts\";s:0:\"\";s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;}','yes'),(175,'wpseo_flush_rewrite','1','yes'),(176,'siteorigin_panels_settings','a:0:{}','yes'),(177,'widget_siteorigin-panels-post-content','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(178,'widget_siteorigin-panels-postloop','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(179,'widget_siteorigin-panels-builder','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(180,'vc_version','5.1.1','yes'),(182,'coreSLframework_options','a:1:{s:22:\"global_location_plugin\";a:4:{i:0;a:2:{i:0;s:9:\"*Standard\";i:1;s:3:\"std\";}i:1;a:2:{i:0;s:13:\"under Plugins\";i:1;s:7:\"plugins\";}i:2;a:2:{i:0;s:11:\"under Tools\";i:1;s:5:\"tools\";}i:3;a:2:{i:0;s:14:\"under Settings\";i:1;s:8:\"settings\";}}}','yes'),(183,'do_activate','0','yes'),(184,'_transient_timeout_jetpack_https_test','1502369602','no'),(185,'_transient_jetpack_https_test','1','no'),(186,'_transient_timeout_jetpack_https_test_message','1502369602','no'),(187,'_transient_jetpack_https_test_message','','no'),(188,'loginlockdownmsrunonce','done','no'),(189,'fw_active_extensions','a:3:{s:6:\"update\";a:0:{}s:13:\"github-update\";a:0:{}s:4:\"blog\";a:0:{}}','yes'),(190,'wpb_js_composer_license_activation_notified','yes','yes'),(191,'wpseo_sitemap_cache_validator_global','4srBy','no'),(192,'_site_transient_timeout_fw_ext_upd_gh_fw','1502369604','no'),(193,'_site_transient_fw_ext_upd_gh_fw','a:2:{s:31:\"ThemeFuse/Unyson-Blog-Extension\";s:6:\"v1.0.2\";s:33:\"ThemeFuse/Unyson-Update-Extension\";s:7:\"v1.0.10\";}','no'),(194,'current_theme','Sydney','yes'),(195,'theme_mods_sydney','a:7:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:14:\"slider_image_1\";s:76:\"http://alford.org.uk/wp-content/uploads/2017/08/scotland-1761292_960_720.jpg\";s:14:\"slider_image_2\";s:76:\"http://alford.org.uk/wp-content/uploads/2017/08/landscape-540116_960_720.jpg\";s:14:\"slider_title_1\";s:17:\"Welcome to Alford\";s:14:\"slider_image_3\";s:73:\"http://alford.org.uk/wp-content/uploads/2017/08/bridge-192982_960_720.jpg\";}','yes'),(196,'theme_switched','','yes'),(197,'widget_list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(198,'widget_fp_social','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(199,'wdr_admin_notices_show','0','yes'),(203,'wpseo_sitemap_1_cache_validator','4tgrP','no'),(204,'wpseo_sitemap_page_cache_validator','4tZNA','no'),(206,'wpseo_sitemap_nav_menu_cache_validator','4s9Bd','no'),(207,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(208,'wpseo_sitemap_nav_menu_item_cache_validator','m1RU','no'),(209,'wpseo_sitemap_revision_cache_validator','4rivP','no'),(213,'widget_sydney_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(214,'widget_sydney_video_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(215,'widget_sydney_action','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(216,'widget_sydney_clients','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(217,'widget_sydney_employees','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(218,'widget_sydney_facts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(219,'widget_sydney_latest_news','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(220,'widget_sydney_portfolio','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(221,'widget_sydney_services_type_a','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(222,'widget_sydney_services_type_b','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(223,'widget_sydney_skills','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(224,'widget_sydney_testimonials','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(226,'wpseo_sitemap_customize_changeset_cache_validator','4scki','no'),(231,'category_children','a:0:{}','yes'),(235,'_site_transient_timeout_browser_c40f98f4f0bffda78059ef8e58d95647','1502888454','no'),(236,'_site_transient_browser_c40f98f4f0bffda78059ef8e58d95647','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"54.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(239,'wpseo_sitemap_post_cache_validator','4oFvW','no'),(240,'wpseo_sitemap_category_cache_validator','4tgtz','no'),(264,'siteorigin_panels_active_version','2.5.10','yes'),(266,'wpseo_sitemap_8_cache_validator','4s9zy','no'),(283,'_transient_is_multi_author','0','yes'),(3448,'_transient_timeout_yst_sm_category_1:4srBy_4tgtz','1505138257','no'),(3449,'_transient_yst_sm_category_1:4srBy_4tgtz','C:24:\"WPSEO_Sitemap_Cache_Data\":48:{a:2:{s:6:\"status\";s:5:\"error\";s:3:\"xml\";s:0:\"\";}}','no'),(7411,'_transient_timeout_yst_sm_post_1:4srBy_4oFvW','1509102194','no'),(7412,'_transient_yst_sm_post_1:4srBy_4oFvW','C:24:\"WPSEO_Sitemap_Cache_Data\":403:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:356:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <url>\n <loc>http://alford.org.uk</loc>\n </url>\n</urlset>\";}}','no'),(9355,'_transient_timeout_yst_sm_page_1:4srBy_4tZNA','1511096256','no'),(9356,'_transient_yst_sm_page_1:4srBy_4tZNA','C:24:\"WPSEO_Sitemap_Cache_Data\":1553:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:1505:\"<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <url>\n <loc>http://alford.org.uk/</loc>\n <lastmod>2017-08-09T13:21:57+00:00</lastmod>\n <image:image>\n <image:loc>http://alford.org.uk/wp-content/uploads/2017/08/lake.jpg</image:loc>\n </image:image>\n </url>\n <url>\n <loc>http://alford.org.uk/thriving-business-community-alford</loc>\n <lastmod>2017-08-09T13:05:15+00:00</lastmod>\n </url>\n <url>\n <loc>http://alford.org.uk/providing-business-support</loc>\n <lastmod>2017-08-09T13:06:57+00:00</lastmod>\n </url>\n <url>\n <loc>http://alford.org.uk/advertising-business-scotland</loc>\n <lastmod>2017-08-09T13:07:38+00:00</lastmod>\n <image:image>\n <image:loc>http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT.jpg</image:loc>\n </image:image>\n </url>\n <url>\n <loc>http://alford.org.uk/get-in-contact</loc>\n <lastmod>2017-08-09T13:10:16+00:00</lastmod>\n </url>\n <url>\n <loc>http://alford.org.uk/forming-community-partnerships</loc>\n <lastmod>2017-08-09T13:11:16+00:00</lastmod>\n </url>\n <url>\n <loc>http://alford.org.uk/managing-local-business-successfully</loc>\n <lastmod>2017-08-09T13:11:26+00:00</lastmod>\n </url>\n <url>\n <loc>http://alford.org.uk/get-to-know-us</loc>\n <lastmod>2017-08-09T13:11:43+00:00</lastmod>\n </url>\n</urlset>\";}}','no'),(9934,'_transient_timeout_yst_sm_1_1:4srBy_4tgrP','1511713196','no'),(9935,'_transient_yst_sm_1_1:4srBy_4tgrP','C:24:\"WPSEO_Sitemap_Cache_Data\":250:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:203:\"<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <sitemap>\n <loc>http://alford.org.uk/page-sitemap.xml</loc>\n <lastmod>2017-08-09T13:21:57+00:00</lastmod>\n </sitemap>\n</sitemapindex>\";}}','no'),(60442,'_transient_timeout_jetpack_idc_allowed','1561965491','no'),(60443,'_transient_jetpack_idc_allowed','1','no'),(60765,'_site_transient_timeout_theme_roots','1562323954','no'),(60766,'_site_transient_theme_roots','a:15:{s:8:\"colormag\";s:7:\"/themes\";s:8:\"dw-focus\";s:7:\"/themes\";s:4:\"dyad\";s:7:\"/themes\";s:11:\"publication\";s:7:\"/themes\";s:9:\"sg-window\";s:7:\"/themes\";s:21:\"skt-construction-lite\";s:7:\"/themes\";s:6:\"sydney\";s:7:\"/themes\";s:7:\"tortuga\";s:7:\"/themes\";s:9:\"travelify\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:4:\"vega\";s:7:\"/themes\";}','no'),(60767,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(60768,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(60773,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-5.2.2.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-5.2.2.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.2\";s:7:\"version\";s:5:\"5.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1562322211;s:15:\"version_checked\";s:5:\"5.2.2\";s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:7:\"default\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-20 11:31:40\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.2/en_GB.zip\";s:10:\"autoupdate\";b:1;}}}','no'),(60774,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1562322212;s:7:\"checked\";a:15:{s:8:\"colormag\";s:5:\"1.1.5\";s:8:\"dw-focus\";s:5:\"1.3.1\";s:4:\"dyad\";s:6:\"1.0.10\";s:11:\"publication\";s:5:\"1.0.4\";s:9:\"sg-window\";s:5:\"1.2.1\";s:21:\"skt-construction-lite\";s:3:\"1.5\";s:6:\"sydney\";s:4:\"1.31\";s:7:\"tortuga\";s:5:\"1.1.3\";s:9:\"travelify\";s:5:\"3.0.4\";s:13:\"twentyfifteen\";s:3:\"1.8\";s:14:\"twentyfourteen\";s:3:\"1.8\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";s:4:\"vega\";s:5:\"1.9.4\";}s:8:\"response\";a:7:{s:8:\"colormag\";a:6:{s:5:\"theme\";s:8:\"colormag\";s:11:\"new_version\";s:5:\"1.3.9\";s:3:\"url\";s:38:\"https://wordpress.org/themes/colormag/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/colormag.1.3.9.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:9:\"sg-window\";a:6:{s:5:\"theme\";s:9:\"sg-window\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:39:\"https://wordpress.org/themes/sg-window/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/sg-window.1.2.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:6:\"sydney\";a:6:{s:5:\"theme\";s:6:\"sydney\";s:11:\"new_version\";s:4:\"1.55\";s:3:\"url\";s:36:\"https://wordpress.org/themes/sydney/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sydney.1.55.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:7:\"tortuga\";a:6:{s:5:\"theme\";s:7:\"tortuga\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:37:\"https://wordpress.org/themes/tortuga/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/tortuga.1.7.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";b:0;}s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.5.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"2.7\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.2.7.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:4:\"vega\";a:6:{s:5:\"theme\";s:4:\"vega\";s:11:\"new_version\";s:5:\"2.3.4\";s:3:\"url\";s:34:\"https://wordpress.org/themes/vega/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/vega.2.3.4.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:4:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:8:\"colormag\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.1.5\";s:7:\"updated\";s:19:\"2016-09-09 01:01:48\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/theme/colormag/1.1.5/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:11:\"publication\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.0.4\";s:7:\"updated\";s:19:\"2017-01-29 11:27:30\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/theme/publication/1.0.4/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:13:\"twentyfifteen\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:19:\"2015-08-18 16:52:12\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/theme/twentyfifteen/1.8/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"twentyfourteen\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:19:\"2015-07-18 11:27:20\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/theme/twentyfourteen/1.8/en_GB.zip\";s:10:\"autoupdate\";b:1;}}}','no'),(60775,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1562322215;s:7:\"checked\";a:23:{s:27:\"ad-inserter/ad-inserter.php\";s:6:\"2.1.14\";s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";s:5:\"4.2.8\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"4.8.1\";s:38:\"contact-form-7-designer/cf7-styles.php\";s:3:\"1.1\";s:33:\"contact-form-7-modules/hidden.php\";s:5:\"2.0.2\";s:42:\"contact-form-7-modules/send-all-fields.php\";s:5:\"2.0.2\";s:27:\"dw-megamenu/dw-megamenu.php\";s:5:\"1.0.1\";s:35:\"dw-social-share/dw-social-share.php\";s:5:\"1.0.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:33:\"import-html-pages/html-import.php\";s:3:\"2.6\";s:19:\"jetpack/jetpack.php\";s:5:\"5.2.1\";s:32:\"login-lockdown/loginlockdown.php\";s:6:\"v1.7.1\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:6:\"2.5.10\";s:41:\"post-type-switcher/post-type-switcher.php\";s:5:\"3.0.0\";s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";s:4:\"1.07\";s:29:\"spam-captcha/spam-captcha.php\";s:5:\"1.4.2\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:4:\"1.01\";s:57:\"universal-google-analytics/universal-google-analytics.php\";s:7:\"1.2.5.1\";s:17:\"unyson/unyson.php\";s:6:\"2.6.16\";s:27:\"js_composer/js_composer.php\";s:5:\"5.1.1\";s:35:\"wp-date-remover/wp-date-remover.php\";s:5:\"1.0.1\";s:37:\"wp-hide-security-enhancer/wp-hide.php\";s:7:\"1.4.5.1\";}s:8:\"response\";a:12:{s:27:\"ad-inserter/ad-inserter.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/ad-inserter\";s:4:\"slug\";s:11:\"ad-inserter\";s:6:\"plugin\";s:27:\"ad-inserter/ad-inserter.php\";s:11:\"new_version\";s:6:\"2.4.19\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ad-inserter/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/ad-inserter.2.4.19.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ad-inserter/assets/icon-256x256.jpg?rev=1502039\";s:2:\"1x\";s:64:\"https://ps.w.org/ad-inserter/assets/icon-128x128.jpg?rev=1502039\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/ad-inserter/assets/banner-772x250.png?rev=1708001\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:258:\"<p>Added support for taxonomy for Yoast primary category;\nLayout changes to accomodate longer translated texts;\nFix for escape character not saved in header, footer and ad blocking message code;\nFew minor bug fixes, cosmetic changes and code improvements</p>\";s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:49:\"w.org/plugins/all-in-one-wp-security-and-firewall\";s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:6:\"plugin\";s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";s:11:\"new_version\";s:7:\"4.3.9.4\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:88:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/icon-128x128.png?rev=1232826\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-1544x500.png?rev=1914011\";s:2:\"1x\";s:90:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-772x250.png?rev=1914013\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.1.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"7.5.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.5.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/siteorigin-panels\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:6:\"2.10.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.10.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755\";s:2:\"1x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-128x128.png?rev=1044755\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"post-type-switcher/post-type-switcher.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/post-type-switcher\";s:4:\"slug\";s:18:\"post-type-switcher\";s:6:\"plugin\";s:41:\"post-type-switcher/post-type-switcher.php\";s:11:\"new_version\";s:5:\"3.2.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/post-type-switcher/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/post-type-switcher.3.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/post-type-switcher/assets/icon-256x256.jpg?rev=1823578\";s:2:\"1x\";s:71:\"https://ps.w.org/post-type-switcher/assets/icon-128x128.jpg?rev=1823578\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/post-type-switcher/assets/banner-1544x500.jpg?rev=1823571\";s:2:\"1x\";s:73:\"https://ps.w.org/post-type-switcher/assets/banner-772x250.jpg?rev=1823571\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"sydney-toolbox/sydney-toolbox.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/sydney-toolbox\";s:4:\"slug\";s:14:\"sydney-toolbox\";s:6:\"plugin\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:11:\"new_version\";s:4:\"1.05\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/sydney-toolbox/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/sydney-toolbox.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:58:\"https://s.w.org/plugins/geopattern-icon/sydney-toolbox.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:57:\"universal-google-analytics/universal-google-analytics.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:40:\"w.org/plugins/universal-google-analytics\";s:4:\"slug\";s:26:\"universal-google-analytics\";s:6:\"plugin\";s:57:\"universal-google-analytics/universal-google-analytics.php\";s:11:\"new_version\";s:5:\"1.3.6\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/universal-google-analytics/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/universal-google-analytics.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/universal-google-analytics/assets/icon-128x128.png?rev=1439033\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/universal-google-analytics/assets/banner-772x250.png?rev=1439040\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:17:\"unyson/unyson.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:20:\"w.org/plugins/unyson\";s:4:\"slug\";s:6:\"unyson\";s:6:\"plugin\";s:17:\"unyson/unyson.php\";s:11:\"new_version\";s:6:\"2.7.22\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/unyson/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/unyson.2.7.22.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/unyson/assets/icon-256x256.jpg?rev=1034261\";s:2:\"1x\";s:59:\"https://ps.w.org/unyson/assets/icon-128x128.jpg?rev=1034260\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/unyson/assets/banner-1544x500.png?rev=1034271\";s:2:\"1x\";s:61:\"https://ps.w.org/unyson/assets/banner-772x250.png?rev=1034270\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"wp-date-remover/wp-date-remover.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/wp-date-remover\";s:4:\"slug\";s:15:\"wp-date-remover\";s:6:\"plugin\";s:35:\"wp-date-remover/wp-date-remover.php\";s:11:\"new_version\";s:5:\"1.1.3\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-date-remover/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-date-remover.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-date-remover/assets/icon-128x128.png?rev=1457961\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-date-remover/assets/banner-772x250.png?rev=1457961\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.0\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"wp-hide-security-enhancer/wp-hide.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:39:\"w.org/plugins/wp-hide-security-enhancer\";s:4:\"slug\";s:25:\"wp-hide-security-enhancer\";s:6:\"plugin\";s:37:\"wp-hide-security-enhancer/wp-hide.php\";s:11:\"new_version\";s:5:\"1.5.8\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/wp-hide-security-enhancer/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/wp-hide-security-enhancer.1.5.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/wp-hide-security-enhancer/assets/icon-256x256.png?rev=1974395\";s:2:\"1x\";s:78:\"https://ps.w.org/wp-hide-security-enhancer/assets/icon-128x128.png?rev=1974395\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/wp-hide-security-enhancer/assets/banner-1544x500.png?rev=1573670\";s:2:\"1x\";s:80:\"https://ps.w.org/wp-hide-security-enhancer/assets/banner-772x250.png?rev=1376480\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"6.0.3\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:24:\"WPBakery Visual Composer\";}}s:12:\"translations\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-06-01 06:22:35\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/contact-form-7/4.8.1/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.2\";s:7:\"updated\";s:19:\"2018-03-20 19:24:06\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"jetpack\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.2.1\";s:7:\"updated\";s:19:\"2017-05-02 18:50:33\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/jetpack/5.2.1/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.5.6\";s:7:\"updated\";s:19:\"2017-04-25 07:30:42\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/translation/plugin/siteorigin-panels/2.5.6/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:18:\"post-type-switcher\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.0.0\";s:7:\"updated\";s:19:\"2017-05-09 19:55:59\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/translation/plugin/post-type-switcher/3.0.0/en_GB.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:38:\"contact-form-7-designer/cf7-styles.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/contact-form-7-designer\";s:4:\"slug\";s:23:\"contact-form-7-designer\";s:6:\"plugin\";s:38:\"contact-form-7-designer/cf7-styles.php\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/contact-form-7-designer/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/contact-form-7-designer.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/contact-form-7-designer/assets/icon-256x256.png?rev=1099575\";s:2:\"1x\";s:76:\"https://ps.w.org/contact-form-7-designer/assets/icon-128x128.png?rev=1099575\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/contact-form-7-designer/assets/banner-1544x500.png?rev=1099575\";s:2:\"1x\";s:78:\"https://ps.w.org/contact-form-7-designer/assets/banner-772x250.png?rev=1099577\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"contact-form-7-modules/hidden.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/contact-form-7-modules\";s:4:\"slug\";s:22:\"contact-form-7-modules\";s:6:\"plugin\";s:33:\"contact-form-7-modules/hidden.php\";s:11:\"new_version\";s:5:\"2.0.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/contact-form-7-modules/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7-modules.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/contact-form-7-modules/assets/icon-256x256.jpg?rev=1586889\";s:2:\"1x\";s:75:\"https://ps.w.org/contact-form-7-modules/assets/icon-128x128.jpg?rev=1586889\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/contact-form-7-modules/assets/banner-1544x500.jpg?rev=1586889\";s:2:\"1x\";s:76:\"https://ps.w.org/contact-form-7-modules/assets/banner-772x250.jpg?rev=530361\";}s:11:\"banners_rtl\";a:0:{}}s:42:\"contact-form-7-modules/send-all-fields.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/contact-form-7-modules\";s:4:\"slug\";s:22:\"contact-form-7-modules\";s:6:\"plugin\";s:42:\"contact-form-7-modules/send-all-fields.php\";s:11:\"new_version\";s:5:\"2.0.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/contact-form-7-modules/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7-modules.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/contact-form-7-modules/assets/icon-256x256.jpg?rev=1586889\";s:2:\"1x\";s:75:\"https://ps.w.org/contact-form-7-modules/assets/icon-128x128.jpg?rev=1586889\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/contact-form-7-modules/assets/banner-1544x500.jpg?rev=1586889\";s:2:\"1x\";s:76:\"https://ps.w.org/contact-form-7-modules/assets/banner-772x250.jpg?rev=530361\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"dw-megamenu/dw-megamenu.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/dw-mega-menu\";s:4:\"slug\";s:12:\"dw-mega-menu\";s:6:\"plugin\";s:27:\"dw-megamenu/dw-megamenu.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/dw-mega-menu/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/dw-mega-menu.1.0.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/dw-mega-menu/assets/icon-128x128.jpg?rev=1403694\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/dw-mega-menu/assets/banner-772x250.jpg?rev=1403679\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"dw-social-share/dw-social-share.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/dw-social-share\";s:4:\"slug\";s:15:\"dw-social-share\";s:6:\"plugin\";s:35:\"dw-social-share/dw-social-share.php\";s:11:\"new_version\";s:5:\"1.0.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/dw-social-share/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/dw-social-share.1.0.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/dw-social-share/assets/icon-128x128.png?rev=1298056\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/dw-social-share/assets/banner-1544x500.png?rev=1298056\";s:2:\"1x\";s:70:\"https://ps.w.org/dw-social-share/assets/banner-772x250.png?rev=1298056\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"import-html-pages/html-import.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/import-html-pages\";s:4:\"slug\";s:17:\"import-html-pages\";s:6:\"plugin\";s:33:\"import-html-pages/html-import.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/import-html-pages/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/import-html-pages.2.6.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:61:\"https://s.w.org/plugins/geopattern-icon/import-html-pages.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:32:\"login-lockdown/loginlockdown.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/login-lockdown\";s:4:\"slug\";s:14:\"login-lockdown\";s:6:\"plugin\";s:32:\"login-lockdown/loginlockdown.php\";s:11:\"new_version\";s:6:\"v1.7.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/login-lockdown/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/login-lockdown.1.7.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/login-lockdown/assets/icon-128x128.png?rev=979959\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/login-lockdown/assets/banner-772x250.png?rev=979959\";}s:11:\"banners_rtl\";a:0:{}}s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/simple-301-redirects\";s:4:\"slug\";s:20:\"simple-301-redirects\";s:6:\"plugin\";s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";s:11:\"new_version\";s:4:\"1.07\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/simple-301-redirects/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/simple-301-redirects.1.07.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://s.w.org/plugins/geopattern-icon/simple-301-redirects.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:29:\"spam-captcha/spam-captcha.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/spam-captcha\";s:4:\"slug\";s:12:\"spam-captcha\";s:6:\"plugin\";s:29:\"spam-captcha/spam-captcha.php\";s:11:\"new_version\";s:5:\"1.4.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/spam-captcha/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/spam-captcha.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/spam-captcha/assets/icon-256x256.png?rev=1089444\";s:2:\"1x\";s:65:\"https://ps.w.org/spam-captcha/assets/icon-128x128.png?rev=1089444\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/spam-captcha/assets/banner-1544x500.png?rev=886454\";s:2:\"1x\";s:66:\"https://ps.w.org/spam-captcha/assets/banner-772x250.png?rev=886454\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(60776,'recovery_keys','a:0:{}','yes');
/*!40000 ALTER TABLE `sd_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_pluginSL_spam_captcha`
--
DROP TABLE IF EXISTS `sd_pluginSL_spam_captcha`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_pluginSL_spam_captcha` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_comment` mediumint(9) NOT NULL,
`status` varchar(10) DEFAULT 'ok',
`new_status` varchar(10) DEFAULT 'ok',
`author` text DEFAULT NULL,
`content` text DEFAULT NULL,
`captcha_info` text DEFAULT NULL,
`date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
UNIQUE KEY `id_post` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_pluginSL_spam_captcha`
--
LOCK TABLES `sd_pluginSL_spam_captcha` WRITE;
/*!40000 ALTER TABLE `sd_pluginSL_spam_captcha` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_pluginSL_spam_captcha` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_postmeta`
--
DROP TABLE IF EXISTS `sd_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=207 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_postmeta`
--
LOCK TABLES `sd_postmeta` WRITE;
/*!40000 ALTER TABLE `sd_postmeta` DISABLE KEYS */;
INSERT INTO `sd_postmeta` VALUES (5,5,'_form','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]'),(6,5,'_mail','a:8:{s:7:\"subject\";s:23:\"Alford \"[your-subject]\"\";s:6:\"sender\";s:37:\"[your-name] <wordpress@alford.org.uk>\";s:4:\"body\";s:164:\"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 Alford (http://alford.org.uk)\";s:9:\"recipient\";s:23:\"bensykes@bensykes.co.uk\";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;}'),(7,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Alford \"[your-subject]\"\";s:6:\"sender\";s:32:\"Alford <wordpress@alford.org.uk>\";s:4:\"body\";s:106:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Alford (http://alford.org.uk)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:33:\"Reply-To: bensykes@bensykes.co.uk\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(8,5,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(9,5,'_additional_settings',NULL),(10,5,'_locale','en_US'),(12,7,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(13,7,'_edit_last','1'),(14,7,'_wp_page_template','default'),(26,7,'_adinserter_block_exceptions',''),(27,7,'_wpb_vc_js_status','false'),(28,7,'_yoast_wpseo_content_score','30'),(29,9,'fw_options','a:0:{}'),(30,7,'_edit_lock','1502284922:1'),(31,10,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32,10,'_edit_last','1'),(33,10,'_wp_page_template','default'),(34,11,'_adinserter_block_exceptions',''),(35,11,'_wpb_vc_js_status','false'),(36,11,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37,11,'_menu_item_type','post_type'),(38,11,'_menu_item_menu_item_parent','0'),(39,11,'_menu_item_object_id','10'),(40,11,'_menu_item_object','page'),(41,11,'_menu_item_target',''),(42,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43,11,'_menu_item_xfn',''),(44,11,'_menu_item_url',''),(45,10,'_adinserter_block_exceptions',''),(46,10,'_wpb_vc_js_status','false'),(47,12,'fw_options','a:0:{}'),(48,10,'_edit_lock','1502283789:1'),(49,13,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50,13,'_edit_last','1'),(51,13,'_wp_page_template','default'),(52,14,'_adinserter_block_exceptions',''),(53,14,'_wpb_vc_js_status','false'),(54,14,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55,14,'_menu_item_type','post_type'),(56,14,'_menu_item_menu_item_parent','0'),(57,14,'_menu_item_object_id','13'),(58,14,'_menu_item_object','page'),(59,14,'_menu_item_target',''),(60,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(61,14,'_menu_item_xfn',''),(62,14,'_menu_item_url',''),(63,13,'_adinserter_block_exceptions',''),(64,13,'_wpb_vc_js_status','false'),(65,15,'fw_options','a:0:{}'),(66,13,'_edit_lock','1502284277:1'),(67,16,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(68,16,'_edit_last','1'),(69,16,'_wp_page_template','default'),(70,17,'_adinserter_block_exceptions',''),(71,17,'_wpb_vc_js_status','false'),(72,17,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(73,17,'_menu_item_type','post_type'),(74,17,'_menu_item_menu_item_parent','0'),(75,17,'_menu_item_object_id','16'),(76,17,'_menu_item_object','page'),(77,17,'_menu_item_target',''),(78,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(79,17,'_menu_item_xfn',''),(80,17,'_menu_item_url',''),(81,16,'_adinserter_block_exceptions',''),(82,16,'_wpb_vc_js_status','false'),(83,16,'_yoast_wpseo_content_score','30'),(84,18,'fw_options','a:0:{}'),(85,16,'_edit_lock','1502284304:1'),(96,22,'fw_options','a:0:{}'),(97,13,'_yoast_wpseo_content_score','30'),(98,23,'fw_options','a:0:{}'),(99,24,'fw_options','a:0:{}'),(102,10,'_yoast_wpseo_content_score','90'),(103,26,'fw_options','a:0:{}'),(104,27,'fw_options','a:0:{}'),(105,28,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(106,28,'_edit_last','1'),(107,28,'_edit_lock','1502284018:1'),(108,28,'_wp_page_template','default'),(109,29,'_adinserter_block_exceptions',''),(110,29,'_wpb_vc_js_status','false'),(111,29,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(112,29,'_menu_item_type','post_type'),(113,29,'_menu_item_menu_item_parent','0'),(114,29,'_menu_item_object_id','28'),(115,29,'_menu_item_object','page'),(116,29,'_menu_item_target',''),(117,29,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(118,29,'_menu_item_xfn',''),(119,29,'_menu_item_url',''),(120,28,'_adinserter_block_exceptions',''),(121,28,'_wpb_vc_js_status','false'),(122,28,'_yoast_wpseo_content_score','90'),(123,30,'fw_options','a:0:{}'),(124,31,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(125,31,'_edit_last','1'),(126,31,'_edit_lock','1502283999:1'),(127,31,'_wp_page_template','default'),(128,32,'_adinserter_block_exceptions',''),(129,32,'_wpb_vc_js_status','false'),(130,32,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(131,32,'_menu_item_type','post_type'),(132,32,'_menu_item_menu_item_parent','0'),(133,32,'_menu_item_object_id','31'),(134,32,'_menu_item_object','page'),(135,32,'_menu_item_target',''),(136,32,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(137,32,'_menu_item_xfn',''),(138,32,'_menu_item_url',''),(139,31,'_adinserter_block_exceptions',''),(140,31,'_wpb_vc_js_status','false'),(141,31,'_yoast_wpseo_content_score','60'),(142,33,'fw_options','a:0:{}'),(143,34,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(144,34,'_edit_last','1'),(145,34,'_edit_lock','1502284086:1'),(146,34,'_wp_page_template','default'),(147,35,'_adinserter_block_exceptions',''),(148,35,'_wpb_vc_js_status','false'),(149,35,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(150,35,'_menu_item_type','post_type'),(151,35,'_menu_item_menu_item_parent','0'),(152,35,'_menu_item_object_id','34'),(153,35,'_menu_item_object','page'),(154,35,'_menu_item_target',''),(155,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(156,35,'_menu_item_xfn',''),(157,35,'_menu_item_url',''),(158,34,'_adinserter_block_exceptions',''),(159,34,'_wpb_vc_js_status','false'),(160,34,'_yoast_wpseo_content_score','30'),(161,36,'fw_options','a:0:{}'),(162,37,'fw_options','a:0:{}'),(163,38,'fw_options','a:0:{}'),(164,39,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(165,39,'_edit_last','1'),(166,39,'_wp_page_template','default'),(167,40,'_adinserter_block_exceptions',''),(168,40,'_wpb_vc_js_status','false'),(169,40,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(170,40,'_menu_item_type','post_type'),(171,40,'_menu_item_menu_item_parent','0'),(172,40,'_menu_item_object_id','39'),(173,40,'_menu_item_object','page'),(174,40,'_menu_item_target',''),(175,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(176,40,'_menu_item_xfn',''),(177,40,'_menu_item_url',''),(178,39,'_adinserter_block_exceptions',''),(179,39,'_wpb_vc_js_status','false'),(180,39,'_yoast_wpseo_content_score','30'),(181,41,'fw_options','a:0:{}'),(182,39,'_edit_lock','1502284152:1'),(183,42,'fw_options','a:0:{}'),(188,46,'_wp_attached_file','2017/08/bridge-192982_960_720.jpg'),(189,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:33:\"2017/08/bridge-192982_960_720.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"bridge-192982_960_720-150x150.jpg\";s:5:\"width\";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:\"bridge-192982_960_720-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"bridge-192982_960_720-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:33:\"bridge-192982_960_720-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:33:\"bridge-192982_960_720-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:33:\"bridge-192982_960_720-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:33:\"bridge-192982_960_720-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:33:\"bridge-192982_960_720-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(190,47,'_wp_attached_file','2017/08/landscape-540116_960_720.jpg'),(191,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2017/08/landscape-540116_960_720.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"landscape-540116_960_720-150x150.jpg\";s:5:\"width\";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:\"landscape-540116_960_720-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"landscape-540116_960_720-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:36:\"landscape-540116_960_720-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:36:\"landscape-540116_960_720-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:36:\"landscape-540116_960_720-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:36:\"landscape-540116_960_720-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:36:\"landscape-540116_960_720-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(192,48,'_wp_attached_file','2017/08/scotland-1761292_960_720.jpg'),(193,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:36:\"2017/08/scotland-1761292_960_720.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"scotland-1761292_960_720-150x150.jpg\";s:5:\"width\";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:\"scotland-1761292_960_720-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:36:\"scotland-1761292_960_720-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:36:\"scotland-1761292_960_720-830x467.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:36:\"scotland-1761292_960_720-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:36:\"scotland-1761292_960_720-230x129.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:36:\"scotland-1761292_960_720-350x197.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:36:\"scotland-1761292_960_720-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(196,49,'fw_options','a:0:{}'),(203,53,'_wp_attached_file','2017/08/lake.jpg'),(204,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:16:\"2017/08/lake.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"lake-150x150.jpg\";s:5:\"width\";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:\"lake-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"lake-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:16:\"lake-830x623.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:16:\"lake-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:16:\"lake-230x173.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:16:\"lake-350x263.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:16:\"lake-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"DMC-FZ200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.5\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(205,54,'fw_options','a:0:{}'),(206,55,'fw_options','a:0:{}');
/*!40000 ALTER TABLE `sd_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_posts`
--
DROP TABLE IF EXISTS `sd_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_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 NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text 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 NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_posts`
--
LOCK TABLES `sd_posts` WRITE;
/*!40000 ALTER TABLE `sd_posts` DISABLE KEYS */;
INSERT INTO `sd_posts` VALUES (5,1,'2017-08-09 12:52:57','2017-08-09 12:52:57','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\nAlford \"[your-subject]\"\n[your-name] <wordpress@alford.org.uk>\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 Alford (http://alford.org.uk)\nbensykes@bensykes.co.uk\nReply-To: [your-email]\n\n0\n0\n\nAlford \"[your-subject]\"\nAlford <wordpress@alford.org.uk>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Alford (http://alford.org.uk)\n[your-email]\nReply-To: bensykes@bensykes.co.uk\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','','','2017-08-09 12:52:57','2017-08-09 12:52:57','',0,'http://alford.org.uk/?post_type=wpcf7_contact_form&p=5',0,'wpcf7_contact_form','',0),(7,1,'2017-08-09 12:54:36','2017-08-09 12:54:36','<div class=\"entry-content\">\r\n<h3>Alford, the Scottish town full of history and, more in the modern day, full of successful and capable businesses.</h3>\r\nAlford is a small country town, happily nestled in the Vale of Alford, skirted by the picturesque River Don and surrounded by the hills of Bennachie and Coreen. Surprisingly, given the peace and tranquillity of this place, Aberdeen, is a mere 40 minutes drive away.\r\n\r\nWhatever your interests, you will be sure to find something here to keep you interested. From local businesses to the most successful that started here.\r\n<h2><img class=\"alignnone size-full wp-image-53\" src=\"http://alford.org.uk/wp-content/uploads/2017/08/lake.jpg\" alt=\"\" width=\"960\" height=\"720\" /></h2>\r\n<h2>Have your own tour of Alford’s history</h2>\r\nIn addition, if you have an interest in history, we have the <a href=\"http://www.glenbuchatheritage.com/contributors.asp?id=11\">Alford Heritage Centre</a> and <a href=\"http://www.gtm.org.uk/\">Grampian Transport Museum</a>, whilst natural history is well served in Haughton Country Park. For ancient history enthusiasts, there are many stone circles and Pictish symbol stones in the area.\r\n\r\nIf you’re feeling energetic, why not follow the <a href=\"https://www.ldwa.org.uk/ldp/members/show_path.php?path_name=Gordon+Way\">Gordon Way</a> or take a shorter ramble along the peaks of Bennachie.\r\n<h2>Alford’s claim to fame</h2>\r\nWith many claims to fame. The poet, <a href=\"http://humphrysfamilytree.com/Murray/poet.html\">Charles Murray</a>, was born in Alford in 1864 and a bloody Civil War battle in 1645 bears our name.\r\n\r\nOn a lighter note, the world famous <a href=\"http://www.aberdeen-angus.co.uk/the-breed/\">Aberdeen Angus cattle breed </a>originated from this area in the 19th century and no-one can fail to spot the life-sized bronze statue of Jeremy-Eric, a champion Aberdeen Angus bull, at the entrance to the town.\r\n\r\n</div>','Welcome to Alford','','publish','closed','closed','','welcome-to-alford','','','2017-08-09 13:21:57','2017-08-09 13:21:57','',0,'http://alford.org.uk/?page_id=7',0,'page','',0),(9,1,'2017-08-09 12:54:36','2017-08-09 12:54:36','','welcome to alford','','inherit','closed','closed','','7-revision-v1','','','2017-08-09 12:54:36','2017-08-09 12:54:36','',7,'http://alford.org.uk/7-revision-v1',0,'revision','',0),(10,1,'2017-08-09 12:54:57','2017-08-09 12:54:57','<div class=\"entry-content\">\r\n\r\nAlford’s business community is thriving, and without all of their customers they wouldn’t be as successful as they are now!\r\n<h2>Local businesses of Alford</h2>\r\n<h3>Doctors</h3>\r\n<ul>\r\n <li><a href=\"http://www.alfordmedicalpractice.co.uk/\" target=\"_blank\" rel=\"noopener\">Alford Medical Practice</a>, Gordon Road, ALFORD, (019755) 62253</li>\r\n</ul>\r\n<h3>Furniture Retailers</h3>\r\n<ul>\r\n <li><a href=\"http://gordonsofalford.co.uk/departments/1750946\" target=\"_blank\" rel=\"noopener\">James A Gordon & Sons</a>, 87 Main Street, ALFORD, (019755) 62326</li>\r\n</ul>\r\n<h3>Garages</h3>\r\n<ul>\r\n <li><a href=\"http://www.wrmurrayalford.co.uk/\" target=\"_blank\" rel=\"noopener\">W & R Murray Ltd,</a> Main Street, ALFORD, (019755) 62491</li>\r\n <li><a href=\"http://mot-testers.co.uk/garages/view/14475\" target=\"_blank\" rel=\"noopener\">Haughton Garage</a>, Montgarrie Road, ALFORD, (019755) 62331</li>\r\n</ul>\r\n<h3>Garden Supplies</h3>\r\n<ul>\r\n <li>K & A Anderson, Lonenwell Garage, ALFORD, (019755) 62215</li>\r\n</ul>\r\n<h3>Gas Supplies</h3>\r\n<ul>\r\n <li>Donside Heating Supplies Ltd,Donside Road, ALFORD</li>\r\n <li>K & A Anderson, Lonenwell Garage, ALFORD, (019755) 62215</li>\r\n <li>James A Gordon & Sons, 87 Main Street, ALFORD, (019755) 62326</li>\r\n</ul>\r\n<h3>General Stores</h3>\r\n<ul>\r\n <li>Co-op, Donside Road, ALFORD</li>\r\n</ul>\r\n<h3>Hair Stylists & Barbers</h3>\r\n<ul>\r\n <li>Hair and Sports Centre, Main Street, ALFORD, (019755) 62118</li>\r\n</ul>\r\n<h3>Hotels/Inns</h3>\r\n<ul>\r\n <li>Haughton Arms Hotel, Main Street, ALFORD, (019755) 62026</li>\r\n <li>Alford’s Newsagents, Main Street, ALFORD, (019755) 62233</li>\r\n</ul>\r\n<h3>Post Office</h3>\r\n<ul>\r\n <li>Alford Post Office, Main Street, ALFORD, (019755) 62201</li>\r\n</ul>\r\n<h3>Radio, TV & Electrical</h3>\r\n<ul>\r\n <li>W & R Murray Ltd, Main Street, ALFORD, (019755) 62366</li>\r\n <li><a href=\"https://www.electroscout.org/company-rh-petrie-in-alford-22494\" target=\"_blank\" rel=\"noopener\">R H Petrie</a>, 72 Main Street, ALFORD, (019755) 62972</li>\r\n</ul>\r\n<h3>Restaurants/Bars</h3>\r\n<ul>\r\n <li><a href=\"http://www.haughtonarmshotel.co.uk/\" target=\"_blank\" rel=\"noopener\">Haughton Arms Hotel</a>, Main Street, ALFORD, (019755) 62026</li>\r\n <li>The Alford Bistro & Coffee Shop, 40 Main Street, ALFORD, (019755) 63154</li>\r\n</ul>\r\n<h3>Veterinary Surgeons</h3>\r\n<ul>\r\n <li><a href=\"http://www.morvenvets.co.uk/\" target=\"_blank\" rel=\"noopener\">Morven Veterinary Group</a>, Mart Road, Alford, (019755) 62339</li>\r\n</ul>\r\n</div>','The thriving business community of Alford','','publish','closed','closed','','thriving-business-community-alford','','','2017-08-09 13:05:15','2017-08-09 13:05:15','',0,'http://alford.org.uk/?page_id=10',0,'page','',0),(11,1,'2017-08-09 12:54:57','2017-08-09 12:54:57','','Community','','publish','closed','closed','','11','','','2017-08-09 13:14:50','2017-08-09 13:14:50','',0,'http://alford.org.uk/11',2,'nav_menu_item','',0),(12,1,'2017-08-09 12:54:57','2017-08-09 12:54:57','','the thriving business community of alford','','inherit','closed','closed','','10-revision-v1','','','2017-08-09 12:54:57','2017-08-09 12:54:57','',10,'http://alford.org.uk/10-revision-v1',0,'revision','',0),(13,1,'2017-08-09 12:55:12','2017-08-09 12:55:12','<div class=\"entry-content\">\r\n<h1>What’s your business like in Alford?</h1>\r\nThere are hundreds of <a href=\"http://alford.org.uk/the-thriving-business-community-of-alford\">successful businesses in Alford</a>. Having a strategic approach to forming community partnerships can be difficult, but with this guide you should have no problems at all.\r\n\r\nIf you are a community organisation looking for <a href=\"https://www.gov.uk/business-support-helpline\" target=\"_blank\" rel=\"noopener\">business support</a>, how do you decide which ones to approach? Choosing one that operates locally will be more beneficial.\r\n<h2>A strategic approach is the most successful</h2>\r\nThinking through the following types of issues, and coming up with a strategic plan for who to approach and what to ask for, will save you time in the long run:\r\n<h2>Decide what community business support you would benefit from</h2>\r\nThis may well involve you looking at the whole <a href=\"https://www.nibusinessinfo.co.uk/content/how-structure-your-organisation-deliver-best-results\" target=\"_blank\" rel=\"noopener\">structure of your organisation</a> and where you have weaknesses or needs, such as with business planning or marketing.\r\n\r\nAlternatively you may well have specific projects which would benefit from business involvement, such as sponsorship of a publication, or volunteers to help with a mentoring scheme.\r\n\r\nDon’t just think in terms of cash – in kind donations will often be just as valuable, if not more so. Think both long term and short term.\r\n<h2>Work out the potential benefits to business, yourselves & the support</h2>\r\n<a href=\"https://www.business-case-analysis.com/business-benefit.html\" target=\"_blank\" rel=\"noopener\">Business benefits</a> include improved corporate reputation amongst customers, staff, the local community and the wider public, improved employee morale, and the opportunity for staff to develop new skills or gain wider experience.\r\n<h2>Look for businesses who are more likely to be interested in the type of support you want, and the business benefits you have identified.</h2>\r\nThe more employees a business has the more likely they are to be willing to contribute the time of their staff during office hours. Companies that sell consumer products are more likely to be interested in boosting their public reputation and can boost the local economy.\r\n\r\nIf your organisation or project is locally focused, look for <a href=\"http://smallbusiness.chron.com/advantages-businesses-local-economy-3289.html\" target=\"_blank\" rel=\"noopener\">local smaller businesses</a> or branches of larger businesses based in your area.\r\n\r\n \r\n<h3>Look for any particular types of business which might have a special interest in your sector</h3>\r\nIs there a good fit between the type of people you are working with (<em>e.g. young people, the elderly</em>) or your <a href=\"https://www.gov.uk/guidance/how-to-write-charitable-purposes\" target=\"_blank\" rel=\"noopener\">charitable purpose</a> and how it is written (<em>e.g. homelessness, disability</em>) and an industry sector.\r\n\r\nFor example, soft drink manufacturers are more likely to want to be involved with young people’s causes, and building companies may be interested in homelessness issues.\r\n\r\n</div>','Forming community partnerships','','publish','closed','closed','','forming-community-partnerships','','','2017-08-09 13:11:16','2017-08-09 13:11:16','',0,'http://alford.org.uk/?page_id=13',0,'page','',0),(14,1,'2017-08-09 12:55:12','2017-08-09 12:55:12','','Partnerships','','publish','closed','closed','','14','','','2017-08-09 13:14:51','2017-08-09 13:14:51','',0,'http://alford.org.uk/14',3,'nav_menu_item','',0),(15,1,'2017-08-09 12:55:12','2017-08-09 12:55:12','','forming community partnerships','','inherit','closed','closed','','13-revision-v1','','','2017-08-09 12:55:12','2017-08-09 12:55:12','',13,'http://alford.org.uk/13-revision-v1',0,'revision','',0),(16,1,'2017-08-09 12:55:26','2017-08-09 12:55:26','<header class=\"entry-header\">\r\n<h1 class=\"title-post\">Get to know us</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nHere at Alford Business Community, we share all things business in the small Scottish town of Alford, Aberdeenshire.\r\n\r\nWe have developed packages of <strong>dedicated, high quality professional support for local businesses.</strong>\r\n\r\nWe also provide a <strong>committed, practical support from experienced business people and advisors.\r\n</strong>\r\n\r\nSpecialist services from “in-house” experts, external specialists and Associates; and a mix of business skills enhancement and quality training to meet the needs of each client’s business.\r\n\r\n<strong>Much of this valuable help and advice is available free to eligible businesses. </strong>\r\n\r\nUsing their valuable skills and knowledge Entrepreneur Action business advisors, mentors and specialists have <strong>helped over 650 new and established businesses </strong>start up, grow and prosper. Our goal is to help make it happen for new or existing businesses by providing the practical, high quality, enthusiastic support businesses need to succeed.\r\n\r\n<strong>What makes us different from other support organisations?</strong>\r\n\r\n<em>We are <strong>totally focused</strong> on providing an individual advise service on your business in Alford</em>\r\n<em> We<strong> only </strong>employ the services of experienced business people with a <strong>proven track record </strong>of successfully supporting the creation and growth of sustainable businesses.</em>\r\n<em> We provide <strong>practical help and advice </strong>in key areas such as business planning, finance, marketing, sales and help to access appropriate funding.</em>\r\n\r\n</div>','Get to know us','','publish','closed','closed','','get-to-know-us','','','2017-08-09 13:11:43','2017-08-09 13:11:43','',0,'http://alford.org.uk/?page_id=16',0,'page','',0),(17,1,'2017-08-09 12:55:26','2017-08-09 12:55:26','','About Us','','publish','closed','closed','','17','','','2017-08-09 13:14:51','2017-08-09 13:14:51','',0,'http://alford.org.uk/17',4,'nav_menu_item','',0),(18,1,'2017-08-09 12:55:26','2017-08-09 12:55:26','','get to know us','','inherit','closed','closed','','16-revision-v1','','','2017-08-09 12:55:26','2017-08-09 12:55:26','',16,'http://alford.org.uk/16-revision-v1',0,'revision','',0),(22,1,'2017-08-09 13:02:04','2017-08-09 13:02:04','','Welcome to Alford','','inherit','closed','closed','','7-revision-v1','','','2017-08-09 13:02:04','2017-08-09 13:02:04','',7,'http://alford.org.uk/7-revision-v1',0,'revision','',0),(23,1,'2017-08-09 13:02:48','2017-08-09 13:02:48','<div class=\"entry-content\">\r\n<h1>What’s your business like in Alford?</h1>\r\nThere are hundreds of <a href=\"http://alford.org.uk/the-thriving-business-community-of-alford\">successful businesses in Alford</a>. Having a strategic approach to forming community partnerships can be difficult, but with this guide you should have no problems at all.\r\n\r\nIf you are a community organisation looking for <a href=\"https://www.gov.uk/business-support-helpline\" target=\"_blank\" rel=\"noopener\">business support</a>, how do you decide which ones to approach? Choosing one that operates locally will be more beneficial.\r\n<h2>A strategic approach is the most successful</h2>\r\nThinking through the following types of issues, and coming up with a strategic plan for who to approach and what to ask for, will save you time in the long run:\r\n<h2>Decide what community business support you would benefit from</h2>\r\nThis may well involve you looking at the whole <a href=\"https://www.nibusinessinfo.co.uk/content/how-structure-your-organisation-deliver-best-results\" target=\"_blank\" rel=\"noopener\">structure of your organisation</a> and where you have weaknesses or needs, such as with business planning or marketing.\r\n\r\nAlternatively you may well have specific projects which would benefit from business involvement, such as sponsorship of a publication, or volunteers to help with a mentoring scheme.\r\n\r\nDon’t just think in terms of cash – in kind donations will often be just as valuable, if not more so. Think both long term and short term.\r\n<h2>Work out the potential benefits to business, yourselves & the support</h2>\r\n<a href=\"https://www.business-case-analysis.com/business-benefit.html\" target=\"_blank\" rel=\"noopener\">Business benefits</a> include improved corporate reputation amongst customers, staff, the local community and the wider public, improved employee morale, and the opportunity for staff to develop new skills or gain wider experience.\r\n<h2>Look for businesses who are more likely to be interested in the type of support you want, and the business benefits you have identified.</h2>\r\nThe more employees a business has the more likely they are to be willing to contribute the time of their staff during office hours. Companies that sell consumer products are more likely to be interested in boosting their public reputation and can boost the local economy.\r\n\r\nIf your organisation or project is locally focused, look for <a href=\"http://smallbusiness.chron.com/advantages-businesses-local-economy-3289.html\" target=\"_blank\" rel=\"noopener\">local smaller businesses</a> or branches of larger businesses based in your area.\r\n\r\n \r\n<h3>Look for any particular types of business which might have a special interest in your sector</h3>\r\nIs there a good fit between the type of people you are working with (<em>e.g. young people, the elderly</em>) or your <a href=\"https://www.gov.uk/guidance/how-to-write-charitable-purposes\" target=\"_blank\" rel=\"noopener\">charitable purpose</a> and how it is written (<em>e.g. homelessness, disability</em>) and an industry sector.\r\n\r\nFor example, soft drink manufacturers are more likely to want to be involved with young people’s causes, and building companies may be interested in homelessness issues.\r\n\r\n</div>','forming community partnerships','','inherit','closed','closed','','13-revision-v1','','','2017-08-09 13:02:48','2017-08-09 13:02:48','',13,'http://alford.org.uk/13-revision-v1',0,'revision','',0),(24,1,'2017-08-09 13:03:21','2017-08-09 13:03:21','<div class=\"entry-content\">\r\n<h1>Alford, the Scottish town full of history and, more in the modern day, full of successful and capable businesses.</h1>\r\nAlford is a small country town, happily nestled in the Vale of Alford, skirted by the picturesque River Don and surrounded by the hills of Bennachie and Coreen. Surprisingly, given the peace and tranquillity of this place, Aberdeen, is a mere 40 minutes drive away.\r\n\r\nWhatever your interests, you will be sure to find something here to keep you interested. From local businesses to the most successful that started here.\r\n<h2>Have your own tour of Alford’s history</h2>\r\nIn addition, if you have an interest in history, we have the <a href=\"http://www.glenbuchatheritage.com/contributors.asp?id=11\">Alford Heritage Centre</a> and <a href=\"http://www.gtm.org.uk/\">Grampian Transport Museum</a>, whilst natural history is well served in Haughton Country Park. For ancient history enthusiasts, there are many stone circles and Pictish symbol stones in the area.\r\n<div class=\"fluid-width-video-wrapper\"><iframe id=\"fitvid878199\" src=\"https://www.youtube.com/embed/43dEzgo2ins\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></div>\r\nIf you’re feeling energetic, why not follow the <a href=\"https://www.ldwa.org.uk/ldp/members/show_path.php?path_name=Gordon+Way\">Gordon Way</a> or take a shorter ramble along the peaks of Bennachie.\r\n<h2>Alford’s claim to fame</h2>\r\nWith many claims to fame. The poet, <a href=\"http://humphrysfamilytree.com/Murray/poet.html\">Charles Murray</a>, was born in Alford in 1864 and a bloody Civil War battle in 1645 bears our name.\r\n\r\nOn a lighter note, the world famous <a href=\"http://www.aberdeen-angus.co.uk/the-breed/\">Aberdeen Angus cattle breed </a>originated from this area in the 19th century and no-one can fail to spot the life-sized bronze statue of Jeremy-Eric, a champion Aberdeen Angus bull, at the entrance to the town.\r\n\r\n</div>','Welcome to Alford','','inherit','closed','closed','','7-revision-v1','','','2017-08-09 13:03:21','2017-08-09 13:03:21','',7,'http://alford.org.uk/7-revision-v1',0,'revision','',0),(26,1,'2017-08-09 13:04:59','2017-08-09 13:04:59','<div class=\"entry-content\">\r\n\r\nAlford’s business community is thriving, and without all of their customers they wouldn’t be as successful as they are now!\r\n<h2>Local businesses of Alford</h2>\r\n<h3>Doctors</h3>\r\n<ul>\r\n <li><a href=\"http://www.alfordmedicalpractice.co.uk/\" target=\"_blank\" rel=\"noopener\">Alford Medical Practice</a>, Gordon Road, ALFORD, (019755) 62253</li>\r\n</ul>\r\n<h3>Furniture Retailers</h3>\r\n<ul>\r\n <li><a href=\"http://gordonsofalford.co.uk/departments/1750946\" target=\"_blank\" rel=\"noopener\">James A Gordon & Sons</a>, 87 Main Street, ALFORD, (019755) 62326</li>\r\n</ul>\r\n<h3>Garages</h3>\r\n<ul>\r\n <li><a href=\"http://www.wrmurrayalford.co.uk/\" target=\"_blank\" rel=\"noopener\">W & R Murray Ltd,</a> Main Street, ALFORD, (019755) 62491</li>\r\n <li><a href=\"http://mot-testers.co.uk/garages/view/14475\" target=\"_blank\" rel=\"noopener\">Haughton Garage</a>, Montgarrie Road, ALFORD, (019755) 62331</li>\r\n</ul>\r\n<h3>Garden Supplies</h3>\r\n<ul>\r\n <li>K & A Anderson, Lonenwell Garage, ALFORD, (019755) 62215</li>\r\n</ul>\r\n<h3>Gas Supplies</h3>\r\n<ul>\r\n <li>Donside Heating Supplies Ltd,Donside Road, ALFORD</li>\r\n <li>K & A Anderson, Lonenwell Garage, ALFORD, (019755) 62215</li>\r\n <li>James A Gordon & Sons, 87 Main Street, ALFORD, (019755) 62326</li>\r\n</ul>\r\n<h3>General Stores</h3>\r\n<ul>\r\n <li>Co-op, Donside Road, ALFORD</li>\r\n</ul>\r\n<h3>Hair Stylists & Barbers</h3>\r\n<ul>\r\n <li>Hair and Sports Centre, Main Street, ALFORD, (019755) 62118</li>\r\n</ul>\r\n<h3>Hotels/Inns</h3>\r\n<ul>\r\n <li>Haughton Arms Hotel, Main Street, ALFORD, (019755) 62026</li>\r\n <li>Alford’s Newsagents, Main Street, ALFORD, (019755) 62233</li>\r\n</ul>\r\n<h3>Post Office</h3>\r\n<ul>\r\n <li>Alford Post Office, Main Street, ALFORD, (019755) 62201</li>\r\n</ul>\r\n<h3>Radio, TV & Electrical</h3>\r\n<ul>\r\n <li>W & R Murray Ltd, Main Street, ALFORD, (019755) 62366</li>\r\n <li><a href=\"https://www.electroscout.org/company-rh-petrie-in-alford-22494\" target=\"_blank\" rel=\"noopener\">R H Petrie</a>, 72 Main Street, ALFORD, (019755) 62972</li>\r\n</ul>\r\n<h3>Restaurants/Bars</h3>\r\n<ul>\r\n <li><a href=\"http://www.haughtonarmshotel.co.uk/\" target=\"_blank\" rel=\"noopener\">Haughton Arms Hotel</a>, Main Street, ALFORD, (019755) 62026</li>\r\n <li>The Alford Bistro & Coffee Shop, 40 Main Street, ALFORD, (019755) 63154</li>\r\n</ul>\r\n<h3>Veterinary Surgeons</h3>\r\n<ul>\r\n <li><a href=\"http://www.morvenvets.co.uk/\" target=\"_blank\" rel=\"noopener\">Morven Veterinary Group</a>, Mart Road, Alford, (019755) 62339</li>\r\n</ul>\r\n</div>','the thriving business community of alford','','inherit','closed','closed','','10-revision-v1','','','2017-08-09 13:04:59','2017-08-09 13:04:59','',10,'http://alford.org.uk/10-revision-v1',0,'revision','',0),(27,1,'2017-08-09 13:05:15','2017-08-09 13:05:15','<div class=\"entry-content\">\r\n\r\nAlford’s business community is thriving, and without all of their customers they wouldn’t be as successful as they are now!\r\n<h2>Local businesses of Alford</h2>\r\n<h3>Doctors</h3>\r\n<ul>\r\n <li><a href=\"http://www.alfordmedicalpractice.co.uk/\" target=\"_blank\" rel=\"noopener\">Alford Medical Practice</a>, Gordon Road, ALFORD, (019755) 62253</li>\r\n</ul>\r\n<h3>Furniture Retailers</h3>\r\n<ul>\r\n <li><a href=\"http://gordonsofalford.co.uk/departments/1750946\" target=\"_blank\" rel=\"noopener\">James A Gordon & Sons</a>, 87 Main Street, ALFORD, (019755) 62326</li>\r\n</ul>\r\n<h3>Garages</h3>\r\n<ul>\r\n <li><a href=\"http://www.wrmurrayalford.co.uk/\" target=\"_blank\" rel=\"noopener\">W & R Murray Ltd,</a> Main Street, ALFORD, (019755) 62491</li>\r\n <li><a href=\"http://mot-testers.co.uk/garages/view/14475\" target=\"_blank\" rel=\"noopener\">Haughton Garage</a>, Montgarrie Road, ALFORD, (019755) 62331</li>\r\n</ul>\r\n<h3>Garden Supplies</h3>\r\n<ul>\r\n <li>K & A Anderson, Lonenwell Garage, ALFORD, (019755) 62215</li>\r\n</ul>\r\n<h3>Gas Supplies</h3>\r\n<ul>\r\n <li>Donside Heating Supplies Ltd,Donside Road, ALFORD</li>\r\n <li>K & A Anderson, Lonenwell Garage, ALFORD, (019755) 62215</li>\r\n <li>James A Gordon & Sons, 87 Main Street, ALFORD, (019755) 62326</li>\r\n</ul>\r\n<h3>General Stores</h3>\r\n<ul>\r\n <li>Co-op, Donside Road, ALFORD</li>\r\n</ul>\r\n<h3>Hair Stylists & Barbers</h3>\r\n<ul>\r\n <li>Hair and Sports Centre, Main Street, ALFORD, (019755) 62118</li>\r\n</ul>\r\n<h3>Hotels/Inns</h3>\r\n<ul>\r\n <li>Haughton Arms Hotel, Main Street, ALFORD, (019755) 62026</li>\r\n <li>Alford’s Newsagents, Main Street, ALFORD, (019755) 62233</li>\r\n</ul>\r\n<h3>Post Office</h3>\r\n<ul>\r\n <li>Alford Post Office, Main Street, ALFORD, (019755) 62201</li>\r\n</ul>\r\n<h3>Radio, TV & Electrical</h3>\r\n<ul>\r\n <li>W & R Murray Ltd, Main Street, ALFORD, (019755) 62366</li>\r\n <li><a href=\"https://www.electroscout.org/company-rh-petrie-in-alford-22494\" target=\"_blank\" rel=\"noopener\">R H Petrie</a>, 72 Main Street, ALFORD, (019755) 62972</li>\r\n</ul>\r\n<h3>Restaurants/Bars</h3>\r\n<ul>\r\n <li><a href=\"http://www.haughtonarmshotel.co.uk/\" target=\"_blank\" rel=\"noopener\">Haughton Arms Hotel</a>, Main Street, ALFORD, (019755) 62026</li>\r\n <li>The Alford Bistro & Coffee Shop, 40 Main Street, ALFORD, (019755) 63154</li>\r\n</ul>\r\n<h3>Veterinary Surgeons</h3>\r\n<ul>\r\n <li><a href=\"http://www.morvenvets.co.uk/\" target=\"_blank\" rel=\"noopener\">Morven Veterinary Group</a>, Mart Road, Alford, (019755) 62339</li>\r\n</ul>\r\n</div>','The thriving business community of Alford','','inherit','closed','closed','','10-revision-v1','','','2017-08-09 13:05:15','2017-08-09 13:05:15','',10,'http://alford.org.uk/10-revision-v1',0,'revision','',0),(28,1,'2017-08-09 13:06:08','2017-08-09 13:06:08','<div class=\"entry-content\">\r\n<h1>Mentoring is a highly effective means of assisting with the development and launch of a new business</h1>\r\nMentors are most successful when they have all run their own successful businesses and/or operated at director level and so know exactly what is needed to make things happen. They work closely with clients, to help turn a clients <a href=\"https://www.mentorcity.com/en/what-does-a-mentor-do\" target=\"_blank\" rel=\"noopener\">ideas into a real business</a> and to assist them with any future plans.\r\n\r\nWith all this advice, you too can become a <a href=\"http://alford.org.uk/the-thriving-business-community-of-alford\">successful business in Alford</a>.\r\n\r\nIn addition to ensuring that the local business owners of Alford have a sound <a href=\"https://www.entrepreneur.com/article/247574\" target=\"_blank\" rel=\"noopener\">business plan</a>, creating a list of key objectives for the new business and contribute to ensuring that these objectives are achieved.\r\n<h2>Business experience</h2>\r\nHaving a mentor with a successful track record of both running a growth business and providing support for new and growing businesses. Mentors have been there before. They understand the issues you are facing and can help you overcome the challenges of starting a new business.\r\n<h2><a href=\"http://www.dummies.com/business/business-strategy/strategic-planning-overview/\" target=\"_blank\" rel=\"noopener\">A Strategic Overview</a></h2>\r\nKeeping a bigger picture in mind of what you want your successes to be and make sure you can see the wood for the trees. They can also help you plan for the future.\r\n<h2>Practical support</h2>\r\nHaving the ability to proactively take part in your plans and working with them provide practical support for your business, whether it is your business plan, building your team, or finding new customers. It is also vital to produce <a href=\"http://alford.org.uk/forming-community-partnerships\">community partnerships,</a> this makes it easier to grow your business locally.\r\n<h2>A Devil’s Advocate</h2>\r\nA mentor will not tell you how to run your business but they will make sure that you ask yourself the right questions and have considered all aspects of the situation.\r\n<h2>Ongoing guidance</h2>\r\nYour mentor stays with you, understands your business and your objectives and helps you develop and grow. They also offer future advice if you find yourself struggling.\r\n\r\n</div>','Providing business support for local & new starters','','publish','closed','closed','','providing-business-support','','','2017-08-09 13:06:57','2017-08-09 13:06:57','',0,'http://alford.org.uk/?page_id=28',0,'page','',0),(29,1,'2017-08-09 13:06:08','2017-08-09 13:06:08','','Support','','publish','closed','closed','','29','','','2017-08-09 13:14:51','2017-08-09 13:14:51','',0,'http://alford.org.uk/29',5,'nav_menu_item','',0),(30,1,'2017-08-09 13:06:08','2017-08-09 13:06:08','<div class=\"entry-content\">\r\n<h1>Mentoring is a highly effective means of assisting with the development and launch of a new business</h1>\r\nMentors are most successful when they have all run their own successful businesses and/or operated at director level and so know exactly what is needed to make things happen. They work closely with clients, to help turn a clients <a href=\"https://www.mentorcity.com/en/what-does-a-mentor-do\" target=\"_blank\" rel=\"noopener\">ideas into a real business</a> and to assist them with any future plans.\r\n\r\nWith all this advice, you too can become a <a href=\"http://alford.org.uk/the-thriving-business-community-of-alford\">successful business in Alford</a>.\r\n\r\nIn addition to ensuring that the local business owners of Alford have a sound <a href=\"https://www.entrepreneur.com/article/247574\" target=\"_blank\" rel=\"noopener\">business plan</a>, creating a list of key objectives for the new business and contribute to ensuring that these objectives are achieved.\r\n<h2>Business experience</h2>\r\nHaving a mentor with a successful track record of both running a growth business and providing support for new and growing businesses. Mentors have been there before. They understand the issues you are facing and can help you overcome the challenges of starting a new business.\r\n<h2><a href=\"http://www.dummies.com/business/business-strategy/strategic-planning-overview/\" target=\"_blank\" rel=\"noopener\">A Strategic Overview</a></h2>\r\nKeeping a bigger picture in mind of what you want your successes to be and make sure you can see the wood for the trees. They can also help you plan for the future.\r\n<h2>Practical support</h2>\r\nHaving the ability to proactively take part in your plans and working with them provide practical support for your business, whether it is your business plan, building your team, or finding new customers. It is also vital to produce <a href=\"http://alford.org.uk/forming-community-partnerships\">community partnerships,</a> this makes it easier to grow your business locally.\r\n<h2>A Devil’s Advocate</h2>\r\nA mentor will not tell you how to run your business but they will make sure that you ask yourself the right questions and have considered all aspects of the situation.\r\n<h2>Ongoing guidance</h2>\r\nYour mentor stays with you, understands your business and your objectives and helps you develop and grow. They also offer future advice if you find yourself struggling.\r\n\r\n</div>','Providing business support for local & new starters','','inherit','closed','closed','','28-revision-v1','','','2017-08-09 13:06:08','2017-08-09 13:06:08','',28,'http://alford.org.uk/28-revision-v1',0,'revision','',0),(31,1,'2017-08-09 13:07:38','2017-08-09 13:07:38','If you live in or around Alford you will know about our thriving <a href=\"http://alford.org.uk/the-thriving-business-community-of-alford\" target=\"_blank\" rel=\"noopener\">business community</a>. If you’re looking for any kind of support for your business then please <a href=\"http://alford.org.uk/providing-business-support\" target=\"_blank\" rel=\"noopener\">read here for more</a> information.\r\n\r\nFollowing on from our popular post about<a href=\"http://alford.org.uk/managing-local-business-successfully\" target=\"_blank\" rel=\"noopener\"> managing your local business</a> successfully, we have decided to write about business advertising.\r\n<h3>Advertising Methods</h3>\r\nThe most common methods of advertising in the past have been radio and local newspaper ads.\r\n\r\nWhile these are still great ways to get the message out about your brand or business, the advances in technology such as smartphones and tablets means that fewer people are listening to local radio stations or reading the local newspaper than ever before.\r\n\r\nPeople aged 18 – 35 are relying on their devices to listen to music and read the news so any adverts in local radio and newspapers are less likely to be seen by this demographic.\r\n<h3>Outdoor Advertising in Edinburgh</h3>\r\n<a href=\"http://www.exterionmedia.com/uk/our-audiences/regional-advertising/advertising-in-scotland/advertising-in-aberdeen\"><img class=\"alignnone wp-image-80 size-full\" src=\"http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT.jpg\" sizes=\"(max-width: 940px) 100vw, 940px\" srcset=\"http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT.jpg 940w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-300x145.jpg 300w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-768x371.jpg 768w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-830x401.jpg 830w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-230x111.jpg 230w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-350x169.jpg 350w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-480x232.jpg 480w\" alt=\"\" width=\"940\" height=\"454\" /></a>\r\n\r\nWe have been looking at more innovative approaches to advertising which can reach maximum numbers of people and especially that crucial 18 – 35 age range.\r\n\r\nStudents and young professionals are the most likely to be spending their disposable income and also to be spending time away from their home either commuting to work or out socially.\r\n\r\nEmploying an advertising strategy that capitalises on this is the key to accessing this consumer demographic.\r\n<h4><strong>Outdoor advertising has been used with great success in Edinburgh with advertising campaigns being displayed on buses.</strong></h4>\r\n<h5><strong>Bus advertising in Edinburgh takes advantage of the vast network of buses covering Edinburgh city centre and the surrounding suburbs. <a href=\"http://www.exterionmedia.com/uk/our-audiences/regional-advertising/advertising-in-scotland/advertising-in-edinburgh\" target=\"_blank\" rel=\"noopener\">Click here to read more</a>.\r\n</strong></h5>\r\n<h5><strong>The exposure for these adverts is of an epic scale. Over half a million people reside in Edinburgh and the majority of these will see at least one bus throughout their, more likely several.</strong></h5>\r\n<h5><strong>We think that bus advertising is an excellent way to reach all demographics but especially those under 40 who are most likely to be out during the day and night.</strong></h5>\r\n<blockquote>Have you tried outdoor advertising? <a href=\"http://alford.org.uk/get-in-contact\" target=\"_blank\" rel=\"noopener\">Send us your success stories!</a>\r\n\r\nLooking for things to do in Edinburgh? <a href=\"http://itchyedinburgh.co.uk/review\" target=\"_blank\" rel=\"noopener\">Click here</a> to see what’s going on in the city.</blockquote>','Advertising Your Business In Scotland','','publish','closed','closed','','advertising-business-scotland','','','2017-08-09 13:07:38','2017-08-09 13:07:38','',0,'http://alford.org.uk/?page_id=31',0,'page','',0),(32,1,'2017-08-09 13:07:38','2017-08-09 13:07:38','','Advertising','','publish','closed','closed','','32','','','2017-08-09 13:14:51','2017-08-09 13:14:51','',0,'http://alford.org.uk/32',6,'nav_menu_item','',0),(33,1,'2017-08-09 13:07:38','2017-08-09 13:07:38','If you live in or around Alford you will know about our thriving <a href=\"http://alford.org.uk/the-thriving-business-community-of-alford\" target=\"_blank\" rel=\"noopener\">business community</a>. If you’re looking for any kind of support for your business then please <a href=\"http://alford.org.uk/providing-business-support\" target=\"_blank\" rel=\"noopener\">read here for more</a> information.\r\n\r\nFollowing on from our popular post about<a href=\"http://alford.org.uk/managing-local-business-successfully\" target=\"_blank\" rel=\"noopener\"> managing your local business</a> successfully, we have decided to write about business advertising.\r\n<h3>Advertising Methods</h3>\r\nThe most common methods of advertising in the past have been radio and local newspaper ads.\r\n\r\nWhile these are still great ways to get the message out about your brand or business, the advances in technology such as smartphones and tablets means that fewer people are listening to local radio stations or reading the local newspaper than ever before.\r\n\r\nPeople aged 18 – 35 are relying on their devices to listen to music and read the news so any adverts in local radio and newspapers are less likely to be seen by this demographic.\r\n<h3>Outdoor Advertising in Edinburgh</h3>\r\n<a href=\"http://www.exterionmedia.com/uk/our-audiences/regional-advertising/advertising-in-scotland/advertising-in-aberdeen\"><img class=\"alignnone wp-image-80 size-full\" src=\"http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT.jpg\" sizes=\"(max-width: 940px) 100vw, 940px\" srcset=\"http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT.jpg 940w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-300x145.jpg 300w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-768x371.jpg 768w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-830x401.jpg 830w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-230x111.jpg 230w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-350x169.jpg 350w, http://alford.org.uk/wp-content/uploads/2017/07/Aberdeen_RT-480x232.jpg 480w\" alt=\"\" width=\"940\" height=\"454\" /></a>\r\n\r\nWe have been looking at more innovative approaches to advertising which can reach maximum numbers of people and especially that crucial 18 – 35 age range.\r\n\r\nStudents and young professionals are the most likely to be spending their disposable income and also to be spending time away from their home either commuting to work or out socially.\r\n\r\nEmploying an advertising strategy that capitalises on this is the key to accessing this consumer demographic.\r\n<h4><strong>Outdoor advertising has been used with great success in Edinburgh with advertising campaigns being displayed on buses.</strong></h4>\r\n<h5><strong>Bus advertising in Edinburgh takes advantage of the vast network of buses covering Edinburgh city centre and the surrounding suburbs. <a href=\"http://www.exterionmedia.com/uk/our-audiences/regional-advertising/advertising-in-scotland/advertising-in-edinburgh\" target=\"_blank\" rel=\"noopener\">Click here to read more</a>.\r\n</strong></h5>\r\n<h5><strong>The exposure for these adverts is of an epic scale. Over half a million people reside in Edinburgh and the majority of these will see at least one bus throughout their, more likely several.</strong></h5>\r\n<h5><strong>We think that bus advertising is an excellent way to reach all demographics but especially those under 40 who are most likely to be out during the day and night.</strong></h5>\r\n<blockquote>Have you tried outdoor advertising? <a href=\"http://alford.org.uk/get-in-contact\" target=\"_blank\" rel=\"noopener\">Send us your success stories!</a>\r\n\r\nLooking for things to do in Edinburgh? <a href=\"http://itchyedinburgh.co.uk/review\" target=\"_blank\" rel=\"noopener\">Click here</a> to see what’s going on in the city.</blockquote>','Advertising Your Business In Scotland','','inherit','closed','closed','','31-revision-v1','','','2017-08-09 13:07:38','2017-08-09 13:07:38','',31,'http://alford.org.uk/31-revision-v1',0,'revision','',0),(34,1,'2017-08-09 13:10:00','2017-08-09 13:10:00','[contact-form-7 id=\"5\" title=\"Contact form 1\"]','Contact Us','','publish','closed','closed','','get-in-contact','','','2017-08-09 13:10:16','2017-08-09 13:10:16','',0,'http://alford.org.uk/?page_id=34',0,'page','',0),(35,1,'2017-08-09 13:10:00','2017-08-09 13:10:00',' ','','','publish','closed','closed','','35','','','2017-08-09 13:14:51','2017-08-09 13:14:51','',0,'http://alford.org.uk/35',8,'nav_menu_item','',0),(36,1,'2017-08-09 13:10:00','2017-08-09 13:10:00','[contact-form-7 id=\"5\" title=\"Contact form 1\"]','Contact Us','','inherit','closed','closed','','34-revision-v1','','','2017-08-09 13:10:00','2017-08-09 13:10:00','',34,'http://alford.org.uk/34-revision-v1',0,'revision','',0),(37,1,'2017-08-09 13:10:48','2017-08-09 13:10:48','<header class=\"entry-header\">\r\n<h1 class=\"title-post\">Get to know us</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nHere at Alford Business Community, we share all things business in the small Scottish town of Alford, Aberdeenshire.\r\n\r\nWe have developed packages of <strong>dedicated, high quality professional support for local businesses.</strong>\r\n\r\nWe also provide a <strong>committed, practical support from experienced business people and advisors.\r\n</strong>\r\n\r\nSpecialist services from “in-house” experts, external specialists and Associates; and a mix of business skills enhancement and quality training to meet the needs of each client’s business.\r\n\r\n<strong>Much of this valuable help and advice is available free to eligible businesses. </strong>\r\n\r\nUsing their valuable skills and knowledge Entrepreneur Action business advisors, mentors and specialists have <strong>helped over 650 new and established businesses </strong>start up, grow and prosper. Our goal is to help make it happen for new or existing businesses by providing the practical, high quality, enthusiastic support businesses need to succeed.\r\n\r\n<strong>What makes us different from other support organisations?</strong>\r\n\r\n<em>We are <strong>totally focused</strong> on providing an individual advise service on your business in Alford</em>\r\n<em> We<strong> only </strong>employ the services of experienced business people with a <strong>proven track record </strong>of successfully supporting the creation and growth of sustainable businesses.</em>\r\n<em> We provide <strong>practical help and advice </strong>in key areas such as business planning, finance, marketing, sales and help to access appropriate funding.</em>\r\n\r\n</div>','get to know us','','inherit','closed','closed','','16-revision-v1','','','2017-08-09 13:10:48','2017-08-09 13:10:48','',16,'http://alford.org.uk/16-revision-v1',0,'revision','',0),(38,1,'2017-08-09 13:11:16','2017-08-09 13:11:16','<div class=\"entry-content\">\r\n<h1>What’s your business like in Alford?</h1>\r\nThere are hundreds of <a href=\"http://alford.org.uk/the-thriving-business-community-of-alford\">successful businesses in Alford</a>. Having a strategic approach to forming community partnerships can be difficult, but with this guide you should have no problems at all.\r\n\r\nIf you are a community organisation looking for <a href=\"https://www.gov.uk/business-support-helpline\" target=\"_blank\" rel=\"noopener\">business support</a>, how do you decide which ones to approach? Choosing one that operates locally will be more beneficial.\r\n<h2>A strategic approach is the most successful</h2>\r\nThinking through the following types of issues, and coming up with a strategic plan for who to approach and what to ask for, will save you time in the long run:\r\n<h2>Decide what community business support you would benefit from</h2>\r\nThis may well involve you looking at the whole <a href=\"https://www.nibusinessinfo.co.uk/content/how-structure-your-organisation-deliver-best-results\" target=\"_blank\" rel=\"noopener\">structure of your organisation</a> and where you have weaknesses or needs, such as with business planning or marketing.\r\n\r\nAlternatively you may well have specific projects which would benefit from business involvement, such as sponsorship of a publication, or volunteers to help with a mentoring scheme.\r\n\r\nDon’t just think in terms of cash – in kind donations will often be just as valuable, if not more so. Think both long term and short term.\r\n<h2>Work out the potential benefits to business, yourselves & the support</h2>\r\n<a href=\"https://www.business-case-analysis.com/business-benefit.html\" target=\"_blank\" rel=\"noopener\">Business benefits</a> include improved corporate reputation amongst customers, staff, the local community and the wider public, improved employee morale, and the opportunity for staff to develop new skills or gain wider experience.\r\n<h2>Look for businesses who are more likely to be interested in the type of support you want, and the business benefits you have identified.</h2>\r\nThe more employees a business has the more likely they are to be willing to contribute the time of their staff during office hours. Companies that sell consumer products are more likely to be interested in boosting their public reputation and can boost the local economy.\r\n\r\nIf your organisation or project is locally focused, look for <a href=\"http://smallbusiness.chron.com/advantages-businesses-local-economy-3289.html\" target=\"_blank\" rel=\"noopener\">local smaller businesses</a> or branches of larger businesses based in your area.\r\n\r\n \r\n<h3>Look for any particular types of business which might have a special interest in your sector</h3>\r\nIs there a good fit between the type of people you are working with (<em>e.g. young people, the elderly</em>) or your <a href=\"https://www.gov.uk/guidance/how-to-write-charitable-purposes\" target=\"_blank\" rel=\"noopener\">charitable purpose</a> and how it is written (<em>e.g. homelessness, disability</em>) and an industry sector.\r\n\r\nFor example, soft drink manufacturers are more likely to want to be involved with young people’s causes, and building companies may be interested in homelessness issues.\r\n\r\n</div>','Forming community partnerships','','inherit','closed','closed','','13-revision-v1','','','2017-08-09 13:11:16','2017-08-09 13:11:16','',13,'http://alford.org.uk/13-revision-v1',0,'revision','',0),(39,1,'2017-08-09 13:11:26','2017-08-09 13:11:26','','Managing your local business successfully','','publish','closed','closed','','managing-local-business-successfully','','','2017-08-09 13:11:26','2017-08-09 13:11:26','',0,'http://alford.org.uk/?page_id=39',0,'page','',0),(40,1,'2017-08-09 13:11:26','2017-08-09 13:11:26','','Success','','publish','closed','closed','','40','','','2017-08-09 13:14:52','2017-08-09 13:14:52','',0,'http://alford.org.uk/40',7,'nav_menu_item','',0),(41,1,'2017-08-09 13:11:26','2017-08-09 13:11:26','','Managing your local business successfully','','inherit','closed','closed','','39-revision-v1','','','2017-08-09 13:11:26','2017-08-09 13:11:26','',39,'http://alford.org.uk/39-revision-v1',0,'revision','',0),(42,1,'2017-08-09 13:11:43','2017-08-09 13:11:43','<header class=\"entry-header\">\r\n<h1 class=\"title-post\">Get to know us</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nHere at Alford Business Community, we share all things business in the small Scottish town of Alford, Aberdeenshire.\r\n\r\nWe have developed packages of <strong>dedicated, high quality professional support for local businesses.</strong>\r\n\r\nWe also provide a <strong>committed, practical support from experienced business people and advisors.\r\n</strong>\r\n\r\nSpecialist services from “in-house” experts, external specialists and Associates; and a mix of business skills enhancement and quality training to meet the needs of each client’s business.\r\n\r\n<strong>Much of this valuable help and advice is available free to eligible businesses. </strong>\r\n\r\nUsing their valuable skills and knowledge Entrepreneur Action business advisors, mentors and specialists have <strong>helped over 650 new and established businesses </strong>start up, grow and prosper. Our goal is to help make it happen for new or existing businesses by providing the practical, high quality, enthusiastic support businesses need to succeed.\r\n\r\n<strong>What makes us different from other support organisations?</strong>\r\n\r\n<em>We are <strong>totally focused</strong> on providing an individual advise service on your business in Alford</em>\r\n<em> We<strong> only </strong>employ the services of experienced business people with a <strong>proven track record </strong>of successfully supporting the creation and growth of sustainable businesses.</em>\r\n<em> We provide <strong>practical help and advice </strong>in key areas such as business planning, finance, marketing, sales and help to access appropriate funding.</em>\r\n\r\n</div>','Get to know us','','inherit','closed','closed','','16-revision-v1','','','2017-08-09 13:11:43','2017-08-09 13:11:43','',16,'http://alford.org.uk/16-revision-v1',0,'revision','',0),(46,1,'2017-08-09 13:16:04','2017-08-09 13:16:04','','bridge-192982_960_720','','inherit','open','closed','','bridge-192982_960_720','','','2017-08-09 13:16:04','2017-08-09 13:16:04','',0,'http://alford.org.uk/wp-content/uploads/2017/08/bridge-192982_960_720.jpg',0,'attachment','image/jpeg',0),(47,1,'2017-08-09 13:16:06','2017-08-09 13:16:06','','landscape-540116_960_720','','inherit','open','closed','','landscape-540116_960_720','','','2017-08-09 13:16:06','2017-08-09 13:16:06','',0,'http://alford.org.uk/wp-content/uploads/2017/08/landscape-540116_960_720.jpg',0,'attachment','image/jpeg',0),(48,1,'2017-08-09 13:16:07','2017-08-09 13:16:07','','scotland-1761292_960_720','','inherit','open','closed','','scotland-1761292_960_720','','','2017-08-09 13:16:07','2017-08-09 13:16:07','',0,'http://alford.org.uk/wp-content/uploads/2017/08/scotland-1761292_960_720.jpg',0,'attachment','image/jpeg',0),(49,1,'2017-08-09 13:16:56','2017-08-09 13:16:56','<div class=\"entry-content\">\r\n<h3>Alford, the Scottish town full of history and, more in the modern day, full of successful and capable businesses.</h3>\r\nAlford is a small country town, happily nestled in the Vale of Alford, skirted by the picturesque River Don and surrounded by the hills of Bennachie and Coreen. Surprisingly, given the peace and tranquillity of this place, Aberdeen, is a mere 40 minutes drive away.\r\n\r\nWhatever your interests, you will be sure to find something here to keep you interested. From local businesses to the most successful that started here.\r\n<h2>Have your own tour of Alford’s history</h2>\r\nIn addition, if you have an interest in history, we have the <a href=\"http://www.glenbuchatheritage.com/contributors.asp?id=11\">Alford Heritage Centre</a> and <a href=\"http://www.gtm.org.uk/\">Grampian Transport Museum</a>, whilst natural history is well served in Haughton Country Park. For ancient history enthusiasts, there are many stone circles and Pictish symbol stones in the area.\r\n<div class=\"fluid-width-video-wrapper\"><iframe id=\"fitvid878199\" src=\"https://www.youtube.com/embed/43dEzgo2ins\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></div>\r\nIf you’re feeling energetic, why not follow the <a href=\"https://www.ldwa.org.uk/ldp/members/show_path.php?path_name=Gordon+Way\">Gordon Way</a> or take a shorter ramble along the peaks of Bennachie.\r\n<h2>Alford’s claim to fame</h2>\r\nWith many claims to fame. The poet, <a href=\"http://humphrysfamilytree.com/Murray/poet.html\">Charles Murray</a>, was born in Alford in 1864 and a bloody Civil War battle in 1645 bears our name.\r\n\r\nOn a lighter note, the world famous <a href=\"http://www.aberdeen-angus.co.uk/the-breed/\">Aberdeen Angus cattle breed </a>originated from this area in the 19th century and no-one can fail to spot the life-sized bronze statue of Jeremy-Eric, a champion Aberdeen Angus bull, at the entrance to the town.\r\n\r\n</div>','Welcome to Alford','','inherit','closed','closed','','7-revision-v1','','','2017-08-09 13:16:56','2017-08-09 13:16:56','',7,'http://alford.org.uk/7-revision-v1',0,'revision','',0),(53,1,'2017-08-09 13:21:36','2017-08-09 13:21:36','','lake','','inherit','open','closed','','lake','','','2017-08-09 13:21:36','2017-08-09 13:21:36','',7,'http://alford.org.uk/wp-content/uploads/2017/08/lake.jpg',0,'attachment','image/jpeg',0),(54,1,'2017-08-09 13:21:42','2017-08-09 13:21:42','<div class=\"entry-content\">\r\n<h3>Alford, the Scottish town full of history and, more in the modern day, full of successful and capable businesses.</h3>\r\nAlford is a small country town, happily nestled in the Vale of Alford, skirted by the picturesque River Don and surrounded by the hills of Bennachie and Coreen. Surprisingly, given the peace and tranquillity of this place, Aberdeen, is a mere 40 minutes drive away.\r\n\r\nWhatever your interests, you will be sure to find something here to keep you interested. From local businesses to the most successful that started here.\r\n<h2><img class=\"alignnone size-full wp-image-53\" src=\"http://alford.org.uk/wp-content/uploads/2017/08/lake.jpg\" alt=\"\" width=\"960\" height=\"720\" />Have your own tour of Alford’s history</h2>\r\nIn addition, if you have an interest in history, we have the <a href=\"http://www.glenbuchatheritage.com/contributors.asp?id=11\">Alford Heritage Centre</a> and <a href=\"http://www.gtm.org.uk/\">Grampian Transport Museum</a>, whilst natural history is well served in Haughton Country Park. For ancient history enthusiasts, there are many stone circles and Pictish symbol stones in the area.\r\n\r\nIf you’re feeling energetic, why not follow the <a href=\"https://www.ldwa.org.uk/ldp/members/show_path.php?path_name=Gordon+Way\">Gordon Way</a> or take a shorter ramble along the peaks of Bennachie.\r\n<h2>Alford’s claim to fame</h2>\r\nWith many claims to fame. The poet, <a href=\"http://humphrysfamilytree.com/Murray/poet.html\">Charles Murray</a>, was born in Alford in 1864 and a bloody Civil War battle in 1645 bears our name.\r\n\r\nOn a lighter note, the world famous <a href=\"http://www.aberdeen-angus.co.uk/the-breed/\">Aberdeen Angus cattle breed </a>originated from this area in the 19th century and no-one can fail to spot the life-sized bronze statue of Jeremy-Eric, a champion Aberdeen Angus bull, at the entrance to the town.\r\n\r\n</div>','Welcome to Alford','','inherit','closed','closed','','7-revision-v1','','','2017-08-09 13:21:42','2017-08-09 13:21:42','',7,'http://alford.org.uk/7-revision-v1',0,'revision','',0),(55,1,'2017-08-09 13:21:57','2017-08-09 13:21:57','<div class=\"entry-content\">\r\n<h3>Alford, the Scottish town full of history and, more in the modern day, full of successful and capable businesses.</h3>\r\nAlford is a small country town, happily nestled in the Vale of Alford, skirted by the picturesque River Don and surrounded by the hills of Bennachie and Coreen. Surprisingly, given the peace and tranquillity of this place, Aberdeen, is a mere 40 minutes drive away.\r\n\r\nWhatever your interests, you will be sure to find something here to keep you interested. From local businesses to the most successful that started here.\r\n<h2><img class=\"alignnone size-full wp-image-53\" src=\"http://alford.org.uk/wp-content/uploads/2017/08/lake.jpg\" alt=\"\" width=\"960\" height=\"720\" /></h2>\r\n<h2>Have your own tour of Alford’s history</h2>\r\nIn addition, if you have an interest in history, we have the <a href=\"http://www.glenbuchatheritage.com/contributors.asp?id=11\">Alford Heritage Centre</a> and <a href=\"http://www.gtm.org.uk/\">Grampian Transport Museum</a>, whilst natural history is well served in Haughton Country Park. For ancient history enthusiasts, there are many stone circles and Pictish symbol stones in the area.\r\n\r\nIf you’re feeling energetic, why not follow the <a href=\"https://www.ldwa.org.uk/ldp/members/show_path.php?path_name=Gordon+Way\">Gordon Way</a> or take a shorter ramble along the peaks of Bennachie.\r\n<h2>Alford’s claim to fame</h2>\r\nWith many claims to fame. The poet, <a href=\"http://humphrysfamilytree.com/Murray/poet.html\">Charles Murray</a>, was born in Alford in 1864 and a bloody Civil War battle in 1645 bears our name.\r\n\r\nOn a lighter note, the world famous <a href=\"http://www.aberdeen-angus.co.uk/the-breed/\">Aberdeen Angus cattle breed </a>originated from this area in the 19th century and no-one can fail to spot the life-sized bronze statue of Jeremy-Eric, a champion Aberdeen Angus bull, at the entrance to the town.\r\n\r\n</div>','Welcome to Alford','','inherit','closed','closed','','7-revision-v1','','','2017-08-09 13:21:57','2017-08-09 13:21:57','',7,'http://alford.org.uk/7-revision-v1',0,'revision','',0);
/*!40000 ALTER TABLE `sd_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_term_relationships`
--
DROP TABLE IF EXISTS `sd_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_term_relationships`
--
LOCK TABLES `sd_term_relationships` WRITE;
/*!40000 ALTER TABLE `sd_term_relationships` DISABLE KEYS */;
INSERT INTO `sd_term_relationships` VALUES (11,2,0),(14,2,0),(17,2,0),(29,2,0),(32,2,0),(35,2,0),(40,2,0);
/*!40000 ALTER TABLE `sd_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_term_taxonomy`
--
DROP TABLE IF EXISTS `sd_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_term_taxonomy`
--
LOCK TABLES `sd_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `sd_term_taxonomy` DISABLE KEYS */;
INSERT INTO `sd_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,7);
/*!40000 ALTER TABLE `sd_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_termmeta`
--
DROP TABLE IF EXISTS `sd_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_termmeta`
--
LOCK TABLES `sd_termmeta` WRITE;
/*!40000 ALTER TABLE `sd_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `sd_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_terms`
--
DROP TABLE IF EXISTS `sd_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_terms`
--
LOCK TABLES `sd_terms` WRITE;
/*!40000 ALTER TABLE `sd_terms` DISABLE KEYS */;
INSERT INTO `sd_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'top','top',0);
/*!40000 ALTER TABLE `sd_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_usermeta`
--
DROP TABLE IF EXISTS `sd_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_usermeta`
--
LOCK TABLES `sd_usermeta` WRITE;
/*!40000 ALTER TABLE `sd_usermeta` DISABLE KEYS */;
INSERT INTO `sd_usermeta` VALUES (1,1,'nickname','alford'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'locale',''),(11,1,'sd_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'sd_user_level','10'),(13,1,'dismissed_wp_pointers','vc_pointers_backend_editor'),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:2:{s:64:\"7d8ff7e377d3004257ee6f2b6c392e0f748a1e359e8ca25afeffc6066a5328e9\";a:4:{s:10:\"expiration\";i:1502455954;s:2:\"ip\";s:14:\"217.206.184.92\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36\";s:5:\"login\";i:1502283154;}s:64:\"0314ba00879635fbfe82f8b587bade684d9ecadbf1bc312b0bab259b2a30cd83\";a:4:{s:10:\"expiration\";i:1502456454;s:2:\"ip\";s:14:\"217.206.184.92\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0\";s:5:\"login\";i:1502283654;}}'),(16,1,'sd_dashboard_quick_press_last_post_id','3'),(17,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"217.206.184.0\";}'),(18,1,'sd_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";s:128:\"Since you are new to Yoast SEO you can configure the <a href=\"http://alford.org.uk/wp-admin/?page=wpseo_configurator\">plugin</a>\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:31:\"wpseo-dismiss-onboarding-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:1;a:2:{s:7:\"message\";s:549:\"To make sure all the links in your texts are counted, we need to analyze all your texts.\n All you have to do is press the following button and we\'ll go through all your texts for you.\n\n <button type=\"button\" id=\"noticeRunLinkIndex\" class=\"button\">Count links</button>\n\n The Text link counter feature provides insights in how many links are found in your text and how many links are referring to your text. This is very helpful when you are improving your <a href=\"https://yoa.st/15m?utm_content=5.2\" target=\"_blank\">internal linking</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:19:\"wpseo-reindex-links\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:2;a:2:{s:7:\"message\";s:163:\"Don\'t miss your crawl errors: <a href=\"http://alford.org.uk/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}'),(19,1,'_yoast_wpseo_profile_updated','1502283206'),(20,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(21,1,'metaboxhidden_nav-menus','a:9:{i:0;s:15:\"dw-menu-widgets\";i:1;s:22:\"add-post-type-services\";i:2;s:23:\"add-post-type-employees\";i:3;s:26:\"add-post-type-testimonials\";i:4;s:21:\"add-post-type-clients\";i:5;s:22:\"add-post-type-projects\";i:6;s:12:\"add-post_tag\";i:7;s:15:\"add-post_format\";i:8;s:19:\"dw-megamenu-setting\";}'),(22,1,'last_login_time','2017-08-09 13:00:54'),(23,1,'sd_user-settings','libraryContent=browse&editor=tinymce&imgsize=full'),(24,1,'sd_user-settings-time','1502284899'),(25,0,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(26,0,'wp_user_level','10');
/*!40000 ALTER TABLE `sd_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_users`
--
DROP TABLE IF EXISTS `sd_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_users`
--
LOCK TABLES `sd_users` WRITE;
/*!40000 ALTER TABLE `sd_users` DISABLE KEYS */;
INSERT INTO `sd_users` VALUES (1,'alford','$P$BQV8SQEXTf.8Kq8MuRUmnz8TDRRABP0','alford','bensykes@bensykes.co.uk','','2017-08-09 12:52:08','',0,'alford');
/*!40000 ALTER TABLE `sd_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_yoast_seo_links`
--
DROP TABLE IF EXISTS `sd_yoast_seo_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_yoast_seo_links` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) NOT NULL,
`post_id` bigint(20) unsigned NOT NULL,
`target_post_id` bigint(20) unsigned NOT NULL,
`type` varchar(8) NOT NULL,
PRIMARY KEY (`id`),
KEY `link_direction` (`post_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_yoast_seo_links`
--
LOCK TABLES `sd_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `sd_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `sd_yoast_seo_links` VALUES (11,'http://www.glenbuchatheritage.com/contributors.asp?id=11',7,0,'external'),(12,'http://www.gtm.org.uk/',7,0,'external'),(13,'https://www.ldwa.org.uk/ldp/members/show_path.php?path_name=Gordon+Way',7,0,'external'),(14,'http://humphrysfamilytree.com/Murray/poet.html',7,0,'external'),(15,'http://www.aberdeen-angus.co.uk/the-breed/',7,0,'external');
/*!40000 ALTER TABLE `sd_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sd_yoast_seo_meta`
--
DROP TABLE IF EXISTS `sd_yoast_seo_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sd_yoast_seo_meta` (
`object_id` bigint(20) unsigned NOT NULL,
`internal_link_count` int(10) unsigned DEFAULT NULL,
`incoming_link_count` int(10) unsigned DEFAULT NULL,
UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sd_yoast_seo_meta`
--
LOCK TABLES `sd_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `sd_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `sd_yoast_seo_meta` VALUES (7,0,NULL);
/*!40000 ALTER TABLE `sd_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) 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 NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-09-06 10:40:42','2021-09-06 10:40:42','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0),(2,1,'bYESrlTMC','mccarthytheodora2@gmail.com','http://nJBRYcDydfgaQ','123.24.106.139','2021-09-12 15:09:54','2021-09-12 15:09:54','vwWYytcbks',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(3,1,'area 52','florenciayewen@freenet.de','https://area52.com/delta-8-vapes/','207.244.235.67','2021-10-09 23:50:45','2021-10-09 23:50:45','Thank you, I\'ve recently been searching for info approximately this \r\ntopic for ages and yours is the greatest I\'ve came upon so far.\r\nHowever, what about the bottom line? Are you certain about the supply?\r\n\r\n\r\nTake a look at my web page :: <a href=\"https://area52.com/delta-8-vapes/\" rel=\"nofollow ugc\">area 52</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0 Cyberfox/47.0.2','comment',0,0),(4,1,'fCGAvkPEJmdHS','renielsnxc81@gmail.com','http://ySUpdRqIYVZv','123.21.245.182','2021-10-13 17:21:07','2021-10-13 17:21:07','CcpqnDbjFleMtNrZ',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(5,1,'clzuDebTOy','candacehart534@gmail.com','http://iNncrqls','73.240.48.90','2021-10-30 15:23:54','2021-10-30 15:23:54','yqVbABNKJenDhlEr',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(6,1,'Williamfrirm','vqrnov@gmail.com','https://ello.co/ntifescrosper1979','109.248.139.85','2021-11-03 19:08:23','2021-11-03 19:08:23','free purn vidio black milf stockings skinny busty granny german bisex videos gay daddy pinoy boss wife sex amateur outdoor threesome gay sissy cd fat sex panties plain milf pics milf seduces black porn sex thai <a href=\"https://www.podomatic.com/podcasts/trocuresscour1974\" rel=\"nofollow ugc\">gym knickers porn </a> horny milf nurse chubby milf booty darla crane bangbros pregnant dp porn emo gf nude new xxx pic vagina hole xxx pornstar anal pics adel bye anal interracial porn images granny porn online homemade fat porn naked tit sucking <a href=\"https://ccm.net/profile/user/tsitexpefa1972\" rel=\"nofollow ugc\">penty house porn </a> \r\nwebcam strip naked free explicit movies wild home porn jav sex stream drunk gay naked sex chines hot porn game clips big inflatable dildo mature babes boobs xnnx old young chastity femdom torture daddy suit gay <a href=\"https://www.spreaker.com/user/15361674\" rel=\"nofollow ugc\">panty hairy sex </a> family sex jav milf tits photos perfect female tits homemade home porn kinky porn pornhub naked bbw amateurs thong fetish porn download teen sex high res porn watch adult xxx <a href=\"https://pbase.com/domgiochansia1973/profile\" rel=\"nofollow ugc\">vibrator pants video </a> \r\n<a href=\"https://askjhasdfkjhasdfaskjdhf.tk\" rel=\"nofollow ugc\">askjhasdfkjhasdfaskjdhf.tk</a> \r\nhttps://adrianakaradinou.com/hello-world/#comment-4 tiny tits fetish https://808pac.com/hello-world/#comment-305 chubby hairy homemade 0360025',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','comment',0,0),(7,1,'git.radenintan.ac.id','yuliyanahalov@ro.ru','http://git.radenintan.ac.id/goldconheman1997','176.119.140.90','2021-11-07 15:47:40','2021-11-07 15:47:40','puremature full videos otk boy spanking dark ebony tube female cop \r\nporn tangled porn cartoon disney elsa xxx free porn double mature saleswoman lingerie tall skinny tits hd \r\nlatina masturbation http://git.radenintan.ac.id/cirazulong1987 chris charming blowjob my sexy girlfriend teen aex tube college girls toples big black covks emo gay sissy amateur nude ex free condom porn tumblr sister porn thai porn full mallu nude sexy shower porn download https://coub.com/headdwanheca1988 xxx \r\nnude babes cuckold watching hotwife ebony ffm tube mature massage boy porn college hd nurse anal tube kinky bbw xxx hot wife solo https://git.sicom.gov.co/prefgedsprecligh1990 forced \r\nhumiliation literotica bad milf anal latin penis pics free \r\nworker porn cute naked lads nude kiwi girls xxx sax photo natural ebony tits naked male \r\nhunks sexy old grandpa sensual porn pictures gonzo xxx \r\nonline tiny nude selfie free fake tits https://www.facer.io/user/XzEery3q1Q gt; <a href=\"http://git.radenintan.ac.id/goldconheman1997\" rel=\"nofollow ugc\">git.radenintan.ac.id</a>,',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; APCPMS=^N201302070257035267484A37ACF0A41BE63F_2702^; Trident/7.0; rv:11.0) like Gecko,gzip(gfe)','comment',0,0),(8,1,'BXsbRnjkh','fostermarilynn66@gmail.com','http://XhUsAOYg','93.39.104.242','2021-11-11 13:40:34','2021-11-11 13:40:34','upOLctswMev',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(9,1,'sboJOgzRyxpjNmCt','rosebonzal1222@gmail.com','http://iXOlutoHwRBTChcA','122.225.112.22','2022-01-06 11:29:58','2022-01-06 11:29:58','iNmXHJfpgFKRqYw',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(10,1,'EanqYyic','stampconsenthx@gmail.com','http://PgrWUjVf','187.0.46.189','2022-03-03 05:50:38','2022-03-03 05:50:38','acSXBWtdYpO',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(11,1,'Best Dating Site 2022','daltondalton@singmails.com','https://clck.ru/dZ2jr?h=a36c820d30dfa742e2787e6765221008-','185.220.100.255','2022-03-11 09:51:06','2022-03-11 09:51:06','🍓 Annette want to meet you! Click here: https://clck.ru/dZ2jr?h=a36c820d30dfa742e2787e6765221008- 🍓',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36','comment',0,0),(12,1,'Best Dating Site 2022','kapilthegreat@gmailiz.com','http://inx.lv/kMH8?h=a36c820d30dfa742e2787e6765221008-','23.128.248.28','2022-03-16 11:19:18','2022-03-16 11:19:18','🔥 Juliet is interested in you! More info: http://inx.lv/kMH8?h=a36c820d30dfa742e2787e6765221008- 🔥',0,'0','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 YaBrowser/16.2.0.3539 Safari/537.36','comment',0,0),(13,1,'EfcSwoHUBdzY','ilianastevensio@gmail.com','http://HZMDPREO','81.69.249.175','2022-03-17 01:42:05','2022-03-17 01:42:05','yoDecEPmkU',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(14,1,'❤️🔥 Ana is interested in your profile! More info: https://cutt.us/ZZD67?h=a36c820d30dfa742e2787e6765221008- ❤️🔥','deathgiver101@suttal.com','','151.80.148.159','2022-03-19 05:59:37','2022-03-19 05:59:37','mt9q7e',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','comment',0,0),(15,1,'qJfCMUIAjnlbozhr','samaniheba227@gmail.com','http://HMPtOIlbaXnkAzEN','200.73.128.191','2022-03-23 05:48:42','2022-03-23 05:48:42','ejTFLSXQuUysh',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(16,1,'🔥 Emma is interested in you! More info: https://clck.ru/ec6PD?h=a36c820d30dfa742e2787e6765221008- 🔥','deathgiver101@suttal.com','','171.25.193.78','2022-03-29 17:25:25','2022-03-29 17:25:25','89kr0tol',0,'0','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0; MASMJS)','comment',0,0),(17,1,'NrmxVBvkSuhHfZ','sudjdbshgajdjb@gmail.com','http://FcMQsqGNA','200.150.123.84','2022-03-30 05:47:43','2022-03-30 05:47:43','gcGNCVxaXs',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','comment',0,0),(18,1,'💌 You have unread messages (4) from Jane! Read now: https://clck.ru/ehq8q?h=a36c820d30dfa742e2787e6765221008- 💌','deathgiver101@suttal.com','','185.220.100.248','2022-04-01 14:03:13','2022-04-01 14:03:13','w5o8utqb',0,'0','Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20100101 Firefox/5.0 Firefox/5.0','comment',0,0),(19,1,'🤍 Paris is interested in your profile! More info: http://inx.lv/NoVW?h=a36c820d30dfa742e2787e6765221008- 🤍','elenakhajdukova@devib.site','','185.220.101.22','2022-04-13 11:19:27','2022-04-13 11:19:27','ysc77zl7',0,'0','Mozilla/5.0 (Windows NT 6.3; rv:44.0) Gecko/20100101 Firefox/44.0','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) 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) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=18792 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://alford.org.uk','yes'),(2,'home','https://alford.org.uk','yes'),(3,'blogname','alford','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','b.sykes@vanillacircus.co.uk','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:96:{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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";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:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s: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]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentytwentyone','yes'),(41,'stylesheet','twentytwentyone','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','posts','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1646476840','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(100,'fresh_site','1','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:7:{i:1650465642;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1650494442;a:4:{s:18:\"wp_https_detection\";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_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1650537649;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650537650;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:1650537869;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1650969642;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'nonce_key','$Kd-cM)<k3i[Q*st/DJC<N)a{][F8mwV5GEuAVcC<2f/*o}jQ=^y)pGs#v*c&t&l','no'),(115,'nonce_salt','4^dR]NK@$5G!X1.B%MB7LmtOrMF4?ybveYb,)ATn(.|/pG[k 1@8YHESxOmngZ P','no'),(116,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'theme_mods_twentytwentyone','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(121,'recovery_keys','a:0:{}','yes'),(122,'https_detection_errors','a:0:{}','yes'),(130,'secure_auth_key','ryfG^kS,wC-*a8UXCD-ux8XN@}[hu^dSTZ:1qOy(i,UQ?.b;Yy/kj`DSMo&y}4Uc','no'),(131,'secure_auth_salt','IRcR{IAWZ5R3QtkquQq7QgTQX5KoMfJfIV:etON:m9Yowqh=RP, P UE`}LKU~&p','no'),(132,'logged_in_key','l]SJQYPSi_ulDqB}<G=Rm)%x-(RXvx 1#i~Q#`;0r2c !Z)Rap// SjU2TD&TKju','no'),(133,'logged_in_salt','7OY>^*K!E8[.,9Ny4rR:r`dhKBuySo]:6@H#WI.H&!8rpbW9VkWfleR`@r;$IG]6','no'),(153,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,'wp_force_deactivated_plugins','a:0:{}','yes'),(159,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:27:\"b.sykes@vanillacircus.co.uk\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649199036;}','no'),(168,'finished_updating_comment_type','1','yes'),(198,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":0}','yes'),(1238,'auth_key','aX p.F/^FmBy0{0ctFZn0#U)&}57@7Y]7pFZIRsFae3XlUcly)-2b10;s{2Zm]T>','no'),(1239,'auth_salt','6:`8P8YGF3(GS%_O-9=TS3pDOz/RZ2 65(o^S|QFZSi3[lGaH-D}mtM)s`g/t1B~','no'),(4514,'db_upgraded','','yes'),(7690,'category_children','a:0:{}','yes'),(17877,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1650451432;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(18412,'_site_transient_timeout_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','1650971657','no'),(18413,'_site_transient_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(18585,'_site_transient_timeout_theme_roots','1650453233','no'),(18586,'_site_transient_theme_roots','a:4:{s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(18587,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1650451433;s:7:\"checked\";a:4:{s:14:\"twentynineteen\";s:3:\"2.1\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.0\";}s:8:\"response\";a:4:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.2.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(18588,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1650451434;s:8:\"response\";a:6:{s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:49:\"w.org/plugins/all-in-one-wp-security-and-firewall\";s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:6:\"plugin\";s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";s:11:\"new_version\";s:6:\"4.4.11\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.4.4.11.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:88:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/icon-128x128.png?rev=1232826\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-1544x500.png?rev=1914011\";s:2:\"1x\";s:90:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-772x250.png?rev=1914013\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:39:\"disable-gutenberg/disable-gutenberg.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/disable-gutenberg\";s:4:\"slug\";s:17:\"disable-gutenberg\";s:6:\"plugin\";s:39:\"disable-gutenberg/disable-gutenberg.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/disable-gutenberg/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/disable-gutenberg.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/disable-gutenberg/assets/icon-256x256.png?rev=1925990\";s:2:\"1x\";s:70:\"https://ps.w.org/disable-gutenberg/assets/icon-128x128.png?rev=1925990\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.2.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:25:\"sucuri-scanner/sucuri.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/sucuri-scanner\";s:4:\"slug\";s:14:\"sucuri-scanner\";s:6:\"plugin\";s:25:\"sucuri-scanner/sucuri.php\";s:11:\"new_version\";s:6:\"1.8.30\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/sucuri-scanner/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/sucuri-scanner.1.8.30.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/sucuri-scanner/assets/icon-256x256.png?rev=2498042\";s:2:\"1x\";s:67:\"https://ps.w.org/sucuri-scanner/assets/icon-128x128.png?rev=2498042\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/sucuri-scanner/assets/banner-772x250.png?rev=2498042\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.6\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;}s:23:\"wp-cerber/wp-cerber.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/wp-cerber\";s:4:\"slug\";s:9:\"wp-cerber\";s:6:\"plugin\";s:23:\"wp-cerber/wp-cerber.php\";s:11:\"new_version\";s:5:\"8.9.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-cerber/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-cerber.8.9.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/wp-cerber/assets/icon-256x256.png?rev=2344645\";s:2:\"1x\";s:62:\"https://ps.w.org/wp-cerber/assets/icon-128x128.png?rev=2359065\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-cerber/assets/banner-1544x500.png?rev=2344628\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-cerber/assets/banner-772x250.png?rev=2344628\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:6:{s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";s:5:\"4.4.9\";s:39:\"disable-gutenberg/disable-gutenberg.php\";s:5:\"2.5.1\";s:23:\"elementor/elementor.php\";s:5:\"3.4.3\";s:27:\"redirection/redirection.php\";s:5:\"5.1.3\";s:25:\"sucuri-scanner/sucuri.php\";s:6:\"1.8.28\";s:23:\"wp-cerber/wp-cerber.php\";s:5:\"8.9.3\";}}','no'),(18607,'_transient_doing_cron','1673456791.8250100612640380859375','yes'),(18670,'_site_transient_timeout_available_translations','1650643241','no'),(18671,'_site_transient_available_translations','a:128:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-18 21:47:24\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-24 06:01:42\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.19/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.4/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.20/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-18 18:51:52\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.10/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-31 23:04:39\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-21 15:01:17\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 19:47:03\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-31 09:09:16\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-25 09:25:03\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 09:15:40\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.9.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-01-24 12:22:31\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.9.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-01-24 12:26:13\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-17 12:58:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 09:14:58\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 09:37:19\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.3/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-11 09:14:55\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 04:45:08\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 22:35:50\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-15 16:05:58\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 08:44:40\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 04:45:11\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-07-30 00:35:05\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.10/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 04:41:53\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.15\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.15/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 14:14:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 04:42:59\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 04:44:22\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-28 00:39:08\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-18 20:15:30\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-16 14:30:05\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-11-20 16:34:11\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-08 04:04:20\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-12 20:09:11\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-15 12:45:21\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.19/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 16:36:42\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.20/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.27\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.27/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-14 22:20:29\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.10/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-14 11:09:23\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 09:38:59\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.3/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-05 08:34:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-10 01:12:24\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.20/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 08:09:26\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-29 23:58:18\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.20/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-01-24 08:56:29\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-10 17:24:06\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.3/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.20/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.15\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.15/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-23 01:39:33\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-02 01:11:00\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.4/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 15:22:04\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-12 12:32:07\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.20/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"5.5.9\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.9/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.32\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.32/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-31 01:41:17\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-11 18:44:02\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-12 08:26:22\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-12 12:40:41\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.9.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-21 09:54:27\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.19/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-22 07:14:45\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.28\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.28/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-06 15:21:06\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-31 16:27:44\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-11-27 16:28:47\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-09-09 21:40:55\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.8.4/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 16:36:19\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-10 05:43:57\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.10/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-06 04:43:12\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:19:\"2022-01-24 13:37:43\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-01 10:20:40\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 20:07:24\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 13:36:02\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.12\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.12/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.32\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.32/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-12-28 02:58:38\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.4/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.19/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-17 09:38:19\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.20/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2022-03-06 15:05:20\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.4/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.10/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 13:50:02\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-06 12:46:43\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 20:41:20\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-14 15:03:38\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(18788,'_transient_timeout_global_styles_twentytwentyone','1669848137','no'),(18789,'_transient_global_styles_twentytwentyone','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #FFFFFF;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--dark-gray: #28303D;--wp--preset--color--gray: #39414D;--wp--preset--color--green: #D1E4DD;--wp--preset--color--blue: #D1DFE4;--wp--preset--color--purple: #D1D1E4;--wp--preset--color--red: #E4D1D1;--wp--preset--color--orange: #E4DAD1;--wp--preset--color--yellow: #EEEADD;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--gradient--purple-to-yellow: linear-gradient(160deg, #D1D1E4 0%, #EEEADD 100%);--wp--preset--gradient--yellow-to-purple: linear-gradient(160deg, #EEEADD 0%, #D1D1E4 100%);--wp--preset--gradient--green-to-yellow: linear-gradient(160deg, #D1E4DD 0%, #EEEADD 100%);--wp--preset--gradient--yellow-to-green: linear-gradient(160deg, #EEEADD 0%, #D1E4DD 100%);--wp--preset--gradient--red-to-yellow: linear-gradient(160deg, #E4D1D1 0%, #EEEADD 100%);--wp--preset--gradient--yellow-to-red: linear-gradient(160deg, #EEEADD 0%, #E4D1D1 100%);--wp--preset--gradient--purple-to-red: linear-gradient(160deg, #D1D1E4 0%, #E4D1D1 100%);--wp--preset--gradient--red-to-purple: linear-gradient(160deg, #E4D1D1 0%, #D1D1E4 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 18px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 24px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--extra-small: 16px;--wp--preset--font-size--normal: 20px;--wp--preset--font-size--extra-large: 40px;--wp--preset--font-size--huge: 96px;--wp--preset--font-size--gigantic: 144px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(18790,'_transient_timeout_global_styles_svg_filters_twentytwentyone','1669848137','no'),(18791,'_transient_global_styles_svg_filters_twentytwentyone','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text 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 NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2021-09-06 10:40:42','2021-09-06 10:40:42','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2021-09-06 10:40:42','2021-09-06 10:40:42','',0,'https://alford.org.uk/?p=1',0,'post','',1),(2,1,'2021-09-06 10:40:42','2021-09-06 10:40:42','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://alford.org.uk/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-09-06 10:40:42','2021-09-06 10:40:42','',0,'https://alford.org.uk/?page_id=2',0,'page','',0),(3,1,'2021-09-06 10:40:42','2021-09-06 10:40:42','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://alford.org.uk.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-09-06 10:40:42','2021-09-06 10:40:42','',0,'https://alford.org.uk/?page_id=3',0,'page','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','qKjGGdXYy5v'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"d336db3e1dde04da5b705ef59b5583de91ac1b1e140d8978e5a8cae7385e748e\";a:4:{s:10:\"expiration\";i:1632134448;s:2:\"ip\";s:14:\"185.175.113.72\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36\";s:5:\"login\";i:1630924848;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"185.175.113.0\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'qKjGGdXYy5v','$P$BvJuY6xM7ncmjS4SFh5Sq9mdelClvt.','qkjggdxyy5v','b.sykes@vanillacircus.co.uk','https://alford.org.uk','2021-09-06 10:40:42','',0,'qKjGGdXYy5v');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-02-01 0:00:54