File: //restore/20230201.fisawardscouk.sql
-- MariaDB dump 10.19 Distrib 10.5.18-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: fisawardscouk
-- ------------------------------------------------------
-- 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: `fisawardscouk`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `fisawardscouk` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */;
USE `fisawardscouk`;
--
-- Table structure for table `cerber_acl`
--
DROP TABLE IF EXISTS `cerber_acl`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_acl` (
`ip` varchar(81) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`ip_long_begin` bigint(20) unsigned NOT NULL DEFAULT 0,
`ip_long_end` bigint(20) unsigned NOT NULL DEFAULT 0,
`tag` char(1) NOT NULL,
`comments` varchar(250) NOT NULL,
`acl_slice` smallint(5) unsigned NOT NULL DEFAULT 0,
`ver6` smallint(5) unsigned NOT NULL DEFAULT 0,
`v6range` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`req_uri` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
KEY `main_for_selects` (`acl_slice`,`ver6`,`ip_long_begin`,`ip_long_end`,`tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_acl`
--
LOCK TABLES `cerber_acl` WRITE;
/*!40000 ALTER TABLE `cerber_acl` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_acl` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_blocks`
--
DROP TABLE IF EXISTS `cerber_blocks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_blocks` (
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`block_until` bigint(20) unsigned NOT NULL,
`reason` varchar(250) NOT NULL,
`reason_id` int(11) unsigned NOT NULL DEFAULT 0,
UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_blocks`
--
LOCK TABLES `cerber_blocks` WRITE;
/*!40000 ALTER TABLE `cerber_blocks` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_blocks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_countries`
--
DROP TABLE IF EXISTS `cerber_countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_countries` (
`country` char(3) NOT NULL DEFAULT '' COMMENT 'Country code',
`locale` char(10) NOT NULL DEFAULT '' COMMENT 'Locale i18n',
`country_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`country`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_countries`
--
LOCK TABLES `cerber_countries` WRITE;
/*!40000 ALTER TABLE `cerber_countries` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_lab`
--
DROP TABLE IF EXISTS `cerber_lab`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_lab` (
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`reason_id` int(11) unsigned NOT NULL DEFAULT 0,
`stamp` bigint(20) unsigned NOT NULL,
`details` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_lab`
--
LOCK TABLES `cerber_lab` WRITE;
/*!40000 ALTER TABLE `cerber_lab` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_lab` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_lab_ip`
--
DROP TABLE IF EXISTS `cerber_lab_ip`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_lab_ip` (
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`reputation` int(11) unsigned NOT NULL,
`expires` int(11) unsigned NOT NULL,
PRIMARY KEY (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_lab_ip`
--
LOCK TABLES `cerber_lab_ip` WRITE;
/*!40000 ALTER TABLE `cerber_lab_ip` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_lab_ip` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_lab_net`
--
DROP TABLE IF EXISTS `cerber_lab_net`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_lab_net` (
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`ip_long_begin` bigint(20) unsigned NOT NULL DEFAULT 0,
`ip_long_end` bigint(20) unsigned NOT NULL DEFAULT 0,
`country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`expires` int(11) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`ip`),
UNIQUE KEY `begin_end` (`ip_long_begin`,`ip_long_end`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_lab_net`
--
LOCK TABLES `cerber_lab_net` WRITE;
/*!40000 ALTER TABLE `cerber_lab_net` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_lab_net` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_log`
--
DROP TABLE IF EXISTS `cerber_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_log` (
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`ip_long` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_login` varchar(60) NOT NULL,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`stamp` decimal(14,4) NOT NULL,
`activity` int(10) unsigned NOT NULL DEFAULT 0,
`session_id` char(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`details` varchar(250) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
KEY `ip` (`ip`),
KEY `ip_long` (`ip_long`),
KEY `session_index` (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_log`
--
LOCK TABLES `cerber_log` WRITE;
/*!40000 ALTER TABLE `cerber_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_qmem`
--
DROP TABLE IF EXISTS `cerber_qmem`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_qmem` (
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`http_code` int(10) unsigned NOT NULL,
`stamp` int(10) unsigned NOT NULL,
KEY `ip_stamp` (`ip`,`stamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_qmem`
--
LOCK TABLES `cerber_qmem` WRITE;
/*!40000 ALTER TABLE `cerber_qmem` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_qmem` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cerber_traffic`
--
DROP TABLE IF EXISTS `cerber_traffic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_traffic` (
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`ip_long` bigint(20) unsigned NOT NULL DEFAULT 0,
`hostname` varchar(250) NOT NULL DEFAULT '',
`uri` text NOT NULL,
`request_fields` mediumtext NOT NULL,
`request_details` mediumtext NOT NULL,
`session_id` char(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`stamp` decimal(14,4) NOT NULL,
`processing` int(10) NOT NULL DEFAULT 0,
`country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`request_method` char(8) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`http_code` int(10) unsigned NOT NULL,
`wp_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`wp_type` int(10) unsigned NOT NULL DEFAULT 0,
`is_bot` int(10) unsigned NOT NULL DEFAULT 0,
`blog_id` int(10) unsigned NOT NULL DEFAULT 0,
`php_errors` text NOT NULL,
`req_status` int(10) unsigned NOT NULL DEFAULT 0,
KEY `stamp` (`stamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cerber_traffic`
--
LOCK TABLES `cerber_traffic` WRITE;
/*!40000 ALTER TABLE `cerber_traffic` DISABLE KEYS */;
/*!40000 ALTER TABLE `cerber_traffic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_aiowps_events`
--
DROP TABLE IF EXISTS `wp_aiowps_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 '1000-10-10 10: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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_aiowps_events`
--
LOCK TABLES `wp_aiowps_events` WRITE;
/*!40000 ALTER TABLE `wp_aiowps_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_aiowps_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_aiowps_failed_logins`
--
DROP TABLE IF EXISTS `wp_aiowps_failed_logins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 '1000-10-10 10:00:00',
`login_attempt_ip` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=403380 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_aiowps_failed_logins`
--
LOCK TABLES `wp_aiowps_failed_logins` WRITE;
/*!40000 ALTER TABLE `wp_aiowps_failed_logins` DISABLE KEYS */;
INSERT INTO `wp_aiowps_failed_logins` VALUES (398373,0,'co','2018-03-07 12:17:59','185.234.218.*'),(398374,0,'co','2018-03-07 12:18:01','185.234.218.*'),(398375,0,'co','2018-03-07 12:18:05','185.234.218.*'),(398376,0,'co','2018-03-07 12:18:11','185.234.218.*'),(398377,0,'co','2018-03-07 12:18:17','185.234.218.*'),(398378,0,'co','2018-03-07 12:18:23','185.234.218.*'),(398379,0,'co','2018-03-07 12:18:27','185.234.218.*'),(398380,0,'co','2018-03-07 12:18:31','185.234.218.*'),(398381,0,'co','2018-03-07 12:18:35','185.234.218.*'),(398382,0,'co','2018-03-07 12:18:39','185.234.218.*'),(398383,0,'co','2018-03-07 12:18:43','185.234.218.*'),(398384,0,'co','2018-03-07 12:18:46','185.234.218.*'),(398385,0,'co','2018-03-07 12:18:47','185.234.218.*'),(398386,0,'co','2018-03-07 12:18:48','185.234.218.*'),(398387,0,'co','2018-03-07 12:18:49','185.234.218.*'),(398388,0,'co','2018-03-07 12:18:49','185.234.218.*'),(398389,0,'co','2018-03-07 12:18:49','185.234.218.*'),(398390,0,'co','2018-03-07 12:18:50','185.234.218.*'),(398391,0,'co','2018-03-07 12:18:50','185.234.218.*'),(398392,0,'co','2018-03-07 12:18:51','185.234.218.*'),(398393,0,'co','2018-03-07 12:18:52','185.234.218.*'),(398394,0,'co','2018-03-07 12:18:54','185.234.218.*'),(398395,0,'co','2018-03-07 12:18:54','185.234.218.*'),(398396,0,'co','2018-03-07 12:18:56','185.234.218.*'),(398397,0,'co','2018-03-07 12:18:57','185.234.218.*'),(398398,0,'co','2018-03-07 12:18:58','185.234.218.*'),(398399,0,'co','2018-03-07 12:18:59','185.234.218.*'),(398400,0,'co','2018-03-07 12:19:01','185.234.218.*'),(398401,0,'co','2018-03-07 12:19:02','185.234.218.*'),(398402,0,'co','2018-03-07 12:19:04','185.234.218.*'),(398403,0,'co','2018-03-07 12:19:05','185.234.218.*'),(398404,0,'co','2018-03-07 12:19:06','185.234.218.*'),(398405,0,'co','2018-03-07 12:19:07','185.234.218.*'),(398406,0,'co','2018-03-07 12:19:08','185.234.218.*'),(398407,0,'co','2018-03-07 12:19:10','185.234.218.*'),(398408,0,'co','2018-03-07 12:19:11','185.234.218.*'),(398409,0,'co','2018-03-07 12:19:13','185.234.218.*'),(398410,0,'co','2018-03-07 12:19:14','185.234.218.*'),(398411,0,'co','2018-03-07 12:19:15','185.234.218.*'),(398412,0,'co','2018-03-07 12:19:16','185.234.218.*'),(398413,0,'co','2018-03-07 12:19:18','185.234.218.*'),(398414,0,'co','2018-03-07 12:19:20','185.234.218.*'),(398415,0,'co','2018-03-07 12:19:22','185.234.218.*'),(398416,0,'co','2018-03-07 12:19:23','185.234.218.*'),(398417,0,'co','2018-03-07 12:19:25','185.234.218.*'),(398418,0,'co','2018-03-07 12:19:27','185.234.218.*'),(398419,0,'co','2018-03-07 12:19:29','185.234.218.*'),(398420,0,'co','2018-03-07 12:19:30','185.234.218.*'),(398421,0,'co','2018-03-07 12:19:32','185.234.218.*'),(398422,0,'co','2018-03-07 12:19:34','185.234.218.*'),(398423,0,'co','2018-03-07 12:19:36','185.234.218.*'),(398424,0,'co','2018-03-07 12:19:37','185.234.218.*'),(398425,0,'co','2018-03-07 12:19:38','185.234.218.*'),(398426,0,'co','2018-03-07 12:19:39','185.234.218.*'),(398427,0,'co','2018-03-07 12:19:40','185.234.218.*'),(398428,0,'co','2018-03-07 12:19:41','185.234.218.*'),(398429,0,'co','2018-03-07 12:19:43','185.234.218.*'),(398430,0,'co','2018-03-07 12:19:44','185.234.218.*'),(398431,0,'co','2018-03-07 12:19:45','185.234.218.*'),(398432,0,'co','2018-03-07 12:19:46','185.234.218.*'),(398433,0,'co','2018-03-07 12:19:47','185.234.218.*'),(398434,0,'co','2018-03-07 12:19:48','185.234.218.*'),(398435,0,'co','2018-03-07 12:19:49','185.234.218.*'),(398436,0,'co','2018-03-07 12:19:50','185.234.218.*'),(398437,0,'co','2018-03-07 12:19:51','185.234.218.*'),(398438,0,'co','2018-03-07 12:19:52','185.234.218.*'),(398439,0,'co','2018-03-07 12:19:53','185.234.218.*'),(398440,0,'co','2018-03-07 12:19:55','185.234.218.*'),(398441,0,'co','2018-03-07 12:19:56','185.234.218.*'),(398442,0,'co','2018-03-07 12:19:56','185.234.218.*'),(398443,0,'co','2018-03-07 12:19:58','185.234.218.*'),(398444,0,'co','2018-03-07 12:19:59','185.234.218.*'),(398445,0,'co','2018-03-07 12:20:00','185.234.218.*'),(398446,0,'co','2018-03-07 12:20:01','185.234.218.*'),(398447,0,'co','2018-03-07 12:20:02','185.234.218.*'),(398448,0,'co','2018-03-07 12:20:03','185.234.218.*'),(398449,0,'co','2018-03-07 12:20:04','185.234.218.*'),(398450,0,'co','2018-03-07 12:20:05','185.234.218.*'),(398451,0,'co','2018-03-07 12:20:06','185.234.218.*'),(398452,0,'co','2018-03-07 12:20:07','185.234.218.*'),(398453,0,'co','2018-03-07 12:20:08','185.234.218.*'),(398454,0,'co','2018-03-07 12:20:09','185.234.218.*'),(398455,0,'co','2018-03-07 12:20:10','185.234.218.*'),(398456,0,'co','2018-03-07 12:20:11','185.234.218.*'),(398457,0,'co','2018-03-07 12:20:12','185.234.218.*'),(398458,0,'co','2018-03-07 12:20:13','185.234.218.*'),(398459,0,'co','2018-03-07 12:20:13','185.234.218.*'),(398460,0,'co','2018-03-07 12:20:14','185.234.218.*'),(398461,0,'co','2018-03-07 12:20:14','185.234.218.*'),(398462,0,'co','2018-03-07 12:20:15','185.234.218.*'),(398463,0,'co','2018-03-07 12:20:17','185.234.218.*'),(398464,0,'co','2018-03-07 12:20:18','185.234.218.*'),(398465,0,'co','2018-03-07 12:20:19','185.234.218.*'),(398466,0,'co','2018-03-07 12:20:20','185.234.218.*'),(398467,0,'co','2018-03-07 12:20:21','185.234.218.*'),(398468,0,'co','2018-03-07 12:20:22','185.234.218.*'),(398469,0,'co','2018-03-07 12:20:23','185.234.218.*'),(398470,0,'co','2018-03-07 12:20:25','185.234.218.*'),(398471,0,'co','2018-03-07 12:20:26','185.234.218.*'),(398472,0,'co','2018-03-07 12:20:27','185.234.218.*'),(398473,0,'co','2018-03-07 12:20:28','185.234.218.*'),(398474,0,'co','2018-03-07 12:20:28','185.234.218.*'),(398475,0,'co','2018-03-07 12:20:30','185.234.218.*'),(398476,0,'co','2018-03-07 12:20:31','185.234.218.*'),(398477,0,'co','2018-03-07 12:20:32','185.234.218.*'),(398478,0,'co','2018-03-07 12:20:33','185.234.218.*'),(398479,0,'co','2018-03-07 12:20:33','185.234.218.*'),(398480,0,'co','2018-03-07 12:20:35','185.234.218.*'),(398481,0,'co','2018-03-07 12:20:36','185.234.218.*'),(398482,0,'co','2018-03-07 12:20:37','185.234.218.*'),(398483,0,'co','2018-03-07 12:20:38','185.234.218.*'),(398484,0,'co','2018-03-07 12:20:39','185.234.218.*'),(398485,0,'co','2018-03-07 12:20:40','185.234.218.*'),(398486,0,'co','2018-03-07 12:20:41','185.234.218.*'),(398487,0,'co','2018-03-07 12:20:43','185.234.218.*'),(398488,0,'co','2018-03-07 12:20:44','185.234.218.*'),(398489,0,'co','2018-03-07 12:20:45','185.234.218.*'),(398490,0,'co','2018-03-07 12:20:46','185.234.218.*'),(398491,0,'co','2018-03-07 12:20:47','185.234.218.*'),(398492,0,'co','2018-03-07 12:20:47','185.234.218.*'),(398493,0,'co','2018-03-07 12:20:48','185.234.218.*'),(398494,0,'co','2018-03-07 12:20:49','185.234.218.*'),(398495,0,'co','2018-03-07 12:20:49','185.234.218.*'),(398496,0,'co','2018-03-07 12:20:50','185.234.218.*'),(398497,0,'co','2018-03-07 12:20:50','185.234.218.*'),(398498,0,'co','2018-03-07 12:20:51','185.234.218.*'),(398499,0,'co','2018-03-07 12:20:52','185.234.218.*'),(398500,0,'co','2018-03-07 12:20:52','185.234.218.*'),(398501,0,'co','2018-03-07 12:20:52','185.234.218.*'),(398502,0,'co','2018-03-07 12:20:53','185.234.218.*'),(398503,0,'co','2018-03-07 12:20:53','185.234.218.*'),(398504,0,'co','2018-03-07 12:20:54','185.234.218.*'),(398505,0,'co','2018-03-07 12:20:54','185.234.218.*'),(398506,0,'co','2018-03-07 12:20:54','185.234.218.*'),(398507,0,'co','2018-03-07 12:20:54','185.234.218.*'),(398508,0,'co','2018-03-07 12:20:55','185.234.218.*'),(398509,0,'co','2018-03-07 12:20:55','185.234.218.*'),(398510,0,'co','2018-03-07 12:20:55','185.234.218.*'),(398511,0,'co','2018-03-07 12:20:56','185.234.218.*'),(398512,0,'co','2018-03-07 12:20:56','185.234.218.*'),(398513,0,'admin','2018-03-07 12:57:54','123.57.254.*'),(398514,0,'admin','2018-03-07 13:10:08','123.57.254.*'),(398515,0,'admin','2018-03-07 13:34:46','123.57.254.*'),(398516,1,'fisawards','2018-03-07 13:55:20','95.130.170.*'),(398517,0,'admin','2018-03-07 18:15:45','123.57.254.*'),(398518,0,'admin','2018-03-07 18:39:17','123.57.254.*'),(398519,0,'admin','2018-03-07 19:27:15','123.57.254.*'),(398520,0,'admin','2018-03-07 19:39:21','123.57.254.*'),(398521,0,'admin','2018-03-07 19:51:22','123.57.254.*'),(398522,1,'fisawards','2018-03-07 20:08:08','80.255.5.*'),(398523,0,'admin','2018-03-07 20:51:14','123.57.254.*'),(398524,0,'admin','2018-03-07 21:41:30','91.200.12.*'),(398525,1,'fisawards','2018-03-07 22:59:09','134.0.30.*'),(398526,1,'fisawards','2018-03-07 23:01:13','91.200.12.*'),(398527,1,'fisawards','2018-03-07 23:01:14','91.200.12.*'),(398528,0,'admin','2018-03-07 23:52:01','123.57.254.*'),(398529,0,'admin','2018-03-08 00:52:06','123.57.254.*'),(398530,0,'admin','2018-03-08 03:54:31','123.57.254.*'),(398531,0,'admin','2018-03-08 04:35:48','80.255.5.*'),(398532,0,'admin','2018-03-08 04:42:41','123.57.254.*'),(398533,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:27','5.188.211.*'),(398534,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:27','5.188.211.*'),(398535,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:27','5.188.211.*'),(398536,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:27','5.188.211.*'),(398537,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:28','5.188.211.*'),(398538,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:28','5.188.211.*'),(398539,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:28','5.188.211.*'),(398540,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:29','5.188.211.*'),(398541,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:29','5.188.211.*'),(398542,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:29','5.188.211.*'),(398543,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:29','5.188.211.*'),(398544,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:30','5.188.211.*'),(398545,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:30','5.188.211.*'),(398546,0,'fisawards Content-Length: 0 Content-Type: text','2018-03-08 06:03:30','5.188.211.*'),(398547,1,'fisawards','2018-03-08 07:43:45','169.255.152.*'),(398548,0,'admin','2018-03-08 08:32:38','123.57.254.*'),(398549,0,'admin','2018-03-08 10:18:26','123.57.254.*'),(398550,1,'fisawards','2018-03-08 10:26:38','91.200.12.*'),(398551,1,'fisawards','2018-03-08 10:26:38','91.200.12.*'),(398552,1,'fisawards','2018-03-08 10:57:41','181.215.195.*'),(398553,1,'fisawards','2018-03-08 11:05:38','181.215.195.*'),(398554,1,'fisawards','2018-03-08 11:14:11','181.215.195.*'),(398555,1,'fisawards','2018-03-08 11:22:09','181.215.195.*'),(398556,0,'admin','2018-03-08 12:04:49','123.57.254.*'),(398557,0,'admin','2018-03-08 12:28:42','123.57.254.*'),(398558,1,'fisawards','2018-03-08 12:35:37','80.255.5.*'),(398559,0,'admin','2018-03-08 14:04:35','123.57.254.*'),(398560,0,'admin','2018-03-08 14:28:33','123.57.254.*'),(398561,0,'admin','2018-03-08 15:16:24','123.57.254.*'),(398562,0,'admin','2018-03-08 16:04:11','123.57.254.*'),(398563,0,'admin','2018-03-08 16:28:17','123.57.254.*'),(398564,0,'admin','2018-03-08 17:15:26','123.57.254.*'),(398565,0,'admin','2018-03-08 18:26:15','123.57.254.*'),(398566,0,'admin','2018-03-08 18:49:45','123.57.254.*'),(398567,1,'fisawards','2018-03-08 19:16:12','61.166.110.*'),(398568,1,'fisawards','2018-03-08 19:16:25','122.140.95.*'),(398569,1,'fisawards','2018-03-08 19:16:38','220.189.235.*'),(398570,1,'fisawards','2018-03-08 19:16:40','122.116.92.*'),(398571,1,'fisawards','2018-03-08 19:16:42','125.75.123.*'),(398572,1,'fisawards','2018-03-08 19:16:55','124.239.2.*'),(398573,1,'fisawards','2018-03-08 19:16:56','123.214.172.*'),(398574,1,'fisawards','2018-03-08 19:17:08','60.247.92.*'),(398575,1,'fisawards','2018-03-08 19:17:20','88.255.72.*'),(398576,1,'fisawards','2018-03-08 19:17:32','211.161.90.*'),(398577,1,'fisawards','2018-03-08 19:17:40','218.26.178.*'),(398578,1,'fisawards','2018-03-08 19:18:54','58.216.199.*'),(398579,1,'fisawards','2018-03-08 19:18:57','61.132.87.*'),(398580,1,'fisawards','2018-03-08 19:18:59','122.140.95.*'),(398581,1,'fisawards','2018-03-08 19:19:25','58.214.25.*'),(398582,1,'fisawards','2018-03-08 19:19:37','220.164.193.*'),(398583,1,'fisawards','2018-03-08 19:19:59','115.238.72.*'),(398584,1,'fisawards','2018-03-08 19:20:18','218.22.253.*'),(398585,1,'fisawards','2018-03-08 19:20:41','118.121.233.*'),(398586,1,'fisawards','2018-03-08 19:21:28','61.185.242.*'),(398587,1,'fisawards','2018-03-08 19:21:40','109.224.32.*'),(398588,1,'fisawards','2018-03-08 19:22:02','220.165.28.*'),(398589,1,'fisawards','2018-03-08 19:22:05','190.13.106.*'),(398590,1,'fisawards','2018-03-08 19:22:07','183.102.114.*'),(398591,1,'fisawards','2018-03-08 19:22:09','60.172.69.*'),(398592,1,'fisawards','2018-03-08 19:22:22','61.161.147.*'),(398593,1,'fisawards','2018-03-08 19:22:54','58.210.119.*'),(398594,1,'fisawards','2018-03-08 19:23:06','60.166.60.*'),(398595,1,'fisawards','2018-03-08 19:23:20','61.28.113.*'),(398596,1,'fisawards','2018-03-08 19:23:32','201.184.241.*'),(398597,1,'fisawards','2018-03-08 19:24:17','59.44.27.*'),(398598,1,'fisawards','2018-03-08 19:24:24','113.8.194.*'),(398599,1,'fisawards','2018-03-08 19:24:47','220.177.50.*'),(398600,1,'fisawards','2018-03-08 19:25:41','61.163.69.*'),(398601,1,'fisawards','2018-03-08 19:26:13','1.190.175.*'),(398602,1,'fisawards','2018-03-08 19:26:35','183.102.114.*'),(398603,1,'fisawards','2018-03-08 19:26:37','60.172.22.*'),(398604,1,'fisawards','2018-03-08 19:26:40','119.90.34.*'),(398605,1,'fisawards','2018-03-08 19:26:42','61.150.76.*'),(398606,1,'fisawards','2018-03-08 19:26:45','140.207.52.*'),(398607,1,'fisawards','2018-03-08 19:27:28','123.7.178.*'),(398608,1,'fisawards','2018-03-08 19:28:02','203.93.109.*'),(398609,1,'fisawards','2018-03-08 19:28:10','85.35.64.*'),(398610,1,'fisawards','2018-03-08 19:28:13','211.100.19.*'),(398611,1,'fisawards','2018-03-08 19:28:36','190.210.168.*'),(398612,1,'fisawards','2018-03-08 19:29:01','61.150.76.*'),(398613,1,'fisawards','2018-03-08 19:29:13','220.189.205.*'),(398614,1,'fisawards','2018-03-08 19:29:29','117.159.84.*'),(398615,1,'fisawards','2018-03-08 19:29:53','5.8.191.*'),(398616,1,'fisawards','2018-03-08 19:30:06','125.89.129.*'),(398617,1,'fisawards','2018-03-08 19:30:18','117.159.84.*'),(398618,1,'fisawards','2018-03-08 19:31:19','61.191.252.*'),(398619,1,'fisawards','2018-03-08 19:31:31','24.134.8.*'),(398620,1,'fisawards','2018-03-08 19:32:04','218.4.214.*'),(398621,1,'fisawards','2018-03-08 19:32:08','61.177.25.*'),(398622,1,'fisawards','2018-03-08 19:32:12','222.161.229.*'),(398623,1,'fisawards','2018-03-08 19:32:15','157.122.183.*'),(398624,1,'fisawards','2018-03-08 19:32:28','94.26.62.*'),(398625,1,'fisawards','2018-03-08 19:32:30','211.196.252.*'),(398626,1,'fisawards','2018-03-08 19:32:32','211.75.11.*'),(398627,1,'fisawards','2018-03-08 19:32:37','218.70.58.*'),(398628,1,'fisawards','2018-03-08 19:32:39','173.11.49.*'),(398629,1,'fisawards','2018-03-08 19:33:00','182.72.66.*'),(398630,1,'fisawards','2018-03-08 19:33:23','222.101.93.*'),(398631,1,'fisawards','2018-03-08 19:33:25','218.22.100.*'),(398632,1,'fisawards','2018-03-08 19:33:59','220.164.2.*'),(398633,1,'fisawards','2018-03-08 19:34:06','112.23.7.*'),(398634,1,'fisawards','2018-03-08 19:34:09','183.167.205.*'),(398635,1,'fisawards','2018-03-08 19:34:11','218.23.8.*'),(398636,1,'fisawards','2018-03-08 19:34:25','27.151.116.*'),(398637,1,'fisawards','2018-03-08 19:34:30','58.18.137.*'),(398638,1,'fisawards','2018-03-08 19:35:02','58.216.199.*'),(398639,1,'fisawards','2018-03-08 19:36:01','218.26.163.*'),(398640,1,'fisawards','2018-03-08 19:36:09','47.47.33.*'),(398641,1,'fisawards','2018-03-08 19:36:24','219.142.132.*'),(398642,1,'fisawards','2018-03-08 19:36:36','60.175.71.*'),(398643,1,'fisawards','2018-03-08 19:36:38','61.134.36.*'),(398644,1,'fisawards','2018-03-08 19:36:50','220.178.26.*'),(398645,1,'fisawards','2018-03-08 19:37:13','222.84.118.*'),(398646,1,'fisawards','2018-03-08 19:37:25','219.148.39.*'),(398647,1,'fisawards','2018-03-08 19:37:48','60.174.192.*'),(398648,1,'fisawards','2018-03-08 19:37:56','112.24.104.*'),(398649,1,'fisawards','2018-03-08 19:37:58','59.126.98.*'),(398650,1,'fisawards','2018-03-08 19:38:01','61.161.135.*'),(398651,1,'fisawards','2018-03-08 19:38:04','118.144.83.*'),(398652,1,'fisawards','2018-03-08 19:38:15','5.11.220.*'),(398653,1,'fisawards','2018-03-08 19:38:28','59.63.207.*'),(398654,1,'fisawards','2018-03-08 19:38:31','60.166.60.*'),(398655,1,'fisawards','2018-03-08 19:38:45','78.36.169.*'),(398656,1,'fisawards','2018-03-08 19:39:50','219.239.133.*'),(398657,1,'fisawards','2018-03-08 19:39:54','117.40.185.*'),(398658,1,'fisawards','2018-03-08 19:39:57','222.101.93.*'),(398659,1,'fisawards','2018-03-08 19:40:00','123.172.215.*'),(398660,1,'fisawards','2018-03-08 19:40:25','61.163.196.*'),(398661,1,'fisawards','2018-03-08 19:40:27','186.1.185.*'),(398662,1,'fisawards','2018-03-08 19:40:29','182.106.216.*'),(398663,1,'fisawards','2018-03-08 19:40:43','58.214.24.*'),(398664,1,'fisawards','2018-03-08 19:40:45','27.191.153.*'),(398665,1,'fisawards','2018-03-08 19:40:57','60.167.19.*'),(398666,1,'fisawards','2018-03-08 19:40:59','120.209.164.*'),(398667,1,'fisawards','2018-03-08 19:41:18','61.133.218.*'),(398668,1,'fisawards','2018-03-08 19:41:21','218.23.162.*'),(398669,1,'fisawards','2018-03-08 19:41:54','210.75.202.*'),(398670,1,'fisawards','2018-03-08 19:41:56','219.154.133.*'),(398671,1,'fisawards','2018-03-08 19:41:58','27.191.185.*'),(398672,1,'fisawards','2018-03-08 19:42:19','94.26.62.*'),(398673,1,'fisawards','2018-03-08 19:42:41','112.113.66.*'),(398674,1,'fisawards','2018-03-08 19:42:55','120.202.36.*'),(398675,1,'fisawards','2018-03-08 19:42:58','110.249.218.*'),(398676,1,'fisawards','2018-03-08 19:43:01','177.136.227.*'),(398677,1,'fisawards','2018-03-08 19:43:03','218.28.50.*'),(398678,1,'fisawards','2018-03-08 19:43:10','148.103.241.*'),(398679,1,'fisawards','2018-03-08 19:43:55','111.113.28.*'),(398680,1,'fisawards','2018-03-08 19:43:57','218.206.132.*'),(398681,1,'fisawards','2018-03-08 19:43:59','222.217.221.*'),(398682,1,'fisawards','2018-03-08 19:44:24','50.242.22.*'),(398683,1,'fisawards','2018-03-08 19:44:26','58.213.46.*'),(398684,1,'fisawards','2018-03-08 19:45:30','190.210.168.*'),(398685,1,'fisawards','2018-03-08 19:45:54','118.163.58.*'),(398686,1,'fisawards','2018-03-08 19:46:37','211.232.116.*'),(398687,1,'fisawards','2018-03-08 19:47:09','177.19.187.*'),(398688,1,'fisawards','2018-03-08 19:47:32','211.161.90.*'),(398689,1,'fisawards','2018-03-08 19:48:25','103.40.132.*'),(398690,1,'fisawards','2018-03-08 19:48:35','103.224.165.*'),(398691,0,'admin','2018-03-08 19:49:07','123.57.254.*'),(398692,1,'fisawards','2018-03-08 19:49:18','112.4.172.*'),(398693,1,'fisawards','2018-03-08 19:49:21','118.163.146.*'),(398694,1,'fisawards','2018-03-08 19:49:23','171.34.72.*'),(398695,1,'fisawards','2018-03-08 19:49:36','221.239.8.*'),(398696,1,'fisawards','2018-03-08 19:50:21','115.239.188.*'),(398697,1,'fisawards','2018-03-08 19:51:04','220.227.147.*'),(398698,1,'fisawards','2018-03-08 19:52:31','83.110.55.*'),(398699,1,'fisawards','2018-03-08 19:52:58','205.217.247.*'),(398700,1,'fisawards','2018-03-08 19:53:12','223.93.150.*'),(398701,1,'fisawards','2018-03-08 19:53:18','83.48.56.*'),(398702,1,'fisawards','2018-03-08 19:53:46','218.206.210.*'),(398703,1,'fisawards','2018-03-08 19:53:48','211.154.10.*'),(398704,1,'fisawards','2018-03-08 19:53:50','60.171.208.*'),(398705,1,'fisawards','2018-03-08 19:54:23','60.2.111.*'),(398706,1,'fisawards','2018-03-08 19:54:56','124.207.209.*'),(398707,1,'fisawards','2018-03-08 19:55:10','114.104.158.*'),(398708,1,'fisawards','2018-03-08 19:55:13','60.166.12.*'),(398709,1,'fisawards','2018-03-08 19:55:32','197.251.242.*'),(398710,1,'fisawards','2018-03-08 19:55:34','218.77.80.*'),(398711,1,'fisawards','2018-03-08 19:55:57','58.215.221.*'),(398712,1,'fisawards','2018-03-08 19:56:51','218.90.180.*'),(398713,1,'fisawards','2018-03-08 19:56:53','61.145.246.*'),(398714,1,'fisawards','2018-03-08 19:57:23','218.28.50.*'),(398715,1,'fisawards','2018-03-08 19:57:35','60.216.102.*'),(398716,1,'fisawards','2018-03-08 19:57:58','218.94.106.*'),(398717,1,'fisawards','2018-03-08 19:58:25','31.209.5.*'),(398718,1,'fisawards','2018-03-08 19:58:39','112.91.59.*'),(398719,1,'fisawards','2018-03-08 19:58:52','153.37.22.*'),(398720,1,'fisawards','2018-03-08 19:59:46','111.40.73.*'),(398721,1,'fisawards','2018-03-08 20:00:00','61.190.214.*'),(398722,1,'fisawards','2018-03-08 20:00:57','60.12.84.*'),(398723,1,'fisawards','2018-03-08 20:00:59','221.224.25.*'),(398724,1,'fisawards','2018-03-08 20:01:13','218.205.52.*'),(398725,1,'fisawards','2018-03-08 20:01:15','123.183.208.*'),(398726,1,'fisawards','2018-03-08 20:01:17','177.99.211.*'),(398727,1,'fisawards','2018-03-08 20:01:29','110.249.218.*'),(398728,1,'fisawards','2018-03-08 20:01:42','183.214.89.*'),(398729,1,'fisawards','2018-03-08 20:01:57','213.193.33.*'),(398730,1,'fisawards','2018-03-08 20:02:11','218.23.26.*'),(398731,1,'fisawards','2018-03-08 20:02:23','223.220.248.*'),(398732,1,'fisawards','2018-03-08 20:02:43','116.53.130.*'),(398733,1,'fisawards','2018-03-08 20:02:47','41.73.130.*'),(398734,1,'fisawards','2018-03-08 20:03:21','110.167.197.*'),(398735,1,'fisawards','2018-03-08 20:03:33','120.35.12.*'),(398736,1,'fisawards','2018-03-08 20:03:48','116.1.1.*'),(398737,1,'fisawards','2018-03-08 20:04:10','75.149.3.*'),(398738,1,'fisawards','2018-03-08 20:04:15','119.60.26.*'),(398739,1,'fisawards','2018-03-08 20:04:17','115.238.31.*'),(398740,1,'fisawards','2018-03-08 20:04:50','122.252.239.*'),(398741,1,'fisawards','2018-03-08 20:05:24','218.84.117.*'),(398742,1,'fisawards','2018-03-08 20:05:26','58.20.185.*'),(398743,1,'fisawards','2018-03-08 20:05:28','221.176.149.*'),(398744,1,'fisawards','2018-03-08 20:05:30','220.164.2.*'),(398745,1,'fisawards','2018-03-08 20:05:32','61.178.243.*'),(398746,1,'fisawards','2018-03-08 20:05:44','197.251.204.*'),(398747,1,'fisawards','2018-03-08 20:05:57','116.113.96.*'),(398748,1,'fisawards','2018-03-08 20:06:00','124.164.254.*'),(398749,1,'fisawards','2018-03-08 20:06:04','222.170.168.*'),(398750,1,'fisawards','2018-03-08 20:06:17','219.142.132.*'),(398751,1,'fisawards','2018-03-08 20:06:29','222.223.101.*'),(398752,1,'fisawards','2018-03-08 20:06:51','111.39.250.*'),(398753,1,'fisawards','2018-03-08 20:07:04','211.141.209.*'),(398754,1,'fisawards','2018-03-08 20:07:36','78.138.137.*'),(398755,1,'fisawards','2018-03-08 20:07:59','218.107.46.*'),(398756,1,'fisawards','2018-03-08 20:08:02','183.250.71.*'),(398757,1,'fisawards','2018-03-08 20:08:04','60.167.19.*'),(398758,1,'fisawards','2018-03-08 20:08:16','115.236.87.*'),(398759,1,'fisawards','2018-03-08 20:09:08','117.28.250.*'),(398760,1,'fisawards','2018-03-08 20:09:20','121.14.67.*'),(398761,1,'fisawards','2018-03-08 20:09:45','61.163.2.*'),(398762,1,'fisawards','2018-03-08 20:09:47','111.12.150.*'),(398763,1,'fisawards','2018-03-08 20:09:49','112.91.108.*'),(398764,1,'fisawards','2018-03-08 20:10:11','58.210.134.*'),(398765,1,'fisawards','2018-03-08 20:10:14','117.158.187.*'),(398766,1,'fisawards','2018-03-08 20:10:36','220.174.209.*'),(398767,1,'fisawards','2018-03-08 20:10:49','60.171.157.*'),(398768,1,'fisawards','2018-03-08 20:11:22','58.17.221.*'),(398769,1,'fisawards','2018-03-08 20:11:24','60.174.117.*'),(398770,1,'fisawards','2018-03-08 20:11:43','41.58.128.*'),(398771,1,'fisawards','2018-03-08 20:11:47','61.136.104.*'),(398772,1,'fisawards','2018-03-08 20:11:49','222.80.105.*'),(398773,1,'fisawards','2018-03-08 20:11:51','113.140.48.*'),(398774,1,'fisawards','2018-03-08 20:13:00','58.216.199.*'),(398775,1,'fisawards','2018-03-08 20:13:04','115.238.34.*'),(398776,1,'fisawards','2018-03-08 20:13:12','210.74.131.*'),(398777,1,'fisawards','2018-03-08 20:13:14','222.101.93.*'),(398778,1,'fisawards','2018-03-08 20:13:19','196.192.12.*'),(398779,1,'fisawards','2018-03-08 20:13:55','60.249.11.*'),(398780,1,'fisawards','2018-03-08 20:14:58','124.161.35.*'),(398781,1,'fisawards','2018-03-08 20:15:10','182.75.42.*'),(398782,1,'fisawards','2018-03-08 20:15:33','60.13.3.*'),(398783,1,'fisawards','2018-03-08 20:16:07','220.95.232.*'),(398784,1,'fisawards','2018-03-08 20:16:17','61.185.139.*'),(398785,1,'fisawards','2018-03-08 20:16:19','60.30.149.*'),(398786,1,'fisawards','2018-03-08 20:16:41','24.181.242.*'),(398787,1,'fisawards','2018-03-08 20:17:23','210.22.144.*'),(398788,1,'fisawards','2018-03-08 20:17:25','58.210.134.*'),(398789,1,'fisawards','2018-03-08 20:17:38','61.177.25.*'),(398790,1,'fisawards','2018-03-08 20:17:50','182.75.107.*'),(398791,1,'fisawards','2018-03-08 20:18:02','222.188.95.*'),(398792,1,'fisawards','2018-03-08 20:18:06','218.64.57.*'),(398793,1,'fisawards','2018-03-08 20:18:21','112.91.182.*'),(398794,1,'fisawards','2018-03-08 20:18:23','177.19.187.*'),(398795,1,'fisawards','2018-03-08 20:18:25','61.153.49.*'),(398796,1,'fisawards','2018-03-08 20:18:37','58.210.212.*'),(398797,1,'fisawards','2018-03-08 20:18:49','42.104.94.*'),(398798,1,'fisawards','2018-03-08 20:19:10','173.13.69.*'),(398799,1,'fisawards','2018-03-08 20:19:13','60.170.31.*'),(398800,1,'fisawards','2018-03-08 20:19:25','61.187.123.*'),(398801,1,'fisawards','2018-03-08 20:19:30','111.1.89.*'),(398802,1,'fisawards','2018-03-08 20:19:33','183.214.236.*'),(398803,1,'fisawards','2018-03-08 20:19:55','103.224.165.*'),(398804,1,'fisawards','2018-03-08 20:19:59','124.128.73.*'),(398805,1,'fisawards','2018-03-08 20:20:01','218.3.64.*'),(398806,1,'fisawards','2018-03-08 20:20:33','189.204.6.*'),(398807,1,'fisawards','2018-03-08 20:20:56','61.50.130.*'),(398808,1,'fisawards','2018-03-08 20:21:51','182.74.165.*'),(398809,1,'fisawards','2018-03-08 20:21:54','222.84.118.*'),(398810,1,'fisawards','2018-03-08 20:21:57','111.59.90.*'),(398811,1,'fisawards','2018-03-08 20:22:09','220.164.2.*'),(398812,1,'fisawards','2018-03-08 20:22:31','61.161.109.*'),(398813,1,'fisawards','2018-03-08 20:22:33','222.91.97.*'),(398814,1,'fisawards','2018-03-08 20:22:36','219.142.132.*'),(398815,1,'fisawards','2018-03-08 20:22:39','220.164.2.*'),(398816,1,'fisawards','2018-03-08 20:22:42','58.214.239.*'),(398817,1,'fisawards','2018-03-08 20:22:59','60.173.146.*'),(398818,1,'fisawards','2018-03-08 20:23:01','220.164.2.*'),(398819,1,'fisawards','2018-03-08 20:23:05','58.220.234.*'),(398820,1,'fisawards','2018-03-08 20:23:18','112.23.7.*'),(398821,1,'fisawards','2018-03-08 20:23:21','220.174.241.*'),(398822,1,'fisawards','2018-03-08 20:23:53','61.190.150.*'),(398823,0,'admin','2018-03-08 20:24:18','123.57.254.*'),(398824,1,'fisawards','2018-03-08 20:24:34','27.191.153.*'),(398825,1,'fisawards','2018-03-08 20:25:29','221.207.20.*'),(398826,1,'fisawards','2018-03-08 20:25:31','61.134.52.*'),(398827,1,'fisawards','2018-03-08 20:25:43','183.64.79.*'),(398828,1,'fisawards','2018-03-08 20:25:45','60.174.130.*'),(398829,1,'fisawards','2018-03-08 20:25:58','61.136.95.*'),(398830,1,'fisawards','2018-03-08 20:25:59','61.133.218.*'),(398831,1,'fisawards','2018-03-08 20:26:01','118.121.38.*'),(398832,1,'fisawards','2018-03-08 20:26:03','120.194.172.*'),(398833,1,'fisawards','2018-03-08 20:26:06','176.213.130.*'),(398834,1,'fisawards','2018-03-08 20:26:39','59.48.82.*'),(398835,1,'fisawards','2018-03-08 20:26:41','114.104.158.*'),(398836,1,'fisawards','2018-03-08 20:26:43','115.238.247.*'),(398837,1,'fisawards','2018-03-08 20:26:47','171.221.255.*'),(398838,1,'fisawards','2018-03-08 20:27:32','109.171.44.*'),(398839,1,'fisawards','2018-03-08 20:27:34','190.13.106.*'),(398840,1,'fisawards','2018-03-08 20:27:36','114.104.158.*'),(398841,1,'fisawards','2018-03-08 20:27:50','60.2.111.*'),(398842,1,'fisawards','2018-03-08 20:27:57','60.216.102.*'),(398843,1,'fisawards','2018-03-08 20:28:30','222.191.233.*'),(398844,1,'fisawards','2018-03-08 20:28:41','182.71.16.*'),(398845,1,'fisawards','2018-03-08 20:28:43','190.216.184.*'),(398846,1,'fisawards','2018-03-08 20:28:55','106.38.99.*'),(398847,1,'fisawards','2018-03-08 20:29:17','115.238.72.*'),(398848,1,'fisawards','2018-03-08 20:29:19','203.93.109.*'),(398849,1,'fisawards','2018-03-08 20:29:32','211.154.10.*'),(398850,1,'fisawards','2018-03-08 20:30:07','181.110.233.*'),(398851,1,'fisawards','2018-03-08 20:30:30','183.65.17.*'),(398852,1,'fisawards','2018-03-08 20:30:43','210.74.131.*'),(398853,1,'fisawards','2018-03-08 20:30:47','120.209.164.*'),(398854,1,'fisawards','2018-03-08 20:31:18','203.142.65.*'),(398855,1,'fisawards','2018-03-08 20:31:20','182.131.125.*'),(398856,1,'fisawards','2018-03-08 20:31:54','59.48.82.*'),(398857,1,'fisawards','2018-03-08 20:32:15','197.255.192.*'),(398858,1,'fisawards','2018-03-08 20:32:16','122.155.202.*'),(398859,1,'fisawards','2018-03-08 20:32:18','124.239.2.*'),(398860,1,'fisawards','2018-03-08 20:32:21','58.20.187.*'),(398861,1,'fisawards','2018-03-08 20:32:38','120.209.31.*'),(398862,1,'fisawards','2018-03-08 20:32:50','220.178.2.*'),(398863,1,'fisawards','2018-03-08 20:33:02','189.206.125.*'),(398864,1,'fisawards','2018-03-08 20:33:45','218.64.165.*'),(398865,1,'fisawards','2018-03-08 20:33:48','117.149.2.*'),(398866,1,'fisawards','2018-03-08 20:34:34','117.6.79.*'),(398867,1,'fisawards','2018-03-08 20:34:48','218.23.26.*'),(398868,1,'fisawards','2018-03-08 20:34:50','88.255.72.*'),(398869,1,'fisawards','2018-03-08 20:34:56','60.12.84.*'),(398870,1,'fisawards','2018-03-08 20:35:09','220.164.162.*'),(398871,1,'fisawards','2018-03-08 20:35:21','58.220.234.*'),(398872,1,'fisawards','2018-03-08 20:35:23','81.82.223.*'),(398873,1,'fisawards','2018-03-08 20:35:45','112.26.80.*'),(398874,1,'fisawards','2018-03-08 20:36:15','60.173.133.*'),(398875,1,'fisawards','2018-03-08 20:36:15','58.16.29.*'),(398876,1,'fisawards','2018-03-08 20:36:28','58.17.221.*'),(398877,1,'fisawards','2018-03-08 20:36:30','218.200.55.*'),(398878,1,'fisawards','2018-03-08 20:36:45','183.65.17.*'),(398879,1,'fisawards','2018-03-08 20:36:48','124.65.64.*'),(398880,1,'fisawards','2018-03-08 20:36:59','61.134.52.*'),(398881,1,'fisawards','2018-03-08 20:37:01','222.218.17.*'),(398882,1,'fisawards','2018-03-08 20:37:13','58.213.46.*'),(398883,1,'fisawards','2018-03-08 20:37:15','79.135.217.*'),(398884,1,'fisawards','2018-03-08 20:37:36','178.234.35.*'),(398885,1,'fisawards','2018-03-08 20:37:43','116.248.41.*'),(398886,1,'fisawards','2018-03-08 20:38:05','50.242.22.*'),(398887,1,'fisawards','2018-03-08 20:38:07','221.228.242.*'),(398888,1,'fisawards','2018-03-08 20:38:31','219.239.133.*'),(398889,1,'fisawards','2018-03-08 20:38:37','182.73.105.*'),(398890,1,'fisawards','2018-03-08 20:38:39','221.224.114.*'),(398891,1,'fisawards','2018-03-08 20:38:41','182.71.16.*'),(398892,1,'fisawards','2018-03-08 20:38:53','103.40.121.*'),(398893,1,'fisawards','2018-03-08 20:38:55','60.2.111.*'),(398894,1,'fisawards','2018-03-08 20:39:38','222.124.128.*'),(398895,1,'fisawards','2018-03-08 20:39:40','27.254.144.*'),(398896,1,'fisawards','2018-03-08 20:39:52','58.58.135.*'),(398897,1,'fisawards','2018-03-08 20:39:54','61.185.139.*'),(398898,1,'fisawards','2018-03-08 20:39:56','61.160.25.*'),(398899,1,'fisawards','2018-03-08 20:40:24','61.153.215.*'),(398900,1,'fisawards','2018-03-08 20:40:30','61.130.183.*'),(398901,1,'fisawards','2018-03-08 20:40:33','118.163.146.*'),(398902,1,'fisawards','2018-03-08 20:41:06','124.207.57.*'),(398903,1,'fisawards','2018-03-08 20:41:29','58.244.173.*'),(398904,1,'fisawards','2018-03-08 20:41:51','60.216.102.*'),(398905,1,'fisawards','2018-03-08 20:41:53','114.251.196.*'),(398906,1,'fisawards','2018-03-08 20:42:22','210.82.28.*'),(398907,1,'fisawards','2018-03-08 20:42:29','171.105.64.*'),(398908,1,'fisawards','2018-03-08 20:42:31','112.26.82.*'),(398909,1,'fisawards','2018-03-08 20:42:43','82.188.133.*'),(398910,1,'fisawards','2018-03-08 20:43:37','140.118.125.*'),(398911,1,'fisawards','2018-03-08 20:43:49','60.169.65.*'),(398912,1,'fisawards','2018-03-08 20:44:02','112.16.203.*'),(398913,1,'fisawards','2018-03-08 20:44:04','60.170.31.*'),(398914,1,'fisawards','2018-03-08 20:44:06','222.75.176.*'),(398915,1,'fisawards','2018-03-08 20:44:18','125.72.237.*'),(398916,1,'fisawards','2018-03-08 20:44:38','117.40.185.*'),(398917,1,'fisawards','2018-03-08 20:44:41','211.161.90.*'),(398918,1,'fisawards','2018-03-08 20:45:03','61.219.67.*'),(398919,1,'fisawards','2018-03-08 20:45:05','117.159.84.*'),(398920,1,'fisawards','2018-03-08 20:45:08','118.180.215.*'),(398921,1,'fisawards','2018-03-08 20:45:30','181.143.235.*'),(398922,1,'fisawards','2018-03-08 20:46:04','219.159.229.*'),(398923,1,'fisawards','2018-03-08 20:46:06','58.216.199.*'),(398924,1,'fisawards','2018-03-08 20:46:13','60.171.157.*'),(398925,1,'fisawards','2018-03-08 20:46:15','61.163.69.*'),(398926,1,'fisawards','2018-03-08 20:46:42','120.42.52.*'),(398927,1,'fisawards','2018-03-08 20:46:44','61.191.215.*'),(398928,1,'fisawards','2018-03-08 20:47:07','114.141.189.*'),(398929,1,'fisawards','2018-03-08 20:47:23','220.164.2.*'),(398930,1,'fisawards','2018-03-08 20:48:51','58.221.60.*'),(398931,1,'fisawards','2018-03-08 20:48:52','218.93.148.*'),(398932,1,'fisawards','2018-03-08 20:49:12','221.224.40.*'),(398933,1,'fisawards','2018-03-08 20:49:14','211.196.252.*'),(398934,1,'fisawards','2018-03-08 20:49:16','220.248.206.*'),(398935,1,'fisawards','2018-03-08 20:49:18','109.246.33.*'),(398936,1,'fisawards','2018-03-08 20:49:20','58.211.71.*'),(398937,1,'fisawards','2018-03-08 20:49:42','114.199.112.*'),(398938,1,'fisawards','2018-03-08 20:49:45','1.85.7.*'),(398939,1,'fisawards','2018-03-08 20:50:57','91.121.74.*'),(398940,1,'fisawards','2018-03-08 20:51:29','200.29.140.*'),(398941,1,'fisawards','2018-03-08 20:51:52','115.84.112.*'),(398942,1,'fisawards','2018-03-08 21:05:32','206.221.178.*'),(398943,0,'admin','2018-03-08 21:34:12','123.57.254.*'),(398944,1,'fisawards','2018-03-08 22:20:13','91.200.12.*'),(398945,1,'fisawards','2018-03-08 22:20:14','91.200.12.*'),(398946,0,'admin','2018-03-08 22:33:34','80.255.5.*'),(398947,0,'admin','2018-03-08 22:55:56','123.57.254.*'),(398948,1,'fisawards','2018-03-08 23:17:24','180.250.39.*'),(398949,0,'admin','2018-03-08 23:53:08','123.57.254.*'),(398950,0,'admin','2018-03-09 01:51:18','123.57.254.*'),(398951,0,'admin','2018-03-09 02:03:11','123.57.254.*'),(398952,0,'admin','2018-03-09 02:38:41','123.57.254.*'),(398953,1,'fisawards','2018-03-09 05:58:23','183.111.182.*'),(398954,0,'admin','2018-03-09 06:09:58','123.57.254.*'),(398955,0,'admin','2018-03-09 06:13:38','123.57.254.*'),(398956,0,'admin','2018-03-09 07:08:31','123.57.254.*'),(398957,0,'admin','2018-03-09 07:20:17','123.57.254.*'),(398958,0,'admin','2018-03-09 07:31:54','123.57.254.*'),(398959,0,'admin','2018-03-09 08:18:51','123.57.254.*'),(398960,0,'admin','2018-03-09 08:42:13','123.57.254.*'),(398961,0,'admin','2018-03-09 08:53:54','123.57.254.*'),(398962,1,'fisawards','2018-03-09 09:56:23','91.200.12.*'),(398963,1,'fisawards','2018-03-09 09:56:23','91.200.12.*'),(398964,0,'admin','2018-03-09 10:27:43','123.57.254.*'),(398965,0,'admin','2018-03-09 10:39:27','123.57.254.*'),(398966,1,'fisawards','2018-03-09 10:45:25','91.200.12.*'),(398967,1,'fisawards','2018-03-09 10:45:25','91.200.12.*'),(398968,1,'fisawards','2018-03-09 11:13:07','118.126.142.*'),(398969,1,'fisawards','2018-03-09 11:47:11','139.220.240.*'),(398970,1,'fisawards','2018-03-09 11:48:29','80.255.5.*'),(398971,0,'admin','2018-03-09 12:31:53','123.57.254.*'),(398972,0,'admin','2018-03-09 13:00:10','123.57.254.*'),(398973,0,'admin','2018-03-09 14:06:08','123.57.254.*'),(398974,1,'fisawards','2018-03-09 14:17:22','220.164.2.*'),(398975,1,'fisawards','2018-03-09 14:58:54','67.220.184.*'),(398976,0,'admin','2018-03-09 15:49:56','123.57.254.*'),(398977,0,'admin','2018-03-09 16:08:48','123.57.254.*'),(398978,0,'admin','2018-03-09 16:55:49','123.57.254.*'),(398979,0,'admin','2018-03-09 17:42:34','123.57.254.*'),(398980,0,'admin','2018-03-09 19:25:16','123.57.254.*'),(398981,0,'admin','2018-03-09 21:10:55','80.255.5.*'),(398982,1,'fisawards','2018-03-09 21:34:32','91.200.12.*'),(398983,1,'fisawards','2018-03-09 21:34:32','91.200.12.*'),(398984,0,'admin','2018-03-09 23:01:42','123.57.254.*'),(398985,0,'admin','2018-03-09 23:39:25','123.57.254.*'),(398986,1,'fisawards','2018-03-10 00:46:15','188.165.193.*'),(398987,1,'fisawards','2018-03-10 00:46:16','188.165.193.*'),(398988,1,'fisawards','2018-03-10 00:46:16','188.165.193.*'),(398989,1,'fisawards','2018-03-10 00:46:16','188.165.193.*'),(398990,1,'fisawards','2018-03-10 00:46:16','188.165.193.*'),(398991,1,'fisawards','2018-03-10 00:46:17','188.165.193.*'),(398992,1,'fisawards','2018-03-10 00:46:17','188.165.193.*'),(398993,1,'fisawards','2018-03-10 00:46:17','188.165.193.*'),(398994,1,'fisawards','2018-03-10 00:46:17','188.165.193.*'),(398995,1,'fisawards','2018-03-10 00:46:18','188.165.193.*'),(398996,1,'fisawards','2018-03-10 00:46:18','188.165.193.*'),(398997,1,'fisawards','2018-03-10 00:46:18','188.165.193.*'),(398998,1,'fisawards','2018-03-10 00:46:18','188.165.193.*'),(398999,1,'fisawards','2018-03-10 00:46:18','188.165.193.*'),(399000,1,'fisawards','2018-03-10 00:46:19','188.165.193.*'),(399001,1,'fisawards','2018-03-10 00:46:19','188.165.193.*'),(399002,1,'fisawards','2018-03-10 00:46:19','188.165.193.*'),(399003,1,'fisawards','2018-03-10 00:46:19','188.165.193.*'),(399004,1,'fisawards','2018-03-10 00:46:19','188.165.193.*'),(399005,1,'fisawards','2018-03-10 00:46:20','188.165.193.*'),(399006,1,'fisawards','2018-03-10 00:46:20','188.165.193.*'),(399007,1,'fisawards','2018-03-10 00:46:20','188.165.193.*'),(399008,1,'fisawards','2018-03-10 00:46:20','188.165.193.*'),(399009,1,'fisawards','2018-03-10 00:46:20','188.165.193.*'),(399010,1,'fisawards','2018-03-10 00:46:21','188.165.193.*'),(399011,1,'fisawards','2018-03-10 00:46:21','188.165.193.*'),(399012,1,'fisawards','2018-03-10 00:46:21','188.165.193.*'),(399013,1,'fisawards','2018-03-10 00:46:21','188.165.193.*'),(399014,1,'fisawards','2018-03-10 00:46:21','188.165.193.*'),(399015,1,'fisawards','2018-03-10 00:46:22','188.165.193.*'),(399016,1,'fisawards','2018-03-10 00:46:22','188.165.193.*'),(399017,1,'fisawards','2018-03-10 00:46:22','188.165.193.*'),(399018,1,'fisawards','2018-03-10 00:46:22','188.165.193.*'),(399019,1,'fisawards','2018-03-10 00:46:23','188.165.193.*'),(399020,1,'fisawards','2018-03-10 00:46:23','188.165.193.*'),(399021,1,'fisawards','2018-03-10 00:46:23','188.165.193.*'),(399022,1,'fisawards','2018-03-10 00:46:23','188.165.193.*'),(399023,1,'fisawards','2018-03-10 00:46:23','188.165.193.*'),(399024,1,'fisawards','2018-03-10 00:46:24','188.165.193.*'),(399025,1,'fisawards','2018-03-10 00:46:24','188.165.193.*'),(399026,1,'fisawards','2018-03-10 00:46:24','188.165.193.*'),(399027,1,'fisawards','2018-03-10 00:46:24','188.165.193.*'),(399028,1,'fisawards','2018-03-10 00:46:25','188.165.193.*'),(399029,1,'fisawards','2018-03-10 00:46:25','188.165.193.*'),(399030,1,'fisawards','2018-03-10 00:46:25','188.165.193.*'),(399031,1,'fisawards','2018-03-10 00:46:25','188.165.193.*'),(399032,1,'fisawards','2018-03-10 00:46:25','188.165.193.*'),(399033,1,'fisawards','2018-03-10 00:46:26','188.165.193.*'),(399034,1,'fisawards','2018-03-10 00:46:26','188.165.193.*'),(399035,1,'fisawards','2018-03-10 00:46:26','188.165.193.*'),(399036,1,'fisawards','2018-03-10 00:46:27','188.165.193.*'),(399037,1,'fisawards','2018-03-10 00:46:27','188.165.193.*'),(399038,1,'fisawards','2018-03-10 00:46:27','188.165.193.*'),(399039,1,'fisawards','2018-03-10 00:46:27','188.165.193.*'),(399040,1,'fisawards','2018-03-10 00:46:27','188.165.193.*'),(399041,1,'fisawards','2018-03-10 00:46:28','188.165.193.*'),(399042,1,'fisawards','2018-03-10 00:46:28','188.165.193.*'),(399043,1,'fisawards','2018-03-10 00:46:28','188.165.193.*'),(399044,1,'fisawards','2018-03-10 00:46:28','188.165.193.*'),(399045,1,'fisawards','2018-03-10 00:46:29','188.165.193.*'),(399046,1,'fisawards','2018-03-10 00:46:29','188.165.193.*'),(399047,1,'fisawards','2018-03-10 00:46:29','188.165.193.*'),(399048,1,'fisawards','2018-03-10 00:46:29','188.165.193.*'),(399049,1,'fisawards','2018-03-10 00:46:29','188.165.193.*'),(399050,1,'fisawards','2018-03-10 00:46:30','188.165.193.*'),(399051,1,'fisawards','2018-03-10 00:46:30','188.165.193.*'),(399052,1,'fisawards','2018-03-10 00:46:30','188.165.193.*'),(399053,1,'fisawards','2018-03-10 00:46:30','188.165.193.*'),(399054,1,'fisawards','2018-03-10 00:46:31','188.165.193.*'),(399055,1,'fisawards','2018-03-10 00:46:31','188.165.193.*'),(399056,1,'fisawards','2018-03-10 00:46:31','188.165.193.*'),(399057,1,'fisawards','2018-03-10 00:46:31','188.165.193.*'),(399058,1,'fisawards','2018-03-10 00:46:31','188.165.193.*'),(399059,1,'fisawards','2018-03-10 00:46:32','188.165.193.*'),(399060,1,'fisawards','2018-03-10 00:46:32','188.165.193.*'),(399061,1,'fisawards','2018-03-10 00:46:32','188.165.193.*'),(399062,1,'fisawards','2018-03-10 00:46:32','188.165.193.*'),(399063,1,'fisawards','2018-03-10 00:46:33','188.165.193.*'),(399064,1,'fisawards','2018-03-10 00:46:33','188.165.193.*'),(399065,1,'fisawards','2018-03-10 00:46:33','188.165.193.*'),(399066,1,'fisawards','2018-03-10 00:46:33','188.165.193.*'),(399067,1,'fisawards','2018-03-10 00:46:33','188.165.193.*'),(399068,1,'fisawards','2018-03-10 00:46:34','188.165.193.*'),(399069,1,'fisawards','2018-03-10 00:46:34','188.165.193.*'),(399070,1,'fisawards','2018-03-10 00:46:34','188.165.193.*'),(399071,1,'fisawards','2018-03-10 00:46:34','188.165.193.*'),(399072,1,'fisawards','2018-03-10 00:46:35','188.165.193.*'),(399073,1,'fisawards','2018-03-10 00:46:35','188.165.193.*'),(399074,1,'fisawards','2018-03-10 00:46:35','188.165.193.*'),(399075,1,'fisawards','2018-03-10 00:46:35','188.165.193.*'),(399076,1,'fisawards','2018-03-10 00:46:35','188.165.193.*'),(399077,1,'fisawards','2018-03-10 00:46:36','188.165.193.*'),(399078,1,'fisawards','2018-03-10 00:46:36','188.165.193.*'),(399079,1,'fisawards','2018-03-10 00:46:36','188.165.193.*'),(399080,1,'fisawards','2018-03-10 00:46:36','188.165.193.*'),(399081,1,'fisawards','2018-03-10 00:46:36','188.165.193.*'),(399082,1,'fisawards','2018-03-10 00:46:37','188.165.193.*'),(399083,1,'fisawards','2018-03-10 00:46:37','188.165.193.*'),(399084,1,'fisawards','2018-03-10 00:46:37','188.165.193.*'),(399085,1,'fisawards','2018-03-10 00:46:37','188.165.193.*'),(399086,1,'fisawards','2018-03-10 00:46:37','188.165.193.*'),(399087,1,'fisawards','2018-03-10 00:46:38','188.165.193.*'),(399088,1,'fisawards','2018-03-10 00:46:38','188.165.193.*'),(399089,1,'fisawards','2018-03-10 00:46:38','188.165.193.*'),(399090,1,'fisawards','2018-03-10 00:46:39','188.165.193.*'),(399091,1,'fisawards','2018-03-10 00:46:39','188.165.193.*'),(399092,1,'fisawards','2018-03-10 00:46:39','188.165.193.*'),(399093,1,'fisawards','2018-03-10 00:46:39','188.165.193.*'),(399094,1,'fisawards','2018-03-10 00:46:40','188.165.193.*'),(399095,1,'fisawards','2018-03-10 00:46:40','188.165.193.*'),(399096,1,'fisawards','2018-03-10 00:46:40','188.165.193.*'),(399097,1,'fisawards','2018-03-10 00:46:40','188.165.193.*'),(399098,1,'fisawards','2018-03-10 00:46:40','188.165.193.*'),(399099,1,'fisawards','2018-03-10 00:46:41','188.165.193.*'),(399100,1,'fisawards','2018-03-10 00:46:41','188.165.193.*'),(399101,1,'fisawards','2018-03-10 00:46:41','188.165.193.*'),(399102,1,'fisawards','2018-03-10 00:46:41','188.165.193.*'),(399103,1,'fisawards','2018-03-10 00:46:42','188.165.193.*'),(399104,1,'fisawards','2018-03-10 00:46:42','188.165.193.*'),(399105,1,'fisawards','2018-03-10 00:46:42','188.165.193.*'),(399106,1,'fisawards','2018-03-10 00:46:42','188.165.193.*'),(399107,1,'fisawards','2018-03-10 00:46:42','188.165.193.*'),(399108,1,'fisawards','2018-03-10 00:46:43','188.165.193.*'),(399109,1,'fisawards','2018-03-10 00:46:43','188.165.193.*'),(399110,1,'fisawards','2018-03-10 00:46:43','188.165.193.*'),(399111,1,'fisawards','2018-03-10 00:46:43','188.165.193.*'),(399112,1,'fisawards','2018-03-10 00:46:43','188.165.193.*'),(399113,1,'fisawards','2018-03-10 00:46:44','188.165.193.*'),(399114,1,'fisawards','2018-03-10 00:46:44','188.165.193.*'),(399115,1,'fisawards','2018-03-10 00:46:44','188.165.193.*'),(399116,1,'fisawards','2018-03-10 00:46:44','188.165.193.*'),(399117,1,'fisawards','2018-03-10 00:46:45','188.165.193.*'),(399118,1,'fisawards','2018-03-10 00:46:45','188.165.193.*'),(399119,1,'fisawards','2018-03-10 00:46:45','188.165.193.*'),(399120,1,'fisawards','2018-03-10 00:46:45','188.165.193.*'),(399121,1,'fisawards','2018-03-10 00:46:46','188.165.193.*'),(399122,1,'fisawards','2018-03-10 00:46:46','188.165.193.*'),(399123,1,'fisawards','2018-03-10 00:46:46','188.165.193.*'),(399124,1,'fisawards','2018-03-10 00:46:46','188.165.193.*'),(399125,1,'fisawards','2018-03-10 00:46:47','188.165.193.*'),(399126,1,'fisawards','2018-03-10 00:46:47','188.165.193.*'),(399127,1,'fisawards','2018-03-10 00:46:47','188.165.193.*'),(399128,1,'fisawards','2018-03-10 00:46:47','188.165.193.*'),(399129,1,'fisawards','2018-03-10 00:46:47','188.165.193.*'),(399130,1,'fisawards','2018-03-10 00:46:48','188.165.193.*'),(399131,1,'fisawards','2018-03-10 00:46:48','188.165.193.*'),(399132,1,'fisawards','2018-03-10 00:46:48','188.165.193.*'),(399133,1,'fisawards','2018-03-10 00:46:48','188.165.193.*'),(399134,1,'fisawards','2018-03-10 00:46:49','188.165.193.*'),(399135,1,'fisawards','2018-03-10 00:46:49','188.165.193.*'),(399136,1,'fisawards','2018-03-10 00:46:49','188.165.193.*'),(399137,1,'fisawards','2018-03-10 00:46:49','188.165.193.*'),(399138,1,'fisawards','2018-03-10 00:46:50','188.165.193.*'),(399139,1,'fisawards','2018-03-10 00:46:50','188.165.193.*'),(399140,1,'fisawards','2018-03-10 00:46:50','188.165.193.*'),(399141,1,'fisawards','2018-03-10 00:46:50','188.165.193.*'),(399142,1,'fisawards','2018-03-10 00:46:51','188.165.193.*'),(399143,1,'fisawards','2018-03-10 00:46:51','188.165.193.*'),(399144,1,'fisawards','2018-03-10 00:46:51','188.165.193.*'),(399145,1,'fisawards','2018-03-10 00:46:51','188.165.193.*'),(399146,1,'fisawards','2018-03-10 00:46:51','188.165.193.*'),(399147,1,'fisawards','2018-03-10 00:46:52','188.165.193.*'),(399148,1,'fisawards','2018-03-10 00:46:52','188.165.193.*'),(399149,1,'fisawards','2018-03-10 00:46:52','188.165.193.*'),(399150,1,'fisawards','2018-03-10 00:46:52','188.165.193.*'),(399151,0,'admin','2018-03-10 02:10:18','123.57.254.*'),(399152,0,'admin','2018-03-10 02:47:43','123.57.254.*'),(399153,0,'admin','2018-03-10 02:57:03','123.57.254.*'),(399154,0,'admin','2018-03-10 03:15:47','123.57.254.*'),(399155,0,'admin','2018-03-10 05:27:06','123.57.254.*'),(399156,0,'admin','2018-03-10 06:04:38','123.57.254.*'),(399157,1,'fisawards','2018-03-10 07:08:35','153.92.0.*'),(399158,0,'admin','2018-03-10 08:06:32','123.57.254.*'),(399159,0,'admin','2018-03-10 08:44:07','123.57.254.*'),(399160,1,'fisawards','2018-03-10 08:53:37','185.183.107.*'),(399161,1,'fisawards','2018-03-10 09:26:24','91.200.12.*'),(399162,1,'fisawards','2018-03-10 09:26:25','91.200.12.*'),(399163,0,'admin','2018-03-10 11:13:57','123.57.254.*'),(399164,0,'admin','2018-03-10 13:25:14','123.57.254.*'),(399165,0,'admin','2018-03-10 13:34:36','123.57.254.*'),(399166,0,'admin','2018-03-10 13:44:01','123.57.254.*'),(399167,1,'fisawards','2018-03-10 16:19:12','185.98.131.*'),(399168,0,'admin','2018-03-10 16:21:47','123.57.254.*'),(399169,0,'admin','2018-03-10 16:48:18','123.57.254.*'),(399170,0,'admin','2018-03-10 16:48:56','123.57.254.*'),(399171,0,'admin','2018-03-10 17:14:40','123.57.254.*'),(399172,0,'admin','2018-03-10 17:27:51','123.57.254.*'),(399173,0,'admin','2018-03-10 17:29:42','185.183.107.*'),(399174,0,'admin','2018-03-10 17:54:15','123.57.254.*'),(399175,0,'admin','2018-03-10 18:20:36','123.57.254.*'),(399176,0,'admin','2018-03-10 19:15:22','123.57.254.*'),(399177,0,'admin','2018-03-10 20:06:08','123.57.254.*'),(399178,0,'admin','2018-03-10 20:45:47','123.57.254.*'),(399179,0,'admin','2018-03-10 20:59:00','123.57.254.*'),(399180,1,'fisawards','2018-03-10 21:09:30','91.200.12.*'),(399181,1,'fisawards','2018-03-10 21:09:30','91.200.12.*'),(399182,0,'admin','2018-03-10 22:03:59','123.57.254.*'),(399183,0,'admin','2018-03-10 22:42:52','123.57.254.*'),(399184,0,'admin','2018-03-10 22:43:51','123.57.254.*'),(399185,0,'admin','2018-03-10 23:08:53','123.57.254.*'),(399186,0,'admin','2018-03-10 23:48:18','123.57.254.*'),(399187,0,'admin','2018-03-11 00:14:32','123.57.254.*'),(399188,0,'admin','2018-03-11 00:43:11','123.57.254.*'),(399189,0,'admin','2018-03-11 01:46:24','123.57.254.*'),(399190,0,'admin','2018-03-11 02:03:53','123.57.254.*'),(399191,0,'admin','2018-03-11 02:52:01','123.57.254.*'),(399192,0,'admin','2018-03-11 02:57:42','123.57.254.*'),(399193,0,'admin','2018-03-11 03:31:54','123.57.254.*'),(399194,0,'admin','2018-03-11 03:45:02','123.57.254.*'),(399195,0,'admin','2018-03-11 03:58:11','123.57.254.*'),(399196,0,'admin','2018-03-11 04:04:44','123.57.254.*'),(399197,0,'admin','2018-03-11 04:37:35','123.57.254.*'),(399198,0,'admin','2018-03-11 05:25:06','123.57.254.*'),(399199,0,'admin','2018-03-11 05:51:55','123.57.254.*'),(399200,0,'admin','2018-03-11 05:57:14','123.57.254.*'),(399201,0,'admin','2018-03-11 06:10:35','123.57.254.*'),(399202,0,'admin','2018-03-11 06:23:48','123.57.254.*'),(399203,0,'admin','2018-03-11 06:58:58','123.57.254.*'),(399204,1,'fisawards','2018-03-11 08:02:51','92.243.247.*'),(399205,1,'fisawards','2018-03-11 08:02:52','213.140.85.*'),(399206,1,'fisawards','2018-03-11 08:55:00','91.200.12.*'),(399207,1,'fisawards','2018-03-11 08:55:00','91.200.12.*'),(399208,0,'admin','2018-03-11 10:06:08','123.57.254.*'),(399209,0,'admin','2018-03-11 10:46:03','123.57.254.*'),(399210,0,'admin','2018-03-11 11:13:07','123.57.254.*'),(399211,0,'admin','2018-03-11 13:15:51','123.57.254.*'),(399212,0,'admin','2018-03-11 15:16:07','123.57.254.*'),(399213,0,'admin','2018-03-11 15:27:28','123.57.254.*'),(399214,0,'admin','2018-03-11 16:07:29','123.57.254.*'),(399215,0,'admin','2018-03-11 16:20:44','123.57.254.*'),(399216,0,'admin','2018-03-11 16:47:19','123.57.254.*'),(399217,0,'admin','2018-03-11 17:13:47','123.57.254.*'),(399218,0,'admin','2018-03-11 17:42:10','123.57.254.*'),(399219,0,'admin','2018-03-11 18:33:00','123.57.254.*'),(399220,0,'admin','2018-03-11 18:47:36','123.57.254.*'),(399221,0,'admin','2018-03-11 18:59:14','123.57.254.*'),(399222,0,'admin','2018-03-11 19:51:55','123.57.254.*'),(399223,0,'admin','2018-03-11 20:04:43','123.57.254.*'),(399224,0,'admin','2018-03-11 20:05:02','123.57.254.*'),(399225,1,'fisawards','2018-03-11 20:21:24','91.200.12.*'),(399226,1,'fisawards','2018-03-11 20:21:24','91.200.12.*'),(399227,0,'admin','2018-03-11 20:31:11','123.57.254.*'),(399228,0,'admin','2018-03-11 20:43:40','123.57.254.*'),(399229,1,'fisawards','2018-03-11 22:03:42','185.183.107.*'),(399230,0,'admin','2018-03-11 22:27:54','123.57.254.*'),(399231,0,'admin','2018-03-11 22:42:18','123.57.254.*'),(399232,0,'admin','2018-03-11 23:21:45','123.57.254.*'),(399233,0,'admin','2018-03-12 00:01:26','123.57.254.*'),(399234,0,'admin','2018-03-12 00:52:02','123.57.254.*'),(399235,0,'admin','2018-03-12 01:05:17','123.57.254.*'),(399236,0,'admin','2018-03-12 01:34:35','123.57.254.*'),(399237,0,'admin','2018-03-12 03:35:09','123.57.254.*'),(399238,0,'admin','2018-03-12 04:01:54','123.57.254.*'),(399239,0,'admin','2018-03-12 04:28:36','123.57.254.*'),(399240,0,'admin','2018-03-12 05:08:33','123.57.254.*'),(399241,0,'admin','2018-03-12 05:35:19','123.57.254.*'),(399242,0,'admin','2018-03-12 05:48:44','123.57.254.*'),(399243,0,'admin','2018-03-12 10:00:36','185.183.107.*'),(399244,0,'admin','2018-03-12 10:01:40','123.57.254.*'),(399245,0,'admin','2018-03-12 10:35:40','123.57.254.*'),(399246,0,'admin','2018-03-12 11:29:37','123.57.254.*'),(399247,0,'admin','2018-03-12 11:43:39','123.57.254.*'),(399248,0,'admin','2018-03-12 12:09:59','123.57.254.*'),(399249,0,'admin','2018-03-12 13:02:35','123.57.254.*'),(399250,1,'fisawards','2018-03-12 13:32:05','129.158.114.*'),(399251,1,'fisawards','2018-03-12 13:32:06','129.158.114.*'),(399252,1,'fisawards','2018-03-12 13:32:06','129.158.114.*'),(399253,1,'fisawards','2018-03-12 13:32:06','129.158.114.*'),(399254,1,'fisawards','2018-03-12 13:32:07','129.158.114.*'),(399255,1,'fisawards','2018-03-12 13:32:07','129.158.114.*'),(399256,1,'fisawards','2018-03-12 13:32:07','129.158.114.*'),(399257,1,'fisawards','2018-03-12 13:32:08','129.158.114.*'),(399258,1,'fisawards','2018-03-12 13:32:08','129.158.114.*'),(399259,1,'fisawards','2018-03-12 13:32:09','129.158.114.*'),(399260,1,'fisawards','2018-03-12 13:32:09','129.158.114.*'),(399261,1,'fisawards','2018-03-12 13:32:09','129.158.114.*'),(399262,1,'fisawards','2018-03-12 13:32:10','129.158.114.*'),(399263,1,'fisawards','2018-03-12 13:32:10','129.158.114.*'),(399264,1,'fisawards','2018-03-12 13:32:10','129.158.114.*'),(399265,1,'fisawards','2018-03-12 13:32:11','129.158.114.*'),(399266,1,'fisawards','2018-03-12 13:32:11','129.158.114.*'),(399267,1,'fisawards','2018-03-12 13:32:12','129.158.114.*'),(399268,1,'fisawards','2018-03-12 13:32:12','129.158.114.*'),(399269,1,'fisawards','2018-03-12 13:32:12','129.158.114.*'),(399270,1,'fisawards','2018-03-12 13:32:13','129.158.114.*'),(399271,1,'fisawards','2018-03-12 13:32:13','129.158.114.*'),(399272,1,'fisawards','2018-03-12 13:32:13','129.158.114.*'),(399273,1,'fisawards','2018-03-12 13:32:14','129.158.114.*'),(399274,1,'fisawards','2018-03-12 13:32:14','129.158.114.*'),(399275,1,'fisawards','2018-03-12 13:32:15','129.158.114.*'),(399276,1,'fisawards','2018-03-12 13:32:15','129.158.114.*'),(399277,1,'fisawards','2018-03-12 13:32:15','129.158.114.*'),(399278,1,'fisawards','2018-03-12 13:32:16','129.158.114.*'),(399279,1,'fisawards','2018-03-12 13:32:16','129.158.114.*'),(399280,1,'fisawards','2018-03-12 13:32:17','129.158.114.*'),(399281,1,'fisawards','2018-03-12 13:32:17','129.158.114.*'),(399282,1,'fisawards','2018-03-12 13:32:17','129.158.114.*'),(399283,1,'fisawards','2018-03-12 13:32:18','129.158.114.*'),(399284,1,'fisawards','2018-03-12 13:32:18','129.158.114.*'),(399285,1,'fisawards','2018-03-12 13:32:18','129.158.114.*'),(399286,1,'fisawards','2018-03-12 13:32:19','129.158.114.*'),(399287,1,'fisawards','2018-03-12 13:32:19','129.158.114.*'),(399288,1,'fisawards','2018-03-12 13:32:20','129.158.114.*'),(399289,1,'fisawards','2018-03-12 13:32:20','129.158.114.*'),(399290,1,'fisawards','2018-03-12 13:32:20','129.158.114.*'),(399291,1,'fisawards','2018-03-12 13:32:21','129.158.114.*'),(399292,1,'fisawards','2018-03-12 13:32:21','129.158.114.*'),(399293,1,'fisawards','2018-03-12 13:32:21','129.158.114.*'),(399294,1,'fisawards','2018-03-12 13:32:22','129.158.114.*'),(399295,1,'fisawards','2018-03-12 13:32:22','129.158.114.*'),(399296,1,'fisawards','2018-03-12 13:32:23','129.158.114.*'),(399297,1,'fisawards','2018-03-12 13:32:23','129.158.114.*'),(399298,1,'fisawards','2018-03-12 13:32:23','129.158.114.*'),(399299,1,'fisawards','2018-03-12 13:32:24','129.158.114.*'),(399300,1,'fisawards','2018-03-12 13:32:24','129.158.114.*'),(399301,1,'fisawards','2018-03-12 13:32:25','129.158.114.*'),(399302,1,'fisawards','2018-03-12 13:32:25','129.158.114.*'),(399303,1,'fisawards','2018-03-12 13:32:26','129.158.114.*'),(399304,1,'fisawards','2018-03-12 13:32:26','129.158.114.*'),(399305,1,'fisawards','2018-03-12 13:32:26','129.158.114.*'),(399306,1,'fisawards','2018-03-12 13:32:27','129.158.114.*'),(399307,1,'fisawards','2018-03-12 13:32:27','129.158.114.*'),(399308,1,'fisawards','2018-03-12 13:32:28','129.158.114.*'),(399309,1,'fisawards','2018-03-12 13:32:28','129.158.114.*'),(399310,1,'fisawards','2018-03-12 13:32:28','129.158.114.*'),(399311,0,'admin','2018-03-12 14:09:59','123.57.254.*'),(399312,0,'admin','2018-03-12 14:22:12','123.57.254.*'),(399313,0,'admin','2018-03-12 16:08:45','123.57.254.*'),(399314,0,'admin','2018-03-12 16:12:47','123.57.254.*'),(399315,0,'admin','2018-03-12 17:02:03','123.57.254.*'),(399316,0,'admin','2018-03-12 17:07:24','123.57.254.*'),(399317,0,'admin','2018-03-12 17:54:54','123.57.254.*'),(399318,0,'admin','2018-03-12 18:08:05','123.57.254.*'),(399319,0,'admin','2018-03-12 18:34:34','123.57.254.*'),(399320,0,'admin','2018-03-12 18:41:31','123.57.254.*'),(399321,0,'admin','2018-03-12 18:54:50','123.57.254.*'),(399322,0,'admin','2018-03-12 19:35:10','123.57.254.*'),(399323,0,'admin','2018-03-12 20:01:45','123.57.254.*'),(399324,0,'admin','2018-03-12 20:20:01','123.57.254.*'),(399325,0,'admin','2018-03-12 21:09:03','123.57.254.*'),(399326,0,'admin','2018-03-12 21:38:56','123.57.254.*'),(399327,0,'admin','2018-03-12 22:44:36','123.57.254.*'),(399328,0,'admin','2018-03-12 23:09:25','123.57.254.*'),(399329,1,'fisawards','2018-03-12 23:20:13','87.127.112.*'),(399330,1,'fisawards','2018-03-12 23:20:17','130.0.30.*'),(399331,1,'fisawards','2018-03-13 01:13:29','185.183.107.*'),(399332,0,'admin','2018-03-13 01:34:32','123.57.254.*'),(399333,0,'admin','2018-03-13 03:18:57','123.57.254.*'),(399334,0,'admin','2018-03-13 03:19:15','123.57.254.*'),(399335,0,'admin','2018-03-13 03:32:23','123.57.254.*'),(399336,0,'admin','2018-03-13 04:24:41','123.57.254.*'),(399337,0,'admin','2018-03-13 05:04:01','123.57.254.*'),(399338,0,'admin','2018-03-13 07:03:21','123.57.254.*'),(399339,0,'admin','2018-03-13 07:29:43','123.57.254.*'),(399340,0,'admin','2018-03-13 07:43:01','123.57.254.*'),(399341,0,'admin','2018-03-13 07:45:41','123.57.254.*'),(399342,0,'admin','2018-03-13 08:36:05','123.57.254.*'),(399343,0,'admin','2018-03-13 08:39:55','123.57.254.*'),(399344,0,'admin','2018-03-13 09:34:26','123.57.254.*'),(399345,0,'admin','2018-03-13 11:15:33','123.57.254.*'),(399346,0,'admin','2018-03-13 11:23:09','123.57.254.*'),(399347,0,'admin','2018-03-13 12:12:38','185.183.107.*'),(399348,0,'admin','2018-03-13 12:17:55','123.57.254.*'),(399349,0,'admin','2018-03-13 15:30:04','123.57.254.*'),(399350,0,'admin','2018-03-13 15:42:30','123.57.254.*'),(399351,0,'admin','2018-03-13 15:43:54','123.57.254.*'),(399352,0,'fakharabbasadmin','2018-03-13 16:06:52','201.18.18.*'),(399353,0,'fakharabbasadmin','2018-03-13 16:06:54','201.18.18.*'),(399354,0,'fakharabbasadmin','2018-03-13 16:06:54','201.18.18.*'),(399355,0,'fakharabbasadmin','2018-03-13 16:06:55','201.18.18.*'),(399356,0,'fakharabbasadmin','2018-03-13 16:06:56','201.18.18.*'),(399357,0,'fakharabbasadmin','2018-03-13 16:06:56','201.18.18.*'),(399358,0,'fakharabbasadmin','2018-03-13 16:06:57','201.18.18.*'),(399359,0,'fakharabbasadmin','2018-03-13 16:06:58','201.18.18.*'),(399360,0,'fakharabbasadmin','2018-03-13 16:06:59','201.18.18.*'),(399361,0,'fakharabbasadmin','2018-03-13 16:06:59','201.18.18.*'),(399362,0,'fakharabbasadmin','2018-03-13 16:07:00','201.18.18.*'),(399363,0,'fakharabbasadmin','2018-03-13 16:07:01','201.18.18.*'),(399364,0,'fakharabbasadmin','2018-03-13 16:07:01','201.18.18.*'),(399365,0,'fakharabbasadmin','2018-03-13 16:07:02','201.18.18.*'),(399366,0,'fakharabbasadmin','2018-03-13 16:07:03','201.18.18.*'),(399367,0,'fakharabbasadmin','2018-03-13 16:07:03','201.18.18.*'),(399368,0,'fakharabbasadmin','2018-03-13 16:07:04','201.18.18.*'),(399369,0,'fakharabbasadmin','2018-03-13 16:07:05','201.18.18.*'),(399370,0,'fakharabbasadmin','2018-03-13 16:07:05','201.18.18.*'),(399371,0,'fakharabbasadmin','2018-03-13 16:07:06','201.18.18.*'),(399372,0,'fakharabbasadmin','2018-03-13 16:07:07','201.18.18.*'),(399373,0,'fakharabbasadmin','2018-03-13 16:07:07','201.18.18.*'),(399374,0,'fakharabbasadmin','2018-03-13 16:07:08','201.18.18.*'),(399375,0,'fakharabbasadmin','2018-03-13 16:07:09','201.18.18.*'),(399376,0,'fakharabbasadmin','2018-03-13 16:07:09','201.18.18.*'),(399377,0,'fakharabbasadmin','2018-03-13 16:07:10','201.18.18.*'),(399378,0,'fakharabbasadmin','2018-03-13 16:07:11','201.18.18.*'),(399379,0,'fakharabbasadmin','2018-03-13 16:07:11','201.18.18.*'),(399380,0,'fakharabbasadmin','2018-03-13 16:07:12','201.18.18.*'),(399381,0,'fakharabbasadmin','2018-03-13 16:07:13','201.18.18.*'),(399382,0,'fakharabbasadmin','2018-03-13 16:07:13','201.18.18.*'),(399383,0,'fakharabbasadmin','2018-03-13 16:07:14','201.18.18.*'),(399384,0,'fakharabbasadmin','2018-03-13 16:07:15','201.18.18.*'),(399385,0,'fakharabbasadmin','2018-03-13 16:07:15','201.18.18.*'),(399386,0,'fakharabbasadmin','2018-03-13 16:07:16','201.18.18.*'),(399387,0,'fakharabbasadmin','2018-03-13 16:07:17','201.18.18.*'),(399388,0,'fakharabbasadmin','2018-03-13 16:07:17','201.18.18.*'),(399389,0,'fakharabbasadmin','2018-03-13 16:07:18','201.18.18.*'),(399390,0,'fakharabbasadmin','2018-03-13 16:07:19','201.18.18.*'),(399391,0,'fakharabbasadmin','2018-03-13 16:07:20','201.18.18.*'),(399392,0,'fakharabbasadmin','2018-03-13 16:07:20','201.18.18.*'),(399393,0,'fakharabbasadmin','2018-03-13 16:07:21','201.18.18.*'),(399394,0,'fakharabbasadmin','2018-03-13 16:07:22','201.18.18.*'),(399395,0,'fakharabbasadmin','2018-03-13 16:07:23','201.18.18.*'),(399396,0,'fakharabbasadmin','2018-03-13 16:07:23','201.18.18.*'),(399397,0,'fakharabbasadmin','2018-03-13 16:07:24','201.18.18.*'),(399398,0,'fakharabbasadmin','2018-03-13 16:07:25','201.18.18.*'),(399399,0,'fakharabbasadmin','2018-03-13 16:07:25','201.18.18.*'),(399400,0,'fakharabbasadmin','2018-03-13 16:07:26','201.18.18.*'),(399401,0,'fakharabbasadmin','2018-03-13 16:07:27','201.18.18.*'),(399402,0,'fakharabbasadmin','2018-03-13 16:07:28','201.18.18.*'),(399403,0,'fakharabbasadmin','2018-03-13 16:07:29','201.18.18.*'),(399404,0,'fakharabbasadmin','2018-03-13 16:07:30','201.18.18.*'),(399405,0,'fakharabbasadmin','2018-03-13 16:07:31','201.18.18.*'),(399406,0,'fakharabbasadmin','2018-03-13 16:07:31','201.18.18.*'),(399407,0,'fakharabbasadmin','2018-03-13 16:07:32','201.18.18.*'),(399408,0,'fakharabbasadmin','2018-03-13 16:07:33','201.18.18.*'),(399409,0,'fakharabbasadmin','2018-03-13 16:07:33','201.18.18.*'),(399410,0,'fakharabbasadmin','2018-03-13 16:07:34','201.18.18.*'),(399411,0,'fakharabbasadmin','2018-03-13 16:07:35','201.18.18.*'),(399412,0,'fakharabbasadmin','2018-03-13 16:07:35','201.18.18.*'),(399413,0,'fakharabbasadmin','2018-03-13 16:07:36','201.18.18.*'),(399414,0,'fakharabbasadmin','2018-03-13 16:07:37','201.18.18.*'),(399415,0,'fakharabbasadmin','2018-03-13 16:07:37','201.18.18.*'),(399416,0,'fakharabbasadmin','2018-03-13 16:07:38','201.18.18.*'),(399417,0,'fakharabbasadmin','2018-03-13 16:07:39','201.18.18.*'),(399418,0,'fakharabbasadmin','2018-03-13 16:07:39','201.18.18.*'),(399419,0,'fakharabbasadmin','2018-03-13 16:07:40','201.18.18.*'),(399420,0,'fakharabbasadmin','2018-03-13 16:07:41','201.18.18.*'),(399421,0,'fakharabbasadmin','2018-03-13 16:07:41','201.18.18.*'),(399422,0,'fakharabbasadmin','2018-03-13 16:07:42','201.18.18.*'),(399423,0,'fakharabbasadmin','2018-03-13 16:07:43','201.18.18.*'),(399424,0,'fakharabbasadmin','2018-03-13 16:07:44','201.18.18.*'),(399425,0,'fakharabbasadmin','2018-03-13 16:07:44','201.18.18.*'),(399426,0,'fakharabbasadmin','2018-03-13 16:07:45','201.18.18.*'),(399427,0,'fakharabbasadmin','2018-03-13 16:07:46','201.18.18.*'),(399428,0,'fakharabbasadmin','2018-03-13 16:07:46','201.18.18.*'),(399429,0,'fakharabbasadmin','2018-03-13 16:07:47','201.18.18.*'),(399430,0,'fakharabbasadmin','2018-03-13 16:07:48','201.18.18.*'),(399431,0,'fakharabbasadmin','2018-03-13 16:07:49','201.18.18.*'),(399432,0,'fakharabbasadmin','2018-03-13 16:07:49','201.18.18.*'),(399433,0,'fakharabbasadmin','2018-03-13 16:07:50','201.18.18.*'),(399434,0,'fakharabbasadmin','2018-03-13 16:07:51','201.18.18.*'),(399435,0,'fakharabbasadmin','2018-03-13 16:07:51','201.18.18.*'),(399436,0,'fakharabbasadmin','2018-03-13 16:07:52','201.18.18.*'),(399437,0,'fakharabbasadmin','2018-03-13 16:07:53','201.18.18.*'),(399438,0,'fakharabbasadmin','2018-03-13 16:07:54','201.18.18.*'),(399439,0,'fakharabbasadmin','2018-03-13 16:07:54','201.18.18.*'),(399440,0,'fakharabbasadmin','2018-03-13 16:07:55','201.18.18.*'),(399441,0,'fakharabbasadmin','2018-03-13 16:07:56','201.18.18.*'),(399442,0,'fakharabbasadmin','2018-03-13 16:07:57','201.18.18.*'),(399443,0,'fakharabbasadmin','2018-03-13 16:07:57','201.18.18.*'),(399444,0,'fakharabbasadmin','2018-03-13 16:07:58','201.18.18.*'),(399445,0,'fakharabbasadmin','2018-03-13 16:07:59','201.18.18.*'),(399446,0,'fakharabbasadmin','2018-03-13 16:07:59','201.18.18.*'),(399447,0,'fakharabbasadmin','2018-03-13 16:08:00','201.18.18.*'),(399448,0,'fakharabbasadmin','2018-03-13 16:08:01','201.18.18.*'),(399449,0,'fakharabbasadmin','2018-03-13 16:08:02','201.18.18.*'),(399450,0,'fakharabbasadmin','2018-03-13 16:08:02','201.18.18.*'),(399451,0,'fakharabbasadmin','2018-03-13 16:08:03','201.18.18.*'),(399452,0,'fakharabbasadmin','2018-03-13 16:08:04','201.18.18.*'),(399453,0,'fakharabbasadmin','2018-03-13 16:08:04','201.18.18.*'),(399454,0,'fakharabbasadmin','2018-03-13 16:08:05','201.18.18.*'),(399455,0,'fakharabbasadmin','2018-03-13 16:08:06','201.18.18.*'),(399456,0,'fakharabbasadmin','2018-03-13 16:08:06','201.18.18.*'),(399457,0,'fakharabbasadmin','2018-03-13 16:08:07','201.18.18.*'),(399458,0,'fakharabbasadmin','2018-03-13 16:08:08','201.18.18.*'),(399459,0,'fakharabbasadmin','2018-03-13 16:08:09','201.18.18.*'),(399460,0,'fakharabbasadmin','2018-03-13 16:08:09','201.18.18.*'),(399461,0,'fakharabbasadmin','2018-03-13 16:08:10','201.18.18.*'),(399462,0,'fakharabbasadmin','2018-03-13 16:08:11','201.18.18.*'),(399463,0,'fakharabbasadmin','2018-03-13 16:08:12','201.18.18.*'),(399464,0,'fakharabbasadmin','2018-03-13 16:08:12','201.18.18.*'),(399465,0,'fakharabbasadmin','2018-03-13 16:08:13','201.18.18.*'),(399466,0,'fakharabbasadmin','2018-03-13 16:08:14','201.18.18.*'),(399467,0,'fakharabbasadmin','2018-03-13 16:08:14','201.18.18.*'),(399468,0,'fakharabbasadmin','2018-03-13 16:08:15','201.18.18.*'),(399469,0,'fakharabbasadmin','2018-03-13 16:08:16','201.18.18.*'),(399470,0,'fakharabbasadmin','2018-03-13 16:08:16','201.18.18.*'),(399471,0,'fakharabbasadmin','2018-03-13 16:08:17','201.18.18.*'),(399472,0,'fakharabbasadmin','2018-03-13 16:08:18','201.18.18.*'),(399473,0,'fakharabbasadmin','2018-03-13 16:08:19','201.18.18.*'),(399474,0,'fakharabbasadmin','2018-03-13 16:08:19','201.18.18.*'),(399475,0,'fakharabbasadmin','2018-03-13 16:08:20','201.18.18.*'),(399476,0,'fakharabbasadmin','2018-03-13 16:08:21','201.18.18.*'),(399477,0,'fakharabbasadmin','2018-03-13 16:08:22','201.18.18.*'),(399478,0,'fakharabbasadmin','2018-03-13 16:08:22','201.18.18.*'),(399479,0,'fakharabbasadmin','2018-03-13 16:08:23','201.18.18.*'),(399480,0,'fakharabbasadmin','2018-03-13 16:08:24','201.18.18.*'),(399481,0,'fakharabbasadmin','2018-03-13 16:08:25','201.18.18.*'),(399482,0,'fakharabbasadmin','2018-03-13 16:08:25','201.18.18.*'),(399483,0,'fakharabbasadmin','2018-03-13 16:08:26','201.18.18.*'),(399484,0,'fakharabbasadmin','2018-03-13 16:08:27','201.18.18.*'),(399485,0,'fakharabbasadmin','2018-03-13 16:08:27','201.18.18.*'),(399486,0,'fakharabbasadmin','2018-03-13 16:08:28','201.18.18.*'),(399487,0,'fakharabbasadmin','2018-03-13 16:08:29','201.18.18.*'),(399488,0,'fakharabbasadmin','2018-03-13 16:08:30','201.18.18.*'),(399489,0,'fakharabbasadmin','2018-03-13 16:08:30','201.18.18.*'),(399490,0,'fakharabbasadmin','2018-03-13 16:08:31','201.18.18.*'),(399491,0,'fakharabbasadmin','2018-03-13 16:08:32','201.18.18.*'),(399492,0,'fakharabbasadmin','2018-03-13 16:08:33','201.18.18.*'),(399493,0,'fakharabbasadmin','2018-03-13 16:08:33','201.18.18.*'),(399494,0,'fakharabbasadmin','2018-03-13 16:08:34','201.18.18.*'),(399495,0,'fakharabbasadmin','2018-03-13 16:08:35','201.18.18.*'),(399496,0,'fakharabbasadmin','2018-03-13 16:08:35','201.18.18.*'),(399497,0,'fakharabbasadmin','2018-03-13 16:08:36','201.18.18.*'),(399498,0,'fakharabbasadmin','2018-03-13 16:08:37','201.18.18.*'),(399499,0,'fakharabbasadmin','2018-03-13 16:08:37','201.18.18.*'),(399500,0,'fakharabbasadmin','2018-03-13 16:08:38','201.18.18.*'),(399501,0,'fakharabbasadmin','2018-03-13 16:08:39','201.18.18.*'),(399502,0,'fakharabbasadmin','2018-03-13 16:08:39','201.18.18.*'),(399503,0,'fakharabbasadmin','2018-03-13 16:08:40','201.18.18.*'),(399504,0,'fakharabbasadmin','2018-03-13 16:08:41','201.18.18.*'),(399505,0,'fakharabbasadmin','2018-03-13 16:08:41','201.18.18.*'),(399506,0,'fakharabbasadmin','2018-03-13 16:08:42','201.18.18.*'),(399507,0,'fakharabbasadmin','2018-03-13 16:08:43','201.18.18.*'),(399508,0,'fakharabbasadmin','2018-03-13 16:08:43','201.18.18.*'),(399509,0,'fakharabbasadmin','2018-03-13 16:08:44','201.18.18.*'),(399510,0,'fakharabbasadmin','2018-03-13 16:08:45','201.18.18.*'),(399511,0,'fakharabbasadmin','2018-03-13 16:08:45','201.18.18.*'),(399512,0,'fakharabbasadmin','2018-03-13 16:08:46','201.18.18.*'),(399513,0,'fakharabbasadmin','2018-03-13 16:08:47','201.18.18.*'),(399514,0,'fakharabbasadmin','2018-03-13 16:08:47','201.18.18.*'),(399515,0,'fakharabbasadmin','2018-03-13 16:08:48','201.18.18.*'),(399516,0,'fakharabbasadmin','2018-03-13 16:08:49','201.18.18.*'),(399517,0,'fakharabbasadmin','2018-03-13 16:08:49','201.18.18.*'),(399518,0,'fakharabbasadmin','2018-03-13 16:08:50','201.18.18.*'),(399519,0,'fakharabbasadmin','2018-03-13 16:08:51','201.18.18.*'),(399520,0,'fakharabbasadmin','2018-03-13 16:08:52','201.18.18.*'),(399521,0,'fakharabbasadmin','2018-03-13 16:08:52','201.18.18.*'),(399522,0,'fakharabbasadmin','2018-03-13 16:08:53','201.18.18.*'),(399523,0,'fakharabbasadmin','2018-03-13 16:08:54','201.18.18.*'),(399524,0,'fakharabbasadmin','2018-03-13 16:08:54','201.18.18.*'),(399525,0,'fakharabbasadmin','2018-03-13 16:08:55','201.18.18.*'),(399526,0,'fakharabbasadmin','2018-03-13 16:08:56','201.18.18.*'),(399527,0,'fakharabbasadmin','2018-03-13 16:08:57','201.18.18.*'),(399528,0,'fakharabbasadmin','2018-03-13 16:08:57','201.18.18.*'),(399529,0,'fakharabbasadmin','2018-03-13 16:08:58','201.18.18.*'),(399530,0,'fakharabbasadmin','2018-03-13 16:08:59','201.18.18.*'),(399531,0,'fakharabbasadmin','2018-03-13 16:08:59','201.18.18.*'),(399532,0,'fakharabbasadmin','2018-03-13 16:09:00','201.18.18.*'),(399533,0,'fakharabbasadmin','2018-03-13 16:09:01','201.18.18.*'),(399534,0,'fakharabbasadmin','2018-03-13 16:09:01','201.18.18.*'),(399535,0,'fakharabbasadmin','2018-03-13 16:09:02','201.18.18.*'),(399536,0,'fakharabbasadmin','2018-03-13 16:09:03','201.18.18.*'),(399537,0,'fakharabbasadmin','2018-03-13 16:09:03','201.18.18.*'),(399538,0,'fakharabbasadmin','2018-03-13 16:09:04','201.18.18.*'),(399539,0,'fakharabbasadmin','2018-03-13 16:09:05','201.18.18.*'),(399540,0,'fakharabbasadmin','2018-03-13 16:09:06','201.18.18.*'),(399541,0,'fakharabbasadmin','2018-03-13 16:09:06','201.18.18.*'),(399542,0,'fakharabbasadmin','2018-03-13 16:09:07','201.18.18.*'),(399543,0,'fakharabbasadmin','2018-03-13 16:09:08','201.18.18.*'),(399544,0,'fakharabbasadmin','2018-03-13 16:09:08','201.18.18.*'),(399545,0,'fakharabbasadmin','2018-03-13 16:09:09','201.18.18.*'),(399546,0,'fakharabbasadmin','2018-03-13 16:09:10','201.18.18.*'),(399547,0,'fakharabbasadmin','2018-03-13 16:09:10','201.18.18.*'),(399548,0,'fakharabbasadmin','2018-03-13 16:09:11','201.18.18.*'),(399549,0,'fakharabbasadmin','2018-03-13 16:09:12','201.18.18.*'),(399550,0,'fakharabbasadmin','2018-03-13 16:09:13','201.18.18.*'),(399551,0,'fakharabbasadmin','2018-03-13 16:09:13','201.18.18.*'),(399552,0,'fakharabbasadmin','2018-03-13 16:09:14','201.18.18.*'),(399553,0,'fakharabbasadmin','2018-03-13 16:09:15','201.18.18.*'),(399554,0,'admin','2018-03-13 16:52:11','123.57.254.*'),(399555,0,'admin','2018-03-13 17:05:47','123.57.254.*'),(399556,0,'admin','2018-03-13 20:13:33','123.57.254.*'),(399557,0,'admin','2018-03-13 20:21:47','123.57.254.*'),(399558,0,'admin','2018-03-13 20:48:12','123.57.254.*'),(399559,0,'admin','2018-03-13 21:40:56','123.57.254.*'),(399560,0,'admin','2018-03-13 22:20:21','123.57.254.*'),(399561,0,'admin','2018-03-13 22:46:39','123.57.254.*'),(399562,1,'fisawards','2018-03-13 23:54:12','91.200.12.*'),(399563,0,'admin','2018-03-14 00:05:45','123.57.254.*'),(399564,0,'admin','2018-03-14 00:54:12','123.57.254.*'),(399565,0,'admin','2018-03-14 01:34:19','123.57.254.*'),(399566,0,'admin','2018-03-14 01:47:38','123.57.254.*'),(399567,0,'admin','2018-03-14 01:52:03','123.57.254.*'),(399568,1,'fisawards','2018-03-14 01:59:57','58.20.185.*'),(399569,1,'fisawards','2018-03-14 02:31:43','185.183.107.*'),(399570,0,'admin','2018-03-14 02:54:33','123.57.254.*'),(399571,0,'admin','2018-03-14 03:25:42','123.57.254.*'),(399572,0,'admin','2018-03-14 03:39:01','123.57.254.*'),(399573,0,'admin','2018-03-14 04:02:05','123.57.254.*'),(399574,0,'admin','2018-03-14 04:05:40','123.57.254.*'),(399575,0,'admin','2018-03-14 04:15:37','123.57.254.*'),(399576,0,'admin','2018-03-14 04:32:28','123.57.254.*'),(399577,1,'fisawards','2018-03-14 04:39:31','92.243.227.*'),(399578,0,'admin','2018-03-14 04:59:24','123.57.254.*'),(399579,0,'admin','2018-03-14 05:23:13','123.57.254.*'),(399580,0,'admin','2018-03-14 05:52:54','123.57.254.*'),(399581,0,'admin','2018-03-14 06:06:17','123.57.254.*'),(399582,0,'admin','2018-03-14 06:19:34','123.57.254.*'),(399583,1,'fisawards','2018-03-14 06:50:04','91.200.12.*'),(399584,0,'admin','2018-03-14 06:58:14','123.57.254.*'),(399585,0,'admin','2018-03-14 07:12:39','123.57.254.*'),(399586,0,'admin','2018-03-14 07:25:55','123.57.254.*'),(399587,0,'admin','2018-03-14 07:39:05','123.57.254.*'),(399588,0,'admin','2018-03-14 08:31:23','123.57.254.*'),(399589,0,'admin','2018-03-14 09:11:14','123.57.254.*'),(399590,0,'admin','2018-03-14 09:37:33','123.57.254.*'),(399591,0,'admin','2018-03-14 09:37:41','123.57.254.*'),(399592,0,'admin','2018-03-14 10:04:17','123.57.254.*'),(399593,0,'admin','2018-03-14 10:30:53','123.57.254.*'),(399594,0,'admin','2018-03-14 11:23:35','123.57.254.*'),(399595,0,'admin','2018-03-14 11:24:17','123.57.254.*'),(399596,0,'admin','2018-03-14 11:37:46','123.57.254.*'),(399597,0,'admin','2018-03-14 12:16:31','123.57.254.*'),(399598,0,'admin','2018-03-14 12:21:10','185.183.107.*'),(399599,0,'admin','2018-03-14 12:58:58','123.57.254.*'),(399600,0,'admin','2018-03-14 13:01:44','91.200.12.*'),(399601,0,'admin','2018-03-14 13:09:35','123.57.254.*'),(399602,0,'admin','2018-03-14 13:12:29','123.57.254.*'),(399603,0,'admin','2018-03-14 13:39:48','123.57.254.*'),(399604,0,'admin','2018-03-14 14:34:31','123.57.254.*'),(399605,0,'admin','2018-03-14 15:36:51','123.57.254.*'),(399606,0,'admin','2018-03-14 16:30:23','123.57.254.*'),(399607,0,'admin','2018-03-14 16:57:56','91.200.12.*'),(399608,0,'admin','2018-03-14 17:05:49','123.57.254.*'),(399609,0,'admin','2018-03-14 17:23:29','123.57.254.*'),(399610,0,'admin','2018-03-14 17:36:45','123.57.254.*'),(399611,0,'admin','2018-03-14 18:13:21','123.57.254.*'),(399612,0,'admin','2018-03-14 18:40:28','123.57.254.*'),(399613,0,'admin','2018-03-14 19:21:19','121.41.76.*'),(399614,0,'admin','2018-03-14 19:21:19','121.41.76.*'),(399615,0,'admin','2018-03-14 19:21:20','121.41.76.*'),(399616,0,'admin','2018-03-14 19:21:21','121.41.76.*'),(399617,0,'admin','2018-03-14 19:21:21','121.41.76.*'),(399618,0,'admin','2018-03-14 19:21:22','121.41.76.*'),(399619,0,'admin','2018-03-14 19:21:22','121.41.76.*'),(399620,0,'admin','2018-03-14 19:21:23','121.41.76.*'),(399621,0,'admin','2018-03-14 19:21:24','121.41.76.*'),(399622,0,'admin','2018-03-14 19:21:24','121.41.76.*'),(399623,0,'admin','2018-03-14 19:21:25','121.41.76.*'),(399624,0,'admin','2018-03-14 19:21:25','121.41.76.*'),(399625,0,'admin','2018-03-14 19:21:26','121.41.76.*'),(399626,0,'admin','2018-03-14 19:21:27','121.41.76.*'),(399627,0,'admin','2018-03-14 19:21:27','121.41.76.*'),(399628,0,'admin','2018-03-14 19:21:28','121.41.76.*'),(399629,0,'admin','2018-03-14 19:21:29','121.41.76.*'),(399630,0,'admin','2018-03-14 19:21:29','121.41.76.*'),(399631,0,'admin','2018-03-14 19:21:30','121.41.76.*'),(399632,0,'admin','2018-03-14 19:21:31','121.41.76.*'),(399633,0,'admin','2018-03-14 19:21:31','121.41.76.*'),(399634,0,'admin','2018-03-14 19:21:32','121.41.76.*'),(399635,0,'admin','2018-03-14 19:21:32','121.41.76.*'),(399636,0,'admin','2018-03-14 19:21:33','121.41.76.*'),(399637,0,'admin','2018-03-14 19:21:34','121.41.76.*'),(399638,0,'admin','2018-03-14 19:21:34','121.41.76.*'),(399639,0,'admin','2018-03-14 19:21:35','121.41.76.*'),(399640,0,'admin','2018-03-14 19:21:36','121.41.76.*'),(399641,0,'admin','2018-03-14 19:21:36','121.41.76.*'),(399642,0,'admin','2018-03-14 19:21:37','121.41.76.*'),(399643,0,'admin','2018-03-14 19:21:37','121.41.76.*'),(399644,0,'admin','2018-03-14 19:21:38','121.41.76.*'),(399645,0,'admin','2018-03-14 19:21:39','121.41.76.*'),(399646,0,'admin','2018-03-14 19:21:39','121.41.76.*'),(399647,0,'admin','2018-03-14 19:21:40','121.41.76.*'),(399648,0,'admin','2018-03-14 19:21:40','121.41.76.*'),(399649,0,'admin','2018-03-14 19:21:41','121.41.76.*'),(399650,0,'admin','2018-03-14 19:21:42','121.41.76.*'),(399651,0,'admin','2018-03-14 19:21:42','121.41.76.*'),(399652,0,'admin','2018-03-14 19:21:43','121.41.76.*'),(399653,0,'admin','2018-03-14 19:21:44','121.41.76.*'),(399654,0,'admin','2018-03-14 19:21:44','121.41.76.*'),(399655,0,'admin','2018-03-14 19:21:45','121.41.76.*'),(399656,0,'admin','2018-03-14 19:21:45','121.41.76.*'),(399657,0,'admin','2018-03-14 19:21:46','121.41.76.*'),(399658,0,'admin','2018-03-14 19:21:47','121.41.76.*'),(399659,0,'admin','2018-03-14 19:21:47','121.41.76.*'),(399660,0,'admin','2018-03-14 19:21:48','121.41.76.*'),(399661,0,'admin','2018-03-14 19:21:48','121.41.76.*'),(399662,0,'admin','2018-03-14 19:21:49','121.41.76.*'),(399663,0,'admin','2018-03-14 19:21:50','121.41.76.*'),(399664,0,'admin','2018-03-14 19:21:50','121.41.76.*'),(399665,0,'admin','2018-03-14 19:21:51','121.41.76.*'),(399666,0,'admin','2018-03-14 19:21:51','121.41.76.*'),(399667,0,'admin','2018-03-14 19:21:52','121.41.76.*'),(399668,0,'admin','2018-03-14 19:21:53','121.41.76.*'),(399669,0,'admin','2018-03-14 19:21:53','121.41.76.*'),(399670,0,'admin','2018-03-14 19:21:54','121.41.76.*'),(399671,0,'admin','2018-03-14 19:21:55','121.41.76.*'),(399672,0,'admin','2018-03-14 19:21:55','121.41.76.*'),(399673,0,'admin','2018-03-14 19:21:56','121.41.76.*'),(399674,0,'admin','2018-03-14 19:21:56','121.41.76.*'),(399675,0,'admin','2018-03-14 19:21:57','121.41.76.*'),(399676,0,'admin','2018-03-14 19:21:58','121.41.76.*'),(399677,0,'admin','2018-03-14 19:21:58','121.41.76.*'),(399678,0,'admin','2018-03-14 19:21:59','121.41.76.*'),(399679,0,'admin','2018-03-14 19:22:00','121.41.76.*'),(399680,0,'admin','2018-03-14 19:22:00','121.41.76.*'),(399681,0,'admin','2018-03-14 19:22:01','121.41.76.*'),(399682,0,'admin','2018-03-14 19:22:01','121.41.76.*'),(399683,0,'admin','2018-03-14 19:22:02','121.41.76.*'),(399684,0,'admin','2018-03-14 19:22:02','121.41.76.*'),(399685,0,'admin','2018-03-14 19:22:03','121.41.76.*'),(399686,0,'admin','2018-03-14 19:22:04','121.41.76.*'),(399687,0,'admin','2018-03-14 19:22:05','121.41.76.*'),(399688,0,'admin','2018-03-14 19:22:06','121.41.76.*'),(399689,0,'admin','2018-03-14 19:22:06','121.41.76.*'),(399690,0,'admin','2018-03-14 19:22:07','121.41.76.*'),(399691,0,'admin','2018-03-14 19:22:08','121.41.76.*'),(399692,0,'admin','2018-03-14 19:22:08','121.41.76.*'),(399693,0,'admin','2018-03-14 19:22:09','121.41.76.*'),(399694,0,'webadmin','2018-03-14 19:22:10','121.41.76.*'),(399695,0,'webadmin','2018-03-14 19:22:10','121.41.76.*'),(399696,0,'webadmin','2018-03-14 19:22:11','121.41.76.*'),(399697,0,'webadmin','2018-03-14 19:22:11','121.41.76.*'),(399698,0,'webadmin','2018-03-14 19:22:12','121.41.76.*'),(399699,0,'webadmin','2018-03-14 19:22:13','121.41.76.*'),(399700,0,'webadmin','2018-03-14 19:22:13','121.41.76.*'),(399701,0,'webadmin','2018-03-14 19:22:14','121.41.76.*'),(399702,0,'webadmin','2018-03-14 19:22:14','121.41.76.*'),(399703,0,'webadmin','2018-03-14 19:22:15','121.41.76.*'),(399704,0,'webadmin','2018-03-14 19:22:16','121.41.76.*'),(399705,0,'webadmin','2018-03-14 19:22:16','121.41.76.*'),(399706,0,'webadmin','2018-03-14 19:22:17','121.41.76.*'),(399707,0,'webadmin','2018-03-14 19:22:18','121.41.76.*'),(399708,0,'webadmin','2018-03-14 19:22:18','121.41.76.*'),(399709,0,'webadmin','2018-03-14 19:22:19','121.41.76.*'),(399710,0,'webadmin','2018-03-14 19:22:20','121.41.76.*'),(399711,0,'webadmin','2018-03-14 19:22:20','121.41.76.*'),(399712,0,'webadmin','2018-03-14 19:22:21','121.41.76.*'),(399713,0,'webadmin','2018-03-14 19:22:21','121.41.76.*'),(399714,0,'webadmin','2018-03-14 19:22:22','121.41.76.*'),(399715,0,'webadmin','2018-03-14 19:22:23','121.41.76.*'),(399716,0,'webadmin','2018-03-14 19:22:23','121.41.76.*'),(399717,0,'webadmin','2018-03-14 19:22:24','121.41.76.*'),(399718,0,'webadmin','2018-03-14 19:22:24','121.41.76.*'),(399719,0,'webadmin','2018-03-14 19:22:25','121.41.76.*'),(399720,0,'webadmin','2018-03-14 19:22:26','121.41.76.*'),(399721,0,'webadmin','2018-03-14 19:22:26','121.41.76.*'),(399722,0,'webadmin','2018-03-14 19:22:27','121.41.76.*'),(399723,0,'webadmin','2018-03-14 19:22:28','121.41.76.*'),(399724,0,'webadmin','2018-03-14 19:22:28','121.41.76.*'),(399725,0,'webadmin','2018-03-14 19:22:29','121.41.76.*'),(399726,0,'webadmin','2018-03-14 19:22:29','121.41.76.*'),(399727,0,'webadmin','2018-03-14 19:22:30','121.41.76.*'),(399728,0,'webadmin','2018-03-14 19:22:31','121.41.76.*'),(399729,0,'webadmin','2018-03-14 19:22:31','121.41.76.*'),(399730,0,'webadmin','2018-03-14 19:22:32','121.41.76.*'),(399731,0,'webadmin','2018-03-14 19:22:33','121.41.76.*'),(399732,0,'webadmin','2018-03-14 19:22:33','121.41.76.*'),(399733,0,'webadmin','2018-03-14 19:22:34','121.41.76.*'),(399734,0,'webadmin','2018-03-14 19:22:35','121.41.76.*'),(399735,0,'webadmin','2018-03-14 19:22:35','121.41.76.*'),(399736,0,'webadmin','2018-03-14 19:22:36','121.41.76.*'),(399737,0,'webadmin','2018-03-14 19:22:37','121.41.76.*'),(399738,0,'webadmin','2018-03-14 19:22:37','121.41.76.*'),(399739,0,'webadmin','2018-03-14 19:22:38','121.41.76.*'),(399740,0,'webadmin','2018-03-14 19:22:38','121.41.76.*'),(399741,0,'webadmin','2018-03-14 19:22:39','121.41.76.*'),(399742,0,'webadmin','2018-03-14 19:22:40','121.41.76.*'),(399743,0,'webadmin','2018-03-14 19:22:40','121.41.76.*'),(399744,0,'webadmin','2018-03-14 19:22:41','121.41.76.*'),(399745,0,'webadmin','2018-03-14 19:22:42','121.41.76.*'),(399746,0,'webadmin','2018-03-14 19:22:42','121.41.76.*'),(399747,0,'webadmin','2018-03-14 19:22:43','121.41.76.*'),(399748,0,'webadmin','2018-03-14 19:22:43','121.41.76.*'),(399749,0,'webadmin','2018-03-14 19:22:44','121.41.76.*'),(399750,0,'webadmin','2018-03-14 19:22:45','121.41.76.*'),(399751,0,'webadmin','2018-03-14 19:22:45','121.41.76.*'),(399752,0,'webadmin','2018-03-14 19:22:46','121.41.76.*'),(399753,0,'webadmin','2018-03-14 19:22:47','121.41.76.*'),(399754,0,'webadmin','2018-03-14 19:22:47','121.41.76.*'),(399755,0,'webadmin','2018-03-14 19:22:48','121.41.76.*'),(399756,0,'webadmin','2018-03-14 19:22:48','121.41.76.*'),(399757,0,'webadmin','2018-03-14 19:22:49','121.41.76.*'),(399758,0,'webadmin','2018-03-14 19:22:50','121.41.76.*'),(399759,0,'webadmin','2018-03-14 19:22:50','121.41.76.*'),(399760,0,'webadmin','2018-03-14 19:22:51','121.41.76.*'),(399761,0,'webadmin','2018-03-14 19:22:51','121.41.76.*'),(399762,0,'webadmin','2018-03-14 19:22:52','121.41.76.*'),(399763,0,'webadmin','2018-03-14 19:22:53','121.41.76.*'),(399764,0,'webadmin','2018-03-14 19:22:53','121.41.76.*'),(399765,0,'webadmin','2018-03-14 19:22:54','121.41.76.*'),(399766,0,'webadmin','2018-03-14 19:22:55','121.41.76.*'),(399767,0,'webadmin','2018-03-14 19:22:55','121.41.76.*'),(399768,0,'webadmin','2018-03-14 19:22:56','121.41.76.*'),(399769,0,'webadmin','2018-03-14 19:22:57','121.41.76.*'),(399770,0,'webadmin','2018-03-14 19:22:57','121.41.76.*'),(399771,0,'webadmin','2018-03-14 19:22:58','121.41.76.*'),(399772,0,'webadmin','2018-03-14 19:22:59','121.41.76.*'),(399773,0,'webadmin','2018-03-14 19:22:59','121.41.76.*'),(399774,0,'webadmin','2018-03-14 19:23:00','121.41.76.*'),(399775,0,'webadmin','2018-03-14 19:23:00','121.41.76.*'),(399776,0,'webmaster','2018-03-14 19:23:01','121.41.76.*'),(399777,0,'webmaster','2018-03-14 19:23:02','121.41.76.*'),(399778,0,'webmaster','2018-03-14 19:23:02','121.41.76.*'),(399779,0,'webmaster','2018-03-14 19:23:03','121.41.76.*'),(399780,0,'webmaster','2018-03-14 19:23:03','121.41.76.*'),(399781,0,'webmaster','2018-03-14 19:23:04','121.41.76.*'),(399782,0,'webmaster','2018-03-14 19:23:05','121.41.76.*'),(399783,0,'webmaster','2018-03-14 19:23:05','121.41.76.*'),(399784,0,'webmaster','2018-03-14 19:23:06','121.41.76.*'),(399785,0,'webmaster','2018-03-14 19:23:07','121.41.76.*'),(399786,0,'webmaster','2018-03-14 19:23:07','121.41.76.*'),(399787,0,'webmaster','2018-03-14 19:23:08','121.41.76.*'),(399788,0,'webmaster','2018-03-14 19:23:08','121.41.76.*'),(399789,0,'webmaster','2018-03-14 19:23:09','121.41.76.*'),(399790,0,'webmaster','2018-03-14 19:23:10','121.41.76.*'),(399791,0,'webmaster','2018-03-14 19:23:10','121.41.76.*'),(399792,0,'webmaster','2018-03-14 19:23:11','121.41.76.*'),(399793,0,'webmaster','2018-03-14 19:23:11','121.41.76.*'),(399794,0,'webmaster','2018-03-14 19:23:12','121.41.76.*'),(399795,0,'webmaster','2018-03-14 19:23:13','121.41.76.*'),(399796,0,'webmaster','2018-03-14 19:23:13','121.41.76.*'),(399797,0,'webmaster','2018-03-14 19:23:14','121.41.76.*'),(399798,0,'webmaster','2018-03-14 19:23:15','121.41.76.*'),(399799,0,'webmaster','2018-03-14 19:23:15','121.41.76.*'),(399800,0,'webmaster','2018-03-14 19:23:16','121.41.76.*'),(399801,0,'webmaster','2018-03-14 19:23:16','121.41.76.*'),(399802,0,'webmaster','2018-03-14 19:23:17','121.41.76.*'),(399803,0,'webmaster','2018-03-14 19:23:18','121.41.76.*'),(399804,0,'webmaster','2018-03-14 19:23:19','121.41.76.*'),(399805,0,'webmaster','2018-03-14 19:23:19','121.41.76.*'),(399806,0,'webmaster','2018-03-14 19:23:20','121.41.76.*'),(399807,0,'webmaster','2018-03-14 19:23:22','121.41.76.*'),(399808,0,'webmaster','2018-03-14 19:23:23','121.41.76.*'),(399809,0,'webmaster','2018-03-14 19:23:24','121.41.76.*'),(399810,0,'webmaster','2018-03-14 19:23:24','121.41.76.*'),(399811,0,'webmaster','2018-03-14 19:23:25','121.41.76.*'),(399812,0,'webmaster','2018-03-14 19:23:26','121.41.76.*'),(399813,0,'webmaster','2018-03-14 19:23:26','121.41.76.*'),(399814,0,'webmaster','2018-03-14 19:23:27','121.41.76.*'),(399815,0,'webmaster','2018-03-14 19:23:27','121.41.76.*'),(399816,0,'webmaster','2018-03-14 19:23:28','121.41.76.*'),(399817,0,'webmaster','2018-03-14 19:23:29','121.41.76.*'),(399818,0,'webmaster','2018-03-14 19:23:29','121.41.76.*'),(399819,0,'webmaster','2018-03-14 19:23:30','121.41.76.*'),(399820,0,'webmaster','2018-03-14 19:23:30','121.41.76.*'),(399821,0,'webmaster','2018-03-14 19:23:31','121.41.76.*'),(399822,0,'webmaster','2018-03-14 19:23:32','121.41.76.*'),(399823,0,'webmaster','2018-03-14 19:23:32','121.41.76.*'),(399824,0,'webmaster','2018-03-14 19:23:33','121.41.76.*'),(399825,0,'webmaster','2018-03-14 19:23:34','121.41.76.*'),(399826,0,'webmaster','2018-03-14 19:23:34','121.41.76.*'),(399827,0,'webmaster','2018-03-14 19:23:35','121.41.76.*'),(399828,0,'webmaster','2018-03-14 19:23:35','121.41.76.*'),(399829,0,'webmaster','2018-03-14 19:23:36','121.41.76.*'),(399830,0,'webmaster','2018-03-14 19:23:37','121.41.76.*'),(399831,0,'webmaster','2018-03-14 19:23:37','121.41.76.*'),(399832,0,'webmaster','2018-03-14 19:23:38','121.41.76.*'),(399833,0,'webmaster','2018-03-14 19:23:39','121.41.76.*'),(399834,0,'webmaster','2018-03-14 19:23:39','121.41.76.*'),(399835,0,'webmaster','2018-03-14 19:23:40','121.41.76.*'),(399836,0,'webmaster','2018-03-14 19:23:41','121.41.76.*'),(399837,0,'webmaster','2018-03-14 19:23:41','121.41.76.*'),(399838,0,'webmaster','2018-03-14 19:23:42','121.41.76.*'),(399839,0,'webmaster','2018-03-14 19:23:43','121.41.76.*'),(399840,0,'webmaster','2018-03-14 19:23:43','121.41.76.*'),(399841,0,'webmaster','2018-03-14 19:23:44','121.41.76.*'),(399842,0,'webmaster','2018-03-14 19:23:44','121.41.76.*'),(399843,0,'webmaster','2018-03-14 19:23:45','121.41.76.*'),(399844,0,'webmaster','2018-03-14 19:23:46','121.41.76.*'),(399845,0,'webmaster','2018-03-14 19:23:46','121.41.76.*'),(399846,0,'webmaster','2018-03-14 19:23:47','121.41.76.*'),(399847,0,'webmaster','2018-03-14 19:23:48','121.41.76.*'),(399848,0,'webmaster','2018-03-14 19:23:48','121.41.76.*'),(399849,0,'webmaster','2018-03-14 19:23:49','121.41.76.*'),(399850,0,'webmaster','2018-03-14 19:23:50','121.41.76.*'),(399851,0,'webmaster','2018-03-14 19:23:50','121.41.76.*'),(399852,0,'webmaster','2018-03-14 19:23:51','121.41.76.*'),(399853,0,'webmaster','2018-03-14 19:23:52','121.41.76.*'),(399854,0,'webmaster','2018-03-14 19:23:52','121.41.76.*'),(399855,0,'webmaster','2018-03-14 19:23:53','121.41.76.*'),(399856,0,'webmaster','2018-03-14 19:23:53','121.41.76.*'),(399857,0,'webmaster','2018-03-14 19:23:54','121.41.76.*'),(399858,0,'webmaster','2018-03-14 19:23:55','121.41.76.*'),(399859,0,'webmaster','2018-03-14 19:23:55','121.41.76.*'),(399860,0,'root','2018-03-14 19:23:56','121.41.76.*'),(399861,0,'root','2018-03-14 19:23:56','121.41.76.*'),(399862,0,'root','2018-03-14 19:23:57','121.41.76.*'),(399863,0,'root','2018-03-14 19:23:58','121.41.76.*'),(399864,0,'root','2018-03-14 19:23:58','121.41.76.*'),(399865,0,'root','2018-03-14 19:23:59','121.41.76.*'),(399866,0,'root','2018-03-14 19:24:00','121.41.76.*'),(399867,0,'root','2018-03-14 19:24:00','121.41.76.*'),(399868,0,'root','2018-03-14 19:24:01','121.41.76.*'),(399869,0,'root','2018-03-14 19:24:02','121.41.76.*'),(399870,0,'root','2018-03-14 19:24:02','121.41.76.*'),(399871,0,'root','2018-03-14 19:24:03','121.41.76.*'),(399872,0,'root','2018-03-14 19:24:04','121.41.76.*'),(399873,0,'root','2018-03-14 19:24:04','121.41.76.*'),(399874,0,'root','2018-03-14 19:24:05','121.41.76.*'),(399875,0,'root','2018-03-14 19:24:06','121.41.76.*'),(399876,0,'root','2018-03-14 19:24:06','121.41.76.*'),(399877,0,'root','2018-03-14 19:24:07','121.41.76.*'),(399878,0,'root','2018-03-14 19:24:07','121.41.76.*'),(399879,0,'root','2018-03-14 19:24:08','121.41.76.*'),(399880,0,'root','2018-03-14 19:24:09','121.41.76.*'),(399881,0,'root','2018-03-14 19:24:09','121.41.76.*'),(399882,0,'root','2018-03-14 19:24:10','121.41.76.*'),(399883,0,'root','2018-03-14 19:24:11','121.41.76.*'),(399884,0,'root','2018-03-14 19:24:11','121.41.76.*'),(399885,0,'root','2018-03-14 19:24:12','121.41.76.*'),(399886,0,'root','2018-03-14 19:24:13','121.41.76.*'),(399887,0,'root','2018-03-14 19:24:14','121.41.76.*'),(399888,0,'root','2018-03-14 19:24:14','121.41.76.*'),(399889,0,'root','2018-03-14 19:24:15','121.41.76.*'),(399890,0,'root','2018-03-14 19:24:15','121.41.76.*'),(399891,0,'root','2018-03-14 19:24:16','121.41.76.*'),(399892,0,'root','2018-03-14 19:24:17','121.41.76.*'),(399893,0,'root','2018-03-14 19:24:17','121.41.76.*'),(399894,0,'root','2018-03-14 19:24:18','121.41.76.*'),(399895,0,'root','2018-03-14 19:24:19','121.41.76.*'),(399896,0,'root','2018-03-14 19:24:19','121.41.76.*'),(399897,0,'root','2018-03-14 19:24:20','121.41.76.*'),(399898,0,'root','2018-03-14 19:24:21','121.41.76.*'),(399899,0,'root','2018-03-14 19:24:21','121.41.76.*'),(399900,0,'root','2018-03-14 19:24:22','121.41.76.*'),(399901,0,'root','2018-03-14 19:24:22','121.41.76.*'),(399902,0,'root','2018-03-14 19:24:23','121.41.76.*'),(399903,0,'root','2018-03-14 19:24:24','121.41.76.*'),(399904,0,'root','2018-03-14 19:24:24','121.41.76.*'),(399905,0,'root','2018-03-14 19:24:25','121.41.76.*'),(399906,0,'root','2018-03-14 19:24:26','121.41.76.*'),(399907,0,'root','2018-03-14 19:24:26','121.41.76.*'),(399908,0,'root','2018-03-14 19:24:27','121.41.76.*'),(399909,0,'root','2018-03-14 19:24:28','121.41.76.*'),(399910,0,'root','2018-03-14 19:24:28','121.41.76.*'),(399911,0,'root','2018-03-14 19:24:29','121.41.76.*'),(399912,0,'root','2018-03-14 19:24:29','121.41.76.*'),(399913,0,'root','2018-03-14 19:24:30','121.41.76.*'),(399914,0,'root','2018-03-14 19:24:31','121.41.76.*'),(399915,0,'root','2018-03-14 19:24:31','121.41.76.*'),(399916,0,'root','2018-03-14 19:24:32','121.41.76.*'),(399917,0,'root','2018-03-14 19:24:33','121.41.76.*'),(399918,0,'root','2018-03-14 19:24:33','121.41.76.*'),(399919,0,'root','2018-03-14 19:24:34','121.41.76.*'),(399920,0,'root','2018-03-14 19:24:34','121.41.76.*'),(399921,0,'root','2018-03-14 19:24:35','121.41.76.*'),(399922,0,'root','2018-03-14 19:24:36','121.41.76.*'),(399923,0,'root','2018-03-14 19:24:36','121.41.76.*'),(399924,0,'root','2018-03-14 19:24:37','121.41.76.*'),(399925,0,'root','2018-03-14 19:24:37','121.41.76.*'),(399926,0,'root','2018-03-14 19:24:38','121.41.76.*'),(399927,0,'root','2018-03-14 19:24:39','121.41.76.*'),(399928,0,'root','2018-03-14 19:24:39','121.41.76.*'),(399929,0,'root','2018-03-14 19:24:40','121.41.76.*'),(399930,0,'root','2018-03-14 19:24:41','121.41.76.*'),(399931,0,'root','2018-03-14 19:24:41','121.41.76.*'),(399932,0,'root','2018-03-14 19:24:42','121.41.76.*'),(399933,0,'root','2018-03-14 19:24:42','121.41.76.*'),(399934,0,'root','2018-03-14 19:24:43','121.41.76.*'),(399935,0,'root','2018-03-14 19:24:44','121.41.76.*'),(399936,0,'root','2018-03-14 19:24:44','121.41.76.*'),(399937,0,'root','2018-03-14 19:24:45','121.41.76.*'),(399938,0,'root','2018-03-14 19:24:46','121.41.76.*'),(399939,0,'root','2018-03-14 19:24:46','121.41.76.*'),(399940,0,'root','2018-03-14 19:24:47','121.41.76.*'),(399941,0,'root','2018-03-14 19:24:48','121.41.76.*'),(399942,0,'root','2018-03-14 19:24:48','121.41.76.*'),(399943,1,'fisawards','2018-03-14 19:24:49','121.41.76.*'),(399944,1,'fisawards','2018-03-14 19:24:49','121.41.76.*'),(399945,1,'fisawards','2018-03-14 19:24:50','121.41.76.*'),(399946,1,'fisawards','2018-03-14 19:24:51','121.41.76.*'),(399947,1,'fisawards','2018-03-14 19:24:51','121.41.76.*'),(399948,1,'fisawards','2018-03-14 19:24:52','121.41.76.*'),(399949,1,'fisawards','2018-03-14 19:24:53','121.41.76.*'),(399950,1,'fisawards','2018-03-14 19:24:53','121.41.76.*'),(399951,1,'fisawards','2018-03-14 19:24:54','121.41.76.*'),(399952,1,'fisawards','2018-03-14 19:24:55','121.41.76.*'),(399953,1,'fisawards','2018-03-14 19:24:55','121.41.76.*'),(399954,1,'fisawards','2018-03-14 19:24:56','121.41.76.*'),(399955,1,'fisawards','2018-03-14 19:24:56','121.41.76.*'),(399956,1,'fisawards','2018-03-14 19:24:57','121.41.76.*'),(399957,1,'fisawards','2018-03-14 19:24:58','121.41.76.*'),(399958,1,'fisawards','2018-03-14 19:24:58','121.41.76.*'),(399959,1,'fisawards','2018-03-14 19:24:59','121.41.76.*'),(399960,1,'fisawards','2018-03-14 19:25:00','121.41.76.*'),(399961,1,'fisawards','2018-03-14 19:25:00','121.41.76.*'),(399962,1,'fisawards','2018-03-14 19:25:01','121.41.76.*'),(399963,1,'fisawards','2018-03-14 19:25:02','121.41.76.*'),(399964,1,'fisawards','2018-03-14 19:25:02','121.41.76.*'),(399965,1,'fisawards','2018-03-14 19:25:03','121.41.76.*'),(399966,1,'fisawards','2018-03-14 19:25:04','121.41.76.*'),(399967,1,'fisawards','2018-03-14 19:25:04','121.41.76.*'),(399968,1,'fisawards','2018-03-14 19:25:05','121.41.76.*'),(399969,1,'fisawards','2018-03-14 19:25:06','121.41.76.*'),(399970,1,'fisawards','2018-03-14 19:25:06','121.41.76.*'),(399971,1,'fisawards','2018-03-14 19:25:07','121.41.76.*'),(399972,1,'fisawards','2018-03-14 19:25:07','121.41.76.*'),(399973,1,'fisawards','2018-03-14 19:25:08','121.41.76.*'),(399974,1,'fisawards','2018-03-14 19:25:09','121.41.76.*'),(399975,1,'fisawards','2018-03-14 19:25:10','121.41.76.*'),(399976,1,'fisawards','2018-03-14 19:25:10','121.41.76.*'),(399977,1,'fisawards','2018-03-14 19:25:11','121.41.76.*'),(399978,1,'fisawards','2018-03-14 19:25:11','121.41.76.*'),(399979,1,'fisawards','2018-03-14 19:25:12','121.41.76.*'),(399980,1,'fisawards','2018-03-14 19:25:13','121.41.76.*'),(399981,1,'fisawards','2018-03-14 19:25:14','121.41.76.*'),(399982,1,'fisawards','2018-03-14 19:25:14','121.41.76.*'),(399983,1,'fisawards','2018-03-14 19:25:15','121.41.76.*'),(399984,1,'fisawards','2018-03-14 19:25:16','121.41.76.*'),(399985,1,'fisawards','2018-03-14 19:25:16','121.41.76.*'),(399986,1,'fisawards','2018-03-14 19:25:17','121.41.76.*'),(399987,1,'fisawards','2018-03-14 19:25:18','121.41.76.*'),(399988,1,'fisawards','2018-03-14 19:25:18','121.41.76.*'),(399989,1,'fisawards','2018-03-14 19:25:19','121.41.76.*'),(399990,1,'fisawards','2018-03-14 19:25:20','121.41.76.*'),(399991,1,'fisawards','2018-03-14 19:25:20','121.41.76.*'),(399992,1,'fisawards','2018-03-14 19:25:21','121.41.76.*'),(399993,1,'fisawards','2018-03-14 19:25:21','121.41.76.*'),(399994,1,'fisawards','2018-03-14 19:25:22','121.41.76.*'),(399995,1,'fisawards','2018-03-14 19:25:23','121.41.76.*'),(399996,1,'fisawards','2018-03-14 19:25:23','121.41.76.*'),(399997,1,'fisawards','2018-03-14 19:25:24','121.41.76.*'),(399998,1,'fisawards','2018-03-14 19:25:25','121.41.76.*'),(399999,1,'fisawards','2018-03-14 19:25:25','121.41.76.*'),(400000,1,'fisawards','2018-03-14 19:25:26','121.41.76.*'),(400001,1,'fisawards','2018-03-14 19:25:27','121.41.76.*'),(400002,1,'fisawards','2018-03-14 19:25:27','121.41.76.*'),(400003,1,'fisawards','2018-03-14 19:25:28','121.41.76.*'),(400004,1,'fisawards','2018-03-14 19:25:28','121.41.76.*'),(400005,1,'fisawards','2018-03-14 19:25:29','121.41.76.*'),(400006,1,'fisawards','2018-03-14 19:25:30','121.41.76.*'),(400007,1,'fisawards','2018-03-14 19:25:30','121.41.76.*'),(400008,1,'fisawards','2018-03-14 19:25:31','121.41.76.*'),(400009,1,'fisawards','2018-03-14 19:25:32','121.41.76.*'),(400010,1,'fisawards','2018-03-14 19:25:32','121.41.76.*'),(400011,1,'fisawards','2018-03-14 19:25:33','121.41.76.*'),(400012,1,'fisawards','2018-03-14 19:25:34','121.41.76.*'),(400013,1,'fisawards','2018-03-14 19:25:34','121.41.76.*'),(400014,1,'fisawards','2018-03-14 19:25:35','121.41.76.*'),(400015,1,'fisawards','2018-03-14 19:25:36','121.41.76.*'),(400016,1,'fisawards','2018-03-14 19:25:36','121.41.76.*'),(400017,1,'fisawards','2018-03-14 19:25:37','121.41.76.*'),(400018,1,'fisawards','2018-03-14 19:25:37','121.41.76.*'),(400019,1,'fisawards','2018-03-14 19:25:38','121.41.76.*'),(400020,1,'fisawards','2018-03-14 19:25:39','121.41.76.*'),(400021,1,'fisawards','2018-03-14 19:25:39','121.41.76.*'),(400022,1,'fisawards','2018-03-14 19:25:40','121.41.76.*'),(400023,1,'fisawards','2018-03-14 19:25:41','121.41.76.*'),(400024,1,'fisawards','2018-03-14 19:25:41','121.41.76.*'),(400025,1,'fisawards','2018-03-14 19:25:42','121.41.76.*'),(400026,0,'author','2018-03-14 19:50:04','91.200.12.*'),(400027,0,'author','2018-03-14 19:50:05','91.200.12.*'),(400028,0,'author','2018-03-14 19:50:06','91.200.12.*'),(400029,0,'author','2018-03-14 19:50:06','91.200.12.*'),(400030,0,'author','2018-03-14 19:50:07','91.200.12.*'),(400031,0,'author','2018-03-14 19:50:08','91.200.12.*'),(400032,0,'author','2018-03-14 19:50:08','91.200.12.*'),(400033,0,'author','2018-03-14 19:50:09','91.200.12.*'),(400034,0,'author','2018-03-14 19:50:10','91.200.12.*'),(400035,0,'author','2018-03-14 19:50:10','91.200.12.*'),(400036,0,'author','2018-03-14 19:50:12','91.200.12.*'),(400037,0,'author','2018-03-14 19:50:12','91.200.12.*'),(400038,0,'author','2018-03-14 19:50:12','91.200.12.*'),(400039,0,'author','2018-03-14 19:50:13','91.200.12.*'),(400040,0,'author','2018-03-14 19:50:13','91.200.12.*'),(400041,0,'author','2018-03-14 19:50:15','91.200.12.*'),(400042,0,'author','2018-03-14 19:50:16','91.200.12.*'),(400043,0,'author','2018-03-14 19:50:17','91.200.12.*'),(400044,0,'author','2018-03-14 19:50:17','91.200.12.*'),(400045,0,'author','2018-03-14 19:50:18','91.200.12.*'),(400046,0,'author','2018-03-14 19:50:19','91.200.12.*'),(400047,0,'author','2018-03-14 19:50:21','91.200.12.*'),(400048,0,'author','2018-03-14 19:50:21','91.200.12.*'),(400049,0,'author','2018-03-14 19:50:21','91.200.12.*'),(400050,0,'author','2018-03-14 19:50:22','91.200.12.*'),(400051,0,'author','2018-03-14 19:50:23','91.200.12.*'),(400052,0,'author','2018-03-14 19:50:23','91.200.12.*'),(400053,0,'author','2018-03-14 19:50:24','91.200.12.*'),(400054,0,'author','2018-03-14 19:50:25','91.200.12.*'),(400055,0,'author','2018-03-14 19:50:25','91.200.12.*'),(400056,0,'author','2018-03-14 19:50:26','91.200.12.*'),(400057,0,'author','2018-03-14 19:50:27','91.200.12.*'),(400058,0,'author','2018-03-14 19:50:28','91.200.12.*'),(400059,0,'author','2018-03-14 19:50:28','91.200.12.*'),(400060,0,'author','2018-03-14 19:50:29','91.200.12.*'),(400061,0,'author','2018-03-14 19:50:30','91.200.12.*'),(400062,0,'author','2018-03-14 19:50:30','91.200.12.*'),(400063,0,'author','2018-03-14 19:50:30','91.200.12.*'),(400064,0,'author','2018-03-14 19:50:31','91.200.12.*'),(400065,0,'author','2018-03-14 19:50:31','91.200.12.*'),(400066,0,'author','2018-03-14 19:50:33','91.200.12.*'),(400067,0,'author','2018-03-14 19:50:34','91.200.12.*'),(400068,0,'author','2018-03-14 19:50:35','91.200.12.*'),(400069,0,'author','2018-03-14 19:50:35','91.200.12.*'),(400070,0,'author','2018-03-14 19:50:36','91.200.12.*'),(400071,0,'author','2018-03-14 19:50:36','91.200.12.*'),(400072,0,'author','2018-03-14 19:50:37','91.200.12.*'),(400073,0,'author','2018-03-14 19:50:38','91.200.12.*'),(400074,0,'author','2018-03-14 19:50:39','91.200.12.*'),(400075,0,'author','2018-03-14 19:50:40','91.200.12.*'),(400076,0,'author','2018-03-14 19:50:42','91.200.12.*'),(400077,0,'author','2018-03-14 19:50:43','91.200.12.*'),(400078,0,'author','2018-03-14 19:50:43','91.200.12.*'),(400079,0,'author','2018-03-14 19:50:48','91.200.12.*'),(400080,0,'author','2018-03-14 19:50:49','91.200.12.*'),(400081,0,'author','2018-03-14 19:50:50','91.200.12.*'),(400082,0,'author','2018-03-14 19:50:50','91.200.12.*'),(400083,0,'author','2018-03-14 19:50:52','91.200.12.*'),(400084,0,'author','2018-03-14 19:50:52','91.200.12.*'),(400085,0,'author','2018-03-14 19:50:54','91.200.12.*'),(400086,0,'author','2018-03-14 19:50:56','91.200.12.*'),(400087,0,'author','2018-03-14 19:51:03','91.200.12.*'),(400088,0,'author','2018-03-14 19:51:03','91.200.12.*'),(400089,0,'author','2018-03-14 19:51:04','91.200.12.*'),(400090,0,'author','2018-03-14 19:51:05','91.200.12.*'),(400091,0,'author','2018-03-14 19:51:06','91.200.12.*'),(400092,0,'author','2018-03-14 19:51:06','91.200.12.*'),(400093,0,'author','2018-03-14 19:51:07','91.200.12.*'),(400094,0,'author','2018-03-14 19:51:08','91.200.12.*'),(400095,0,'author','2018-03-14 19:51:10','91.200.12.*'),(400096,0,'author','2018-03-14 19:51:10','91.200.12.*'),(400097,0,'author','2018-03-14 19:51:11','91.200.12.*'),(400098,0,'author','2018-03-14 19:51:11','91.200.12.*'),(400099,0,'author','2018-03-14 19:51:13','91.200.12.*'),(400100,0,'author','2018-03-14 19:51:13','91.200.12.*'),(400101,0,'author','2018-03-14 19:51:13','91.200.12.*'),(400102,0,'author','2018-03-14 19:51:14','91.200.12.*'),(400103,0,'author','2018-03-14 19:51:14','91.200.12.*'),(400104,0,'author','2018-03-14 19:51:14','91.200.12.*'),(400105,0,'author','2018-03-14 19:51:16','91.200.12.*'),(400106,0,'author','2018-03-14 19:51:16','91.200.12.*'),(400107,0,'author','2018-03-14 19:51:16','91.200.12.*'),(400108,0,'author','2018-03-14 19:51:18','91.200.12.*'),(400109,0,'author','2018-03-14 19:51:18','91.200.12.*'),(400110,0,'author','2018-03-14 19:51:18','91.200.12.*'),(400111,0,'author','2018-03-14 19:51:19','91.200.12.*'),(400112,0,'author','2018-03-14 19:51:20','91.200.12.*'),(400113,0,'author','2018-03-14 19:51:23','91.200.12.*'),(400114,0,'author','2018-03-14 19:51:24','91.200.12.*'),(400115,0,'author','2018-03-14 19:51:25','91.200.12.*'),(400116,0,'author','2018-03-14 19:51:25','91.200.12.*'),(400117,0,'author','2018-03-14 19:51:26','91.200.12.*'),(400118,0,'author','2018-03-14 19:51:27','91.200.12.*'),(400119,0,'author','2018-03-14 19:51:27','91.200.12.*'),(400120,0,'author','2018-03-14 19:51:28','91.200.12.*'),(400121,0,'author','2018-03-14 19:51:29','91.200.12.*'),(400122,0,'author','2018-03-14 19:51:32','91.200.12.*'),(400123,0,'author','2018-03-14 19:51:33','91.200.12.*'),(400124,0,'author','2018-03-14 19:51:33','91.200.12.*'),(400125,0,'author','2018-03-14 19:51:33','91.200.12.*'),(400126,0,'author','2018-03-14 19:51:34','91.200.12.*'),(400127,0,'author','2018-03-14 19:51:35','91.200.12.*'),(400128,0,'author','2018-03-14 19:51:36','91.200.12.*'),(400129,0,'author','2018-03-14 19:51:36','91.200.12.*'),(400130,0,'author','2018-03-14 19:51:36','91.200.12.*'),(400131,0,'author','2018-03-14 19:51:38','91.200.12.*'),(400132,0,'author','2018-03-14 19:51:39','91.200.12.*'),(400133,0,'author','2018-03-14 19:51:40','91.200.12.*'),(400134,0,'author','2018-03-14 19:51:41','91.200.12.*'),(400135,0,'author','2018-03-14 19:51:41','91.200.12.*'),(400136,0,'author','2018-03-14 19:51:44','91.200.12.*'),(400137,0,'author','2018-03-14 19:51:45','91.200.12.*'),(400138,0,'author','2018-03-14 19:51:46','91.200.12.*'),(400139,0,'author','2018-03-14 19:51:47','91.200.12.*'),(400140,0,'author','2018-03-14 19:51:47','91.200.12.*'),(400141,0,'author','2018-03-14 19:51:48','91.200.12.*'),(400142,0,'author','2018-03-14 19:51:48','91.200.12.*'),(400143,0,'author','2018-03-14 19:51:49','91.200.12.*'),(400144,0,'author','2018-03-14 19:51:51','91.200.12.*'),(400145,0,'author','2018-03-14 19:51:54','91.200.12.*'),(400146,0,'author','2018-03-14 19:51:55','91.200.12.*'),(400147,0,'author','2018-03-14 19:51:55','91.200.12.*'),(400148,0,'author','2018-03-14 19:51:56','91.200.12.*'),(400149,0,'author','2018-03-14 19:51:57','91.200.12.*'),(400150,0,'author','2018-03-14 19:51:57','91.200.12.*'),(400151,0,'author','2018-03-14 19:51:58','91.200.12.*'),(400152,0,'author','2018-03-14 19:51:59','91.200.12.*'),(400153,0,'author','2018-03-14 19:52:00','91.200.12.*'),(400154,0,'author','2018-03-14 19:52:00','91.200.12.*'),(400155,0,'author','2018-03-14 19:52:01','91.200.12.*'),(400156,0,'author','2018-03-14 19:52:02','91.200.12.*'),(400157,0,'author','2018-03-14 19:52:03','91.200.12.*'),(400158,0,'author','2018-03-14 19:52:03','91.200.12.*'),(400159,0,'author','2018-03-14 19:52:03','91.200.12.*'),(400160,0,'author','2018-03-14 19:52:04','91.200.12.*'),(400161,0,'author','2018-03-14 19:52:05','91.200.12.*'),(400162,0,'author','2018-03-14 19:52:06','91.200.12.*'),(400163,0,'author','2018-03-14 19:52:07','91.200.12.*'),(400164,0,'author','2018-03-14 19:52:07','91.200.12.*'),(400165,0,'author','2018-03-14 19:52:08','91.200.12.*'),(400166,0,'author','2018-03-14 19:52:08','91.200.12.*'),(400167,0,'author','2018-03-14 19:52:08','91.200.12.*'),(400168,0,'author','2018-03-14 19:52:09','91.200.12.*'),(400169,0,'author','2018-03-14 19:52:09','91.200.12.*'),(400170,0,'author','2018-03-14 19:52:11','91.200.12.*'),(400171,0,'author','2018-03-14 19:52:12','91.200.12.*'),(400172,0,'author','2018-03-14 19:52:13','91.200.12.*'),(400173,0,'author','2018-03-14 19:52:14','91.200.12.*'),(400174,0,'author','2018-03-14 19:52:14','91.200.12.*'),(400175,0,'author','2018-03-14 19:52:15','91.200.12.*'),(400176,0,'author','2018-03-14 19:52:16','91.200.12.*'),(400177,0,'author','2018-03-14 19:52:17','91.200.12.*'),(400178,0,'author','2018-03-14 19:52:18','91.200.12.*'),(400179,0,'author','2018-03-14 19:52:19','91.200.12.*'),(400180,0,'author','2018-03-14 19:52:19','91.200.12.*'),(400181,0,'author','2018-03-14 19:52:20','91.200.12.*'),(400182,0,'author','2018-03-14 19:52:21','91.200.12.*'),(400183,0,'author','2018-03-14 19:52:21','91.200.12.*'),(400184,0,'author','2018-03-14 19:52:23','91.200.12.*'),(400185,0,'author','2018-03-14 19:52:24','91.200.12.*'),(400186,0,'author','2018-03-14 19:52:25','91.200.12.*'),(400187,0,'author','2018-03-14 19:52:25','91.200.12.*'),(400188,0,'author','2018-03-14 19:52:34','91.200.12.*'),(400189,0,'author','2018-03-14 19:52:34','91.200.12.*'),(400190,0,'author','2018-03-14 19:52:35','91.200.12.*'),(400191,0,'author','2018-03-14 19:52:36','91.200.12.*'),(400192,0,'author','2018-03-14 19:52:39','91.200.12.*'),(400193,0,'author','2018-03-14 19:52:40','91.200.12.*'),(400194,0,'author','2018-03-14 19:52:41','91.200.12.*'),(400195,0,'author','2018-03-14 19:52:41','91.200.12.*'),(400196,0,'author','2018-03-14 19:52:42','91.200.12.*'),(400197,0,'author','2018-03-14 19:52:45','91.200.12.*'),(400198,0,'author','2018-03-14 19:52:46','91.200.12.*'),(400199,0,'author','2018-03-14 19:52:46','91.200.12.*'),(400200,0,'author','2018-03-14 19:52:47','91.200.12.*'),(400201,0,'author','2018-03-14 19:52:47','91.200.12.*'),(400202,0,'author','2018-03-14 19:52:48','91.200.12.*'),(400203,0,'author','2018-03-14 19:52:49','91.200.12.*'),(400204,0,'author','2018-03-14 19:52:49','91.200.12.*'),(400205,0,'author','2018-03-14 19:52:50','91.200.12.*'),(400206,0,'author','2018-03-14 19:52:51','91.200.12.*'),(400207,0,'author','2018-03-14 19:52:52','91.200.12.*'),(400208,0,'author','2018-03-14 19:52:59','91.200.12.*'),(400209,0,'author','2018-03-14 19:53:00','91.200.12.*'),(400210,0,'author','2018-03-14 19:53:01','91.200.12.*'),(400211,0,'author','2018-03-14 19:53:01','91.200.12.*'),(400212,0,'author','2018-03-14 19:53:02','91.200.12.*'),(400213,0,'author','2018-03-14 19:53:03','91.200.12.*'),(400214,0,'author','2018-03-14 19:53:03','91.200.12.*'),(400215,0,'author','2018-03-14 19:53:04','91.200.12.*'),(400216,0,'author','2018-03-14 19:53:04','91.200.12.*'),(400217,0,'author','2018-03-14 19:53:04','91.200.12.*'),(400218,0,'author','2018-03-14 19:53:05','91.200.12.*'),(400219,0,'author','2018-03-14 19:53:05','91.200.12.*'),(400220,0,'author','2018-03-14 19:53:06','91.200.12.*'),(400221,0,'author','2018-03-14 19:53:07','91.200.12.*'),(400222,0,'author','2018-03-14 19:53:07','91.200.12.*'),(400223,0,'author','2018-03-14 19:53:09','91.200.12.*'),(400224,0,'author','2018-03-14 19:53:09','91.200.12.*'),(400225,0,'author','2018-03-14 19:53:10','91.200.12.*'),(400226,0,'author','2018-03-14 19:53:10','91.200.12.*'),(400227,0,'author','2018-03-14 19:53:11','91.200.12.*'),(400228,0,'author','2018-03-14 19:53:11','91.200.12.*'),(400229,0,'author','2018-03-14 19:53:12','91.200.12.*'),(400230,0,'author','2018-03-14 19:53:12','91.200.12.*'),(400231,0,'author','2018-03-14 19:53:13','91.200.12.*'),(400232,0,'author','2018-03-14 19:53:14','91.200.12.*'),(400233,0,'author','2018-03-14 19:53:15','91.200.12.*'),(400234,0,'author','2018-03-14 19:53:16','91.200.12.*'),(400235,0,'author','2018-03-14 19:53:18','91.200.12.*'),(400236,0,'author','2018-03-14 19:53:19','91.200.12.*'),(400237,0,'author','2018-03-14 19:53:19','91.200.12.*'),(400238,0,'author','2018-03-14 19:53:20','91.200.12.*'),(400239,0,'author','2018-03-14 19:53:21','91.200.12.*'),(400240,0,'author','2018-03-14 19:53:22','91.200.12.*'),(400241,0,'author','2018-03-14 19:53:22','91.200.12.*'),(400242,0,'author','2018-03-14 19:53:23','91.200.12.*'),(400243,0,'author','2018-03-14 19:53:24','91.200.12.*'),(400244,0,'author','2018-03-14 19:53:25','91.200.12.*'),(400245,0,'author','2018-03-14 19:53:25','91.200.12.*'),(400246,0,'author','2018-03-14 19:53:25','91.200.12.*'),(400247,0,'author','2018-03-14 19:53:26','91.200.12.*'),(400248,0,'author','2018-03-14 19:53:26','91.200.12.*'),(400249,0,'author','2018-03-14 19:53:27','91.200.12.*'),(400250,0,'author','2018-03-14 19:53:28','91.200.12.*'),(400251,0,'author','2018-03-14 19:53:29','91.200.12.*'),(400252,0,'author','2018-03-14 19:53:29','91.200.12.*'),(400253,0,'author','2018-03-14 19:53:30','91.200.12.*'),(400254,0,'author','2018-03-14 19:53:31','91.200.12.*'),(400255,0,'author','2018-03-14 19:53:32','91.200.12.*'),(400256,0,'author','2018-03-14 19:53:33','91.200.12.*'),(400257,0,'author','2018-03-14 19:53:33','91.200.12.*'),(400258,0,'author','2018-03-14 19:53:34','91.200.12.*'),(400259,0,'author','2018-03-14 19:53:34','91.200.12.*'),(400260,0,'author','2018-03-14 19:53:35','91.200.12.*'),(400261,0,'author','2018-03-14 19:53:35','91.200.12.*'),(400262,0,'author','2018-03-14 19:53:37','91.200.12.*'),(400263,0,'author','2018-03-14 19:53:39','91.200.12.*'),(400264,0,'author','2018-03-14 19:53:49','91.200.12.*'),(400265,0,'author','2018-03-14 19:53:50','91.200.12.*'),(400266,0,'author','2018-03-14 19:53:51','91.200.12.*'),(400267,0,'author','2018-03-14 19:53:51','91.200.12.*'),(400268,0,'author','2018-03-14 19:53:51','91.200.12.*'),(400269,0,'author','2018-03-14 19:53:52','91.200.12.*'),(400270,0,'author','2018-03-14 19:53:52','91.200.12.*'),(400271,0,'author','2018-03-14 19:53:53','91.200.12.*'),(400272,0,'author','2018-03-14 19:53:53','91.200.12.*'),(400273,0,'author','2018-03-14 19:53:54','91.200.12.*'),(400274,0,'author','2018-03-14 19:53:55','91.200.12.*'),(400275,0,'author','2018-03-14 19:53:55','91.200.12.*'),(400276,0,'author','2018-03-14 19:53:57','91.200.12.*'),(400277,0,'author','2018-03-14 19:54:01','91.200.12.*'),(400278,0,'author','2018-03-14 19:54:01','91.200.12.*'),(400279,0,'author','2018-03-14 19:54:02','91.200.12.*'),(400280,0,'author','2018-03-14 19:54:02','91.200.12.*'),(400281,0,'author','2018-03-14 19:54:03','91.200.12.*'),(400282,0,'author','2018-03-14 19:54:04','91.200.12.*'),(400283,0,'author','2018-03-14 19:54:05','91.200.12.*'),(400284,0,'author','2018-03-14 19:54:05','91.200.12.*'),(400285,0,'author','2018-03-14 19:54:06','91.200.12.*'),(400286,0,'author','2018-03-14 19:54:06','91.200.12.*'),(400287,0,'author','2018-03-14 19:54:08','91.200.12.*'),(400288,0,'author','2018-03-14 19:54:09','91.200.12.*'),(400289,0,'author','2018-03-14 19:54:09','91.200.12.*'),(400290,0,'author','2018-03-14 19:54:10','91.200.12.*'),(400291,0,'author','2018-03-14 19:54:11','91.200.12.*'),(400292,0,'author','2018-03-14 19:54:11','91.200.12.*'),(400293,0,'author','2018-03-14 19:54:12','91.200.12.*'),(400294,0,'author','2018-03-14 19:54:13','91.200.12.*'),(400295,0,'author','2018-03-14 19:54:13','91.200.12.*'),(400296,0,'author','2018-03-14 19:54:14','91.200.12.*'),(400297,0,'author','2018-03-14 19:54:15','91.200.12.*'),(400298,0,'author','2018-03-14 19:54:16','91.200.12.*'),(400299,0,'author','2018-03-14 19:54:17','91.200.12.*'),(400300,0,'author','2018-03-14 19:54:18','91.200.12.*'),(400301,0,'author','2018-03-14 19:54:18','91.200.12.*'),(400302,0,'author','2018-03-14 19:54:19','91.200.12.*'),(400303,0,'author','2018-03-14 19:54:20','91.200.12.*'),(400304,0,'author','2018-03-14 19:54:20','91.200.12.*'),(400305,0,'author','2018-03-14 19:54:21','91.200.12.*'),(400306,0,'author','2018-03-14 19:54:22','91.200.12.*'),(400307,0,'author','2018-03-14 19:54:23','91.200.12.*'),(400308,0,'author','2018-03-14 19:54:23','91.200.12.*'),(400309,0,'author','2018-03-14 19:54:24','91.200.12.*'),(400310,0,'author','2018-03-14 19:54:25','91.200.12.*'),(400311,0,'author','2018-03-14 19:54:25','91.200.12.*'),(400312,0,'author','2018-03-14 19:54:26','91.200.12.*'),(400313,0,'author','2018-03-14 19:54:27','91.200.12.*'),(400314,0,'author','2018-03-14 19:54:28','91.200.12.*'),(400315,0,'author','2018-03-14 19:54:28','91.200.12.*'),(400316,0,'author','2018-03-14 19:54:28','91.200.12.*'),(400317,0,'author','2018-03-14 19:54:30','91.200.12.*'),(400318,0,'author','2018-03-14 19:54:30','91.200.12.*'),(400319,0,'author','2018-03-14 19:54:31','91.200.12.*'),(400320,0,'author','2018-03-14 19:54:31','91.200.12.*'),(400321,0,'author','2018-03-14 19:54:32','91.200.12.*'),(400322,0,'author','2018-03-14 19:54:40','91.200.12.*'),(400323,0,'author','2018-03-14 19:54:41','91.200.12.*'),(400324,0,'author','2018-03-14 19:54:41','91.200.12.*'),(400325,0,'author','2018-03-14 19:54:42','91.200.12.*'),(400326,0,'author','2018-03-14 19:54:42','91.200.12.*'),(400327,0,'author','2018-03-14 19:54:44','91.200.12.*'),(400328,0,'author','2018-03-14 19:54:45','91.200.12.*'),(400329,0,'author','2018-03-14 19:54:46','91.200.12.*'),(400330,0,'author','2018-03-14 19:54:47','91.200.12.*'),(400331,0,'author','2018-03-14 19:54:47','91.200.12.*'),(400332,0,'author','2018-03-14 19:54:48','91.200.12.*'),(400333,0,'author','2018-03-14 19:54:49','91.200.12.*'),(400334,0,'author','2018-03-14 19:54:53','91.200.12.*'),(400335,0,'author','2018-03-14 19:54:54','91.200.12.*'),(400336,0,'author','2018-03-14 19:54:54','91.200.12.*'),(400337,0,'author','2018-03-14 19:54:55','91.200.12.*'),(400338,0,'author','2018-03-14 19:54:56','91.200.12.*'),(400339,0,'author','2018-03-14 19:54:56','91.200.12.*'),(400340,0,'author','2018-03-14 19:54:57','91.200.12.*'),(400341,0,'author','2018-03-14 19:54:58','91.200.12.*'),(400342,0,'author','2018-03-14 19:54:58','91.200.12.*'),(400343,0,'author','2018-03-14 19:54:58','91.200.12.*'),(400344,0,'author','2018-03-14 19:54:59','91.200.12.*'),(400345,0,'author','2018-03-14 19:54:59','91.200.12.*'),(400346,0,'author','2018-03-14 19:55:01','91.200.12.*'),(400347,0,'author','2018-03-14 19:55:01','91.200.12.*'),(400348,0,'author','2018-03-14 19:55:02','91.200.12.*'),(400349,0,'author','2018-03-14 19:55:02','91.200.12.*'),(400350,0,'author','2018-03-14 19:55:03','91.200.12.*'),(400351,0,'author','2018-03-14 19:55:03','91.200.12.*'),(400352,0,'author','2018-03-14 19:55:04','91.200.12.*'),(400353,0,'author','2018-03-14 19:55:04','91.200.12.*'),(400354,0,'author','2018-03-14 19:55:05','91.200.12.*'),(400355,0,'author','2018-03-14 19:55:08','91.200.12.*'),(400356,0,'author','2018-03-14 19:55:10','91.200.12.*'),(400357,0,'author','2018-03-14 19:55:10','91.200.12.*'),(400358,0,'author','2018-03-14 19:55:10','91.200.12.*'),(400359,0,'author','2018-03-14 19:55:11','91.200.12.*'),(400360,0,'author','2018-03-14 19:55:11','91.200.12.*'),(400361,0,'author','2018-03-14 19:55:12','91.200.12.*'),(400362,0,'author','2018-03-14 19:55:13','91.200.12.*'),(400363,0,'author','2018-03-14 19:55:14','91.200.12.*'),(400364,0,'author','2018-03-14 19:55:14','91.200.12.*'),(400365,0,'author','2018-03-14 19:55:14','91.200.12.*'),(400366,0,'author','2018-03-14 19:55:15','91.200.12.*'),(400367,0,'author','2018-03-14 19:55:16','91.200.12.*'),(400368,0,'author','2018-03-14 19:55:17','91.200.12.*'),(400369,0,'author','2018-03-14 19:55:18','91.200.12.*'),(400370,0,'author','2018-03-14 19:55:18','91.200.12.*'),(400371,0,'author','2018-03-14 19:55:19','91.200.12.*'),(400372,0,'author','2018-03-14 19:55:19','91.200.12.*'),(400373,0,'author','2018-03-14 19:55:20','91.200.12.*'),(400374,0,'author','2018-03-14 19:55:21','91.200.12.*'),(400375,0,'author','2018-03-14 19:55:22','91.200.12.*'),(400376,0,'author','2018-03-14 19:55:22','91.200.12.*'),(400377,0,'author','2018-03-14 19:55:23','91.200.12.*'),(400378,0,'author','2018-03-14 19:55:24','91.200.12.*'),(400379,0,'author','2018-03-14 19:55:24','91.200.12.*'),(400380,0,'author','2018-03-14 19:55:25','91.200.12.*'),(400381,0,'author','2018-03-14 19:55:25','91.200.12.*'),(400382,0,'author','2018-03-14 19:55:25','91.200.12.*'),(400383,0,'author','2018-03-14 19:55:26','91.200.12.*'),(400384,0,'author','2018-03-14 19:55:26','91.200.12.*'),(400385,0,'author','2018-03-14 19:55:26','91.200.12.*'),(400386,0,'author','2018-03-14 19:55:27','91.200.12.*'),(400387,0,'author','2018-03-14 19:55:28','91.200.12.*'),(400388,0,'author','2018-03-14 19:55:28','91.200.12.*'),(400389,0,'author','2018-03-14 19:55:29','91.200.12.*'),(400390,0,'author','2018-03-14 19:55:30','91.200.12.*'),(400391,0,'author','2018-03-14 19:55:31','91.200.12.*'),(400392,0,'author','2018-03-14 19:55:31','91.200.12.*'),(400393,0,'author','2018-03-14 19:55:31','91.200.12.*'),(400394,0,'author','2018-03-14 19:55:32','91.200.12.*'),(400395,0,'author','2018-03-14 19:55:33','91.200.12.*'),(400396,0,'author','2018-03-14 19:55:34','91.200.12.*'),(400397,0,'author','2018-03-14 19:55:35','91.200.12.*'),(400398,0,'author','2018-03-14 19:55:35','91.200.12.*'),(400399,0,'author','2018-03-14 19:55:36','91.200.12.*'),(400400,0,'author','2018-03-14 19:55:37','91.200.12.*'),(400401,0,'author','2018-03-14 19:55:38','91.200.12.*'),(400402,0,'author','2018-03-14 19:55:38','91.200.12.*'),(400403,0,'author','2018-03-14 19:55:39','91.200.12.*'),(400404,0,'author','2018-03-14 19:55:39','91.200.12.*'),(400405,0,'author','2018-03-14 19:55:40','91.200.12.*'),(400406,0,'author','2018-03-14 19:55:41','91.200.12.*'),(400407,0,'author','2018-03-14 19:55:41','91.200.12.*'),(400408,0,'author','2018-03-14 19:55:42','91.200.12.*'),(400409,0,'author','2018-03-14 19:55:42','91.200.12.*'),(400410,0,'author','2018-03-14 19:55:43','91.200.12.*'),(400411,0,'author','2018-03-14 19:55:43','91.200.12.*'),(400412,0,'author','2018-03-14 19:55:43','91.200.12.*'),(400413,0,'author','2018-03-14 19:55:44','91.200.12.*'),(400414,0,'author','2018-03-14 19:55:44','91.200.12.*'),(400415,0,'author','2018-03-14 19:55:45','91.200.12.*'),(400416,0,'author','2018-03-14 19:55:45','91.200.12.*'),(400417,0,'author','2018-03-14 19:55:46','91.200.12.*'),(400418,0,'author','2018-03-14 19:55:47','91.200.12.*'),(400419,0,'author','2018-03-14 19:55:47','91.200.12.*'),(400420,0,'author','2018-03-14 19:55:48','91.200.12.*'),(400421,0,'author','2018-03-14 19:55:49','91.200.12.*'),(400422,0,'author','2018-03-14 19:55:49','91.200.12.*'),(400423,0,'author','2018-03-14 19:55:49','91.200.12.*'),(400424,0,'author','2018-03-14 19:55:50','91.200.12.*'),(400425,0,'author','2018-03-14 19:55:52','91.200.12.*'),(400426,0,'author','2018-03-14 19:55:53','91.200.12.*'),(400427,0,'author','2018-03-14 19:55:54','91.200.12.*'),(400428,0,'author','2018-03-14 19:55:55','91.200.12.*'),(400429,0,'author','2018-03-14 19:55:56','91.200.12.*'),(400430,0,'author','2018-03-14 19:55:56','91.200.12.*'),(400431,0,'author','2018-03-14 19:55:57','91.200.12.*'),(400432,0,'author','2018-03-14 19:55:57','91.200.12.*'),(400433,0,'author','2018-03-14 19:55:58','91.200.12.*'),(400434,0,'author','2018-03-14 19:55:59','91.200.12.*'),(400435,0,'author','2018-03-14 19:55:59','91.200.12.*'),(400436,0,'author','2018-03-14 19:56:00','91.200.12.*'),(400437,0,'author','2018-03-14 19:56:01','91.200.12.*'),(400438,0,'author','2018-03-14 19:56:01','91.200.12.*'),(400439,0,'author','2018-03-14 19:56:02','91.200.12.*'),(400440,0,'author','2018-03-14 19:56:03','91.200.12.*'),(400441,0,'author','2018-03-14 19:56:03','91.200.12.*'),(400442,0,'author','2018-03-14 19:56:04','91.200.12.*'),(400443,0,'author','2018-03-14 19:56:05','91.200.12.*'),(400444,0,'author','2018-03-14 19:56:07','91.200.12.*'),(400445,0,'author','2018-03-14 19:56:07','91.200.12.*'),(400446,0,'author','2018-03-14 19:56:08','91.200.12.*'),(400447,0,'author','2018-03-14 19:56:09','91.200.12.*'),(400448,0,'author','2018-03-14 19:56:09','91.200.12.*'),(400449,0,'author','2018-03-14 19:56:10','91.200.12.*'),(400450,0,'author','2018-03-14 19:56:11','91.200.12.*'),(400451,0,'author','2018-03-14 19:56:12','91.200.12.*'),(400452,0,'author','2018-03-14 19:56:13','91.200.12.*'),(400453,0,'author','2018-03-14 19:56:14','91.200.12.*'),(400454,0,'author','2018-03-14 19:56:15','91.200.12.*'),(400455,0,'author','2018-03-14 19:56:16','91.200.12.*'),(400456,0,'author','2018-03-14 19:56:17','91.200.12.*'),(400457,0,'author','2018-03-14 19:56:17','91.200.12.*'),(400458,0,'author','2018-03-14 19:56:17','91.200.12.*'),(400459,0,'author','2018-03-14 19:56:18','91.200.12.*'),(400460,0,'author','2018-03-14 19:56:19','91.200.12.*'),(400461,0,'author','2018-03-14 19:56:20','91.200.12.*'),(400462,0,'author','2018-03-14 19:56:21','91.200.12.*'),(400463,0,'author','2018-03-14 19:56:22','91.200.12.*'),(400464,0,'author','2018-03-14 19:56:23','91.200.12.*'),(400465,0,'author','2018-03-14 19:56:24','91.200.12.*'),(400466,0,'author','2018-03-14 19:56:25','91.200.12.*'),(400467,0,'author','2018-03-14 19:56:26','91.200.12.*'),(400468,0,'author','2018-03-14 19:56:26','91.200.12.*'),(400469,0,'author','2018-03-14 19:56:28','91.200.12.*'),(400470,0,'author','2018-03-14 19:56:30','91.200.12.*'),(400471,0,'author','2018-03-14 19:56:31','91.200.12.*'),(400472,0,'author','2018-03-14 19:56:31','91.200.12.*'),(400473,0,'author','2018-03-14 19:56:33','91.200.12.*'),(400474,0,'author','2018-03-14 19:56:38','91.200.12.*'),(400475,0,'author','2018-03-14 19:56:38','91.200.12.*'),(400476,0,'author','2018-03-14 19:56:39','91.200.12.*'),(400477,0,'author','2018-03-14 19:56:40','91.200.12.*'),(400478,0,'author','2018-03-14 19:56:43','91.200.12.*'),(400479,0,'author','2018-03-14 19:56:43','91.200.12.*'),(400480,0,'author','2018-03-14 19:56:46','91.200.12.*'),(400481,0,'author','2018-03-14 19:56:46','91.200.12.*'),(400482,0,'author','2018-03-14 19:56:47','91.200.12.*'),(400483,0,'author','2018-03-14 19:56:48','91.200.12.*'),(400484,0,'author','2018-03-14 19:56:49','91.200.12.*'),(400485,0,'author','2018-03-14 19:56:50','91.200.12.*'),(400486,0,'author','2018-03-14 19:56:51','91.200.12.*'),(400487,0,'author','2018-03-14 19:56:52','91.200.12.*'),(400488,0,'author','2018-03-14 19:56:53','91.200.12.*'),(400489,0,'author','2018-03-14 19:56:53','91.200.12.*'),(400490,0,'author','2018-03-14 19:56:54','91.200.12.*'),(400491,0,'author','2018-03-14 19:56:54','91.200.12.*'),(400492,0,'author','2018-03-14 19:56:55','91.200.12.*'),(400493,0,'author','2018-03-14 19:56:57','91.200.12.*'),(400494,0,'author','2018-03-14 19:56:57','91.200.12.*'),(400495,0,'author','2018-03-14 19:56:58','91.200.12.*'),(400496,0,'author','2018-03-14 19:56:59','91.200.12.*'),(400497,0,'author','2018-03-14 19:57:00','91.200.12.*'),(400498,0,'author','2018-03-14 19:57:00','91.200.12.*'),(400499,0,'author','2018-03-14 19:57:01','91.200.12.*'),(400500,0,'author','2018-03-14 19:57:01','91.200.12.*'),(400501,0,'author','2018-03-14 19:57:01','91.200.12.*'),(400502,0,'author','2018-03-14 19:57:02','91.200.12.*'),(400503,0,'author','2018-03-14 19:57:02','91.200.12.*'),(400504,0,'author','2018-03-14 19:57:03','91.200.12.*'),(400505,0,'author','2018-03-14 19:57:04','91.200.12.*'),(400506,0,'author','2018-03-14 19:57:05','91.200.12.*'),(400507,0,'author','2018-03-14 19:57:05','91.200.12.*'),(400508,0,'author','2018-03-14 19:57:06','91.200.12.*'),(400509,0,'author','2018-03-14 19:57:06','91.200.12.*'),(400510,0,'author','2018-03-14 19:57:07','91.200.12.*'),(400511,0,'author','2018-03-14 19:57:07','91.200.12.*'),(400512,0,'author','2018-03-14 19:57:08','91.200.12.*'),(400513,0,'author','2018-03-14 19:57:08','91.200.12.*'),(400514,0,'author','2018-03-14 19:57:10','91.200.12.*'),(400515,0,'author','2018-03-14 19:57:10','91.200.12.*'),(400516,0,'author','2018-03-14 19:57:12','91.200.12.*'),(400517,0,'author','2018-03-14 19:57:13','91.200.12.*'),(400518,0,'author','2018-03-14 19:57:14','91.200.12.*'),(400519,0,'author','2018-03-14 19:57:17','91.200.12.*'),(400520,0,'author','2018-03-14 19:57:19','91.200.12.*'),(400521,0,'author','2018-03-14 19:57:20','91.200.12.*'),(400522,0,'author','2018-03-14 19:57:20','91.200.12.*'),(400523,0,'author','2018-03-14 19:57:21','91.200.12.*'),(400524,0,'author','2018-03-14 19:57:22','91.200.12.*'),(400525,0,'author','2018-03-14 19:57:22','91.200.12.*'),(400526,0,'author','2018-03-14 19:57:24','91.200.12.*'),(400527,0,'author','2018-03-14 19:57:24','91.200.12.*'),(400528,0,'author','2018-03-14 19:57:24','91.200.12.*'),(400529,0,'author','2018-03-14 19:57:25','91.200.12.*'),(400530,0,'author','2018-03-14 19:57:26','91.200.12.*'),(400531,0,'author','2018-03-14 19:57:27','91.200.12.*'),(400532,0,'author','2018-03-14 19:57:28','91.200.12.*'),(400533,0,'author','2018-03-14 19:57:28','91.200.12.*'),(400534,0,'author','2018-03-14 19:57:29','91.200.12.*'),(400535,0,'author','2018-03-14 19:57:29','91.200.12.*'),(400536,0,'author','2018-03-14 19:57:29','91.200.12.*'),(400537,0,'author','2018-03-14 19:57:30','91.200.12.*'),(400538,0,'author','2018-03-14 19:57:31','91.200.12.*'),(400539,0,'author','2018-03-14 19:57:31','91.200.12.*'),(400540,0,'author','2018-03-14 19:57:31','91.200.12.*'),(400541,0,'author','2018-03-14 19:57:32','91.200.12.*'),(400542,0,'author','2018-03-14 19:57:32','91.200.12.*'),(400543,0,'author','2018-03-14 19:57:33','91.200.12.*'),(400544,0,'author','2018-03-14 19:57:33','91.200.12.*'),(400545,0,'author','2018-03-14 19:57:33','91.200.12.*'),(400546,0,'author','2018-03-14 19:57:34','91.200.12.*'),(400547,0,'author','2018-03-14 19:57:35','91.200.12.*'),(400548,0,'author','2018-03-14 19:57:36','91.200.12.*'),(400549,0,'author','2018-03-14 19:57:37','91.200.12.*'),(400550,0,'author','2018-03-14 19:57:37','91.200.12.*'),(400551,0,'author','2018-03-14 19:57:38','91.200.12.*'),(400552,0,'author','2018-03-14 19:57:40','91.200.12.*'),(400553,0,'author','2018-03-14 19:57:40','91.200.12.*'),(400554,0,'author','2018-03-14 19:57:41','91.200.12.*'),(400555,0,'author','2018-03-14 19:57:42','91.200.12.*'),(400556,0,'author','2018-03-14 19:57:42','91.200.12.*'),(400557,0,'author','2018-03-14 19:57:42','91.200.12.*'),(400558,0,'author','2018-03-14 19:57:43','91.200.12.*'),(400559,0,'author','2018-03-14 19:57:43','91.200.12.*'),(400560,0,'author','2018-03-14 19:57:44','91.200.12.*'),(400561,0,'author','2018-03-14 19:57:45','91.200.12.*'),(400562,0,'author','2018-03-14 19:57:45','91.200.12.*'),(400563,0,'author','2018-03-14 19:57:46','91.200.12.*'),(400564,0,'author','2018-03-14 19:57:46','91.200.12.*'),(400565,0,'author','2018-03-14 19:57:48','91.200.12.*'),(400566,0,'author','2018-03-14 19:57:48','91.200.12.*'),(400567,0,'author','2018-03-14 19:57:49','91.200.12.*'),(400568,0,'author','2018-03-14 19:57:49','91.200.12.*'),(400569,0,'author','2018-03-14 19:57:50','91.200.12.*'),(400570,0,'author','2018-03-14 19:57:50','91.200.12.*'),(400571,0,'author','2018-03-14 19:57:51','91.200.12.*'),(400572,0,'author','2018-03-14 19:57:51','91.200.12.*'),(400573,0,'author','2018-03-14 19:57:52','91.200.12.*'),(400574,0,'author','2018-03-14 19:57:54','91.200.12.*'),(400575,0,'author','2018-03-14 19:57:55','91.200.12.*'),(400576,0,'author','2018-03-14 19:57:55','91.200.12.*'),(400577,0,'author','2018-03-14 19:57:55','91.200.12.*'),(400578,0,'author','2018-03-14 19:57:56','91.200.12.*'),(400579,0,'author','2018-03-14 19:57:56','91.200.12.*'),(400580,0,'author','2018-03-14 19:57:57','91.200.12.*'),(400581,0,'author','2018-03-14 19:57:58','91.200.12.*'),(400582,0,'author','2018-03-14 19:57:59','91.200.12.*'),(400583,0,'author','2018-03-14 19:57:59','91.200.12.*'),(400584,0,'author','2018-03-14 19:57:59','91.200.12.*'),(400585,0,'author','2018-03-14 19:58:00','91.200.12.*'),(400586,0,'author','2018-03-14 19:58:01','91.200.12.*'),(400587,0,'author','2018-03-14 19:58:01','91.200.12.*'),(400588,0,'author','2018-03-14 19:58:01','91.200.12.*'),(400589,0,'author','2018-03-14 19:58:02','91.200.12.*'),(400590,0,'author','2018-03-14 19:58:03','91.200.12.*'),(400591,0,'author','2018-03-14 19:58:04','91.200.12.*'),(400592,0,'author','2018-03-14 19:58:04','91.200.12.*'),(400593,0,'author','2018-03-14 19:58:04','91.200.12.*'),(400594,0,'author','2018-03-14 19:58:05','91.200.12.*'),(400595,0,'author','2018-03-14 19:58:06','91.200.12.*'),(400596,0,'author','2018-03-14 19:58:07','91.200.12.*'),(400597,0,'author','2018-03-14 19:58:08','91.200.12.*'),(400598,0,'author','2018-03-14 19:58:09','91.200.12.*'),(400599,0,'author','2018-03-14 19:58:10','91.200.12.*'),(400600,0,'author','2018-03-14 19:58:11','91.200.12.*'),(400601,0,'author','2018-03-14 19:58:11','91.200.12.*'),(400602,0,'author','2018-03-14 19:58:12','91.200.12.*'),(400603,0,'author','2018-03-14 19:58:12','91.200.12.*'),(400604,0,'author','2018-03-14 19:58:12','91.200.12.*'),(400605,0,'author','2018-03-14 19:58:15','91.200.12.*'),(400606,0,'author','2018-03-14 19:58:16','91.200.12.*'),(400607,0,'author','2018-03-14 19:58:16','91.200.12.*'),(400608,0,'author','2018-03-14 19:58:17','91.200.12.*'),(400609,0,'author','2018-03-14 19:58:18','91.200.12.*'),(400610,0,'author','2018-03-14 19:58:19','91.200.12.*'),(400611,0,'author','2018-03-14 19:58:19','91.200.12.*'),(400612,0,'author','2018-03-14 19:58:20','91.200.12.*'),(400613,0,'author','2018-03-14 19:58:21','91.200.12.*'),(400614,0,'author','2018-03-14 19:58:21','91.200.12.*'),(400615,0,'author','2018-03-14 19:58:22','91.200.12.*'),(400616,0,'author','2018-03-14 19:58:22','91.200.12.*'),(400617,0,'author','2018-03-14 19:58:23','91.200.12.*'),(400618,0,'author','2018-03-14 19:58:23','91.200.12.*'),(400619,0,'author','2018-03-14 19:58:23','91.200.12.*'),(400620,0,'author','2018-03-14 19:58:24','91.200.12.*'),(400621,0,'author','2018-03-14 19:58:24','91.200.12.*'),(400622,0,'author','2018-03-14 19:58:24','91.200.12.*'),(400623,0,'author','2018-03-14 19:58:25','91.200.12.*'),(400624,0,'author','2018-03-14 19:58:26','91.200.12.*'),(400625,0,'author','2018-03-14 19:58:26','91.200.12.*'),(400626,0,'author','2018-03-14 19:58:27','91.200.12.*'),(400627,0,'author','2018-03-14 19:58:27','91.200.12.*'),(400628,0,'author','2018-03-14 19:58:27','91.200.12.*'),(400629,0,'author','2018-03-14 19:58:29','91.200.12.*'),(400630,0,'author','2018-03-14 19:58:29','91.200.12.*'),(400631,0,'author','2018-03-14 19:58:30','91.200.12.*'),(400632,0,'author','2018-03-14 19:58:31','91.200.12.*'),(400633,0,'author','2018-03-14 19:58:32','91.200.12.*'),(400634,0,'author','2018-03-14 19:58:33','91.200.12.*'),(400635,0,'author','2018-03-14 19:58:33','91.200.12.*'),(400636,0,'author','2018-03-14 19:58:34','91.200.12.*'),(400637,0,'author','2018-03-14 19:58:34','91.200.12.*'),(400638,0,'author','2018-03-14 19:58:34','91.200.12.*'),(400639,0,'author','2018-03-14 19:58:35','91.200.12.*'),(400640,0,'author','2018-03-14 19:58:35','91.200.12.*'),(400641,0,'author','2018-03-14 19:58:36','91.200.12.*'),(400642,0,'author','2018-03-14 19:58:37','91.200.12.*'),(400643,0,'author','2018-03-14 19:58:37','91.200.12.*'),(400644,0,'author','2018-03-14 19:58:38','91.200.12.*'),(400645,0,'author','2018-03-14 19:58:39','91.200.12.*'),(400646,0,'author','2018-03-14 19:58:39','91.200.12.*'),(400647,0,'author','2018-03-14 19:58:40','91.200.12.*'),(400648,0,'author','2018-03-14 19:58:41','91.200.12.*'),(400649,0,'author','2018-03-14 19:58:41','91.200.12.*'),(400650,0,'author','2018-03-14 19:58:42','91.200.12.*'),(400651,0,'author','2018-03-14 19:58:43','91.200.12.*'),(400652,0,'author','2018-03-14 19:58:44','91.200.12.*'),(400653,0,'author','2018-03-14 19:58:45','91.200.12.*'),(400654,0,'author','2018-03-14 19:58:45','91.200.12.*'),(400655,0,'author','2018-03-14 19:58:45','91.200.12.*'),(400656,0,'author','2018-03-14 19:58:46','91.200.12.*'),(400657,0,'author','2018-03-14 19:58:46','91.200.12.*'),(400658,0,'author','2018-03-14 19:58:47','91.200.12.*'),(400659,0,'author','2018-03-14 19:58:47','91.200.12.*'),(400660,0,'author','2018-03-14 19:58:48','91.200.12.*'),(400661,0,'author','2018-03-14 19:58:49','91.200.12.*'),(400662,0,'author','2018-03-14 19:58:49','91.200.12.*'),(400663,0,'author','2018-03-14 19:58:50','91.200.12.*'),(400664,0,'author','2018-03-14 19:58:50','91.200.12.*'),(400665,0,'author','2018-03-14 19:58:50','91.200.12.*'),(400666,0,'author','2018-03-14 19:58:51','91.200.12.*'),(400667,0,'author','2018-03-14 19:58:51','91.200.12.*'),(400668,0,'author','2018-03-14 19:58:52','91.200.12.*'),(400669,0,'author','2018-03-14 19:58:53','91.200.12.*'),(400670,0,'author','2018-03-14 19:58:53','91.200.12.*'),(400671,0,'author','2018-03-14 19:58:54','91.200.12.*'),(400672,0,'author','2018-03-14 19:58:55','91.200.12.*'),(400673,0,'author','2018-03-14 19:58:56','91.200.12.*'),(400674,0,'author','2018-03-14 19:58:57','91.200.12.*'),(400675,0,'author','2018-03-14 19:58:58','91.200.12.*'),(400676,0,'author','2018-03-14 19:59:01','91.200.12.*'),(400677,0,'author','2018-03-14 19:59:04','91.200.12.*'),(400678,0,'author','2018-03-14 19:59:05','91.200.12.*'),(400679,0,'author','2018-03-14 19:59:05','91.200.12.*'),(400680,0,'author','2018-03-14 19:59:09','91.200.12.*'),(400681,0,'author','2018-03-14 19:59:10','91.200.12.*'),(400682,0,'author','2018-03-14 19:59:10','91.200.12.*'),(400683,0,'author','2018-03-14 19:59:10','91.200.12.*'),(400684,0,'author','2018-03-14 19:59:11','91.200.12.*'),(400685,0,'author','2018-03-14 19:59:11','91.200.12.*'),(400686,0,'author','2018-03-14 19:59:12','91.200.12.*'),(400687,0,'author','2018-03-14 19:59:12','91.200.12.*'),(400688,0,'author','2018-03-14 19:59:12','91.200.12.*'),(400689,0,'author','2018-03-14 19:59:13','91.200.12.*'),(400690,0,'author','2018-03-14 19:59:14','91.200.12.*'),(400691,0,'author','2018-03-14 19:59:14','91.200.12.*'),(400692,0,'author','2018-03-14 19:59:15','91.200.12.*'),(400693,0,'author','2018-03-14 19:59:16','91.200.12.*'),(400694,0,'author','2018-03-14 19:59:16','91.200.12.*'),(400695,0,'author','2018-03-14 19:59:16','91.200.12.*'),(400696,0,'author','2018-03-14 19:59:17','91.200.12.*'),(400697,0,'author','2018-03-14 19:59:17','91.200.12.*'),(400698,0,'author','2018-03-14 19:59:18','91.200.12.*'),(400699,0,'author','2018-03-14 19:59:18','91.200.12.*'),(400700,0,'author','2018-03-14 19:59:20','91.200.12.*'),(400701,0,'author','2018-03-14 19:59:20','91.200.12.*'),(400702,0,'author','2018-03-14 19:59:21','91.200.12.*'),(400703,0,'author','2018-03-14 19:59:22','91.200.12.*'),(400704,0,'author','2018-03-14 19:59:22','91.200.12.*'),(400705,0,'author','2018-03-14 19:59:23','91.200.12.*'),(400706,0,'author','2018-03-14 19:59:23','91.200.12.*'),(400707,0,'author','2018-03-14 19:59:24','91.200.12.*'),(400708,0,'author','2018-03-14 19:59:25','91.200.12.*'),(400709,0,'author','2018-03-14 19:59:25','91.200.12.*'),(400710,0,'author','2018-03-14 19:59:26','91.200.12.*'),(400711,0,'author','2018-03-14 19:59:29','91.200.12.*'),(400712,0,'author','2018-03-14 19:59:30','91.200.12.*'),(400713,0,'author','2018-03-14 19:59:30','91.200.12.*'),(400714,0,'author','2018-03-14 19:59:31','91.200.12.*'),(400715,0,'author','2018-03-14 19:59:32','91.200.12.*'),(400716,0,'author','2018-03-14 19:59:32','91.200.12.*'),(400717,0,'author','2018-03-14 19:59:33','91.200.12.*'),(400718,0,'author','2018-03-14 19:59:33','91.200.12.*'),(400719,0,'author','2018-03-14 19:59:36','91.200.12.*'),(400720,0,'author','2018-03-14 19:59:36','91.200.12.*'),(400721,0,'author','2018-03-14 19:59:36','91.200.12.*'),(400722,0,'author','2018-03-14 19:59:37','91.200.12.*'),(400723,0,'author','2018-03-14 19:59:38','91.200.12.*'),(400724,0,'author','2018-03-14 19:59:38','91.200.12.*'),(400725,0,'author','2018-03-14 19:59:39','91.200.12.*'),(400726,0,'author','2018-03-14 19:59:39','91.200.12.*'),(400727,0,'author','2018-03-14 19:59:40','91.200.12.*'),(400728,0,'author','2018-03-14 19:59:42','91.200.12.*'),(400729,0,'author','2018-03-14 19:59:42','91.200.12.*'),(400730,0,'author','2018-03-14 19:59:44','91.200.12.*'),(400731,0,'author','2018-03-14 19:59:44','91.200.12.*'),(400732,0,'author','2018-03-14 19:59:45','91.200.12.*'),(400733,0,'author','2018-03-14 19:59:46','91.200.12.*'),(400734,0,'author','2018-03-14 19:59:48','91.200.12.*'),(400735,0,'author','2018-03-14 19:59:48','91.200.12.*'),(400736,0,'author','2018-03-14 19:59:49','91.200.12.*'),(400737,0,'author','2018-03-14 19:59:50','91.200.12.*'),(400738,0,'author','2018-03-14 19:59:52','91.200.12.*'),(400739,0,'author','2018-03-14 19:59:53','91.200.12.*'),(400740,0,'author','2018-03-14 19:59:55','91.200.12.*'),(400741,0,'author','2018-03-14 19:59:56','91.200.12.*'),(400742,0,'author','2018-03-14 19:59:57','91.200.12.*'),(400743,0,'author','2018-03-14 19:59:58','91.200.12.*'),(400744,0,'author','2018-03-14 19:59:59','91.200.12.*'),(400745,0,'author','2018-03-14 20:00:00','91.200.12.*'),(400746,0,'author','2018-03-14 20:00:00','91.200.12.*'),(400747,0,'author','2018-03-14 20:00:00','91.200.12.*'),(400748,0,'author','2018-03-14 20:00:01','91.200.12.*'),(400749,0,'author','2018-03-14 20:00:01','91.200.12.*'),(400750,0,'author','2018-03-14 20:00:03','91.200.12.*'),(400751,0,'author','2018-03-14 20:00:04','91.200.12.*'),(400752,0,'author','2018-03-14 20:00:05','91.200.12.*'),(400753,0,'author','2018-03-14 20:00:06','91.200.12.*'),(400754,0,'author','2018-03-14 20:00:06','91.200.12.*'),(400755,0,'author','2018-03-14 20:00:07','91.200.12.*'),(400756,0,'author','2018-03-14 20:00:07','91.200.12.*'),(400757,0,'author','2018-03-14 20:00:08','91.200.12.*'),(400758,0,'author','2018-03-14 20:00:09','91.200.12.*'),(400759,0,'author','2018-03-14 20:00:10','91.200.12.*'),(400760,0,'author','2018-03-14 20:00:11','91.200.12.*'),(400761,0,'author','2018-03-14 20:00:11','91.200.12.*'),(400762,0,'author','2018-03-14 20:00:12','91.200.12.*'),(400763,0,'author','2018-03-14 20:00:16','91.200.12.*'),(400764,0,'author','2018-03-14 20:00:16','91.200.12.*'),(400765,0,'author','2018-03-14 20:00:16','91.200.12.*'),(400766,0,'author','2018-03-14 20:00:17','91.200.12.*'),(400767,0,'author','2018-03-14 20:00:18','91.200.12.*'),(400768,0,'author','2018-03-14 20:00:19','91.200.12.*'),(400769,0,'author','2018-03-14 20:00:20','91.200.12.*'),(400770,0,'author','2018-03-14 20:00:22','91.200.12.*'),(400771,0,'author','2018-03-14 20:00:22','91.200.12.*'),(400772,0,'author','2018-03-14 20:00:24','91.200.12.*'),(400773,0,'author','2018-03-14 20:00:24','91.200.12.*'),(400774,0,'author','2018-03-14 20:00:25','91.200.12.*'),(400775,0,'author','2018-03-14 20:00:26','91.200.12.*'),(400776,0,'author','2018-03-14 20:00:28','91.200.12.*'),(400777,0,'author','2018-03-14 20:00:31','91.200.12.*'),(400778,0,'author','2018-03-14 20:00:32','91.200.12.*'),(400779,0,'author','2018-03-14 20:00:33','91.200.12.*'),(400780,0,'author','2018-03-14 20:00:33','91.200.12.*'),(400781,0,'author','2018-03-14 20:00:34','91.200.12.*'),(400782,0,'author','2018-03-14 20:00:34','91.200.12.*'),(400783,0,'author','2018-03-14 20:00:34','91.200.12.*'),(400784,0,'author','2018-03-14 20:00:35','91.200.12.*'),(400785,0,'author','2018-03-14 20:00:35','91.200.12.*'),(400786,0,'author','2018-03-14 20:00:36','91.200.12.*'),(400787,0,'author','2018-03-14 20:00:36','91.200.12.*'),(400788,0,'author','2018-03-14 20:00:37','91.200.12.*'),(400789,0,'author','2018-03-14 20:00:38','91.200.12.*'),(400790,0,'author','2018-03-14 20:00:39','91.200.12.*'),(400791,0,'author','2018-03-14 20:00:40','91.200.12.*'),(400792,0,'author','2018-03-14 20:00:41','91.200.12.*'),(400793,0,'author','2018-03-14 20:00:41','91.200.12.*'),(400794,0,'author','2018-03-14 20:00:42','91.200.12.*'),(400795,0,'author','2018-03-14 20:00:42','91.200.12.*'),(400796,0,'author','2018-03-14 20:00:43','91.200.12.*'),(400797,0,'author','2018-03-14 20:00:44','91.200.12.*'),(400798,0,'author','2018-03-14 20:00:44','91.200.12.*'),(400799,0,'author','2018-03-14 20:00:46','91.200.12.*'),(400800,0,'author','2018-03-14 20:00:46','91.200.12.*'),(400801,0,'author','2018-03-14 20:00:48','91.200.12.*'),(400802,0,'author','2018-03-14 20:00:49','91.200.12.*'),(400803,0,'author','2018-03-14 20:00:49','91.200.12.*'),(400804,0,'author','2018-03-14 20:00:50','91.200.12.*'),(400805,0,'author','2018-03-14 20:00:51','91.200.12.*'),(400806,0,'author','2018-03-14 20:00:52','91.200.12.*'),(400807,0,'author','2018-03-14 20:00:52','91.200.12.*'),(400808,0,'author','2018-03-14 20:00:53','91.200.12.*'),(400809,0,'author','2018-03-14 20:00:54','91.200.12.*'),(400810,0,'author','2018-03-14 20:00:55','91.200.12.*'),(400811,0,'author','2018-03-14 20:00:55','91.200.12.*'),(400812,0,'author','2018-03-14 20:00:56','91.200.12.*'),(400813,0,'author','2018-03-14 20:00:57','91.200.12.*'),(400814,0,'author','2018-03-14 20:00:58','91.200.12.*'),(400815,0,'author','2018-03-14 20:00:58','91.200.12.*'),(400816,0,'author','2018-03-14 20:00:59','91.200.12.*'),(400817,0,'author','2018-03-14 20:01:00','91.200.12.*'),(400818,0,'author','2018-03-14 20:01:00','91.200.12.*'),(400819,0,'author','2018-03-14 20:01:01','91.200.12.*'),(400820,0,'author','2018-03-14 20:01:01','91.200.12.*'),(400821,0,'author','2018-03-14 20:01:02','91.200.12.*'),(400822,0,'author','2018-03-14 20:01:04','91.200.12.*'),(400823,0,'author','2018-03-14 20:01:05','91.200.12.*'),(400824,0,'author','2018-03-14 20:01:07','91.200.12.*'),(400825,0,'author','2018-03-14 20:01:07','91.200.12.*'),(400826,0,'author','2018-03-14 20:01:08','91.200.12.*'),(400827,0,'author','2018-03-14 20:01:10','91.200.12.*'),(400828,0,'author','2018-03-14 20:01:11','91.200.12.*'),(400829,0,'author','2018-03-14 20:01:11','91.200.12.*'),(400830,0,'author','2018-03-14 20:01:12','91.200.12.*'),(400831,0,'author','2018-03-14 20:01:13','91.200.12.*'),(400832,0,'author','2018-03-14 20:01:13','91.200.12.*'),(400833,0,'author','2018-03-14 20:01:14','91.200.12.*'),(400834,0,'author','2018-03-14 20:01:15','91.200.12.*'),(400835,0,'author','2018-03-14 20:01:15','91.200.12.*'),(400836,0,'author','2018-03-14 20:01:15','91.200.12.*'),(400837,0,'author','2018-03-14 20:01:16','91.200.12.*'),(400838,0,'author','2018-03-14 20:01:17','91.200.12.*'),(400839,0,'author','2018-03-14 20:01:17','91.200.12.*'),(400840,0,'author','2018-03-14 20:01:18','91.200.12.*'),(400841,0,'author','2018-03-14 20:01:19','91.200.12.*'),(400842,0,'author','2018-03-14 20:01:19','91.200.12.*'),(400843,0,'author','2018-03-14 20:01:19','91.200.12.*'),(400844,0,'author','2018-03-14 20:01:20','91.200.12.*'),(400845,0,'author','2018-03-14 20:01:21','91.200.12.*'),(400846,0,'author','2018-03-14 20:01:22','91.200.12.*'),(400847,0,'author','2018-03-14 20:01:22','91.200.12.*'),(400848,0,'author','2018-03-14 20:01:22','91.200.12.*'),(400849,0,'author','2018-03-14 20:01:23','91.200.12.*'),(400850,0,'author','2018-03-14 20:01:23','91.200.12.*'),(400851,0,'author','2018-03-14 20:01:24','91.200.12.*'),(400852,0,'author','2018-03-14 20:01:25','91.200.12.*'),(400853,0,'author','2018-03-14 20:01:26','91.200.12.*'),(400854,0,'author','2018-03-14 20:01:26','91.200.12.*'),(400855,0,'author','2018-03-14 20:01:26','91.200.12.*'),(400856,0,'author','2018-03-14 20:01:27','91.200.12.*'),(400857,0,'author','2018-03-14 20:01:28','91.200.12.*'),(400858,0,'author','2018-03-14 20:01:29','91.200.12.*'),(400859,0,'author','2018-03-14 20:01:29','91.200.12.*'),(400860,0,'author','2018-03-14 20:01:31','91.200.12.*'),(400861,0,'author','2018-03-14 20:01:31','91.200.12.*'),(400862,0,'author','2018-03-14 20:01:32','91.200.12.*'),(400863,0,'author','2018-03-14 20:01:32','91.200.12.*'),(400864,0,'author','2018-03-14 20:01:36','91.200.12.*'),(400865,0,'author','2018-03-14 20:01:36','91.200.12.*'),(400866,0,'author','2018-03-14 20:01:37','91.200.12.*'),(400867,0,'author','2018-03-14 20:01:37','91.200.12.*'),(400868,0,'author','2018-03-14 20:01:38','91.200.12.*'),(400869,0,'author','2018-03-14 20:01:38','91.200.12.*'),(400870,0,'author','2018-03-14 20:01:39','91.200.12.*'),(400871,0,'author','2018-03-14 20:01:40','91.200.12.*'),(400872,0,'author','2018-03-14 20:01:40','91.200.12.*'),(400873,0,'author','2018-03-14 20:01:41','91.200.12.*'),(400874,0,'author','2018-03-14 20:01:41','91.200.12.*'),(400875,0,'author','2018-03-14 20:01:42','91.200.12.*'),(400876,0,'author','2018-03-14 20:01:42','91.200.12.*'),(400877,0,'author','2018-03-14 20:01:43','91.200.12.*'),(400878,0,'author','2018-03-14 20:01:46','91.200.12.*'),(400879,0,'author','2018-03-14 20:01:47','91.200.12.*'),(400880,0,'author','2018-03-14 20:01:48','91.200.12.*'),(400881,0,'author','2018-03-14 20:01:49','91.200.12.*'),(400882,0,'author','2018-03-14 20:01:49','91.200.12.*'),(400883,0,'author','2018-03-14 20:01:50','91.200.12.*'),(400884,0,'author','2018-03-14 20:01:50','91.200.12.*'),(400885,0,'author','2018-03-14 20:01:51','91.200.12.*'),(400886,0,'author','2018-03-14 20:01:53','91.200.12.*'),(400887,0,'author','2018-03-14 20:01:53','91.200.12.*'),(400888,0,'author','2018-03-14 20:01:54','91.200.12.*'),(400889,0,'author','2018-03-14 20:01:54','91.200.12.*'),(400890,0,'author','2018-03-14 20:01:55','91.200.12.*'),(400891,0,'author','2018-03-14 20:01:55','91.200.12.*'),(400892,0,'author','2018-03-14 20:01:56','91.200.12.*'),(400893,0,'author','2018-03-14 20:01:56','91.200.12.*'),(400894,0,'author','2018-03-14 20:01:57','91.200.12.*'),(400895,0,'author','2018-03-14 20:01:59','91.200.12.*'),(400896,0,'author','2018-03-14 20:01:59','91.200.12.*'),(400897,0,'author','2018-03-14 20:01:59','91.200.12.*'),(400898,0,'author','2018-03-14 20:02:00','91.200.12.*'),(400899,0,'author','2018-03-14 20:02:00','91.200.12.*'),(400900,0,'author','2018-03-14 20:02:01','91.200.12.*'),(400901,0,'author','2018-03-14 20:02:03','91.200.12.*'),(400902,0,'author','2018-03-14 20:02:05','91.200.12.*'),(400903,0,'author','2018-03-14 20:02:05','91.200.12.*'),(400904,0,'author','2018-03-14 20:02:06','91.200.12.*'),(400905,0,'author','2018-03-14 20:02:07','91.200.12.*'),(400906,0,'author','2018-03-14 20:02:07','91.200.12.*'),(400907,0,'author','2018-03-14 20:02:08','91.200.12.*'),(400908,0,'author','2018-03-14 20:02:08','91.200.12.*'),(400909,0,'author','2018-03-14 20:02:10','91.200.12.*'),(400910,0,'author','2018-03-14 20:02:10','91.200.12.*'),(400911,0,'author','2018-03-14 20:02:11','91.200.12.*'),(400912,0,'author','2018-03-14 20:02:11','91.200.12.*'),(400913,0,'author','2018-03-14 20:02:13','91.200.12.*'),(400914,0,'author','2018-03-14 20:02:13','91.200.12.*'),(400915,0,'author','2018-03-14 20:02:14','91.200.12.*'),(400916,0,'author','2018-03-14 20:02:15','91.200.12.*'),(400917,0,'author','2018-03-14 20:02:15','91.200.12.*'),(400918,0,'author','2018-03-14 20:02:15','91.200.12.*'),(400919,0,'author','2018-03-14 20:02:16','91.200.12.*'),(400920,0,'author','2018-03-14 20:02:17','91.200.12.*'),(400921,0,'author','2018-03-14 20:02:18','91.200.12.*'),(400922,0,'author','2018-03-14 20:02:18','91.200.12.*'),(400923,0,'author','2018-03-14 20:02:19','91.200.12.*'),(400924,0,'author','2018-03-14 20:02:19','91.200.12.*'),(400925,0,'author','2018-03-14 20:02:20','91.200.12.*'),(400926,0,'author','2018-03-14 20:02:21','91.200.12.*'),(400927,0,'author','2018-03-14 20:02:21','91.200.12.*'),(400928,0,'author','2018-03-14 20:02:21','91.200.12.*'),(400929,0,'author','2018-03-14 20:02:22','91.200.12.*'),(400930,0,'author','2018-03-14 20:02:22','91.200.12.*'),(400931,0,'author','2018-03-14 20:02:23','91.200.12.*'),(400932,0,'author','2018-03-14 20:02:24','91.200.12.*'),(400933,0,'author','2018-03-14 20:02:24','91.200.12.*'),(400934,0,'author','2018-03-14 20:02:25','91.200.12.*'),(400935,0,'author','2018-03-14 20:02:25','91.200.12.*'),(400936,0,'author','2018-03-14 20:02:26','91.200.12.*'),(400937,0,'author','2018-03-14 20:02:26','91.200.12.*'),(400938,0,'author','2018-03-14 20:02:27','91.200.12.*'),(400939,0,'author','2018-03-14 20:02:27','91.200.12.*'),(400940,0,'author','2018-03-14 20:02:28','91.200.12.*'),(400941,0,'author','2018-03-14 20:02:29','91.200.12.*'),(400942,0,'author','2018-03-14 20:02:29','91.200.12.*'),(400943,0,'author','2018-03-14 20:02:29','91.200.12.*'),(400944,0,'author','2018-03-14 20:02:32','91.200.12.*'),(400945,0,'author','2018-03-14 20:02:32','91.200.12.*'),(400946,0,'author','2018-03-14 20:02:34','91.200.12.*'),(400947,0,'author','2018-03-14 20:02:35','91.200.12.*'),(400948,0,'author','2018-03-14 20:02:35','91.200.12.*'),(400949,0,'author','2018-03-14 20:02:35','91.200.12.*'),(400950,0,'author','2018-03-14 20:02:36','91.200.12.*'),(400951,0,'author','2018-03-14 20:02:36','91.200.12.*'),(400952,0,'author','2018-03-14 20:02:37','91.200.12.*'),(400953,0,'author','2018-03-14 20:02:37','91.200.12.*'),(400954,0,'author','2018-03-14 20:02:37','91.200.12.*'),(400955,0,'author','2018-03-14 20:02:38','91.200.12.*'),(400956,0,'author','2018-03-14 20:02:40','91.200.12.*'),(400957,0,'author','2018-03-14 20:02:40','91.200.12.*'),(400958,0,'author','2018-03-14 20:02:41','91.200.12.*'),(400959,0,'author','2018-03-14 20:02:42','91.200.12.*'),(400960,0,'author','2018-03-14 20:02:42','91.200.12.*'),(400961,0,'author','2018-03-14 20:02:43','91.200.12.*'),(400962,0,'author','2018-03-14 20:02:43','91.200.12.*'),(400963,0,'author','2018-03-14 20:02:45','91.200.12.*'),(400964,0,'author','2018-03-14 20:02:46','91.200.12.*'),(400965,0,'author','2018-03-14 20:02:47','91.200.12.*'),(400966,0,'author','2018-03-14 20:02:48','91.200.12.*'),(400967,0,'author','2018-03-14 20:02:48','91.200.12.*'),(400968,0,'author','2018-03-14 20:02:49','91.200.12.*'),(400969,0,'author','2018-03-14 20:02:50','91.200.12.*'),(400970,0,'author','2018-03-14 20:02:51','91.200.12.*'),(400971,0,'author','2018-03-14 20:02:51','91.200.12.*'),(400972,0,'author','2018-03-14 20:02:52','91.200.12.*'),(400973,0,'author','2018-03-14 20:02:53','91.200.12.*'),(400974,0,'author','2018-03-14 20:02:54','91.200.12.*'),(400975,0,'author','2018-03-14 20:02:54','91.200.12.*'),(400976,0,'author','2018-03-14 20:02:55','91.200.12.*'),(400977,0,'author','2018-03-14 20:02:57','91.200.12.*'),(400978,0,'author','2018-03-14 20:02:57','91.200.12.*'),(400979,0,'author','2018-03-14 20:02:58','91.200.12.*'),(400980,0,'author','2018-03-14 20:02:58','91.200.12.*'),(400981,0,'author','2018-03-14 20:02:59','91.200.12.*'),(400982,0,'author','2018-03-14 20:02:59','91.200.12.*'),(400983,0,'author','2018-03-14 20:03:00','91.200.12.*'),(400984,0,'author','2018-03-14 20:03:00','91.200.12.*'),(400985,0,'author','2018-03-14 20:03:01','91.200.12.*'),(400986,0,'author','2018-03-14 20:03:02','91.200.12.*'),(400987,0,'author','2018-03-14 20:03:03','91.200.12.*'),(400988,0,'author','2018-03-14 20:03:04','91.200.12.*'),(400989,0,'author','2018-03-14 20:03:04','91.200.12.*'),(400990,0,'author','2018-03-14 20:03:05','91.200.12.*'),(400991,0,'author','2018-03-14 20:03:06','91.200.12.*'),(400992,0,'author','2018-03-14 20:03:07','91.200.12.*'),(400993,0,'author','2018-03-14 20:03:08','91.200.12.*'),(400994,0,'author','2018-03-14 20:03:09','91.200.12.*'),(400995,0,'author','2018-03-14 20:03:09','91.200.12.*'),(400996,0,'author','2018-03-14 20:03:11','91.200.12.*'),(400997,0,'author','2018-03-14 20:03:12','91.200.12.*'),(400998,0,'author','2018-03-14 20:03:13','91.200.12.*'),(400999,0,'author','2018-03-14 20:03:13','91.200.12.*'),(401000,0,'author','2018-03-14 20:03:14','91.200.12.*'),(401001,0,'author','2018-03-14 20:03:14','91.200.12.*'),(401002,0,'author','2018-03-14 20:03:15','91.200.12.*'),(401003,0,'author','2018-03-14 20:03:15','91.200.12.*'),(401004,0,'author','2018-03-14 20:03:16','91.200.12.*'),(401005,0,'author','2018-03-14 20:03:17','91.200.12.*'),(401006,0,'author','2018-03-14 20:03:19','91.200.12.*'),(401007,0,'author','2018-03-14 20:03:20','91.200.12.*'),(401008,0,'author','2018-03-14 20:03:20','91.200.12.*'),(401009,0,'author','2018-03-14 20:03:21','91.200.12.*'),(401010,0,'author','2018-03-14 20:03:22','91.200.12.*'),(401011,0,'author','2018-03-14 20:03:23','91.200.12.*'),(401012,0,'author','2018-03-14 20:03:24','91.200.12.*'),(401013,0,'author','2018-03-14 20:03:25','91.200.12.*'),(401014,0,'author','2018-03-14 20:03:25','91.200.12.*'),(401015,0,'author','2018-03-14 20:03:26','91.200.12.*'),(401016,0,'author','2018-03-14 20:03:31','91.200.12.*'),(401017,0,'author','2018-03-14 20:03:32','91.200.12.*'),(401018,0,'author','2018-03-14 20:03:32','91.200.12.*'),(401019,0,'author','2018-03-14 20:03:33','91.200.12.*'),(401020,0,'author','2018-03-14 20:03:33','91.200.12.*'),(401021,0,'author','2018-03-14 20:03:34','91.200.12.*'),(401022,0,'author','2018-03-14 20:03:35','91.200.12.*'),(401023,0,'author','2018-03-14 20:03:37','91.200.12.*'),(401024,0,'author','2018-03-14 20:03:37','91.200.12.*'),(401025,0,'author','2018-03-14 20:03:40','91.200.12.*'),(401026,0,'author','2018-03-14 20:03:41','91.200.12.*'),(401027,0,'author','2018-03-14 20:03:41','91.200.12.*'),(401028,0,'author','2018-03-14 20:03:41','91.200.12.*'),(401029,0,'author','2018-03-14 20:03:42','91.200.12.*'),(401030,0,'author','2018-03-14 20:03:43','91.200.12.*'),(401031,0,'author','2018-03-14 20:03:43','91.200.12.*'),(401032,0,'author','2018-03-14 20:03:44','91.200.12.*'),(401033,0,'author','2018-03-14 20:03:45','91.200.12.*'),(401034,0,'author','2018-03-14 20:03:45','91.200.12.*'),(401035,0,'author','2018-03-14 20:03:46','91.200.12.*'),(401036,0,'author','2018-03-14 20:03:46','91.200.12.*'),(401037,0,'author','2018-03-14 20:03:47','91.200.12.*'),(401038,0,'author','2018-03-14 20:03:47','91.200.12.*'),(401039,0,'author','2018-03-14 20:03:48','91.200.12.*'),(401040,0,'author','2018-03-14 20:03:48','91.200.12.*'),(401041,0,'author','2018-03-14 20:03:49','91.200.12.*'),(401042,0,'author','2018-03-14 20:03:50','91.200.12.*'),(401043,0,'author','2018-03-14 20:03:50','91.200.12.*'),(401044,0,'author','2018-03-14 20:03:51','91.200.12.*'),(401045,0,'author','2018-03-14 20:03:52','91.200.12.*'),(401046,0,'author','2018-03-14 20:03:53','91.200.12.*'),(401047,0,'author','2018-03-14 20:03:54','91.200.12.*'),(401048,0,'author','2018-03-14 20:03:55','91.200.12.*'),(401049,0,'author','2018-03-14 20:03:55','91.200.12.*'),(401050,0,'author','2018-03-14 20:03:56','91.200.12.*'),(401051,0,'author','2018-03-14 20:03:58','91.200.12.*'),(401052,0,'author','2018-03-14 20:03:58','91.200.12.*'),(401053,0,'author','2018-03-14 20:03:59','91.200.12.*'),(401054,0,'author','2018-03-14 20:04:00','91.200.12.*'),(401055,0,'author','2018-03-14 20:04:02','91.200.12.*'),(401056,0,'author','2018-03-14 20:04:03','91.200.12.*'),(401057,0,'author','2018-03-14 20:04:05','91.200.12.*'),(401058,0,'author','2018-03-14 20:04:06','91.200.12.*'),(401059,0,'author','2018-03-14 20:04:07','91.200.12.*'),(401060,0,'author','2018-03-14 20:04:07','91.200.12.*'),(401061,0,'author','2018-03-14 20:04:08','91.200.12.*'),(401062,0,'author','2018-03-14 20:04:08','91.200.12.*'),(401063,0,'author','2018-03-14 20:04:09','91.200.12.*'),(401064,0,'author','2018-03-14 20:04:10','91.200.12.*'),(401065,0,'author','2018-03-14 20:04:10','91.200.12.*'),(401066,0,'author','2018-03-14 20:04:11','91.200.12.*'),(401067,0,'author','2018-03-14 20:04:12','91.200.12.*'),(401068,0,'author','2018-03-14 20:04:12','91.200.12.*'),(401069,0,'author','2018-03-14 20:04:13','91.200.12.*'),(401070,0,'author','2018-03-14 20:04:13','91.200.12.*'),(401071,0,'author','2018-03-14 20:04:14','91.200.12.*'),(401072,0,'author','2018-03-14 20:04:14','91.200.12.*'),(401073,0,'author','2018-03-14 20:04:17','91.200.12.*'),(401074,0,'author','2018-03-14 20:04:17','91.200.12.*'),(401075,0,'author','2018-03-14 20:04:18','91.200.12.*'),(401076,0,'author','2018-03-14 20:04:18','91.200.12.*'),(401077,0,'author','2018-03-14 20:04:20','91.200.12.*'),(401078,0,'author','2018-03-14 20:04:22','91.200.12.*'),(401079,0,'author','2018-03-14 20:04:22','91.200.12.*'),(401080,0,'author','2018-03-14 20:04:25','91.200.12.*'),(401081,0,'author','2018-03-14 20:04:26','91.200.12.*'),(401082,0,'author','2018-03-14 20:04:27','91.200.12.*'),(401083,0,'author','2018-03-14 20:04:28','91.200.12.*'),(401084,0,'author','2018-03-14 20:04:28','91.200.12.*'),(401085,0,'author','2018-03-14 20:04:29','91.200.12.*'),(401086,0,'author','2018-03-14 20:04:29','91.200.12.*'),(401087,0,'author','2018-03-14 20:04:30','91.200.12.*'),(401088,0,'author','2018-03-14 20:04:31','91.200.12.*'),(401089,0,'author','2018-03-14 20:04:32','91.200.12.*'),(401090,0,'author','2018-03-14 20:04:32','91.200.12.*'),(401091,0,'author','2018-03-14 20:04:33','91.200.12.*'),(401092,0,'author','2018-03-14 20:04:34','91.200.12.*'),(401093,0,'author','2018-03-14 20:04:34','91.200.12.*'),(401094,0,'author','2018-03-14 20:04:34','91.200.12.*'),(401095,0,'author','2018-03-14 20:04:35','91.200.12.*'),(401096,0,'author','2018-03-14 20:04:35','91.200.12.*'),(401097,0,'author','2018-03-14 20:04:36','91.200.12.*'),(401098,0,'author','2018-03-14 20:04:37','91.200.12.*'),(401099,0,'author','2018-03-14 20:04:38','91.200.12.*'),(401100,0,'author','2018-03-14 20:04:38','91.200.12.*'),(401101,0,'author','2018-03-14 20:04:39','91.200.12.*'),(401102,0,'author','2018-03-14 20:04:41','91.200.12.*'),(401103,0,'author','2018-03-14 20:04:41','91.200.12.*'),(401104,0,'author','2018-03-14 20:04:42','91.200.12.*'),(401105,0,'author','2018-03-14 20:04:43','91.200.12.*'),(401106,0,'author','2018-03-14 20:04:43','91.200.12.*'),(401107,0,'author','2018-03-14 20:04:44','91.200.12.*'),(401108,0,'author','2018-03-14 20:04:45','91.200.12.*'),(401109,0,'author','2018-03-14 20:04:45','91.200.12.*'),(401110,0,'author','2018-03-14 20:04:46','91.200.12.*'),(401111,0,'author','2018-03-14 20:04:47','91.200.12.*'),(401112,0,'author','2018-03-14 20:04:49','91.200.12.*'),(401113,0,'author','2018-03-14 20:04:50','91.200.12.*'),(401114,0,'author','2018-03-14 20:04:50','91.200.12.*'),(401115,0,'author','2018-03-14 20:04:52','91.200.12.*'),(401116,0,'author','2018-03-14 20:04:52','91.200.12.*'),(401117,0,'author','2018-03-14 20:04:53','91.200.12.*'),(401118,0,'author','2018-03-14 20:04:54','91.200.12.*'),(401119,0,'author','2018-03-14 20:04:55','91.200.12.*'),(401120,0,'author','2018-03-14 20:04:55','91.200.12.*'),(401121,0,'author','2018-03-14 20:04:55','91.200.12.*'),(401122,0,'author','2018-03-14 20:04:56','91.200.12.*'),(401123,0,'author','2018-03-14 20:04:56','91.200.12.*'),(401124,0,'author','2018-03-14 20:04:57','91.200.12.*'),(401125,0,'author','2018-03-14 20:04:58','91.200.12.*'),(401126,0,'author','2018-03-14 20:04:59','91.200.12.*'),(401127,0,'author','2018-03-14 20:04:59','91.200.12.*'),(401128,0,'author','2018-03-14 20:05:00','91.200.12.*'),(401129,0,'author','2018-03-14 20:05:01','91.200.12.*'),(401130,0,'author','2018-03-14 20:05:03','91.200.12.*'),(401131,0,'author','2018-03-14 20:05:03','91.200.12.*'),(401132,0,'author','2018-03-14 20:05:05','91.200.12.*'),(401133,0,'author','2018-03-14 20:05:07','91.200.12.*'),(401134,0,'author','2018-03-14 20:05:07','91.200.12.*'),(401135,0,'author','2018-03-14 20:05:09','91.200.12.*'),(401136,0,'author','2018-03-14 20:05:09','91.200.12.*'),(401137,0,'author','2018-03-14 20:05:10','91.200.12.*'),(401138,0,'author','2018-03-14 20:05:11','91.200.12.*'),(401139,0,'author','2018-03-14 20:05:12','91.200.12.*'),(401140,0,'author','2018-03-14 20:05:12','91.200.12.*'),(401141,0,'author','2018-03-14 20:05:13','91.200.12.*'),(401142,0,'author','2018-03-14 20:05:14','91.200.12.*'),(401143,0,'author','2018-03-14 20:05:15','91.200.12.*'),(401144,0,'author','2018-03-14 20:05:15','91.200.12.*'),(401145,0,'author','2018-03-14 20:05:16','91.200.12.*'),(401146,0,'author','2018-03-14 20:05:16','91.200.12.*'),(401147,0,'author','2018-03-14 20:05:17','91.200.12.*'),(401148,0,'author','2018-03-14 20:05:18','91.200.12.*'),(401149,0,'author','2018-03-14 20:05:18','91.200.12.*'),(401150,0,'author','2018-03-14 20:05:19','91.200.12.*'),(401151,0,'author','2018-03-14 20:05:20','91.200.12.*'),(401152,0,'author','2018-03-14 20:05:21','91.200.12.*'),(401153,0,'author','2018-03-14 20:05:21','91.200.12.*'),(401154,0,'author','2018-03-14 20:05:22','91.200.12.*'),(401155,0,'author','2018-03-14 20:05:22','91.200.12.*'),(401156,0,'author','2018-03-14 20:05:23','91.200.12.*'),(401157,0,'author','2018-03-14 20:05:23','91.200.12.*'),(401158,0,'author','2018-03-14 20:05:24','91.200.12.*'),(401159,0,'author','2018-03-14 20:05:25','91.200.12.*'),(401160,0,'author','2018-03-14 20:05:26','91.200.12.*'),(401161,0,'author','2018-03-14 20:05:27','91.200.12.*'),(401162,0,'author','2018-03-14 20:05:28','91.200.12.*'),(401163,0,'author','2018-03-14 20:05:28','91.200.12.*'),(401164,0,'author','2018-03-14 20:05:29','91.200.12.*'),(401165,0,'author','2018-03-14 20:05:29','91.200.12.*'),(401166,0,'author','2018-03-14 20:05:30','91.200.12.*'),(401167,0,'author','2018-03-14 20:05:30','91.200.12.*'),(401168,0,'author','2018-03-14 20:05:31','91.200.12.*'),(401169,0,'author','2018-03-14 20:05:31','91.200.12.*'),(401170,0,'author','2018-03-14 20:05:32','91.200.12.*'),(401171,0,'author','2018-03-14 20:05:33','91.200.12.*'),(401172,0,'author','2018-03-14 20:05:34','91.200.12.*'),(401173,0,'author','2018-03-14 20:05:34','91.200.12.*'),(401174,0,'author','2018-03-14 20:05:35','91.200.12.*'),(401175,0,'author','2018-03-14 20:05:35','91.200.12.*'),(401176,0,'author','2018-03-14 20:05:36','91.200.12.*'),(401177,0,'author','2018-03-14 20:05:38','91.200.12.*'),(401178,0,'author','2018-03-14 20:05:38','91.200.12.*'),(401179,0,'author','2018-03-14 20:05:39','91.200.12.*'),(401180,0,'author','2018-03-14 20:05:40','91.200.12.*'),(401181,0,'author','2018-03-14 20:05:41','91.200.12.*'),(401182,0,'author','2018-03-14 20:05:43','91.200.12.*'),(401183,0,'author','2018-03-14 20:05:43','91.200.12.*'),(401184,0,'author','2018-03-14 20:05:44','91.200.12.*'),(401185,0,'author','2018-03-14 20:05:44','91.200.12.*'),(401186,0,'author','2018-03-14 20:05:45','91.200.12.*'),(401187,0,'author','2018-03-14 20:05:45','91.200.12.*'),(401188,0,'author','2018-03-14 20:05:46','91.200.12.*'),(401189,0,'author','2018-03-14 20:05:47','91.200.12.*'),(401190,0,'author','2018-03-14 20:05:47','91.200.12.*'),(401191,0,'author','2018-03-14 20:05:48','91.200.12.*'),(401192,0,'author','2018-03-14 20:05:48','91.200.12.*'),(401193,0,'author','2018-03-14 20:05:49','91.200.12.*'),(401194,0,'author','2018-03-14 20:05:51','91.200.12.*'),(401195,0,'author','2018-03-14 20:05:52','91.200.12.*'),(401196,0,'author','2018-03-14 20:05:53','91.200.12.*'),(401197,0,'author','2018-03-14 20:05:53','91.200.12.*'),(401198,0,'author','2018-03-14 20:05:54','91.200.12.*'),(401199,0,'author','2018-03-14 20:05:55','91.200.12.*'),(401200,0,'author','2018-03-14 20:05:55','91.200.12.*'),(401201,0,'author','2018-03-14 20:05:56','91.200.12.*'),(401202,0,'author','2018-03-14 20:05:57','91.200.12.*'),(401203,0,'author','2018-03-14 20:05:58','91.200.12.*'),(401204,0,'author','2018-03-14 20:05:58','91.200.12.*'),(401205,0,'author','2018-03-14 20:06:00','91.200.12.*'),(401206,0,'author','2018-03-14 20:06:00','91.200.12.*'),(401207,0,'author','2018-03-14 20:06:01','91.200.12.*'),(401208,0,'author','2018-03-14 20:06:02','91.200.12.*'),(401209,0,'author','2018-03-14 20:06:03','91.200.12.*'),(401210,0,'author','2018-03-14 20:06:03','91.200.12.*'),(401211,0,'author','2018-03-14 20:06:03','91.200.12.*'),(401212,0,'author','2018-03-14 20:06:04','91.200.12.*'),(401213,0,'author','2018-03-14 20:06:04','91.200.12.*'),(401214,0,'author','2018-03-14 20:06:04','91.200.12.*'),(401215,0,'author','2018-03-14 20:06:05','91.200.12.*'),(401216,0,'author','2018-03-14 20:06:06','91.200.12.*'),(401217,0,'author','2018-03-14 20:06:06','91.200.12.*'),(401218,0,'author','2018-03-14 20:06:07','91.200.12.*'),(401219,0,'author','2018-03-14 20:06:07','91.200.12.*'),(401220,0,'author','2018-03-14 20:06:08','91.200.12.*'),(401221,0,'author','2018-03-14 20:06:08','91.200.12.*'),(401222,0,'author','2018-03-14 20:06:09','91.200.12.*'),(401223,0,'author','2018-03-14 20:06:10','91.200.12.*'),(401224,0,'author','2018-03-14 20:06:12','91.200.12.*'),(401225,0,'author','2018-03-14 20:06:12','91.200.12.*'),(401226,0,'author','2018-03-14 20:06:13','91.200.12.*'),(401227,0,'author','2018-03-14 20:06:13','91.200.12.*'),(401228,0,'author','2018-03-14 20:06:14','91.200.12.*'),(401229,0,'author','2018-03-14 20:06:15','91.200.12.*'),(401230,0,'author','2018-03-14 20:06:15','91.200.12.*'),(401231,0,'author','2018-03-14 20:06:16','91.200.12.*'),(401232,0,'author','2018-03-14 20:06:16','91.200.12.*'),(401233,0,'author','2018-03-14 20:06:17','91.200.12.*'),(401234,0,'author','2018-03-14 20:06:17','91.200.12.*'),(401235,0,'author','2018-03-14 20:06:18','91.200.12.*'),(401236,0,'author','2018-03-14 20:06:19','91.200.12.*'),(401237,0,'author','2018-03-14 20:06:19','91.200.12.*'),(401238,0,'author','2018-03-14 20:06:20','91.200.12.*'),(401239,0,'author','2018-03-14 20:06:21','91.200.12.*'),(401240,0,'author','2018-03-14 20:06:22','91.200.12.*'),(401241,0,'author','2018-03-14 20:06:23','91.200.12.*'),(401242,0,'author','2018-03-14 20:06:23','91.200.12.*'),(401243,0,'author','2018-03-14 20:06:24','91.200.12.*'),(401244,0,'author','2018-03-14 20:06:25','91.200.12.*'),(401245,0,'author','2018-03-14 20:06:26','91.200.12.*'),(401246,0,'author','2018-03-14 20:06:27','91.200.12.*'),(401247,0,'author','2018-03-14 20:06:28','91.200.12.*'),(401248,0,'author','2018-03-14 20:06:28','91.200.12.*'),(401249,0,'author','2018-03-14 20:06:28','91.200.12.*'),(401250,0,'author','2018-03-14 20:06:29','91.200.12.*'),(401251,0,'author','2018-03-14 20:06:34','91.200.12.*'),(401252,0,'author','2018-03-14 20:06:35','91.200.12.*'),(401253,0,'author','2018-03-14 20:06:35','91.200.12.*'),(401254,0,'author','2018-03-14 20:06:35','91.200.12.*'),(401255,0,'author','2018-03-14 20:06:36','91.200.12.*'),(401256,0,'author','2018-03-14 20:06:37','91.200.12.*'),(401257,0,'author','2018-03-14 20:06:37','91.200.12.*'),(401258,0,'author','2018-03-14 20:06:38','91.200.12.*'),(401259,0,'author','2018-03-14 20:06:39','91.200.12.*'),(401260,0,'author','2018-03-14 20:06:39','91.200.12.*'),(401261,0,'author','2018-03-14 20:06:40','91.200.12.*'),(401262,0,'author','2018-03-14 20:06:40','91.200.12.*'),(401263,0,'author','2018-03-14 20:06:41','91.200.12.*'),(401264,0,'author','2018-03-14 20:06:42','91.200.12.*'),(401265,0,'author','2018-03-14 20:06:43','91.200.12.*'),(401266,0,'author','2018-03-14 20:06:44','91.200.12.*'),(401267,0,'author','2018-03-14 20:06:45','91.200.12.*'),(401268,0,'author','2018-03-14 20:06:46','91.200.12.*'),(401269,0,'author','2018-03-14 20:06:46','91.200.12.*'),(401270,0,'author','2018-03-14 20:06:47','91.200.12.*'),(401271,0,'author','2018-03-14 20:06:47','91.200.12.*'),(401272,0,'author','2018-03-14 20:06:48','91.200.12.*'),(401273,0,'author','2018-03-14 20:06:48','91.200.12.*'),(401274,0,'author','2018-03-14 20:06:49','91.200.12.*'),(401275,0,'author','2018-03-14 20:06:50','91.200.12.*'),(401276,0,'author','2018-03-14 20:06:51','91.200.12.*'),(401277,0,'author','2018-03-14 20:06:51','91.200.12.*'),(401278,0,'author','2018-03-14 20:06:52','91.200.12.*'),(401279,0,'author','2018-03-14 20:06:53','91.200.12.*'),(401280,0,'author','2018-03-14 20:06:54','91.200.12.*'),(401281,0,'author','2018-03-14 20:06:54','91.200.12.*'),(401282,0,'author','2018-03-14 20:06:55','91.200.12.*'),(401283,0,'author','2018-03-14 20:06:55','91.200.12.*'),(401284,0,'author','2018-03-14 20:06:56','91.200.12.*'),(401285,0,'author','2018-03-14 20:06:57','91.200.12.*'),(401286,0,'author','2018-03-14 20:06:57','91.200.12.*'),(401287,0,'author','2018-03-14 20:06:58','91.200.12.*'),(401288,0,'author','2018-03-14 20:06:59','91.200.12.*'),(401289,0,'author','2018-03-14 20:07:00','91.200.12.*'),(401290,0,'author','2018-03-14 20:07:00','91.200.12.*'),(401291,0,'author','2018-03-14 20:07:00','91.200.12.*'),(401292,0,'author','2018-03-14 20:07:01','91.200.12.*'),(401293,0,'author','2018-03-14 20:07:02','91.200.12.*'),(401294,0,'author','2018-03-14 20:07:02','91.200.12.*'),(401295,0,'author','2018-03-14 20:07:03','91.200.12.*'),(401296,0,'author','2018-03-14 20:07:03','91.200.12.*'),(401297,0,'author','2018-03-14 20:07:04','91.200.12.*'),(401298,0,'author','2018-03-14 20:07:04','91.200.12.*'),(401299,0,'author','2018-03-14 20:07:05','91.200.12.*'),(401300,0,'author','2018-03-14 20:07:06','91.200.12.*'),(401301,0,'author','2018-03-14 20:07:07','91.200.12.*'),(401302,0,'author','2018-03-14 20:07:08','91.200.12.*'),(401303,0,'author','2018-03-14 20:07:09','91.200.12.*'),(401304,0,'author','2018-03-14 20:07:09','91.200.12.*'),(401305,0,'author','2018-03-14 20:07:10','91.200.12.*'),(401306,0,'author','2018-03-14 20:07:10','91.200.12.*'),(401307,0,'author','2018-03-14 20:07:11','91.200.12.*'),(401308,0,'author','2018-03-14 20:07:11','91.200.12.*'),(401309,0,'author','2018-03-14 20:07:12','91.200.12.*'),(401310,0,'author','2018-03-14 20:07:13','91.200.12.*'),(401311,0,'author','2018-03-14 20:07:13','91.200.12.*'),(401312,0,'author','2018-03-14 20:07:14','91.200.12.*'),(401313,0,'author','2018-03-14 20:07:15','91.200.12.*'),(401314,0,'author','2018-03-14 20:07:15','91.200.12.*'),(401315,0,'author','2018-03-14 20:07:16','91.200.12.*'),(401316,0,'author','2018-03-14 20:07:16','91.200.12.*'),(401317,0,'author','2018-03-14 20:07:17','91.200.12.*'),(401318,0,'author','2018-03-14 20:07:18','91.200.12.*'),(401319,0,'author','2018-03-14 20:07:18','91.200.12.*'),(401320,0,'author','2018-03-14 20:07:19','91.200.12.*'),(401321,0,'author','2018-03-14 20:07:21','91.200.12.*'),(401322,0,'author','2018-03-14 20:07:21','91.200.12.*'),(401323,0,'author','2018-03-14 20:07:21','91.200.12.*'),(401324,0,'author','2018-03-14 20:07:22','91.200.12.*'),(401325,0,'author','2018-03-14 20:07:23','91.200.12.*'),(401326,0,'author','2018-03-14 20:07:23','91.200.12.*'),(401327,0,'author','2018-03-14 20:07:24','91.200.12.*'),(401328,0,'author','2018-03-14 20:07:25','91.200.12.*'),(401329,0,'author','2018-03-14 20:07:25','91.200.12.*'),(401330,0,'author','2018-03-14 20:07:27','91.200.12.*'),(401331,0,'author','2018-03-14 20:07:29','91.200.12.*'),(401332,0,'author','2018-03-14 20:07:30','91.200.12.*'),(401333,0,'author','2018-03-14 20:07:30','91.200.12.*'),(401334,0,'author','2018-03-14 20:07:35','91.200.12.*'),(401335,0,'author','2018-03-14 20:07:35','91.200.12.*'),(401336,0,'author','2018-03-14 20:07:36','91.200.12.*'),(401337,0,'author','2018-03-14 20:07:36','91.200.12.*'),(401338,0,'author','2018-03-14 20:07:37','91.200.12.*'),(401339,0,'author','2018-03-14 20:07:38','91.200.12.*'),(401340,0,'author','2018-03-14 20:07:38','91.200.12.*'),(401341,0,'author','2018-03-14 20:07:39','91.200.12.*'),(401342,0,'author','2018-03-14 20:07:40','91.200.12.*'),(401343,0,'author','2018-03-14 20:07:41','91.200.12.*'),(401344,0,'author','2018-03-14 20:07:42','91.200.12.*'),(401345,0,'author','2018-03-14 20:07:43','91.200.12.*'),(401346,0,'author','2018-03-14 20:07:43','91.200.12.*'),(401347,0,'author','2018-03-14 20:07:44','91.200.12.*'),(401348,0,'author','2018-03-14 20:07:45','91.200.12.*'),(401349,0,'author','2018-03-14 20:07:45','91.200.12.*'),(401350,0,'author','2018-03-14 20:07:46','91.200.12.*'),(401351,0,'author','2018-03-14 20:07:47','91.200.12.*'),(401352,0,'author','2018-03-14 20:07:49','91.200.12.*'),(401353,0,'author','2018-03-14 20:07:50','91.200.12.*'),(401354,0,'author','2018-03-14 20:07:51','91.200.12.*'),(401355,0,'author','2018-03-14 20:07:52','91.200.12.*'),(401356,0,'author','2018-03-14 20:07:52','91.200.12.*'),(401357,0,'author','2018-03-14 20:07:53','91.200.12.*'),(401358,0,'author','2018-03-14 20:07:54','91.200.12.*'),(401359,0,'author','2018-03-14 20:07:54','91.200.12.*'),(401360,0,'author','2018-03-14 20:07:55','91.200.12.*'),(401361,0,'author','2018-03-14 20:07:55','91.200.12.*'),(401362,0,'author','2018-03-14 20:07:56','91.200.12.*'),(401363,0,'author','2018-03-14 20:07:57','91.200.12.*'),(401364,0,'author','2018-03-14 20:07:58','91.200.12.*'),(401365,0,'author','2018-03-14 20:07:58','91.200.12.*'),(401366,0,'author','2018-03-14 20:07:59','91.200.12.*'),(401367,0,'author','2018-03-14 20:07:59','91.200.12.*'),(401368,0,'author','2018-03-14 20:07:59','91.200.12.*'),(401369,0,'author','2018-03-14 20:08:00','91.200.12.*'),(401370,0,'author','2018-03-14 20:08:01','91.200.12.*'),(401371,0,'author','2018-03-14 20:08:01','91.200.12.*'),(401372,0,'author','2018-03-14 20:08:02','91.200.12.*'),(401373,0,'author','2018-03-14 20:08:02','91.200.12.*'),(401374,0,'author','2018-03-14 20:08:03','91.200.12.*'),(401375,0,'author','2018-03-14 20:08:03','91.200.12.*'),(401376,0,'author','2018-03-14 20:08:04','91.200.12.*'),(401377,0,'author','2018-03-14 20:08:07','91.200.12.*'),(401378,0,'author','2018-03-14 20:08:07','91.200.12.*'),(401379,0,'author','2018-03-14 20:08:07','91.200.12.*'),(401380,0,'author','2018-03-14 20:08:08','91.200.12.*'),(401381,0,'author','2018-03-14 20:08:09','91.200.12.*'),(401382,0,'author','2018-03-14 20:08:09','91.200.12.*'),(401383,0,'author','2018-03-14 20:08:10','91.200.12.*'),(401384,0,'author','2018-03-14 20:08:10','91.200.12.*'),(401385,0,'author','2018-03-14 20:08:11','91.200.12.*'),(401386,0,'author','2018-03-14 20:08:12','91.200.12.*'),(401387,0,'author','2018-03-14 20:08:12','91.200.12.*'),(401388,0,'author','2018-03-14 20:08:13','91.200.12.*'),(401389,0,'author','2018-03-14 20:08:13','91.200.12.*'),(401390,0,'author','2018-03-14 20:08:14','91.200.12.*'),(401391,0,'author','2018-03-14 20:08:14','91.200.12.*'),(401392,0,'author','2018-03-14 20:08:14','91.200.12.*'),(401393,0,'author','2018-03-14 20:08:15','91.200.12.*'),(401394,0,'author','2018-03-14 20:08:16','91.200.12.*'),(401395,0,'author','2018-03-14 20:08:17','91.200.12.*'),(401396,0,'author','2018-03-14 20:08:18','91.200.12.*'),(401397,0,'author','2018-03-14 20:08:18','91.200.12.*'),(401398,0,'author','2018-03-14 20:08:18','91.200.12.*'),(401399,0,'author','2018-03-14 20:08:19','91.200.12.*'),(401400,0,'author','2018-03-14 20:08:20','91.200.12.*'),(401401,0,'author','2018-03-14 20:08:21','91.200.12.*'),(401402,0,'author','2018-03-14 20:08:21','91.200.12.*'),(401403,0,'author','2018-03-14 20:08:22','91.200.12.*'),(401404,0,'author','2018-03-14 20:08:22','91.200.12.*'),(401405,0,'author','2018-03-14 20:08:23','91.200.12.*'),(401406,0,'author','2018-03-14 20:08:24','91.200.12.*'),(401407,0,'author','2018-03-14 20:08:24','91.200.12.*'),(401408,0,'author','2018-03-14 20:08:25','91.200.12.*'),(401409,0,'author','2018-03-14 20:08:25','91.200.12.*'),(401410,0,'author','2018-03-14 20:08:26','91.200.12.*'),(401411,0,'author','2018-03-14 20:08:27','91.200.12.*'),(401412,0,'author','2018-03-14 20:08:27','91.200.12.*'),(401413,0,'author','2018-03-14 20:08:28','91.200.12.*'),(401414,0,'author','2018-03-14 20:08:28','91.200.12.*'),(401415,0,'author','2018-03-14 20:08:29','91.200.12.*'),(401416,0,'author','2018-03-14 20:08:30','91.200.12.*'),(401417,0,'author','2018-03-14 20:08:31','91.200.12.*'),(401418,0,'author','2018-03-14 20:08:31','91.200.12.*'),(401419,0,'author','2018-03-14 20:08:32','91.200.12.*'),(401420,0,'author','2018-03-14 20:08:32','91.200.12.*'),(401421,0,'author','2018-03-14 20:08:33','91.200.12.*'),(401422,0,'author','2018-03-14 20:08:34','91.200.12.*'),(401423,0,'author','2018-03-14 20:08:35','91.200.12.*'),(401424,0,'author','2018-03-14 20:08:36','91.200.12.*'),(401425,0,'author','2018-03-14 20:08:37','91.200.12.*'),(401426,0,'author','2018-03-14 20:08:39','91.200.12.*'),(401427,0,'author','2018-03-14 20:08:40','91.200.12.*'),(401428,0,'author','2018-03-14 20:08:42','91.200.12.*'),(401429,0,'author','2018-03-14 20:08:42','91.200.12.*'),(401430,0,'author','2018-03-14 20:08:43','91.200.12.*'),(401431,0,'author','2018-03-14 20:08:45','91.200.12.*'),(401432,0,'author','2018-03-14 20:08:46','91.200.12.*'),(401433,0,'author','2018-03-14 20:08:47','91.200.12.*'),(401434,0,'author','2018-03-14 20:08:48','91.200.12.*'),(401435,0,'author','2018-03-14 20:08:50','91.200.12.*'),(401436,0,'author','2018-03-14 20:08:50','91.200.12.*'),(401437,0,'author','2018-03-14 20:08:51','91.200.12.*'),(401438,0,'author','2018-03-14 20:08:51','91.200.12.*'),(401439,0,'author','2018-03-14 20:08:52','91.200.12.*'),(401440,0,'author','2018-03-14 20:08:53','91.200.12.*'),(401441,0,'author','2018-03-14 20:08:54','91.200.12.*'),(401442,0,'author','2018-03-14 20:08:54','91.200.12.*'),(401443,0,'author','2018-03-14 20:08:55','91.200.12.*'),(401444,0,'author','2018-03-14 20:08:56','91.200.12.*'),(401445,0,'author','2018-03-14 20:08:58','91.200.12.*'),(401446,0,'author','2018-03-14 20:08:59','91.200.12.*'),(401447,0,'author','2018-03-14 20:08:59','91.200.12.*'),(401448,0,'author','2018-03-14 20:09:00','91.200.12.*'),(401449,0,'author','2018-03-14 20:09:01','91.200.12.*'),(401450,0,'author','2018-03-14 20:09:02','91.200.12.*'),(401451,0,'author','2018-03-14 20:09:02','91.200.12.*'),(401452,0,'author','2018-03-14 20:09:03','91.200.12.*'),(401453,0,'author','2018-03-14 20:09:08','91.200.12.*'),(401454,0,'author','2018-03-14 20:09:12','91.200.12.*'),(401455,0,'author','2018-03-14 20:09:13','91.200.12.*'),(401456,0,'author','2018-03-14 20:09:13','91.200.12.*'),(401457,0,'author','2018-03-14 20:09:14','91.200.12.*'),(401458,0,'author','2018-03-14 20:09:16','91.200.12.*'),(401459,0,'author','2018-03-14 20:09:17','91.200.12.*'),(401460,0,'author','2018-03-14 20:09:18','91.200.12.*'),(401461,0,'author','2018-03-14 20:09:18','91.200.12.*'),(401462,0,'author','2018-03-14 20:09:19','91.200.12.*'),(401463,0,'author','2018-03-14 20:09:20','91.200.12.*'),(401464,0,'author','2018-03-14 20:09:20','91.200.12.*'),(401465,0,'author','2018-03-14 20:09:21','91.200.12.*'),(401466,0,'author','2018-03-14 20:09:21','91.200.12.*'),(401467,0,'author','2018-03-14 20:09:22','91.200.12.*'),(401468,0,'author','2018-03-14 20:09:22','91.200.12.*'),(401469,0,'author','2018-03-14 20:09:26','91.200.12.*'),(401470,0,'author','2018-03-14 20:09:32','91.200.12.*'),(401471,0,'author','2018-03-14 20:09:32','91.200.12.*'),(401472,0,'author','2018-03-14 20:09:33','91.200.12.*'),(401473,0,'author','2018-03-14 20:09:34','91.200.12.*'),(401474,0,'author','2018-03-14 20:09:34','91.200.12.*'),(401475,0,'author','2018-03-14 20:09:35','91.200.12.*'),(401476,0,'author','2018-03-14 20:09:36','91.200.12.*'),(401477,0,'author','2018-03-14 20:09:36','91.200.12.*'),(401478,0,'author','2018-03-14 20:09:37','91.200.12.*'),(401479,0,'author','2018-03-14 20:09:37','91.200.12.*'),(401480,0,'author','2018-03-14 20:09:37','91.200.12.*'),(401481,0,'author','2018-03-14 20:09:38','91.200.12.*'),(401482,0,'author','2018-03-14 20:09:39','91.200.12.*'),(401483,0,'author','2018-03-14 20:09:40','91.200.12.*'),(401484,0,'author','2018-03-14 20:09:40','91.200.12.*'),(401485,0,'author','2018-03-14 20:09:41','91.200.12.*'),(401486,0,'author','2018-03-14 20:09:42','91.200.12.*'),(401487,0,'author','2018-03-14 20:09:42','91.200.12.*'),(401488,0,'author','2018-03-14 20:09:43','91.200.12.*'),(401489,0,'author','2018-03-14 20:09:44','91.200.12.*'),(401490,0,'author','2018-03-14 20:09:45','91.200.12.*'),(401491,0,'author','2018-03-14 20:09:56','91.200.12.*'),(401492,0,'author','2018-03-14 20:09:56','91.200.12.*'),(401493,0,'author','2018-03-14 20:09:57','91.200.12.*'),(401494,0,'author','2018-03-14 20:09:58','91.200.12.*'),(401495,0,'author','2018-03-14 20:09:58','91.200.12.*'),(401496,0,'author','2018-03-14 20:09:59','91.200.12.*'),(401497,0,'author','2018-03-14 20:10:00','91.200.12.*'),(401498,0,'author','2018-03-14 20:10:00','91.200.12.*'),(401499,0,'author','2018-03-14 20:10:01','91.200.12.*'),(401500,0,'author','2018-03-14 20:10:01','91.200.12.*'),(401501,0,'author','2018-03-14 20:10:02','91.200.12.*'),(401502,0,'author','2018-03-14 20:10:03','91.200.12.*'),(401503,0,'author','2018-03-14 20:10:03','91.200.12.*'),(401504,0,'author','2018-03-14 20:10:03','91.200.12.*'),(401505,0,'author','2018-03-14 20:10:04','91.200.12.*'),(401506,0,'author','2018-03-14 20:10:04','91.200.12.*'),(401507,0,'author','2018-03-14 20:10:05','91.200.12.*'),(401508,0,'author','2018-03-14 20:10:06','91.200.12.*'),(401509,0,'author','2018-03-14 20:10:07','91.200.12.*'),(401510,0,'author','2018-03-14 20:10:07','91.200.12.*'),(401511,0,'author','2018-03-14 20:10:07','91.200.12.*'),(401512,0,'author','2018-03-14 20:10:08','91.200.12.*'),(401513,0,'author','2018-03-14 20:10:08','91.200.12.*'),(401514,0,'author','2018-03-14 20:10:09','91.200.12.*'),(401515,0,'author','2018-03-14 20:10:10','91.200.12.*'),(401516,0,'author','2018-03-14 20:10:11','91.200.12.*'),(401517,0,'author','2018-03-14 20:10:12','91.200.12.*'),(401518,0,'author','2018-03-14 20:10:12','91.200.12.*'),(401519,0,'author','2018-03-14 20:10:13','91.200.12.*'),(401520,0,'author','2018-03-14 20:10:13','91.200.12.*'),(401521,0,'author','2018-03-14 20:10:14','91.200.12.*'),(401522,0,'author','2018-03-14 20:10:14','91.200.12.*'),(401523,0,'author','2018-03-14 20:10:15','91.200.12.*'),(401524,0,'author','2018-03-14 20:10:17','91.200.12.*'),(401525,0,'author','2018-03-14 20:10:17','91.200.12.*'),(401526,0,'author','2018-03-14 20:10:18','91.200.12.*'),(401527,0,'author','2018-03-14 20:10:19','91.200.12.*'),(401528,0,'author','2018-03-14 20:10:20','91.200.12.*'),(401529,0,'author','2018-03-14 20:10:20','91.200.12.*'),(401530,0,'author','2018-03-14 20:10:20','91.200.12.*'),(401531,0,'author','2018-03-14 20:10:21','91.200.12.*'),(401532,0,'author','2018-03-14 20:10:22','91.200.12.*'),(401533,0,'author','2018-03-14 20:10:22','91.200.12.*'),(401534,0,'author','2018-03-14 20:10:23','91.200.12.*'),(401535,0,'author','2018-03-14 20:10:24','91.200.12.*'),(401536,0,'author','2018-03-14 20:10:24','91.200.12.*'),(401537,0,'author','2018-03-14 20:10:25','91.200.12.*'),(401538,0,'author','2018-03-14 20:10:26','91.200.12.*'),(401539,0,'author','2018-03-14 20:10:27','91.200.12.*'),(401540,0,'author','2018-03-14 20:10:28','91.200.12.*'),(401541,0,'author','2018-03-14 20:10:29','91.200.12.*'),(401542,0,'author','2018-03-14 20:10:30','91.200.12.*'),(401543,0,'author','2018-03-14 20:10:31','91.200.12.*'),(401544,0,'author','2018-03-14 20:10:33','91.200.12.*'),(401545,0,'author','2018-03-14 20:10:34','91.200.12.*'),(401546,0,'author','2018-03-14 20:10:35','91.200.12.*'),(401547,0,'author','2018-03-14 20:10:36','91.200.12.*'),(401548,0,'author','2018-03-14 20:10:37','91.200.12.*'),(401549,0,'author','2018-03-14 20:10:40','91.200.12.*'),(401550,0,'author','2018-03-14 20:10:40','91.200.12.*'),(401551,0,'author','2018-03-14 20:10:41','91.200.12.*'),(401552,0,'author','2018-03-14 20:10:42','91.200.12.*'),(401553,0,'author','2018-03-14 20:10:42','91.200.12.*'),(401554,0,'author','2018-03-14 20:10:43','91.200.12.*'),(401555,0,'author','2018-03-14 20:10:44','91.200.12.*'),(401556,0,'author','2018-03-14 20:10:45','91.200.12.*'),(401557,0,'author','2018-03-14 20:10:45','91.200.12.*'),(401558,0,'author','2018-03-14 20:10:46','91.200.12.*'),(401559,0,'author','2018-03-14 20:10:46','91.200.12.*'),(401560,0,'author','2018-03-14 20:10:47','91.200.12.*'),(401561,0,'author','2018-03-14 20:10:47','91.200.12.*'),(401562,0,'author','2018-03-14 20:10:48','91.200.12.*'),(401563,0,'author','2018-03-14 20:10:51','91.200.12.*'),(401564,0,'author','2018-03-14 20:10:52','91.200.12.*'),(401565,0,'author','2018-03-14 20:10:53','91.200.12.*'),(401566,0,'author','2018-03-14 20:10:54','91.200.12.*'),(401567,0,'author','2018-03-14 20:10:54','91.200.12.*'),(401568,0,'author','2018-03-14 20:10:57','91.200.12.*'),(401569,0,'author','2018-03-14 20:10:58','91.200.12.*'),(401570,0,'author','2018-03-14 20:10:58','91.200.12.*'),(401571,0,'author','2018-03-14 20:10:59','91.200.12.*'),(401572,0,'author','2018-03-14 20:11:00','91.200.12.*'),(401573,0,'author','2018-03-14 20:11:00','91.200.12.*'),(401574,0,'author','2018-03-14 20:11:01','91.200.12.*'),(401575,0,'author','2018-03-14 20:11:02','91.200.12.*'),(401576,0,'author','2018-03-14 20:11:02','91.200.12.*'),(401577,0,'author','2018-03-14 20:11:02','91.200.12.*'),(401578,0,'author','2018-03-14 20:11:03','91.200.12.*'),(401579,0,'author','2018-03-14 20:11:04','91.200.12.*'),(401580,0,'author','2018-03-14 20:11:05','91.200.12.*'),(401581,0,'author','2018-03-14 20:11:06','91.200.12.*'),(401582,0,'author','2018-03-14 20:11:06','91.200.12.*'),(401583,0,'author','2018-03-14 20:11:07','91.200.12.*'),(401584,0,'author','2018-03-14 20:11:07','91.200.12.*'),(401585,0,'author','2018-03-14 20:11:07','91.200.12.*'),(401586,0,'author','2018-03-14 20:11:09','91.200.12.*'),(401587,0,'author','2018-03-14 20:11:09','91.200.12.*'),(401588,0,'author','2018-03-14 20:11:10','91.200.12.*'),(401589,0,'author','2018-03-14 20:11:11','91.200.12.*'),(401590,0,'author','2018-03-14 20:11:11','91.200.12.*'),(401591,0,'author','2018-03-14 20:11:12','91.200.12.*'),(401592,0,'author','2018-03-14 20:11:13','91.200.12.*'),(401593,0,'author','2018-03-14 20:11:14','91.200.12.*'),(401594,0,'author','2018-03-14 20:11:14','91.200.12.*'),(401595,0,'author','2018-03-14 20:11:15','91.200.12.*'),(401596,0,'author','2018-03-14 20:11:15','91.200.12.*'),(401597,0,'author','2018-03-14 20:11:15','91.200.12.*'),(401598,0,'author','2018-03-14 20:11:16','91.200.12.*'),(401599,0,'author','2018-03-14 20:11:18','91.200.12.*'),(401600,0,'author','2018-03-14 20:11:19','91.200.12.*'),(401601,0,'author','2018-03-14 20:11:19','91.200.12.*'),(401602,0,'author','2018-03-14 20:11:20','91.200.12.*'),(401603,0,'author','2018-03-14 20:11:21','91.200.12.*'),(401604,0,'author','2018-03-14 20:11:21','91.200.12.*'),(401605,0,'author','2018-03-14 20:11:22','91.200.12.*'),(401606,0,'author','2018-03-14 20:11:22','91.200.12.*'),(401607,0,'author','2018-03-14 20:11:22','91.200.12.*'),(401608,0,'author','2018-03-14 20:11:24','91.200.12.*'),(401609,0,'author','2018-03-14 20:11:24','91.200.12.*'),(401610,0,'author','2018-03-14 20:11:25','91.200.12.*'),(401611,0,'author','2018-03-14 20:11:26','91.200.12.*'),(401612,0,'author','2018-03-14 20:11:27','91.200.12.*'),(401613,0,'author','2018-03-14 20:11:27','91.200.12.*'),(401614,0,'author','2018-03-14 20:11:28','91.200.12.*'),(401615,0,'author','2018-03-14 20:11:28','91.200.12.*'),(401616,0,'author','2018-03-14 20:11:29','91.200.12.*'),(401617,0,'author','2018-03-14 20:11:29','91.200.12.*'),(401618,0,'author','2018-03-14 20:11:30','91.200.12.*'),(401619,0,'author','2018-03-14 20:11:31','91.200.12.*'),(401620,0,'author','2018-03-14 20:11:31','91.200.12.*'),(401621,0,'author','2018-03-14 20:11:32','91.200.12.*'),(401622,0,'author','2018-03-14 20:11:32','91.200.12.*'),(401623,0,'author','2018-03-14 20:11:33','91.200.12.*'),(401624,0,'author','2018-03-14 20:11:34','91.200.12.*'),(401625,0,'author','2018-03-14 20:11:34','91.200.12.*'),(401626,0,'author','2018-03-14 20:11:35','91.200.12.*'),(401627,0,'author','2018-03-14 20:11:36','91.200.12.*'),(401628,0,'author','2018-03-14 20:11:37','91.200.12.*'),(401629,0,'author','2018-03-14 20:11:37','91.200.12.*'),(401630,0,'author','2018-03-14 20:11:38','91.200.12.*'),(401631,0,'author','2018-03-14 20:11:41','91.200.12.*'),(401632,0,'author','2018-03-14 20:11:41','91.200.12.*'),(401633,0,'author','2018-03-14 20:11:42','91.200.12.*'),(401634,0,'author','2018-03-14 20:11:42','91.200.12.*'),(401635,0,'author','2018-03-14 20:11:43','91.200.12.*'),(401636,0,'author','2018-03-14 20:11:43','91.200.12.*'),(401637,0,'author','2018-03-14 20:11:44','91.200.12.*'),(401638,0,'author','2018-03-14 20:11:44','91.200.12.*'),(401639,0,'author','2018-03-14 20:11:44','91.200.12.*'),(401640,0,'author','2018-03-14 20:11:45','91.200.12.*'),(401641,0,'author','2018-03-14 20:11:46','91.200.12.*'),(401642,0,'author','2018-03-14 20:11:46','91.200.12.*'),(401643,0,'author','2018-03-14 20:11:48','91.200.12.*'),(401644,0,'author','2018-03-14 20:11:48','91.200.12.*'),(401645,0,'author','2018-03-14 20:11:49','91.200.12.*'),(401646,0,'author','2018-03-14 20:11:49','91.200.12.*'),(401647,0,'author','2018-03-14 20:11:50','91.200.12.*'),(401648,0,'author','2018-03-14 20:11:50','91.200.12.*'),(401649,0,'author','2018-03-14 20:11:51','91.200.12.*'),(401650,0,'author','2018-03-14 20:11:51','91.200.12.*'),(401651,0,'author','2018-03-14 20:11:52','91.200.12.*'),(401652,0,'author','2018-03-14 20:11:53','91.200.12.*'),(401653,0,'author','2018-03-14 20:11:53','91.200.12.*'),(401654,0,'author','2018-03-14 20:11:54','91.200.12.*'),(401655,0,'author','2018-03-14 20:11:54','91.200.12.*'),(401656,0,'author','2018-03-14 20:11:55','91.200.12.*'),(401657,0,'author','2018-03-14 20:11:56','91.200.12.*'),(401658,0,'author','2018-03-14 20:11:58','91.200.12.*'),(401659,0,'author','2018-03-14 20:11:58','91.200.12.*'),(401660,0,'author','2018-03-14 20:11:59','91.200.12.*'),(401661,0,'author','2018-03-14 20:12:00','91.200.12.*'),(401662,0,'author','2018-03-14 20:12:01','91.200.12.*'),(401663,0,'author','2018-03-14 20:12:02','91.200.12.*'),(401664,0,'author','2018-03-14 20:12:02','91.200.12.*'),(401665,0,'author','2018-03-14 20:12:03','91.200.12.*'),(401666,0,'author','2018-03-14 20:12:05','91.200.12.*'),(401667,0,'author','2018-03-14 20:12:07','91.200.12.*'),(401668,0,'author','2018-03-14 20:12:14','91.200.12.*'),(401669,0,'author','2018-03-14 20:12:14','91.200.12.*'),(401670,0,'author','2018-03-14 20:12:14','91.200.12.*'),(401671,0,'author','2018-03-14 20:12:15','91.200.12.*'),(401672,0,'author','2018-03-14 20:12:15','91.200.12.*'),(401673,0,'author','2018-03-14 20:12:15','91.200.12.*'),(401674,0,'author','2018-03-14 20:12:16','91.200.12.*'),(401675,0,'author','2018-03-14 20:12:16','91.200.12.*'),(401676,0,'author','2018-03-14 20:12:18','91.200.12.*'),(401677,0,'author','2018-03-14 20:12:18','91.200.12.*'),(401678,0,'author','2018-03-14 20:12:18','91.200.12.*'),(401679,0,'author','2018-03-14 20:12:19','91.200.12.*'),(401680,0,'author','2018-03-14 20:12:19','91.200.12.*'),(401681,0,'author','2018-03-14 20:12:19','91.200.12.*'),(401682,0,'author','2018-03-14 20:12:20','91.200.12.*'),(401683,0,'author','2018-03-14 20:12:20','91.200.12.*'),(401684,0,'author','2018-03-14 20:12:21','91.200.12.*'),(401685,0,'author','2018-03-14 20:12:22','91.200.12.*'),(401686,0,'author','2018-03-14 20:12:23','91.200.12.*'),(401687,0,'author','2018-03-14 20:12:24','91.200.12.*'),(401688,0,'author','2018-03-14 20:12:24','91.200.12.*'),(401689,0,'author','2018-03-14 20:12:25','91.200.12.*'),(401690,0,'author','2018-03-14 20:12:26','91.200.12.*'),(401691,0,'author','2018-03-14 20:12:26','91.200.12.*'),(401692,0,'author','2018-03-14 20:12:28','91.200.12.*'),(401693,0,'author','2018-03-14 20:12:29','91.200.12.*'),(401694,0,'author','2018-03-14 20:12:30','91.200.12.*'),(401695,0,'author','2018-03-14 20:12:30','91.200.12.*'),(401696,0,'author','2018-03-14 20:12:31','91.200.12.*'),(401697,0,'author','2018-03-14 20:12:31','91.200.12.*'),(401698,0,'author','2018-03-14 20:12:32','91.200.12.*'),(401699,0,'author','2018-03-14 20:12:32','91.200.12.*'),(401700,0,'author','2018-03-14 20:12:34','91.200.12.*'),(401701,0,'author','2018-03-14 20:12:34','91.200.12.*'),(401702,0,'author','2018-03-14 20:12:35','91.200.12.*'),(401703,0,'author','2018-03-14 20:12:36','91.200.12.*'),(401704,0,'author','2018-03-14 20:12:36','91.200.12.*'),(401705,0,'author','2018-03-14 20:12:37','91.200.12.*'),(401706,0,'author','2018-03-14 20:12:38','91.200.12.*'),(401707,0,'author','2018-03-14 20:12:38','91.200.12.*'),(401708,0,'author','2018-03-14 20:12:39','91.200.12.*'),(401709,0,'author','2018-03-14 20:12:39','91.200.12.*'),(401710,0,'author','2018-03-14 20:12:40','91.200.12.*'),(401711,0,'author','2018-03-14 20:12:41','91.200.12.*'),(401712,0,'author','2018-03-14 20:12:41','91.200.12.*'),(401713,0,'author','2018-03-14 20:12:42','91.200.12.*'),(401714,0,'author','2018-03-14 20:12:42','91.200.12.*'),(401715,0,'author','2018-03-14 20:12:42','91.200.12.*'),(401716,0,'author','2018-03-14 20:12:43','91.200.12.*'),(401717,0,'author','2018-03-14 20:12:44','91.200.12.*'),(401718,0,'author','2018-03-14 20:12:44','91.200.12.*'),(401719,0,'author','2018-03-14 20:12:45','91.200.12.*'),(401720,0,'author','2018-03-14 20:12:45','91.200.12.*'),(401721,0,'author','2018-03-14 20:12:46','91.200.12.*'),(401722,0,'author','2018-03-14 20:12:46','91.200.12.*'),(401723,0,'author','2018-03-14 20:12:47','91.200.12.*'),(401724,0,'author','2018-03-14 20:12:48','91.200.12.*'),(401725,0,'author','2018-03-14 20:12:48','91.200.12.*'),(401726,0,'author','2018-03-14 20:12:49','91.200.12.*'),(401727,0,'author','2018-03-14 20:12:49','91.200.12.*'),(401728,0,'author','2018-03-14 20:12:50','91.200.12.*'),(401729,0,'author','2018-03-14 20:12:51','91.200.12.*'),(401730,0,'author','2018-03-14 20:12:51','91.200.12.*'),(401731,0,'author','2018-03-14 20:12:52','91.200.12.*'),(401732,0,'author','2018-03-14 20:12:52','91.200.12.*'),(401733,0,'author','2018-03-14 20:12:53','91.200.12.*'),(401734,0,'author','2018-03-14 20:12:55','91.200.12.*'),(401735,0,'author','2018-03-14 20:12:56','91.200.12.*'),(401736,0,'author','2018-03-14 20:12:56','91.200.12.*'),(401737,0,'author','2018-03-14 20:12:57','91.200.12.*'),(401738,0,'author','2018-03-14 20:12:57','91.200.12.*'),(401739,0,'author','2018-03-14 20:12:58','91.200.12.*'),(401740,0,'author','2018-03-14 20:12:59','91.200.12.*'),(401741,0,'author','2018-03-14 20:12:59','91.200.12.*'),(401742,0,'author','2018-03-14 20:13:00','91.200.12.*'),(401743,0,'author','2018-03-14 20:13:00','91.200.12.*'),(401744,0,'author','2018-03-14 20:13:01','91.200.12.*'),(401745,0,'author','2018-03-14 20:13:01','91.200.12.*'),(401746,0,'author','2018-03-14 20:13:02','91.200.12.*'),(401747,0,'author','2018-03-14 20:13:03','91.200.12.*'),(401748,0,'author','2018-03-14 20:13:03','91.200.12.*'),(401749,0,'author','2018-03-14 20:13:04','91.200.12.*'),(401750,0,'author','2018-03-14 20:13:05','91.200.12.*'),(401751,0,'author','2018-03-14 20:13:06','91.200.12.*'),(401752,0,'author','2018-03-14 20:13:06','91.200.12.*'),(401753,0,'author','2018-03-14 20:13:07','91.200.12.*'),(401754,0,'author','2018-03-14 20:13:07','91.200.12.*'),(401755,0,'author','2018-03-14 20:13:08','91.200.12.*'),(401756,0,'author','2018-03-14 20:13:10','91.200.12.*'),(401757,0,'author','2018-03-14 20:13:11','91.200.12.*'),(401758,0,'author','2018-03-14 20:13:11','91.200.12.*'),(401759,0,'author','2018-03-14 20:13:12','91.200.12.*'),(401760,0,'author','2018-03-14 20:13:13','91.200.12.*'),(401761,0,'author','2018-03-14 20:13:14','91.200.12.*'),(401762,0,'author','2018-03-14 20:13:14','91.200.12.*'),(401763,0,'author','2018-03-14 20:13:15','91.200.12.*'),(401764,0,'author','2018-03-14 20:13:15','91.200.12.*'),(401765,0,'author','2018-03-14 20:13:16','91.200.12.*'),(401766,0,'author','2018-03-14 20:13:17','91.200.12.*'),(401767,0,'author','2018-03-14 20:13:18','91.200.12.*'),(401768,0,'author','2018-03-14 20:13:18','91.200.12.*'),(401769,0,'author','2018-03-14 20:13:19','91.200.12.*'),(401770,0,'author','2018-03-14 20:13:21','91.200.12.*'),(401771,0,'author','2018-03-14 20:13:22','91.200.12.*'),(401772,0,'author','2018-03-14 20:13:23','91.200.12.*'),(401773,0,'author','2018-03-14 20:13:23','91.200.12.*'),(401774,0,'author','2018-03-14 20:13:23','91.200.12.*'),(401775,0,'author','2018-03-14 20:13:24','91.200.12.*'),(401776,0,'author','2018-03-14 20:13:24','91.200.12.*'),(401777,0,'author','2018-03-14 20:13:25','91.200.12.*'),(401778,0,'author','2018-03-14 20:13:26','91.200.12.*'),(401779,0,'author','2018-03-14 20:13:26','91.200.12.*'),(401780,0,'author','2018-03-14 20:13:27','91.200.12.*'),(401781,0,'author','2018-03-14 20:13:28','91.200.12.*'),(401782,0,'author','2018-03-14 20:13:29','91.200.12.*'),(401783,0,'author','2018-03-14 20:13:29','91.200.12.*'),(401784,0,'author','2018-03-14 20:13:29','91.200.12.*'),(401785,0,'author','2018-03-14 20:13:30','91.200.12.*'),(401786,0,'author','2018-03-14 20:13:30','91.200.12.*'),(401787,0,'author','2018-03-14 20:13:31','91.200.12.*'),(401788,0,'author','2018-03-14 20:13:32','91.200.12.*'),(401789,0,'author','2018-03-14 20:13:32','91.200.12.*'),(401790,0,'author','2018-03-14 20:13:33','91.200.12.*'),(401791,0,'author','2018-03-14 20:13:33','91.200.12.*'),(401792,0,'author','2018-03-14 20:13:34','91.200.12.*'),(401793,0,'author','2018-03-14 20:13:34','91.200.12.*'),(401794,0,'author','2018-03-14 20:13:35','91.200.12.*'),(401795,0,'author','2018-03-14 20:13:35','91.200.12.*'),(401796,0,'author','2018-03-14 20:13:36','91.200.12.*'),(401797,0,'author','2018-03-14 20:13:37','91.200.12.*'),(401798,0,'author','2018-03-14 20:13:37','91.200.12.*'),(401799,0,'author','2018-03-14 20:13:38','91.200.12.*'),(401800,0,'author','2018-03-14 20:13:38','91.200.12.*'),(401801,0,'author','2018-03-14 20:13:38','91.200.12.*'),(401802,0,'author','2018-03-14 20:13:39','91.200.12.*'),(401803,0,'author','2018-03-14 20:13:40','91.200.12.*'),(401804,0,'author','2018-03-14 20:13:41','91.200.12.*'),(401805,0,'author','2018-03-14 20:13:41','91.200.12.*'),(401806,0,'author','2018-03-14 20:13:43','91.200.12.*'),(401807,0,'author','2018-03-14 20:13:44','91.200.12.*'),(401808,0,'author','2018-03-14 20:13:44','91.200.12.*'),(401809,0,'author','2018-03-14 20:13:45','91.200.12.*'),(401810,0,'author','2018-03-14 20:13:46','91.200.12.*'),(401811,0,'author','2018-03-14 20:13:46','91.200.12.*'),(401812,0,'author','2018-03-14 20:13:47','91.200.12.*'),(401813,0,'author','2018-03-14 20:13:48','91.200.12.*'),(401814,0,'author','2018-03-14 20:13:50','91.200.12.*'),(401815,0,'author','2018-03-14 20:13:50','91.200.12.*'),(401816,0,'author','2018-03-14 20:13:50','91.200.12.*'),(401817,0,'author','2018-03-14 20:13:52','91.200.12.*'),(401818,0,'author','2018-03-14 20:13:52','91.200.12.*'),(401819,0,'author','2018-03-14 20:13:52','91.200.12.*'),(401820,0,'author','2018-03-14 20:13:53','91.200.12.*'),(401821,0,'author','2018-03-14 20:13:53','91.200.12.*'),(401822,0,'author','2018-03-14 20:13:53','91.200.12.*'),(401823,0,'author','2018-03-14 20:13:54','91.200.12.*'),(401824,0,'author','2018-03-14 20:13:55','91.200.12.*'),(401825,0,'author','2018-03-14 20:13:56','91.200.12.*'),(401826,0,'author','2018-03-14 20:13:56','91.200.12.*'),(401827,0,'author','2018-03-14 20:13:57','91.200.12.*'),(401828,0,'author','2018-03-14 20:13:58','91.200.12.*'),(401829,0,'author','2018-03-14 20:13:59','91.200.12.*'),(401830,0,'author','2018-03-14 20:13:59','91.200.12.*'),(401831,0,'author','2018-03-14 20:14:00','91.200.12.*'),(401832,0,'author','2018-03-14 20:14:00','91.200.12.*'),(401833,0,'author','2018-03-14 20:14:01','91.200.12.*'),(401834,0,'author','2018-03-14 20:14:01','91.200.12.*'),(401835,0,'author','2018-03-14 20:14:02','91.200.12.*'),(401836,0,'author','2018-03-14 20:14:03','91.200.12.*'),(401837,0,'author','2018-03-14 20:14:04','91.200.12.*'),(401838,0,'author','2018-03-14 20:14:04','91.200.12.*'),(401839,0,'author','2018-03-14 20:14:05','91.200.12.*'),(401840,0,'author','2018-03-14 20:14:06','91.200.12.*'),(401841,0,'author','2018-03-14 20:14:07','91.200.12.*'),(401842,0,'author','2018-03-14 20:14:07','91.200.12.*'),(401843,0,'author','2018-03-14 20:14:08','91.200.12.*'),(401844,0,'author','2018-03-14 20:14:09','91.200.12.*'),(401845,0,'author','2018-03-14 20:14:09','91.200.12.*'),(401846,0,'author','2018-03-14 20:14:10','91.200.12.*'),(401847,0,'author','2018-03-14 20:14:10','91.200.12.*'),(401848,0,'author','2018-03-14 20:14:10','91.200.12.*'),(401849,0,'author','2018-03-14 20:14:11','91.200.12.*'),(401850,0,'author','2018-03-14 20:14:11','91.200.12.*'),(401851,0,'author','2018-03-14 20:14:12','91.200.12.*'),(401852,0,'author','2018-03-14 20:14:12','91.200.12.*'),(401853,0,'author','2018-03-14 20:14:13','91.200.12.*'),(401854,0,'author','2018-03-14 20:14:13','91.200.12.*'),(401855,0,'author','2018-03-14 20:14:14','91.200.12.*'),(401856,0,'author','2018-03-14 20:14:15','91.200.12.*'),(401857,0,'author','2018-03-14 20:14:15','91.200.12.*'),(401858,0,'author','2018-03-14 20:14:16','91.200.12.*'),(401859,0,'author','2018-03-14 20:14:16','91.200.12.*'),(401860,0,'author','2018-03-14 20:14:17','91.200.12.*'),(401861,0,'author','2018-03-14 20:14:18','91.200.12.*'),(401862,0,'author','2018-03-14 20:14:19','91.200.12.*'),(401863,0,'author','2018-03-14 20:14:19','91.200.12.*'),(401864,0,'author','2018-03-14 20:14:20','91.200.12.*'),(401865,0,'author','2018-03-14 20:14:20','91.200.12.*'),(401866,0,'author','2018-03-14 20:14:21','91.200.12.*'),(401867,0,'author','2018-03-14 20:14:22','91.200.12.*'),(401868,0,'author','2018-03-14 20:14:22','91.200.12.*'),(401869,0,'author','2018-03-14 20:14:23','91.200.12.*'),(401870,0,'author','2018-03-14 20:14:23','91.200.12.*'),(401871,0,'author','2018-03-14 20:14:25','91.200.12.*'),(401872,0,'author','2018-03-14 20:14:25','91.200.12.*'),(401873,0,'author','2018-03-14 20:14:26','91.200.12.*'),(401874,0,'author','2018-03-14 20:14:26','91.200.12.*'),(401875,0,'author','2018-03-14 20:14:26','91.200.12.*'),(401876,0,'author','2018-03-14 20:14:27','91.200.12.*'),(401877,0,'author','2018-03-14 20:14:28','91.200.12.*'),(401878,0,'author','2018-03-14 20:14:28','91.200.12.*'),(401879,0,'author','2018-03-14 20:14:29','91.200.12.*'),(401880,0,'author','2018-03-14 20:14:30','91.200.12.*'),(401881,0,'author','2018-03-14 20:14:31','91.200.12.*'),(401882,0,'author','2018-03-14 20:14:31','91.200.12.*'),(401883,0,'author','2018-03-14 20:14:31','91.200.12.*'),(401884,0,'author','2018-03-14 20:14:32','91.200.12.*'),(401885,0,'author','2018-03-14 20:14:32','91.200.12.*'),(401886,0,'author','2018-03-14 20:14:33','91.200.12.*'),(401887,0,'author','2018-03-14 20:14:34','91.200.12.*'),(401888,0,'author','2018-03-14 20:14:34','91.200.12.*'),(401889,0,'author','2018-03-14 20:14:35','91.200.12.*'),(401890,0,'author','2018-03-14 20:14:35','91.200.12.*'),(401891,0,'author','2018-03-14 20:14:36','91.200.12.*'),(401892,0,'author','2018-03-14 20:14:37','91.200.12.*'),(401893,0,'author','2018-03-14 20:14:37','91.200.12.*'),(401894,0,'author','2018-03-14 20:14:39','91.200.12.*'),(401895,0,'author','2018-03-14 20:14:39','91.200.12.*'),(401896,0,'author','2018-03-14 20:14:40','91.200.12.*'),(401897,0,'author','2018-03-14 20:14:40','91.200.12.*'),(401898,0,'author','2018-03-14 20:14:41','91.200.12.*'),(401899,0,'author','2018-03-14 20:14:42','91.200.12.*'),(401900,0,'author','2018-03-14 20:14:46','91.200.12.*'),(401901,0,'author','2018-03-14 20:14:46','91.200.12.*'),(401902,0,'author','2018-03-14 20:14:47','91.200.12.*'),(401903,0,'author','2018-03-14 20:14:48','91.200.12.*'),(401904,0,'author','2018-03-14 20:14:50','91.200.12.*'),(401905,0,'author','2018-03-14 20:14:50','91.200.12.*'),(401906,0,'author','2018-03-14 20:14:51','91.200.12.*'),(401907,0,'author','2018-03-14 20:14:52','91.200.12.*'),(401908,0,'author','2018-03-14 20:14:53','91.200.12.*'),(401909,0,'author','2018-03-14 20:14:54','91.200.12.*'),(401910,0,'author','2018-03-14 20:14:54','91.200.12.*'),(401911,0,'author','2018-03-14 20:14:55','91.200.12.*'),(401912,0,'author','2018-03-14 20:14:55','91.200.12.*'),(401913,0,'author','2018-03-14 20:14:55','91.200.12.*'),(401914,0,'author','2018-03-14 20:14:57','91.200.12.*'),(401915,0,'author','2018-03-14 20:14:58','91.200.12.*'),(401916,0,'author','2018-03-14 20:14:58','91.200.12.*'),(401917,0,'author','2018-03-14 20:14:59','91.200.12.*'),(401918,0,'author','2018-03-14 20:15:00','91.200.12.*'),(401919,0,'author','2018-03-14 20:15:01','91.200.12.*'),(401920,0,'author','2018-03-14 20:15:01','91.200.12.*'),(401921,0,'author','2018-03-14 20:15:01','91.200.12.*'),(401922,0,'author','2018-03-14 20:15:02','91.200.12.*'),(401923,0,'author','2018-03-14 20:15:02','91.200.12.*'),(401924,0,'author','2018-03-14 20:15:02','91.200.12.*'),(401925,0,'author','2018-03-14 20:15:03','91.200.12.*'),(401926,0,'author','2018-03-14 20:15:04','91.200.12.*'),(401927,0,'admin','2018-03-14 20:15:04','123.57.254.*'),(401928,0,'author','2018-03-14 20:15:05','91.200.12.*'),(401929,0,'author','2018-03-14 20:15:06','91.200.12.*'),(401930,0,'author','2018-03-14 20:15:07','91.200.12.*'),(401931,0,'author','2018-03-14 20:15:08','91.200.12.*'),(401932,0,'author','2018-03-14 20:15:09','91.200.12.*'),(401933,0,'author','2018-03-14 20:15:10','91.200.12.*'),(401934,0,'author','2018-03-14 20:15:11','91.200.12.*'),(401935,0,'author','2018-03-14 20:15:11','91.200.12.*'),(401936,0,'author','2018-03-14 20:15:12','91.200.12.*'),(401937,0,'author','2018-03-14 20:15:13','91.200.12.*'),(401938,0,'author','2018-03-14 20:15:13','91.200.12.*'),(401939,0,'author','2018-03-14 20:15:14','91.200.12.*'),(401940,0,'author','2018-03-14 20:15:15','91.200.12.*'),(401941,0,'author','2018-03-14 20:15:16','91.200.12.*'),(401942,0,'author','2018-03-14 20:15:17','91.200.12.*'),(401943,0,'author','2018-03-14 20:15:17','91.200.12.*'),(401944,0,'author','2018-03-14 20:15:19','91.200.12.*'),(401945,0,'author','2018-03-14 20:15:20','91.200.12.*'),(401946,0,'author','2018-03-14 20:15:20','91.200.12.*'),(401947,0,'author','2018-03-14 20:15:22','91.200.12.*'),(401948,0,'author','2018-03-14 20:15:23','91.200.12.*'),(401949,0,'author','2018-03-14 20:15:24','91.200.12.*'),(401950,0,'author','2018-03-14 20:15:24','91.200.12.*'),(401951,0,'author','2018-03-14 20:15:25','91.200.12.*'),(401952,0,'author','2018-03-14 20:15:25','91.200.12.*'),(401953,0,'author','2018-03-14 20:15:28','91.200.12.*'),(401954,0,'author','2018-03-14 20:15:29','91.200.12.*'),(401955,0,'author','2018-03-14 20:15:30','91.200.12.*'),(401956,0,'author','2018-03-14 20:15:30','91.200.12.*'),(401957,0,'author','2018-03-14 20:15:31','91.200.12.*'),(401958,0,'author','2018-03-14 20:15:32','91.200.12.*'),(401959,0,'author','2018-03-14 20:15:32','91.200.12.*'),(401960,0,'author','2018-03-14 20:15:32','91.200.12.*'),(401961,0,'author','2018-03-14 20:15:33','91.200.12.*'),(401962,0,'author','2018-03-14 20:15:34','91.200.12.*'),(401963,0,'author','2018-03-14 20:15:35','91.200.12.*'),(401964,0,'author','2018-03-14 20:15:35','91.200.12.*'),(401965,0,'author','2018-03-14 20:15:37','91.200.12.*'),(401966,0,'author','2018-03-14 20:15:38','91.200.12.*'),(401967,0,'author','2018-03-14 20:15:39','91.200.12.*'),(401968,0,'author','2018-03-14 20:15:41','91.200.12.*'),(401969,0,'author','2018-03-14 20:15:42','91.200.12.*'),(401970,0,'author','2018-03-14 20:15:42','91.200.12.*'),(401971,0,'author','2018-03-14 20:15:43','91.200.12.*'),(401972,0,'author','2018-03-14 20:15:44','91.200.12.*'),(401973,0,'author','2018-03-14 20:15:45','91.200.12.*'),(401974,0,'author','2018-03-14 20:15:45','91.200.12.*'),(401975,0,'author','2018-03-14 20:15:46','91.200.12.*'),(401976,0,'author','2018-03-14 20:15:47','91.200.12.*'),(401977,0,'author','2018-03-14 20:15:47','91.200.12.*'),(401978,0,'author','2018-03-14 20:15:48','91.200.12.*'),(401979,0,'author','2018-03-14 20:15:48','91.200.12.*'),(401980,0,'author','2018-03-14 20:15:49','91.200.12.*'),(401981,0,'author','2018-03-14 20:15:50','91.200.12.*'),(401982,0,'author','2018-03-14 20:15:50','91.200.12.*'),(401983,0,'author','2018-03-14 20:15:51','91.200.12.*'),(401984,0,'author','2018-03-14 20:15:52','91.200.12.*'),(401985,0,'author','2018-03-14 20:15:54','91.200.12.*'),(401986,0,'author','2018-03-14 20:15:54','91.200.12.*'),(401987,0,'author','2018-03-14 20:15:55','91.200.12.*'),(401988,0,'author','2018-03-14 20:15:55','91.200.12.*'),(401989,0,'author','2018-03-14 20:15:56','91.200.12.*'),(401990,0,'author','2018-03-14 20:15:56','91.200.12.*'),(401991,0,'author','2018-03-14 20:15:57','91.200.12.*'),(401992,0,'author','2018-03-14 20:15:58','91.200.12.*'),(401993,0,'author','2018-03-14 20:15:58','91.200.12.*'),(401994,0,'author','2018-03-14 20:15:59','91.200.12.*'),(401995,0,'author','2018-03-14 20:15:59','91.200.12.*'),(401996,0,'author','2018-03-14 20:16:00','91.200.12.*'),(401997,0,'author','2018-03-14 20:16:00','91.200.12.*'),(401998,0,'author','2018-03-14 20:16:01','91.200.12.*'),(401999,0,'author','2018-03-14 20:16:02','91.200.12.*'),(402000,0,'author','2018-03-14 20:16:03','91.200.12.*'),(402001,0,'author','2018-03-14 20:16:03','91.200.12.*'),(402002,0,'author','2018-03-14 20:16:03','91.200.12.*'),(402003,0,'author','2018-03-14 20:16:06','91.200.12.*'),(402004,0,'author','2018-03-14 20:16:06','91.200.12.*'),(402005,0,'author','2018-03-14 20:16:07','91.200.12.*'),(402006,0,'author','2018-03-14 20:16:08','91.200.12.*'),(402007,0,'author','2018-03-14 20:16:09','91.200.12.*'),(402008,0,'author','2018-03-14 20:16:09','91.200.12.*'),(402009,0,'author','2018-03-14 20:16:10','91.200.12.*'),(402010,0,'author','2018-03-14 20:16:10','91.200.12.*'),(402011,0,'author','2018-03-14 20:16:10','91.200.12.*'),(402012,0,'author','2018-03-14 20:16:11','91.200.12.*'),(402013,0,'author','2018-03-14 20:16:12','91.200.12.*'),(402014,0,'author','2018-03-14 20:16:12','91.200.12.*'),(402015,0,'author','2018-03-14 20:16:13','91.200.12.*'),(402016,0,'author','2018-03-14 20:16:14','91.200.12.*'),(402017,0,'author','2018-03-14 20:16:14','91.200.12.*'),(402018,0,'author','2018-03-14 20:16:15','91.200.12.*'),(402019,0,'author','2018-03-14 20:16:16','91.200.12.*'),(402020,0,'author','2018-03-14 20:16:17','91.200.12.*'),(402021,0,'author','2018-03-14 20:16:17','91.200.12.*'),(402022,0,'author','2018-03-14 20:16:17','91.200.12.*'),(402023,0,'author','2018-03-14 20:16:18','91.200.12.*'),(402024,0,'author','2018-03-14 20:16:18','91.200.12.*'),(402025,0,'author','2018-03-14 20:16:19','91.200.12.*'),(402026,0,'author','2018-03-14 20:16:20','91.200.12.*'),(402027,0,'author','2018-03-14 20:16:21','91.200.12.*'),(402028,0,'author','2018-03-14 20:16:21','91.200.12.*'),(402029,0,'author','2018-03-14 20:16:22','91.200.12.*'),(402030,0,'author','2018-03-14 20:16:22','91.200.12.*'),(402031,0,'author','2018-03-14 20:16:23','91.200.12.*'),(402032,0,'author','2018-03-14 20:16:23','91.200.12.*'),(402033,0,'author','2018-03-14 20:16:23','91.200.12.*'),(402034,0,'author','2018-03-14 20:16:24','91.200.12.*'),(402035,0,'author','2018-03-14 20:16:25','91.200.12.*'),(402036,0,'author','2018-03-14 20:16:26','91.200.12.*'),(402037,0,'author','2018-03-14 20:16:26','91.200.12.*'),(402038,0,'author','2018-03-14 20:16:27','91.200.12.*'),(402039,0,'author','2018-03-14 20:16:28','91.200.12.*'),(402040,0,'author','2018-03-14 20:16:28','91.200.12.*'),(402041,0,'author','2018-03-14 20:16:29','91.200.12.*'),(402042,0,'author','2018-03-14 20:16:31','91.200.12.*'),(402043,0,'author','2018-03-14 20:16:31','91.200.12.*'),(402044,0,'author','2018-03-14 20:16:32','91.200.12.*'),(402045,0,'author','2018-03-14 20:16:32','91.200.12.*'),(402046,0,'author','2018-03-14 20:16:33','91.200.12.*'),(402047,0,'author','2018-03-14 20:16:34','91.200.12.*'),(402048,0,'author','2018-03-14 20:16:35','91.200.12.*'),(402049,0,'author','2018-03-14 20:16:36','91.200.12.*'),(402050,0,'author','2018-03-14 20:16:37','91.200.12.*'),(402051,0,'author','2018-03-14 20:16:38','91.200.12.*'),(402052,0,'author','2018-03-14 20:16:38','91.200.12.*'),(402053,0,'author','2018-03-14 20:16:39','91.200.12.*'),(402054,0,'author','2018-03-14 20:16:40','91.200.12.*'),(402055,0,'author','2018-03-14 20:16:40','91.200.12.*'),(402056,0,'author','2018-03-14 20:16:41','91.200.12.*'),(402057,0,'author','2018-03-14 20:16:42','91.200.12.*'),(402058,0,'author','2018-03-14 20:16:43','91.200.12.*'),(402059,0,'author','2018-03-14 20:16:43','91.200.12.*'),(402060,0,'author','2018-03-14 20:16:44','91.200.12.*'),(402061,0,'author','2018-03-14 20:16:44','91.200.12.*'),(402062,0,'author','2018-03-14 20:16:45','91.200.12.*'),(402063,0,'author','2018-03-14 20:16:46','91.200.12.*'),(402064,0,'author','2018-03-14 20:16:47','91.200.12.*'),(402065,0,'author','2018-03-14 20:16:48','91.200.12.*'),(402066,0,'author','2018-03-14 20:16:48','91.200.12.*'),(402067,0,'author','2018-03-14 20:16:50','91.200.12.*'),(402068,0,'author','2018-03-14 20:16:50','91.200.12.*'),(402069,0,'author','2018-03-14 20:16:51','91.200.12.*'),(402070,0,'author','2018-03-14 20:16:51','91.200.12.*'),(402071,0,'author','2018-03-14 20:16:52','91.200.12.*'),(402072,0,'author','2018-03-14 20:16:53','91.200.12.*'),(402073,0,'author','2018-03-14 20:16:54','91.200.12.*'),(402074,0,'author','2018-03-14 20:16:54','91.200.12.*'),(402075,0,'author','2018-03-14 20:16:56','91.200.12.*'),(402076,0,'author','2018-03-14 20:16:57','91.200.12.*'),(402077,0,'author','2018-03-14 20:16:58','91.200.12.*'),(402078,0,'author','2018-03-14 20:16:58','91.200.12.*'),(402079,0,'author','2018-03-14 20:16:58','91.200.12.*'),(402080,0,'author','2018-03-14 20:17:01','91.200.12.*'),(402081,0,'author','2018-03-14 20:17:02','91.200.12.*'),(402082,0,'author','2018-03-14 20:17:02','91.200.12.*'),(402083,0,'author','2018-03-14 20:17:03','91.200.12.*'),(402084,0,'author','2018-03-14 20:17:03','91.200.12.*'),(402085,0,'author','2018-03-14 20:17:04','91.200.12.*'),(402086,0,'author','2018-03-14 20:17:05','91.200.12.*'),(402087,0,'author','2018-03-14 20:17:07','91.200.12.*'),(402088,0,'author','2018-03-14 20:17:07','91.200.12.*'),(402089,0,'author','2018-03-14 20:17:08','91.200.12.*'),(402090,0,'author','2018-03-14 20:17:08','91.200.12.*'),(402091,0,'author','2018-03-14 20:17:09','91.200.12.*'),(402092,0,'author','2018-03-14 20:17:10','91.200.12.*'),(402093,0,'author','2018-03-14 20:17:11','91.200.12.*'),(402094,0,'author','2018-03-14 20:17:12','91.200.12.*'),(402095,0,'author','2018-03-14 20:17:13','91.200.12.*'),(402096,0,'author','2018-03-14 20:17:13','91.200.12.*'),(402097,0,'author','2018-03-14 20:17:14','91.200.12.*'),(402098,0,'author','2018-03-14 20:17:14','91.200.12.*'),(402099,0,'author','2018-03-14 20:17:15','91.200.12.*'),(402100,0,'author','2018-03-14 20:17:15','91.200.12.*'),(402101,0,'author','2018-03-14 20:17:16','91.200.12.*'),(402102,0,'author','2018-03-14 20:17:16','91.200.12.*'),(402103,0,'author','2018-03-14 20:17:17','91.200.12.*'),(402104,0,'author','2018-03-14 20:17:17','91.200.12.*'),(402105,0,'author','2018-03-14 20:17:18','91.200.12.*'),(402106,0,'author','2018-03-14 20:17:19','91.200.12.*'),(402107,0,'author','2018-03-14 20:17:20','91.200.12.*'),(402108,0,'author','2018-03-14 20:17:20','91.200.12.*'),(402109,0,'author','2018-03-14 20:17:21','91.200.12.*'),(402110,0,'author','2018-03-14 20:17:22','91.200.12.*'),(402111,0,'author','2018-03-14 20:17:22','91.200.12.*'),(402112,0,'author','2018-03-14 20:17:23','91.200.12.*'),(402113,0,'author','2018-03-14 20:17:24','91.200.12.*'),(402114,0,'author','2018-03-14 20:17:24','91.200.12.*'),(402115,0,'author','2018-03-14 20:17:25','91.200.12.*'),(402116,0,'author','2018-03-14 20:17:26','91.200.12.*'),(402117,0,'author','2018-03-14 20:17:27','91.200.12.*'),(402118,0,'author','2018-03-14 20:17:27','91.200.12.*'),(402119,0,'author','2018-03-14 20:17:28','91.200.12.*'),(402120,0,'author','2018-03-14 20:17:28','91.200.12.*'),(402121,0,'author','2018-03-14 20:17:28','91.200.12.*'),(402122,0,'author','2018-03-14 20:17:30','91.200.12.*'),(402123,0,'author','2018-03-14 20:17:30','91.200.12.*'),(402124,0,'author','2018-03-14 20:17:31','91.200.12.*'),(402125,0,'author','2018-03-14 20:17:31','91.200.12.*'),(402126,0,'author','2018-03-14 20:17:32','91.200.12.*'),(402127,0,'author','2018-03-14 20:17:33','91.200.12.*'),(402128,0,'author','2018-03-14 20:17:33','91.200.12.*'),(402129,0,'author','2018-03-14 20:17:33','91.200.12.*'),(402130,0,'author','2018-03-14 20:17:34','91.200.12.*'),(402131,0,'author','2018-03-14 20:17:35','91.200.12.*'),(402132,0,'author','2018-03-14 20:17:35','91.200.12.*'),(402133,0,'author','2018-03-14 20:17:36','91.200.12.*'),(402134,0,'author','2018-03-14 20:17:37','91.200.12.*'),(402135,0,'author','2018-03-14 20:17:38','91.200.12.*'),(402136,0,'author','2018-03-14 20:17:38','91.200.12.*'),(402137,0,'author','2018-03-14 20:17:39','91.200.12.*'),(402138,0,'author','2018-03-14 20:17:39','91.200.12.*'),(402139,0,'author','2018-03-14 20:17:40','91.200.12.*'),(402140,0,'author','2018-03-14 20:17:40','91.200.12.*'),(402141,0,'author','2018-03-14 20:17:41','91.200.12.*'),(402142,0,'author','2018-03-14 20:17:45','91.200.12.*'),(402143,0,'author','2018-03-14 20:17:45','91.200.12.*'),(402144,0,'author','2018-03-14 20:17:47','91.200.12.*'),(402145,0,'author','2018-03-14 20:17:47','91.200.12.*'),(402146,0,'author','2018-03-14 20:17:48','91.200.12.*'),(402147,0,'author','2018-03-14 20:17:49','91.200.12.*'),(402148,0,'author','2018-03-14 20:17:52','91.200.12.*'),(402149,0,'author','2018-03-14 20:17:52','91.200.12.*'),(402150,0,'author','2018-03-14 20:17:53','91.200.12.*'),(402151,0,'author','2018-03-14 20:17:53','91.200.12.*'),(402152,0,'author','2018-03-14 20:17:53','91.200.12.*'),(402153,0,'author','2018-03-14 20:17:54','91.200.12.*'),(402154,0,'author','2018-03-14 20:17:54','91.200.12.*'),(402155,0,'author','2018-03-14 20:17:55','91.200.12.*'),(402156,0,'author','2018-03-14 20:17:55','91.200.12.*'),(402157,0,'author','2018-03-14 20:17:58','91.200.12.*'),(402158,0,'author','2018-03-14 20:17:59','91.200.12.*'),(402159,0,'author','2018-03-14 20:17:59','91.200.12.*'),(402160,0,'author','2018-03-14 20:18:00','91.200.12.*'),(402161,0,'author','2018-03-14 20:18:00','91.200.12.*'),(402162,0,'author','2018-03-14 20:18:04','91.200.12.*'),(402163,0,'author','2018-03-14 20:18:04','91.200.12.*'),(402164,0,'author','2018-03-14 20:18:05','91.200.12.*'),(402165,0,'author','2018-03-14 20:18:06','91.200.12.*'),(402166,0,'author','2018-03-14 20:18:07','91.200.12.*'),(402167,0,'author','2018-03-14 20:18:07','91.200.12.*'),(402168,0,'author','2018-03-14 20:18:09','91.200.12.*'),(402169,0,'author','2018-03-14 20:18:09','91.200.12.*'),(402170,0,'author','2018-03-14 20:18:10','91.200.12.*'),(402171,0,'author','2018-03-14 20:18:11','91.200.12.*'),(402172,0,'author','2018-03-14 20:18:11','91.200.12.*'),(402173,0,'author','2018-03-14 20:18:12','91.200.12.*'),(402174,0,'author','2018-03-14 20:18:15','91.200.12.*'),(402175,0,'author','2018-03-14 20:18:15','91.200.12.*'),(402176,0,'author','2018-03-14 20:18:16','91.200.12.*'),(402177,0,'author','2018-03-14 20:18:18','91.200.12.*'),(402178,0,'author','2018-03-14 20:18:19','91.200.12.*'),(402179,0,'author','2018-03-14 20:18:20','91.200.12.*'),(402180,0,'author','2018-03-14 20:18:20','91.200.12.*'),(402181,0,'author','2018-03-14 20:18:21','91.200.12.*'),(402182,0,'author','2018-03-14 20:18:21','91.200.12.*'),(402183,0,'author','2018-03-14 20:18:22','91.200.12.*'),(402184,0,'author','2018-03-14 20:18:23','91.200.12.*'),(402185,0,'author','2018-03-14 20:18:24','91.200.12.*'),(402186,0,'author','2018-03-14 20:18:24','91.200.12.*'),(402187,0,'author','2018-03-14 20:18:25','91.200.12.*'),(402188,0,'author','2018-03-14 20:18:26','91.200.12.*'),(402189,0,'author','2018-03-14 20:18:26','91.200.12.*'),(402190,0,'author','2018-03-14 20:18:26','91.200.12.*'),(402191,0,'author','2018-03-14 20:18:30','91.200.12.*'),(402192,0,'author','2018-03-14 20:18:30','91.200.12.*'),(402193,0,'author','2018-03-14 20:18:31','91.200.12.*'),(402194,0,'author','2018-03-14 20:18:31','91.200.12.*'),(402195,0,'author','2018-03-14 20:18:32','91.200.12.*'),(402196,0,'author','2018-03-14 20:18:32','91.200.12.*'),(402197,0,'author','2018-03-14 20:18:33','91.200.12.*'),(402198,0,'author','2018-03-14 20:18:33','91.200.12.*'),(402199,0,'author','2018-03-14 20:18:34','91.200.12.*'),(402200,0,'author','2018-03-14 20:18:35','91.200.12.*'),(402201,0,'author','2018-03-14 20:18:35','91.200.12.*'),(402202,0,'author','2018-03-14 20:18:36','91.200.12.*'),(402203,0,'author','2018-03-14 20:18:37','91.200.12.*'),(402204,0,'author','2018-03-14 20:18:38','91.200.12.*'),(402205,0,'author','2018-03-14 20:18:38','91.200.12.*'),(402206,0,'author','2018-03-14 20:18:38','91.200.12.*'),(402207,0,'author','2018-03-14 20:18:40','91.200.12.*'),(402208,0,'author','2018-03-14 20:18:40','91.200.12.*'),(402209,0,'author','2018-03-14 20:18:41','91.200.12.*'),(402210,0,'author','2018-03-14 20:18:42','91.200.12.*'),(402211,0,'author','2018-03-14 20:18:43','91.200.12.*'),(402212,0,'author','2018-03-14 20:18:43','91.200.12.*'),(402213,0,'author','2018-03-14 20:18:44','91.200.12.*'),(402214,0,'author','2018-03-14 20:18:45','91.200.12.*'),(402215,0,'author','2018-03-14 20:18:45','91.200.12.*'),(402216,0,'author','2018-03-14 20:18:46','91.200.12.*'),(402217,0,'author','2018-03-14 20:18:46','91.200.12.*'),(402218,0,'author','2018-03-14 20:18:48','91.200.12.*'),(402219,0,'author','2018-03-14 20:18:48','91.200.12.*'),(402220,0,'author','2018-03-14 20:18:49','91.200.12.*'),(402221,0,'author','2018-03-14 20:18:50','91.200.12.*'),(402222,0,'author','2018-03-14 20:18:50','91.200.12.*'),(402223,0,'author','2018-03-14 20:18:52','91.200.12.*'),(402224,0,'author','2018-03-14 20:18:53','91.200.12.*'),(402225,0,'author','2018-03-14 20:18:54','91.200.12.*'),(402226,0,'author','2018-03-14 20:18:55','91.200.12.*'),(402227,0,'author','2018-03-14 20:18:56','91.200.12.*'),(402228,0,'author','2018-03-14 20:18:56','91.200.12.*'),(402229,0,'author','2018-03-14 20:18:58','91.200.12.*'),(402230,0,'author','2018-03-14 20:18:59','91.200.12.*'),(402231,0,'author','2018-03-14 20:19:00','91.200.12.*'),(402232,0,'author','2018-03-14 20:19:01','91.200.12.*'),(402233,0,'author','2018-03-14 20:19:02','91.200.12.*'),(402234,0,'author','2018-03-14 20:19:03','91.200.12.*'),(402235,0,'author','2018-03-14 20:19:05','91.200.12.*'),(402236,0,'author','2018-03-14 20:19:06','91.200.12.*'),(402237,0,'author','2018-03-14 20:19:07','91.200.12.*'),(402238,0,'author','2018-03-14 20:19:08','91.200.12.*'),(402239,0,'author','2018-03-14 20:19:09','91.200.12.*'),(402240,0,'author','2018-03-14 20:19:11','91.200.12.*'),(402241,0,'author','2018-03-14 20:19:11','91.200.12.*'),(402242,0,'author','2018-03-14 20:19:13','91.200.12.*'),(402243,0,'author','2018-03-14 20:19:14','91.200.12.*'),(402244,0,'author','2018-03-14 20:19:15','91.200.12.*'),(402245,0,'author','2018-03-14 20:19:16','91.200.12.*'),(402246,0,'author','2018-03-14 20:19:16','91.200.12.*'),(402247,0,'author','2018-03-14 20:19:17','91.200.12.*'),(402248,0,'author','2018-03-14 20:19:20','91.200.12.*'),(402249,0,'author','2018-03-14 20:19:21','91.200.12.*'),(402250,0,'author','2018-03-14 20:19:21','91.200.12.*'),(402251,0,'author','2018-03-14 20:19:22','91.200.12.*'),(402252,0,'author','2018-03-14 20:19:22','91.200.12.*'),(402253,0,'author','2018-03-14 20:19:23','91.200.12.*'),(402254,0,'author','2018-03-14 20:19:24','91.200.12.*'),(402255,0,'author','2018-03-14 20:19:24','91.200.12.*'),(402256,0,'author','2018-03-14 20:19:25','91.200.12.*'),(402257,0,'author','2018-03-14 20:19:26','91.200.12.*'),(402258,0,'author','2018-03-14 20:19:26','91.200.12.*'),(402259,0,'author','2018-03-14 20:19:27','91.200.12.*'),(402260,0,'author','2018-03-14 20:19:27','91.200.12.*'),(402261,0,'author','2018-03-14 20:19:28','91.200.12.*'),(402262,0,'author','2018-03-14 20:19:29','91.200.12.*'),(402263,0,'author','2018-03-14 20:19:29','91.200.12.*'),(402264,0,'author','2018-03-14 20:19:29','91.200.12.*'),(402265,0,'author','2018-03-14 20:19:30','91.200.12.*'),(402266,0,'author','2018-03-14 20:19:31','91.200.12.*'),(402267,0,'author','2018-03-14 20:19:31','91.200.12.*'),(402268,0,'author','2018-03-14 20:19:32','91.200.12.*'),(402269,0,'author','2018-03-14 20:19:32','91.200.12.*'),(402270,0,'author','2018-03-14 20:19:33','91.200.12.*'),(402271,0,'author','2018-03-14 20:19:33','91.200.12.*'),(402272,0,'author','2018-03-14 20:19:34','91.200.12.*'),(402273,0,'author','2018-03-14 20:19:34','91.200.12.*'),(402274,0,'author','2018-03-14 20:19:35','91.200.12.*'),(402275,0,'author','2018-03-14 20:19:36','91.200.12.*'),(402276,0,'author','2018-03-14 20:19:37','91.200.12.*'),(402277,0,'author','2018-03-14 20:19:38','91.200.12.*'),(402278,0,'author','2018-03-14 20:19:38','91.200.12.*'),(402279,0,'author','2018-03-14 20:19:38','91.200.12.*'),(402280,0,'author','2018-03-14 20:19:39','91.200.12.*'),(402281,0,'author','2018-03-14 20:19:40','91.200.12.*'),(402282,0,'author','2018-03-14 20:19:41','91.200.12.*'),(402283,0,'author','2018-03-14 20:19:42','91.200.12.*'),(402284,0,'author','2018-03-14 20:19:42','91.200.12.*'),(402285,0,'author','2018-03-14 20:19:43','91.200.12.*'),(402286,0,'author','2018-03-14 20:19:44','91.200.12.*'),(402287,0,'author','2018-03-14 20:19:44','91.200.12.*'),(402288,0,'author','2018-03-14 20:19:45','91.200.12.*'),(402289,0,'author','2018-03-14 20:19:46','91.200.12.*'),(402290,0,'author','2018-03-14 20:19:47','91.200.12.*'),(402291,0,'author','2018-03-14 20:19:47','91.200.12.*'),(402292,0,'author','2018-03-14 20:19:48','91.200.12.*'),(402293,0,'author','2018-03-14 20:19:48','91.200.12.*'),(402294,0,'author','2018-03-14 20:19:49','91.200.12.*'),(402295,0,'author','2018-03-14 20:19:49','91.200.12.*'),(402296,0,'author','2018-03-14 20:19:50','91.200.12.*'),(402297,0,'author','2018-03-14 20:19:51','91.200.12.*'),(402298,0,'author','2018-03-14 20:19:51','91.200.12.*'),(402299,0,'author','2018-03-14 20:19:51','91.200.12.*'),(402300,0,'author','2018-03-14 20:19:53','91.200.12.*'),(402301,0,'author','2018-03-14 20:19:55','91.200.12.*'),(402302,0,'author','2018-03-14 20:19:56','91.200.12.*'),(402303,0,'author','2018-03-14 20:19:56','91.200.12.*'),(402304,0,'author','2018-03-14 20:19:57','91.200.12.*'),(402305,0,'author','2018-03-14 20:19:57','91.200.12.*'),(402306,0,'author','2018-03-14 20:19:58','91.200.12.*'),(402307,0,'author','2018-03-14 20:20:00','91.200.12.*'),(402308,0,'author','2018-03-14 20:20:01','91.200.12.*'),(402309,0,'author','2018-03-14 20:20:02','91.200.12.*'),(402310,0,'author','2018-03-14 20:20:02','91.200.12.*'),(402311,0,'author','2018-03-14 20:20:03','91.200.12.*'),(402312,0,'author','2018-03-14 20:20:03','91.200.12.*'),(402313,0,'author','2018-03-14 20:20:05','91.200.12.*'),(402314,0,'author','2018-03-14 20:20:05','91.200.12.*'),(402315,0,'author','2018-03-14 20:20:06','91.200.12.*'),(402316,0,'author','2018-03-14 20:20:07','91.200.12.*'),(402317,0,'author','2018-03-14 20:20:07','91.200.12.*'),(402318,0,'author','2018-03-14 20:20:08','91.200.12.*'),(402319,0,'author','2018-03-14 20:20:09','91.200.12.*'),(402320,0,'author','2018-03-14 20:20:11','91.200.12.*'),(402321,0,'author','2018-03-14 20:20:11','91.200.12.*'),(402322,0,'author','2018-03-14 20:20:12','91.200.12.*'),(402323,0,'author','2018-03-14 20:20:12','91.200.12.*'),(402324,0,'author','2018-03-14 20:20:13','91.200.12.*'),(402325,0,'author','2018-03-14 20:20:14','91.200.12.*'),(402326,0,'author','2018-03-14 20:20:14','91.200.12.*'),(402327,0,'author','2018-03-14 20:20:15','91.200.12.*'),(402328,0,'author','2018-03-14 20:20:15','91.200.12.*'),(402329,0,'author','2018-03-14 20:20:16','91.200.12.*'),(402330,0,'author','2018-03-14 20:20:16','91.200.12.*'),(402331,0,'author','2018-03-14 20:20:17','91.200.12.*'),(402332,0,'author','2018-03-14 20:20:17','91.200.12.*'),(402333,0,'author','2018-03-14 20:20:18','91.200.12.*'),(402334,0,'author','2018-03-14 20:20:19','91.200.12.*'),(402335,0,'author','2018-03-14 20:20:20','91.200.12.*'),(402336,0,'author','2018-03-14 20:20:21','91.200.12.*'),(402337,0,'author','2018-03-14 20:20:21','91.200.12.*'),(402338,0,'author','2018-03-14 20:20:22','91.200.12.*'),(402339,0,'author','2018-03-14 20:20:23','91.200.12.*'),(402340,0,'author','2018-03-14 20:20:24','91.200.12.*'),(402341,0,'author','2018-03-14 20:20:25','91.200.12.*'),(402342,0,'author','2018-03-14 20:20:25','91.200.12.*'),(402343,0,'author','2018-03-14 20:20:28','91.200.12.*'),(402344,0,'author','2018-03-14 20:20:29','91.200.12.*'),(402345,0,'author','2018-03-14 20:20:29','91.200.12.*'),(402346,0,'author','2018-03-14 20:20:31','91.200.12.*'),(402347,0,'author','2018-03-14 20:20:31','91.200.12.*'),(402348,0,'author','2018-03-14 20:20:31','91.200.12.*'),(402349,0,'author','2018-03-14 20:20:32','91.200.12.*'),(402350,0,'author','2018-03-14 20:20:32','91.200.12.*'),(402351,0,'author','2018-03-14 20:20:33','91.200.12.*'),(402352,0,'author','2018-03-14 20:20:35','91.200.12.*'),(402353,0,'author','2018-03-14 20:20:35','91.200.12.*'),(402354,0,'author','2018-03-14 20:20:36','91.200.12.*'),(402355,0,'author','2018-03-14 20:20:36','91.200.12.*'),(402356,0,'author','2018-03-14 20:20:43','91.200.12.*'),(402357,0,'author','2018-03-14 20:20:44','91.200.12.*'),(402358,0,'author','2018-03-14 20:20:44','91.200.12.*'),(402359,0,'author','2018-03-14 20:20:45','91.200.12.*'),(402360,0,'author','2018-03-14 20:20:46','91.200.12.*'),(402361,0,'author','2018-03-14 20:20:46','91.200.12.*'),(402362,0,'author','2018-03-14 20:20:48','91.200.12.*'),(402363,0,'author','2018-03-14 20:20:49','91.200.12.*'),(402364,0,'author','2018-03-14 20:20:50','91.200.12.*'),(402365,0,'author','2018-03-14 20:20:50','91.200.12.*'),(402366,0,'author','2018-03-14 20:20:51','91.200.12.*'),(402367,0,'author','2018-03-14 20:20:52','91.200.12.*'),(402368,0,'author','2018-03-14 20:20:52','91.200.12.*'),(402369,0,'author','2018-03-14 20:20:53','91.200.12.*'),(402370,0,'author','2018-03-14 20:20:55','91.200.12.*'),(402371,0,'author','2018-03-14 20:20:56','91.200.12.*'),(402372,0,'author','2018-03-14 20:20:56','91.200.12.*'),(402373,0,'author','2018-03-14 20:20:56','91.200.12.*'),(402374,0,'author','2018-03-14 20:20:57','91.200.12.*'),(402375,0,'author','2018-03-14 20:20:58','91.200.12.*'),(402376,0,'author','2018-03-14 20:21:00','91.200.12.*'),(402377,0,'author','2018-03-14 20:21:00','91.200.12.*'),(402378,0,'author','2018-03-14 20:21:01','91.200.12.*'),(402379,0,'author','2018-03-14 20:21:01','91.200.12.*'),(402380,0,'author','2018-03-14 20:21:03','91.200.12.*'),(402381,0,'author','2018-03-14 20:21:03','91.200.12.*'),(402382,0,'author','2018-03-14 20:21:04','91.200.12.*'),(402383,0,'author','2018-03-14 20:21:04','91.200.12.*'),(402384,0,'author','2018-03-14 20:21:05','91.200.12.*'),(402385,0,'author','2018-03-14 20:21:06','91.200.12.*'),(402386,0,'author','2018-03-14 20:21:06','91.200.12.*'),(402387,0,'author','2018-03-14 20:21:07','91.200.12.*'),(402388,0,'author','2018-03-14 20:21:07','91.200.12.*'),(402389,0,'author','2018-03-14 20:21:08','91.200.12.*'),(402390,0,'author','2018-03-14 20:21:09','91.200.12.*'),(402391,0,'author','2018-03-14 20:21:10','91.200.12.*'),(402392,0,'author','2018-03-14 20:21:11','91.200.12.*'),(402393,0,'author','2018-03-14 20:21:12','91.200.12.*'),(402394,0,'author','2018-03-14 20:21:12','91.200.12.*'),(402395,0,'author','2018-03-14 20:21:13','91.200.12.*'),(402396,0,'author','2018-03-14 20:21:14','91.200.12.*'),(402397,0,'author','2018-03-14 20:21:14','91.200.12.*'),(402398,0,'author','2018-03-14 20:21:14','91.200.12.*'),(402399,0,'author','2018-03-14 20:21:15','91.200.12.*'),(402400,0,'author','2018-03-14 20:21:15','91.200.12.*'),(402401,0,'author','2018-03-14 20:21:16','91.200.12.*'),(402402,0,'author','2018-03-14 20:21:17','91.200.12.*'),(402403,0,'author','2018-03-14 20:21:19','91.200.12.*'),(402404,0,'author','2018-03-14 20:21:20','91.200.12.*'),(402405,0,'author','2018-03-14 20:21:21','91.200.12.*'),(402406,0,'author','2018-03-14 20:21:21','91.200.12.*'),(402407,0,'author','2018-03-14 20:21:22','91.200.12.*'),(402408,0,'author','2018-03-14 20:21:23','91.200.12.*'),(402409,0,'author','2018-03-14 20:21:24','91.200.12.*'),(402410,0,'author','2018-03-14 20:21:24','91.200.12.*'),(402411,0,'author','2018-03-14 20:21:25','91.200.12.*'),(402412,0,'author','2018-03-14 20:21:26','91.200.12.*'),(402413,0,'author','2018-03-14 20:21:27','91.200.12.*'),(402414,0,'author','2018-03-14 20:21:28','91.200.12.*'),(402415,0,'author','2018-03-14 20:21:29','91.200.12.*'),(402416,0,'author','2018-03-14 20:21:30','91.200.12.*'),(402417,0,'author','2018-03-14 20:21:30','91.200.12.*'),(402418,0,'author','2018-03-14 20:21:31','91.200.12.*'),(402419,0,'author','2018-03-14 20:21:32','91.200.12.*'),(402420,0,'author','2018-03-14 20:21:33','91.200.12.*'),(402421,0,'author','2018-03-14 20:21:34','91.200.12.*'),(402422,0,'author','2018-03-14 20:21:34','91.200.12.*'),(402423,0,'author','2018-03-14 20:21:35','91.200.12.*'),(402424,0,'author','2018-03-14 20:21:36','91.200.12.*'),(402425,0,'author','2018-03-14 20:21:37','91.200.12.*'),(402426,0,'author','2018-03-14 20:21:38','91.200.12.*'),(402427,0,'author','2018-03-14 20:21:38','91.200.12.*'),(402428,0,'author','2018-03-14 20:21:39','91.200.12.*'),(402429,0,'author','2018-03-14 20:21:40','91.200.12.*'),(402430,0,'author','2018-03-14 20:21:40','91.200.12.*'),(402431,0,'author','2018-03-14 20:21:40','91.200.12.*'),(402432,0,'author','2018-03-14 20:21:41','91.200.12.*'),(402433,0,'author','2018-03-14 20:21:41','91.200.12.*'),(402434,0,'author','2018-03-14 20:21:42','91.200.12.*'),(402435,0,'author','2018-03-14 20:21:43','91.200.12.*'),(402436,0,'author','2018-03-14 20:21:44','91.200.12.*'),(402437,0,'author','2018-03-14 20:21:44','91.200.12.*'),(402438,0,'author','2018-03-14 20:21:45','91.200.12.*'),(402439,0,'author','2018-03-14 20:21:46','91.200.12.*'),(402440,0,'author','2018-03-14 20:21:47','91.200.12.*'),(402441,0,'author','2018-03-14 20:21:49','91.200.12.*'),(402442,0,'author','2018-03-14 20:21:49','91.200.12.*'),(402443,0,'author','2018-03-14 20:21:50','91.200.12.*'),(402444,0,'author','2018-03-14 20:21:50','91.200.12.*'),(402445,0,'author','2018-03-14 20:21:51','91.200.12.*'),(402446,0,'author','2018-03-14 20:21:52','91.200.12.*'),(402447,0,'author','2018-03-14 20:21:54','91.200.12.*'),(402448,0,'author','2018-03-14 20:21:54','91.200.12.*'),(402449,0,'author','2018-03-14 20:21:55','91.200.12.*'),(402450,0,'author','2018-03-14 20:21:56','91.200.12.*'),(402451,0,'author','2018-03-14 20:21:57','91.200.12.*'),(402452,0,'author','2018-03-14 20:21:57','91.200.12.*'),(402453,0,'author','2018-03-14 20:21:58','91.200.12.*'),(402454,0,'author','2018-03-14 20:21:59','91.200.12.*'),(402455,0,'author','2018-03-14 20:21:59','91.200.12.*'),(402456,0,'author','2018-03-14 20:22:00','91.200.12.*'),(402457,0,'author','2018-03-14 20:22:03','91.200.12.*'),(402458,0,'author','2018-03-14 20:22:03','91.200.12.*'),(402459,0,'author','2018-03-14 20:22:04','91.200.12.*'),(402460,0,'author','2018-03-14 20:22:04','91.200.12.*'),(402461,0,'author','2018-03-14 20:22:04','91.200.12.*'),(402462,0,'author','2018-03-14 20:22:05','91.200.12.*'),(402463,0,'author','2018-03-14 20:22:05','91.200.12.*'),(402464,0,'author','2018-03-14 20:22:06','91.200.12.*'),(402465,0,'author','2018-03-14 20:22:07','91.200.12.*'),(402466,0,'author','2018-03-14 20:22:08','91.200.12.*'),(402467,0,'author','2018-03-14 20:22:09','91.200.12.*'),(402468,0,'author','2018-03-14 20:22:09','91.200.12.*'),(402469,0,'author','2018-03-14 20:22:10','91.200.12.*'),(402470,0,'author','2018-03-14 20:22:10','91.200.12.*'),(402471,0,'author','2018-03-14 20:22:11','91.200.12.*'),(402472,0,'author','2018-03-14 20:22:11','91.200.12.*'),(402473,0,'author','2018-03-14 20:22:12','91.200.12.*'),(402474,0,'author','2018-03-14 20:22:13','91.200.12.*'),(402475,0,'author','2018-03-14 20:22:14','91.200.12.*'),(402476,0,'author','2018-03-14 20:22:14','91.200.12.*'),(402477,0,'author','2018-03-14 20:22:15','91.200.12.*'),(402478,0,'author','2018-03-14 20:22:16','91.200.12.*'),(402479,0,'author','2018-03-14 20:22:17','91.200.12.*'),(402480,0,'author','2018-03-14 20:22:18','91.200.12.*'),(402481,0,'author','2018-03-14 20:22:18','91.200.12.*'),(402482,0,'author','2018-03-14 20:22:19','91.200.12.*'),(402483,0,'author','2018-03-14 20:22:20','91.200.12.*'),(402484,0,'author','2018-03-14 20:22:20','91.200.12.*'),(402485,0,'author','2018-03-14 20:22:20','91.200.12.*'),(402486,0,'author','2018-03-14 20:22:21','91.200.12.*'),(402487,0,'author','2018-03-14 20:22:21','91.200.12.*'),(402488,0,'author','2018-03-14 20:22:22','91.200.12.*'),(402489,0,'author','2018-03-14 20:22:23','91.200.12.*'),(402490,0,'author','2018-03-14 20:22:24','91.200.12.*'),(402491,0,'author','2018-03-14 20:22:24','91.200.12.*'),(402492,0,'author','2018-03-14 20:22:25','91.200.12.*'),(402493,0,'author','2018-03-14 20:22:25','91.200.12.*'),(402494,0,'author','2018-03-14 20:22:26','91.200.12.*'),(402495,0,'author','2018-03-14 20:22:26','91.200.12.*'),(402496,0,'author','2018-03-14 20:22:27','91.200.12.*'),(402497,0,'author','2018-03-14 20:22:27','91.200.12.*'),(402498,0,'author','2018-03-14 20:22:27','91.200.12.*'),(402499,0,'author','2018-03-14 20:22:28','91.200.12.*'),(402500,0,'author','2018-03-14 20:22:29','91.200.12.*'),(402501,0,'author','2018-03-14 20:22:29','91.200.12.*'),(402502,0,'author','2018-03-14 20:22:31','91.200.12.*'),(402503,0,'author','2018-03-14 20:22:31','91.200.12.*'),(402504,0,'author','2018-03-14 20:22:32','91.200.12.*'),(402505,0,'author','2018-03-14 20:22:32','91.200.12.*'),(402506,0,'author','2018-03-14 20:22:33','91.200.12.*'),(402507,0,'author','2018-03-14 20:22:34','91.200.12.*'),(402508,0,'author','2018-03-14 20:22:34','91.200.12.*'),(402509,0,'author','2018-03-14 20:22:35','91.200.12.*'),(402510,0,'author','2018-03-14 20:22:36','91.200.12.*'),(402511,0,'author','2018-03-14 20:22:36','91.200.12.*'),(402512,0,'author','2018-03-14 20:22:37','91.200.12.*'),(402513,0,'author','2018-03-14 20:22:38','91.200.12.*'),(402514,0,'author','2018-03-14 20:22:39','91.200.12.*'),(402515,0,'author','2018-03-14 20:22:39','91.200.12.*'),(402516,0,'author','2018-03-14 20:22:41','91.200.12.*'),(402517,0,'author','2018-03-14 20:22:42','91.200.12.*'),(402518,0,'author','2018-03-14 20:22:43','91.200.12.*'),(402519,0,'author','2018-03-14 20:22:44','91.200.12.*'),(402520,0,'author','2018-03-14 20:22:44','91.200.12.*'),(402521,0,'author','2018-03-14 20:22:47','91.200.12.*'),(402522,0,'author','2018-03-14 20:22:47','91.200.12.*'),(402523,0,'author','2018-03-14 20:22:47','91.200.12.*'),(402524,0,'author','2018-03-14 20:22:49','91.200.12.*'),(402525,0,'author','2018-03-14 20:22:49','91.200.12.*'),(402526,0,'author','2018-03-14 20:22:50','91.200.12.*'),(402527,0,'author','2018-03-14 20:22:51','91.200.12.*'),(402528,0,'author','2018-03-14 20:22:52','91.200.12.*'),(402529,0,'author','2018-03-14 20:22:53','91.200.12.*'),(402530,0,'author','2018-03-14 20:22:54','91.200.12.*'),(402531,0,'author','2018-03-14 20:22:55','91.200.12.*'),(402532,0,'author','2018-03-14 20:22:56','91.200.12.*'),(402533,0,'author','2018-03-14 20:22:57','91.200.12.*'),(402534,0,'author','2018-03-14 20:22:58','91.200.12.*'),(402535,0,'author','2018-03-14 20:22:59','91.200.12.*'),(402536,0,'author','2018-03-14 20:22:59','91.200.12.*'),(402537,0,'author','2018-03-14 20:22:59','91.200.12.*'),(402538,0,'author','2018-03-14 20:23:00','91.200.12.*'),(402539,0,'author','2018-03-14 20:23:01','91.200.12.*'),(402540,0,'author','2018-03-14 20:23:02','91.200.12.*'),(402541,0,'author','2018-03-14 20:23:03','91.200.12.*'),(402542,0,'author','2018-03-14 20:23:04','91.200.12.*'),(402543,0,'author','2018-03-14 20:23:04','91.200.12.*'),(402544,0,'author','2018-03-14 20:23:04','91.200.12.*'),(402545,0,'author','2018-03-14 20:23:05','91.200.12.*'),(402546,0,'author','2018-03-14 20:23:05','91.200.12.*'),(402547,0,'author','2018-03-14 20:23:07','91.200.12.*'),(402548,0,'author','2018-03-14 20:23:07','91.200.12.*'),(402549,0,'author','2018-03-14 20:23:08','91.200.12.*'),(402550,0,'author','2018-03-14 20:23:11','91.200.12.*'),(402551,0,'author','2018-03-14 20:23:11','91.200.12.*'),(402552,0,'author','2018-03-14 20:23:12','91.200.12.*'),(402553,0,'author','2018-03-14 20:23:12','91.200.12.*'),(402554,0,'author','2018-03-14 20:23:13','91.200.12.*'),(402555,0,'author','2018-03-14 20:23:14','91.200.12.*'),(402556,0,'author','2018-03-14 20:23:14','91.200.12.*'),(402557,0,'author','2018-03-14 20:23:15','91.200.12.*'),(402558,0,'author','2018-03-14 20:23:15','91.200.12.*'),(402559,0,'author','2018-03-14 20:23:16','91.200.12.*'),(402560,0,'author','2018-03-14 20:23:21','91.200.12.*'),(402561,0,'author','2018-03-14 20:23:22','91.200.12.*'),(402562,0,'author','2018-03-14 20:23:22','91.200.12.*'),(402563,0,'author','2018-03-14 20:23:24','91.200.12.*'),(402564,0,'author','2018-03-14 20:23:24','91.200.12.*'),(402565,0,'author','2018-03-14 20:23:24','91.200.12.*'),(402566,0,'author','2018-03-14 20:23:25','91.200.12.*'),(402567,0,'author','2018-03-14 20:23:25','91.200.12.*'),(402568,0,'author','2018-03-14 20:23:26','91.200.12.*'),(402569,0,'author','2018-03-14 20:23:27','91.200.12.*'),(402570,0,'author','2018-03-14 20:23:27','91.200.12.*'),(402571,0,'author','2018-03-14 20:23:28','91.200.12.*'),(402572,0,'author','2018-03-14 20:23:29','91.200.12.*'),(402573,0,'author','2018-03-14 20:23:29','91.200.12.*'),(402574,0,'author','2018-03-14 20:23:30','91.200.12.*'),(402575,0,'author','2018-03-14 20:23:31','91.200.12.*'),(402576,0,'author','2018-03-14 20:23:31','91.200.12.*'),(402577,0,'author','2018-03-14 20:23:32','91.200.12.*'),(402578,0,'author','2018-03-14 20:23:33','91.200.12.*'),(402579,0,'author','2018-03-14 20:23:33','91.200.12.*'),(402580,0,'author','2018-03-14 20:23:34','91.200.12.*'),(402581,0,'author','2018-03-14 20:23:34','91.200.12.*'),(402582,0,'author','2018-03-14 20:23:35','91.200.12.*'),(402583,0,'author','2018-03-14 20:23:35','91.200.12.*'),(402584,0,'author','2018-03-14 20:23:36','91.200.12.*'),(402585,0,'author','2018-03-14 20:23:36','91.200.12.*'),(402586,0,'author','2018-03-14 20:23:37','91.200.12.*'),(402587,0,'author','2018-03-14 20:23:39','91.200.12.*'),(402588,0,'author','2018-03-14 20:23:39','91.200.12.*'),(402589,0,'author','2018-03-14 20:23:40','91.200.12.*'),(402590,0,'author','2018-03-14 20:23:40','91.200.12.*'),(402591,0,'author','2018-03-14 20:23:41','91.200.12.*'),(402592,0,'author','2018-03-14 20:23:41','91.200.12.*'),(402593,0,'author','2018-03-14 20:23:41','91.200.12.*'),(402594,0,'author','2018-03-14 20:23:42','91.200.12.*'),(402595,0,'author','2018-03-14 20:23:43','91.200.12.*'),(402596,0,'author','2018-03-14 20:23:44','91.200.12.*'),(402597,0,'author','2018-03-14 20:23:45','91.200.12.*'),(402598,0,'author','2018-03-14 20:23:46','91.200.12.*'),(402599,0,'author','2018-03-14 20:23:47','91.200.12.*'),(402600,0,'author','2018-03-14 20:23:48','91.200.12.*'),(402601,0,'author','2018-03-14 20:23:50','91.200.12.*'),(402602,0,'author','2018-03-14 20:23:51','91.200.12.*'),(402603,0,'author','2018-03-14 20:23:51','91.200.12.*'),(402604,0,'author','2018-03-14 20:23:52','91.200.12.*'),(402605,0,'author','2018-03-14 20:23:52','91.200.12.*'),(402606,0,'author','2018-03-14 20:23:53','91.200.12.*'),(402607,0,'author','2018-03-14 20:23:53','91.200.12.*'),(402608,0,'author','2018-03-14 20:23:53','91.200.12.*'),(402609,0,'author','2018-03-14 20:23:54','91.200.12.*'),(402610,0,'author','2018-03-14 20:23:54','91.200.12.*'),(402611,0,'author','2018-03-14 20:23:55','91.200.12.*'),(402612,0,'author','2018-03-14 20:23:55','91.200.12.*'),(402613,0,'author','2018-03-14 20:23:56','91.200.12.*'),(402614,0,'author','2018-03-14 20:23:57','91.200.12.*'),(402615,0,'author','2018-03-14 20:23:57','91.200.12.*'),(402616,0,'author','2018-03-14 20:23:58','91.200.12.*'),(402617,0,'author','2018-03-14 20:23:58','91.200.12.*'),(402618,0,'author','2018-03-14 20:23:59','91.200.12.*'),(402619,0,'author','2018-03-14 20:23:59','91.200.12.*'),(402620,0,'author','2018-03-14 20:23:59','91.200.12.*'),(402621,0,'author','2018-03-14 20:24:00','91.200.12.*'),(402622,0,'author','2018-03-14 20:24:00','91.200.12.*'),(402623,0,'author','2018-03-14 20:24:01','91.200.12.*'),(402624,0,'author','2018-03-14 20:24:02','91.200.12.*'),(402625,0,'author','2018-03-14 20:24:02','91.200.12.*'),(402626,0,'author','2018-03-14 20:24:02','91.200.12.*'),(402627,0,'author','2018-03-14 20:24:03','91.200.12.*'),(402628,0,'author','2018-03-14 20:24:03','91.200.12.*'),(402629,0,'author','2018-03-14 20:24:04','91.200.12.*'),(402630,0,'author','2018-03-14 20:24:05','91.200.12.*'),(402631,0,'author','2018-03-14 20:24:05','91.200.12.*'),(402632,0,'author','2018-03-14 20:24:06','91.200.12.*'),(402633,0,'author','2018-03-14 20:24:06','91.200.12.*'),(402634,0,'author','2018-03-14 20:24:07','91.200.12.*'),(402635,0,'author','2018-03-14 20:24:07','91.200.12.*'),(402636,0,'author','2018-03-14 20:24:08','91.200.12.*'),(402637,0,'author','2018-03-14 20:24:08','91.200.12.*'),(402638,0,'author','2018-03-14 20:24:09','91.200.12.*'),(402639,0,'author','2018-03-14 20:24:10','91.200.12.*'),(402640,0,'author','2018-03-14 20:24:11','91.200.12.*'),(402641,0,'author','2018-03-14 20:24:11','91.200.12.*'),(402642,0,'author','2018-03-14 20:24:12','91.200.12.*'),(402643,0,'author','2018-03-14 20:24:12','91.200.12.*'),(402644,0,'author','2018-03-14 20:24:13','91.200.12.*'),(402645,0,'author','2018-03-14 20:24:13','91.200.12.*'),(402646,0,'author','2018-03-14 20:24:14','91.200.12.*'),(402647,0,'author','2018-03-14 20:24:14','91.200.12.*'),(402648,0,'author','2018-03-14 20:24:14','91.200.12.*'),(402649,0,'author','2018-03-14 20:24:16','91.200.12.*'),(402650,0,'author','2018-03-14 20:24:17','91.200.12.*'),(402651,0,'author','2018-03-14 20:24:18','91.200.12.*'),(402652,0,'author','2018-03-14 20:24:20','91.200.12.*'),(402653,0,'author','2018-03-14 20:24:21','91.200.12.*'),(402654,0,'author','2018-03-14 20:24:21','91.200.12.*'),(402655,0,'author','2018-03-14 20:24:23','91.200.12.*'),(402656,0,'author','2018-03-14 20:24:24','91.200.12.*'),(402657,0,'author','2018-03-14 20:24:25','91.200.12.*'),(402658,0,'author','2018-03-14 20:24:26','91.200.12.*'),(402659,0,'author','2018-03-14 20:24:28','91.200.12.*'),(402660,0,'author','2018-03-14 20:24:29','91.200.12.*'),(402661,0,'author','2018-03-14 20:24:31','91.200.12.*'),(402662,0,'author','2018-03-14 20:24:31','91.200.12.*'),(402663,0,'author','2018-03-14 20:24:32','91.200.12.*'),(402664,0,'author','2018-03-14 20:24:33','91.200.12.*'),(402665,0,'author','2018-03-14 20:24:33','91.200.12.*'),(402666,0,'author','2018-03-14 20:24:34','91.200.12.*'),(402667,0,'author','2018-03-14 20:24:34','91.200.12.*'),(402668,0,'author','2018-03-14 20:24:35','91.200.12.*'),(402669,0,'author','2018-03-14 20:24:36','91.200.12.*'),(402670,0,'author','2018-03-14 20:24:36','91.200.12.*'),(402671,0,'author','2018-03-14 20:24:37','91.200.12.*'),(402672,0,'author','2018-03-14 20:24:38','91.200.12.*'),(402673,0,'author','2018-03-14 20:24:38','91.200.12.*'),(402674,0,'author','2018-03-14 20:24:39','91.200.12.*'),(402675,0,'author','2018-03-14 20:24:39','91.200.12.*'),(402676,0,'author','2018-03-14 20:24:40','91.200.12.*'),(402677,0,'author','2018-03-14 20:24:42','91.200.12.*'),(402678,0,'author','2018-03-14 20:24:43','91.200.12.*'),(402679,0,'author','2018-03-14 20:24:44','91.200.12.*'),(402680,0,'author','2018-03-14 20:24:45','91.200.12.*'),(402681,0,'author','2018-03-14 20:24:45','91.200.12.*'),(402682,0,'author','2018-03-14 20:24:46','91.200.12.*'),(402683,0,'author','2018-03-14 20:24:48','91.200.12.*'),(402684,0,'author','2018-03-14 20:24:49','91.200.12.*'),(402685,0,'author','2018-03-14 20:24:50','91.200.12.*'),(402686,0,'author','2018-03-14 20:24:50','91.200.12.*'),(402687,0,'author','2018-03-14 20:24:51','91.200.12.*'),(402688,0,'author','2018-03-14 20:24:52','91.200.12.*'),(402689,0,'author','2018-03-14 20:24:52','91.200.12.*'),(402690,0,'author','2018-03-14 20:24:54','91.200.12.*'),(402691,0,'author','2018-03-14 20:24:56','91.200.12.*'),(402692,0,'author','2018-03-14 20:24:56','91.200.12.*'),(402693,0,'author','2018-03-14 20:24:57','91.200.12.*'),(402694,0,'author','2018-03-14 20:24:57','91.200.12.*'),(402695,0,'author','2018-03-14 20:24:58','91.200.12.*'),(402696,0,'author','2018-03-14 20:24:58','91.200.12.*'),(402697,0,'author','2018-03-14 20:24:59','91.200.12.*'),(402698,0,'author','2018-03-14 20:24:59','91.200.12.*'),(402699,0,'author','2018-03-14 20:25:00','91.200.12.*'),(402700,0,'author','2018-03-14 20:25:01','91.200.12.*'),(402701,0,'author','2018-03-14 20:25:01','91.200.12.*'),(402702,0,'author','2018-03-14 20:25:03','91.200.12.*'),(402703,0,'author','2018-03-14 20:25:04','91.200.12.*'),(402704,0,'author','2018-03-14 20:25:04','91.200.12.*'),(402705,0,'author','2018-03-14 20:25:05','91.200.12.*'),(402706,0,'author','2018-03-14 20:25:05','91.200.12.*'),(402707,0,'author','2018-03-14 20:25:07','91.200.12.*'),(402708,0,'author','2018-03-14 20:25:07','91.200.12.*'),(402709,0,'author','2018-03-14 20:25:08','91.200.12.*'),(402710,0,'author','2018-03-14 20:25:09','91.200.12.*'),(402711,0,'author','2018-03-14 20:25:09','91.200.12.*'),(402712,0,'author','2018-03-14 20:25:10','91.200.12.*'),(402713,0,'author','2018-03-14 20:25:12','91.200.12.*'),(402714,0,'author','2018-03-14 20:25:12','91.200.12.*'),(402715,0,'author','2018-03-14 20:25:14','91.200.12.*'),(402716,0,'author','2018-03-14 20:25:15','91.200.12.*'),(402717,0,'author','2018-03-14 20:25:16','91.200.12.*'),(402718,0,'author','2018-03-14 20:25:17','91.200.12.*'),(402719,0,'author','2018-03-14 20:25:17','91.200.12.*'),(402720,0,'author','2018-03-14 20:25:21','91.200.12.*'),(402721,0,'author','2018-03-14 20:25:21','91.200.12.*'),(402722,0,'author','2018-03-14 20:25:22','91.200.12.*'),(402723,0,'author','2018-03-14 20:25:23','91.200.12.*'),(402724,0,'author','2018-03-14 20:25:24','91.200.12.*'),(402725,0,'author','2018-03-14 20:25:25','91.200.12.*'),(402726,0,'author','2018-03-14 20:25:26','91.200.12.*'),(402727,0,'author','2018-03-14 20:25:26','91.200.12.*'),(402728,0,'author','2018-03-14 20:25:27','91.200.12.*'),(402729,0,'author','2018-03-14 20:25:27','91.200.12.*'),(402730,0,'author','2018-03-14 20:25:28','91.200.12.*'),(402731,0,'author','2018-03-14 20:25:28','91.200.12.*'),(402732,0,'author','2018-03-14 20:25:29','91.200.12.*'),(402733,0,'author','2018-03-14 20:25:30','91.200.12.*'),(402734,0,'author','2018-03-14 20:25:30','91.200.12.*'),(402735,0,'author','2018-03-14 20:25:31','91.200.12.*'),(402736,0,'author','2018-03-14 20:25:32','91.200.12.*'),(402737,0,'author','2018-03-14 20:25:32','91.200.12.*'),(402738,0,'author','2018-03-14 20:25:33','91.200.12.*'),(402739,0,'author','2018-03-14 20:25:34','91.200.12.*'),(402740,0,'author','2018-03-14 20:25:34','91.200.12.*'),(402741,0,'author','2018-03-14 20:25:35','91.200.12.*'),(402742,0,'author','2018-03-14 20:25:35','91.200.12.*'),(402743,0,'author','2018-03-14 20:25:37','91.200.12.*'),(402744,0,'author','2018-03-14 20:25:37','91.200.12.*'),(402745,0,'author','2018-03-14 20:25:37','91.200.12.*'),(402746,0,'author','2018-03-14 20:25:38','91.200.12.*'),(402747,0,'author','2018-03-14 20:25:39','91.200.12.*'),(402748,0,'author','2018-03-14 20:25:39','91.200.12.*'),(402749,0,'author','2018-03-14 20:25:41','91.200.12.*'),(402750,0,'author','2018-03-14 20:25:42','91.200.12.*'),(402751,0,'author','2018-03-14 20:25:42','91.200.12.*'),(402752,0,'author','2018-03-14 20:25:43','91.200.12.*'),(402753,0,'author','2018-03-14 20:25:44','91.200.12.*'),(402754,0,'author','2018-03-14 20:25:44','91.200.12.*'),(402755,0,'author','2018-03-14 20:25:45','91.200.12.*'),(402756,0,'author','2018-03-14 20:25:45','91.200.12.*'),(402757,0,'author','2018-03-14 20:25:46','91.200.12.*'),(402758,0,'author','2018-03-14 20:25:47','91.200.12.*'),(402759,0,'author','2018-03-14 20:25:47','91.200.12.*'),(402760,0,'author','2018-03-14 20:25:48','91.200.12.*'),(402761,0,'author','2018-03-14 20:25:49','91.200.12.*'),(402762,0,'author','2018-03-14 20:25:50','91.200.12.*'),(402763,0,'author','2018-03-14 20:25:52','91.200.12.*'),(402764,0,'author','2018-03-14 20:25:52','91.200.12.*'),(402765,0,'author','2018-03-14 20:25:52','91.200.12.*'),(402766,0,'author','2018-03-14 20:25:53','91.200.12.*'),(402767,0,'author','2018-03-14 20:25:54','91.200.12.*'),(402768,0,'author','2018-03-14 20:25:55','91.200.12.*'),(402769,0,'author','2018-03-14 20:25:56','91.200.12.*'),(402770,0,'author','2018-03-14 20:25:57','91.200.12.*'),(402771,0,'author','2018-03-14 20:25:57','91.200.12.*'),(402772,0,'author','2018-03-14 20:25:58','91.200.12.*'),(402773,0,'author','2018-03-14 20:25:58','91.200.12.*'),(402774,0,'author','2018-03-14 20:25:59','91.200.12.*'),(402775,0,'author','2018-03-14 20:25:59','91.200.12.*'),(402776,0,'author','2018-03-14 20:26:00','91.200.12.*'),(402777,0,'author','2018-03-14 20:26:01','91.200.12.*'),(402778,0,'author','2018-03-14 20:26:01','91.200.12.*'),(402779,0,'author','2018-03-14 20:26:02','91.200.12.*'),(402780,0,'author','2018-03-14 20:26:02','91.200.12.*'),(402781,0,'author','2018-03-14 20:26:03','91.200.12.*'),(402782,0,'author','2018-03-14 20:26:03','91.200.12.*'),(402783,0,'author','2018-03-14 20:26:04','91.200.12.*'),(402784,0,'author','2018-03-14 20:26:04','91.200.12.*'),(402785,0,'author','2018-03-14 20:26:05','91.200.12.*'),(402786,0,'author','2018-03-14 20:26:06','91.200.12.*'),(402787,0,'author','2018-03-14 20:26:06','91.200.12.*'),(402788,0,'author','2018-03-14 20:26:07','91.200.12.*'),(402789,0,'author','2018-03-14 20:26:08','91.200.12.*'),(402790,0,'author','2018-03-14 20:26:08','91.200.12.*'),(402791,0,'author','2018-03-14 20:26:09','91.200.12.*'),(402792,0,'author','2018-03-14 20:26:10','91.200.12.*'),(402793,0,'author','2018-03-14 20:26:10','91.200.12.*'),(402794,0,'author','2018-03-14 20:26:11','91.200.12.*'),(402795,0,'author','2018-03-14 20:26:11','91.200.12.*'),(402796,0,'author','2018-03-14 20:26:12','91.200.12.*'),(402797,0,'author','2018-03-14 20:26:12','91.200.12.*'),(402798,0,'author','2018-03-14 20:26:14','91.200.12.*'),(402799,0,'author','2018-03-14 20:26:16','91.200.12.*'),(402800,0,'author','2018-03-14 20:26:17','91.200.12.*'),(402801,0,'author','2018-03-14 20:26:17','91.200.12.*'),(402802,0,'author','2018-03-14 20:26:18','91.200.12.*'),(402803,0,'author','2018-03-14 20:26:19','91.200.12.*'),(402804,0,'author','2018-03-14 20:26:20','91.200.12.*'),(402805,0,'author','2018-03-14 20:26:21','91.200.12.*'),(402806,0,'author','2018-03-14 20:26:22','91.200.12.*'),(402807,0,'author','2018-03-14 20:26:23','91.200.12.*'),(402808,0,'author','2018-03-14 20:26:24','91.200.12.*'),(402809,0,'author','2018-03-14 20:26:25','91.200.12.*'),(402810,0,'author','2018-03-14 20:26:29','91.200.12.*'),(402811,0,'author','2018-03-14 20:26:30','91.200.12.*'),(402812,0,'author','2018-03-14 20:26:30','91.200.12.*'),(402813,0,'author','2018-03-14 20:26:31','91.200.12.*'),(402814,0,'author','2018-03-14 20:26:32','91.200.12.*'),(402815,0,'author','2018-03-14 20:26:33','91.200.12.*'),(402816,0,'author','2018-03-14 20:26:33','91.200.12.*'),(402817,0,'author','2018-03-14 20:26:33','91.200.12.*'),(402818,0,'author','2018-03-14 20:26:34','91.200.12.*'),(402819,0,'author','2018-03-14 20:26:34','91.200.12.*'),(402820,0,'author','2018-03-14 20:26:35','91.200.12.*'),(402821,0,'author','2018-03-14 20:26:36','91.200.12.*'),(402822,0,'author','2018-03-14 20:26:37','91.200.12.*'),(402823,0,'author','2018-03-14 20:26:37','91.200.12.*'),(402824,0,'author','2018-03-14 20:26:37','91.200.12.*'),(402825,0,'author','2018-03-14 20:26:38','91.200.12.*'),(402826,0,'author','2018-03-14 20:26:39','91.200.12.*'),(402827,0,'author','2018-03-14 20:26:39','91.200.12.*'),(402828,0,'author','2018-03-14 20:26:40','91.200.12.*'),(402829,0,'author','2018-03-14 20:26:40','91.200.12.*'),(402830,0,'author','2018-03-14 20:26:41','91.200.12.*'),(402831,0,'author','2018-03-14 20:26:41','91.200.12.*'),(402832,0,'author','2018-03-14 20:26:43','91.200.12.*'),(402833,0,'author','2018-03-14 20:26:43','91.200.12.*'),(402834,0,'author','2018-03-14 20:26:44','91.200.12.*'),(402835,0,'author','2018-03-14 20:26:44','91.200.12.*'),(402836,0,'author','2018-03-14 20:26:45','91.200.12.*'),(402837,0,'author','2018-03-14 20:26:46','91.200.12.*'),(402838,0,'author','2018-03-14 20:26:47','91.200.12.*'),(402839,0,'author','2018-03-14 20:26:47','91.200.12.*'),(402840,0,'author','2018-03-14 20:26:48','91.200.12.*'),(402841,0,'author','2018-03-14 20:26:49','91.200.12.*'),(402842,0,'author','2018-03-14 20:26:49','91.200.12.*'),(402843,0,'author','2018-03-14 20:26:51','91.200.12.*'),(402844,0,'author','2018-03-14 20:26:52','91.200.12.*'),(402845,0,'author','2018-03-14 20:26:52','91.200.12.*'),(402846,0,'author','2018-03-14 20:26:53','91.200.12.*'),(402847,0,'author','2018-03-14 20:26:54','91.200.12.*'),(402848,0,'author','2018-03-14 20:26:55','91.200.12.*'),(402849,0,'author','2018-03-14 20:26:55','91.200.12.*'),(402850,0,'author','2018-03-14 20:26:56','91.200.12.*'),(402851,0,'author','2018-03-14 20:26:57','91.200.12.*'),(402852,0,'author','2018-03-14 20:26:58','91.200.12.*'),(402853,0,'author','2018-03-14 20:26:58','91.200.12.*'),(402854,0,'author','2018-03-14 20:26:59','91.200.12.*'),(402855,0,'author','2018-03-14 20:27:00','91.200.12.*'),(402856,0,'author','2018-03-14 20:27:00','91.200.12.*'),(402857,0,'author','2018-03-14 20:27:01','91.200.12.*'),(402858,0,'author','2018-03-14 20:27:02','91.200.12.*'),(402859,0,'author','2018-03-14 20:27:02','91.200.12.*'),(402860,0,'author','2018-03-14 20:27:03','91.200.12.*'),(402861,0,'author','2018-03-14 20:27:04','91.200.12.*'),(402862,0,'author','2018-03-14 20:27:05','91.200.12.*'),(402863,0,'author','2018-03-14 20:27:05','91.200.12.*'),(402864,0,'author','2018-03-14 20:27:06','91.200.12.*'),(402865,0,'author','2018-03-14 20:27:08','91.200.12.*'),(402866,0,'author','2018-03-14 20:27:11','91.200.12.*'),(402867,0,'author','2018-03-14 20:27:12','91.200.12.*'),(402868,0,'author','2018-03-14 20:27:15','91.200.12.*'),(402869,0,'author','2018-03-14 20:27:15','91.200.12.*'),(402870,0,'author','2018-03-14 20:27:16','91.200.12.*'),(402871,0,'author','2018-03-14 20:27:16','91.200.12.*'),(402872,0,'author','2018-03-14 20:27:17','91.200.12.*'),(402873,0,'author','2018-03-14 20:27:19','91.200.12.*'),(402874,0,'author','2018-03-14 20:27:19','91.200.12.*'),(402875,0,'author','2018-03-14 20:27:20','91.200.12.*'),(402876,0,'author','2018-03-14 20:27:20','91.200.12.*'),(402877,0,'author','2018-03-14 20:27:21','91.200.12.*'),(402878,0,'author','2018-03-14 20:27:22','91.200.12.*'),(402879,0,'author','2018-03-14 20:27:22','91.200.12.*'),(402880,0,'author','2018-03-14 20:27:23','91.200.12.*'),(402881,0,'author','2018-03-14 20:27:24','91.200.12.*'),(402882,0,'author','2018-03-14 20:27:26','91.200.12.*'),(402883,0,'author','2018-03-14 20:27:27','91.200.12.*'),(402884,0,'author','2018-03-14 20:27:27','91.200.12.*'),(402885,0,'author','2018-03-14 20:27:28','91.200.12.*'),(402886,0,'author','2018-03-14 20:27:28','91.200.12.*'),(402887,0,'author','2018-03-14 20:27:29','91.200.12.*'),(402888,0,'author','2018-03-14 20:27:29','91.200.12.*'),(402889,0,'author','2018-03-14 20:27:31','91.200.12.*'),(402890,0,'author','2018-03-14 20:27:32','91.200.12.*'),(402891,0,'author','2018-03-14 20:27:32','91.200.12.*'),(402892,0,'author','2018-03-14 20:27:33','91.200.12.*'),(402893,0,'author','2018-03-14 20:27:33','91.200.12.*'),(402894,0,'author','2018-03-14 20:27:35','91.200.12.*'),(402895,0,'author','2018-03-14 20:27:35','91.200.12.*'),(402896,0,'author','2018-03-14 20:27:36','91.200.12.*'),(402897,0,'author','2018-03-14 20:27:36','91.200.12.*'),(402898,0,'author','2018-03-14 20:27:38','91.200.12.*'),(402899,0,'author','2018-03-14 20:27:38','91.200.12.*'),(402900,0,'author','2018-03-14 20:27:39','91.200.12.*'),(402901,0,'author','2018-03-14 20:27:40','91.200.12.*'),(402902,0,'author','2018-03-14 20:27:41','91.200.12.*'),(402903,0,'author','2018-03-14 20:27:42','91.200.12.*'),(402904,0,'author','2018-03-14 20:27:45','91.200.12.*'),(402905,0,'author','2018-03-14 20:27:45','91.200.12.*'),(402906,0,'author','2018-03-14 20:27:46','91.200.12.*'),(402907,0,'author','2018-03-14 20:27:46','91.200.12.*'),(402908,0,'author','2018-03-14 20:27:47','91.200.12.*'),(402909,0,'author','2018-03-14 20:27:48','91.200.12.*'),(402910,0,'author','2018-03-14 20:27:48','91.200.12.*'),(402911,0,'author','2018-03-14 20:27:48','91.200.12.*'),(402912,0,'author','2018-03-14 20:27:49','91.200.12.*'),(402913,0,'author','2018-03-14 20:27:50','91.200.12.*'),(402914,0,'author','2018-03-14 20:27:50','91.200.12.*'),(402915,0,'author','2018-03-14 20:27:51','91.200.12.*'),(402916,0,'author','2018-03-14 20:27:51','91.200.12.*'),(402917,0,'author','2018-03-14 20:27:52','91.200.12.*'),(402918,0,'author','2018-03-14 20:27:52','91.200.12.*'),(402919,0,'author','2018-03-14 20:27:53','91.200.12.*'),(402920,0,'author','2018-03-14 20:27:53','91.200.12.*'),(402921,0,'author','2018-03-14 20:27:54','91.200.12.*'),(402922,0,'author','2018-03-14 20:27:54','91.200.12.*'),(402923,0,'author','2018-03-14 20:27:54','91.200.12.*'),(402924,0,'author','2018-03-14 20:27:55','91.200.12.*'),(402925,0,'author','2018-03-14 20:27:55','91.200.12.*'),(402926,0,'author','2018-03-14 20:27:56','91.200.12.*'),(402927,0,'author','2018-03-14 20:27:57','91.200.12.*'),(402928,0,'author','2018-03-14 20:27:57','91.200.12.*'),(402929,0,'author','2018-03-14 20:27:58','91.200.12.*'),(402930,0,'author','2018-03-14 20:27:58','91.200.12.*'),(402931,0,'author','2018-03-14 20:27:58','91.200.12.*'),(402932,0,'author','2018-03-14 20:28:00','91.200.12.*'),(402933,0,'author','2018-03-14 20:28:00','91.200.12.*'),(402934,0,'author','2018-03-14 20:28:01','91.200.12.*'),(402935,0,'author','2018-03-14 20:28:02','91.200.12.*'),(402936,0,'author','2018-03-14 20:28:03','91.200.12.*'),(402937,0,'author','2018-03-14 20:28:03','91.200.12.*'),(402938,0,'author','2018-03-14 20:28:04','91.200.12.*'),(402939,0,'author','2018-03-14 20:28:05','91.200.12.*'),(402940,0,'author','2018-03-14 20:28:05','91.200.12.*'),(402941,0,'author','2018-03-14 20:28:06','91.200.12.*'),(402942,0,'author','2018-03-14 20:28:07','91.200.12.*'),(402943,0,'author','2018-03-14 20:28:08','91.200.12.*'),(402944,0,'author','2018-03-14 20:28:09','91.200.12.*'),(402945,0,'author','2018-03-14 20:28:09','91.200.12.*'),(402946,0,'author','2018-03-14 20:28:10','91.200.12.*'),(402947,0,'author','2018-03-14 20:28:11','91.200.12.*'),(402948,0,'author','2018-03-14 20:28:11','91.200.12.*'),(402949,0,'author','2018-03-14 20:28:12','91.200.12.*'),(402950,0,'author','2018-03-14 20:28:12','91.200.12.*'),(402951,0,'author','2018-03-14 20:28:13','91.200.12.*'),(402952,0,'author','2018-03-14 20:28:14','91.200.12.*'),(402953,0,'author','2018-03-14 20:28:15','91.200.12.*'),(402954,0,'author','2018-03-14 20:28:15','91.200.12.*'),(402955,0,'author','2018-03-14 20:28:15','91.200.12.*'),(402956,0,'author','2018-03-14 20:28:16','91.200.12.*'),(402957,0,'author','2018-03-14 20:28:17','91.200.12.*'),(402958,0,'author','2018-03-14 20:28:17','91.200.12.*'),(402959,0,'author','2018-03-14 20:28:18','91.200.12.*'),(402960,0,'author','2018-03-14 20:28:20','91.200.12.*'),(402961,0,'author','2018-03-14 20:28:21','91.200.12.*'),(402962,0,'author','2018-03-14 20:28:26','91.200.12.*'),(402963,0,'author','2018-03-14 20:28:26','91.200.12.*'),(402964,0,'author','2018-03-14 20:28:27','91.200.12.*'),(402965,0,'author','2018-03-14 20:28:29','91.200.12.*'),(402966,0,'author','2018-03-14 20:28:29','91.200.12.*'),(402967,0,'author','2018-03-14 20:28:30','91.200.12.*'),(402968,0,'author','2018-03-14 20:28:31','91.200.12.*'),(402969,0,'author','2018-03-14 20:28:32','91.200.12.*'),(402970,0,'author','2018-03-14 20:28:32','91.200.12.*'),(402971,0,'author','2018-03-14 20:28:32','91.200.12.*'),(402972,0,'author','2018-03-14 20:28:33','91.200.12.*'),(402973,0,'author','2018-03-14 20:28:35','91.200.12.*'),(402974,0,'author','2018-03-14 20:28:37','91.200.12.*'),(402975,0,'author','2018-03-14 20:28:38','91.200.12.*'),(402976,0,'author','2018-03-14 20:28:38','91.200.12.*'),(402977,0,'author','2018-03-14 20:28:38','91.200.12.*'),(402978,0,'author','2018-03-14 20:28:39','91.200.12.*'),(402979,0,'author','2018-03-14 20:28:39','91.200.12.*'),(402980,0,'author','2018-03-14 20:28:40','91.200.12.*'),(402981,0,'author','2018-03-14 20:28:41','91.200.12.*'),(402982,0,'author','2018-03-14 20:28:41','91.200.12.*'),(402983,0,'author','2018-03-14 20:28:42','91.200.12.*'),(402984,0,'author','2018-03-14 20:28:43','91.200.12.*'),(402985,0,'author','2018-03-14 20:28:43','91.200.12.*'),(402986,0,'author','2018-03-14 20:28:44','91.200.12.*'),(402987,0,'author','2018-03-14 20:28:44','91.200.12.*'),(402988,0,'author','2018-03-14 20:28:45','91.200.12.*'),(402989,0,'author','2018-03-14 20:28:45','91.200.12.*'),(402990,0,'author','2018-03-14 20:28:46','91.200.12.*'),(402991,0,'author','2018-03-14 20:28:47','91.200.12.*'),(402992,0,'author','2018-03-14 20:28:49','91.200.12.*'),(402993,0,'author','2018-03-14 20:28:50','91.200.12.*'),(402994,0,'author','2018-03-14 20:28:50','91.200.12.*'),(402995,0,'author','2018-03-14 20:28:51','91.200.12.*'),(402996,0,'author','2018-03-14 20:28:52','91.200.12.*'),(402997,0,'author','2018-03-14 20:28:52','91.200.12.*'),(402998,0,'author','2018-03-14 20:28:53','91.200.12.*'),(402999,0,'author','2018-03-14 20:28:53','91.200.12.*'),(403000,0,'author','2018-03-14 20:28:54','91.200.12.*'),(403001,0,'author','2018-03-14 20:28:54','91.200.12.*'),(403002,0,'author','2018-03-14 20:28:55','91.200.12.*'),(403003,0,'author','2018-03-14 20:28:56','91.200.12.*'),(403004,0,'author','2018-03-14 20:28:56','91.200.12.*'),(403005,0,'author','2018-03-14 20:28:56','91.200.12.*'),(403006,0,'author','2018-03-14 20:28:57','91.200.12.*'),(403007,0,'author','2018-03-14 20:28:58','91.200.12.*'),(403008,0,'author','2018-03-14 20:29:00','91.200.12.*'),(403009,0,'author','2018-03-14 20:29:00','91.200.12.*'),(403010,0,'author','2018-03-14 20:29:00','91.200.12.*'),(403011,0,'author','2018-03-14 20:29:01','91.200.12.*'),(403012,0,'author','2018-03-14 20:29:02','91.200.12.*'),(403013,0,'author','2018-03-14 20:29:03','91.200.12.*'),(403014,0,'author','2018-03-14 20:29:03','91.200.12.*'),(403015,0,'author','2018-03-14 20:29:04','91.200.12.*'),(403016,0,'author','2018-03-14 20:29:05','91.200.12.*'),(403017,0,'author','2018-03-14 20:29:12','91.200.12.*'),(403018,0,'author','2018-03-14 20:29:12','91.200.12.*'),(403019,0,'author','2018-03-14 20:29:12','91.200.12.*'),(403020,0,'author','2018-03-14 20:29:13','91.200.12.*'),(403021,0,'author','2018-03-14 20:29:17','91.200.12.*'),(403022,0,'author','2018-03-14 20:29:17','91.200.12.*'),(403023,0,'author','2018-03-14 20:29:18','91.200.12.*'),(403024,0,'author','2018-03-14 20:29:19','91.200.12.*'),(403025,0,'author','2018-03-14 20:29:20','91.200.12.*'),(403026,0,'author','2018-03-14 20:29:20','91.200.12.*'),(403027,0,'author','2018-03-14 20:29:21','91.200.12.*'),(403028,0,'author','2018-03-14 20:29:22','91.200.12.*'),(403029,0,'author','2018-03-14 20:29:23','91.200.12.*'),(403030,0,'author','2018-03-14 20:29:24','91.200.12.*'),(403031,0,'author','2018-03-14 20:29:24','91.200.12.*'),(403032,0,'author','2018-03-14 20:29:25','91.200.12.*'),(403033,0,'author','2018-03-14 20:29:31','91.200.12.*'),(403034,0,'author','2018-03-14 20:29:31','91.200.12.*'),(403035,0,'author','2018-03-14 20:29:32','91.200.12.*'),(403036,0,'author','2018-03-14 20:29:33','91.200.12.*'),(403037,0,'author','2018-03-14 20:29:33','91.200.12.*'),(403038,0,'author','2018-03-14 20:29:34','91.200.12.*'),(403039,0,'author','2018-03-14 20:29:34','91.200.12.*'),(403040,0,'author','2018-03-14 20:29:35','91.200.12.*'),(403041,0,'author','2018-03-14 20:29:36','91.200.12.*'),(403042,0,'author','2018-03-14 20:29:36','91.200.12.*'),(403043,0,'author','2018-03-14 20:29:37','91.200.12.*'),(403044,0,'author','2018-03-14 20:29:37','91.200.12.*'),(403045,0,'author','2018-03-14 20:29:37','91.200.12.*'),(403046,0,'author','2018-03-14 20:29:38','91.200.12.*'),(403047,0,'author','2018-03-14 20:29:39','91.200.12.*'),(403048,0,'author','2018-03-14 20:29:40','91.200.12.*'),(403049,0,'author','2018-03-14 20:29:42','91.200.12.*'),(403050,0,'author','2018-03-14 20:29:43','91.200.12.*'),(403051,0,'author','2018-03-14 20:29:44','91.200.12.*'),(403052,0,'author','2018-03-14 20:29:45','91.200.12.*'),(403053,0,'author','2018-03-14 20:29:46','91.200.12.*'),(403054,0,'author','2018-03-14 20:29:46','91.200.12.*'),(403055,0,'author','2018-03-14 20:29:47','91.200.12.*'),(403056,0,'author','2018-03-14 20:29:48','91.200.12.*'),(403057,0,'author','2018-03-14 20:29:49','91.200.12.*'),(403058,0,'author','2018-03-14 20:29:50','91.200.12.*'),(403059,0,'author','2018-03-14 20:29:50','91.200.12.*'),(403060,0,'author','2018-03-14 20:29:51','91.200.12.*'),(403061,0,'author','2018-03-14 20:29:51','91.200.12.*'),(403062,0,'author','2018-03-14 20:29:52','91.200.12.*'),(403063,0,'author','2018-03-14 20:29:52','91.200.12.*'),(403064,0,'author','2018-03-14 20:29:53','91.200.12.*'),(403065,0,'author','2018-03-14 20:29:55','91.200.12.*'),(403066,0,'author','2018-03-14 20:29:56','91.200.12.*'),(403067,0,'author','2018-03-14 20:29:56','91.200.12.*'),(403068,0,'author','2018-03-14 20:29:57','91.200.12.*'),(403069,0,'author','2018-03-14 20:29:57','91.200.12.*'),(403070,0,'author','2018-03-14 20:29:58','91.200.12.*'),(403071,0,'author','2018-03-14 20:29:59','91.200.12.*'),(403072,0,'author','2018-03-14 20:29:59','91.200.12.*'),(403073,0,'author','2018-03-14 20:30:00','91.200.12.*'),(403074,0,'author','2018-03-14 20:30:00','91.200.12.*'),(403075,0,'author','2018-03-14 20:30:01','91.200.12.*'),(403076,0,'author','2018-03-14 20:30:01','91.200.12.*'),(403077,0,'author','2018-03-14 20:30:01','91.200.12.*'),(403078,0,'author','2018-03-14 20:30:02','91.200.12.*'),(403079,0,'author','2018-03-14 20:30:02','91.200.12.*'),(403080,0,'author','2018-03-14 20:30:03','91.200.12.*'),(403081,0,'author','2018-03-14 20:30:04','91.200.12.*'),(403082,0,'author','2018-03-14 20:30:04','91.200.12.*'),(403083,0,'author','2018-03-14 20:30:05','91.200.12.*'),(403084,0,'author','2018-03-14 20:30:06','91.200.12.*'),(403085,0,'author','2018-03-14 20:30:06','91.200.12.*'),(403086,0,'author','2018-03-14 20:30:07','91.200.12.*'),(403087,0,'author','2018-03-14 20:30:07','91.200.12.*'),(403088,0,'author','2018-03-14 20:30:08','91.200.12.*'),(403089,0,'author','2018-03-14 20:30:10','91.200.12.*'),(403090,0,'author','2018-03-14 20:30:18','91.200.12.*'),(403091,0,'author','2018-03-14 20:30:19','91.200.12.*'),(403092,0,'author','2018-03-14 20:30:19','91.200.12.*'),(403093,0,'author','2018-03-14 20:30:20','91.200.12.*'),(403094,0,'author','2018-03-14 20:30:21','91.200.12.*'),(403095,0,'author','2018-03-14 20:30:21','91.200.12.*'),(403096,0,'author','2018-03-14 20:30:21','91.200.12.*'),(403097,0,'author','2018-03-14 20:30:22','91.200.12.*'),(403098,0,'author','2018-03-14 20:30:23','91.200.12.*'),(403099,0,'author','2018-03-14 20:30:24','91.200.12.*'),(403100,0,'author','2018-03-14 20:30:24','91.200.12.*'),(403101,0,'author','2018-03-14 20:30:25','91.200.12.*'),(403102,0,'author','2018-03-14 20:30:26','91.200.12.*'),(403103,0,'author','2018-03-14 20:30:27','91.200.12.*'),(403104,0,'author','2018-03-14 20:30:32','91.200.12.*'),(403105,0,'author','2018-03-14 20:30:33','91.200.12.*'),(403106,0,'author','2018-03-14 20:30:33','91.200.12.*'),(403107,0,'author','2018-03-14 20:30:34','91.200.12.*'),(403108,0,'author','2018-03-14 20:30:35','91.200.12.*'),(403109,0,'author','2018-03-14 20:30:36','91.200.12.*'),(403110,0,'author','2018-03-14 20:30:36','91.200.12.*'),(403111,0,'author','2018-03-14 20:30:37','91.200.12.*'),(403112,0,'author','2018-03-14 20:30:38','91.200.12.*'),(403113,0,'author','2018-03-14 20:30:38','91.200.12.*'),(403114,0,'author','2018-03-14 20:30:39','91.200.12.*'),(403115,0,'author','2018-03-14 20:30:39','91.200.12.*'),(403116,0,'author','2018-03-14 20:30:40','91.200.12.*'),(403117,0,'author','2018-03-14 20:30:40','91.200.12.*'),(403118,0,'author','2018-03-14 20:30:41','91.200.12.*'),(403119,0,'author','2018-03-14 20:30:42','91.200.12.*'),(403120,0,'author','2018-03-14 20:30:43','91.200.12.*'),(403121,0,'author','2018-03-14 20:30:43','91.200.12.*'),(403122,0,'author','2018-03-14 20:30:43','91.200.12.*'),(403123,0,'author','2018-03-14 20:30:44','91.200.12.*'),(403124,0,'author','2018-03-14 20:30:44','91.200.12.*'),(403125,0,'author','2018-03-14 20:30:45','91.200.12.*'),(403126,0,'author','2018-03-14 20:30:46','91.200.12.*'),(403127,0,'author','2018-03-14 20:30:48','91.200.12.*'),(403128,0,'author','2018-03-14 20:30:49','91.200.12.*'),(403129,0,'author','2018-03-14 20:30:50','91.200.12.*'),(403130,0,'author','2018-03-14 20:30:50','91.200.12.*'),(403131,0,'author','2018-03-14 20:30:51','91.200.12.*'),(403132,0,'author','2018-03-14 20:30:51','91.200.12.*'),(403133,0,'author','2018-03-14 20:30:52','91.200.12.*'),(403134,0,'author','2018-03-14 20:30:52','91.200.12.*'),(403135,0,'author','2018-03-14 20:30:53','91.200.12.*'),(403136,0,'author','2018-03-14 20:30:54','91.200.12.*'),(403137,0,'author','2018-03-14 20:30:54','91.200.12.*'),(403138,0,'author','2018-03-14 20:30:55','91.200.12.*'),(403139,0,'author','2018-03-14 20:30:56','91.200.12.*'),(403140,0,'author','2018-03-14 20:30:56','91.200.12.*'),(403141,0,'author','2018-03-14 20:30:56','91.200.12.*'),(403142,0,'author','2018-03-14 20:30:57','91.200.12.*'),(403143,0,'author','2018-03-14 20:30:57','91.200.12.*'),(403144,0,'author','2018-03-14 20:30:57','91.200.12.*'),(403145,0,'author','2018-03-14 20:30:58','91.200.12.*'),(403146,0,'author','2018-03-14 20:30:58','91.200.12.*'),(403147,0,'author','2018-03-14 20:30:59','91.200.12.*'),(403148,0,'author','2018-03-14 20:31:01','91.200.12.*'),(403149,0,'author','2018-03-14 20:31:01','91.200.12.*'),(403150,0,'author','2018-03-14 20:31:03','91.200.12.*'),(403151,0,'author','2018-03-14 20:31:03','91.200.12.*'),(403152,0,'author','2018-03-14 20:31:04','91.200.12.*'),(403153,0,'author','2018-03-14 20:31:05','91.200.12.*'),(403154,0,'author','2018-03-14 20:31:06','91.200.12.*'),(403155,0,'author','2018-03-14 20:31:06','91.200.12.*'),(403156,0,'author','2018-03-14 20:31:07','91.200.12.*'),(403157,0,'author','2018-03-14 20:31:07','91.200.12.*'),(403158,0,'author','2018-03-14 20:31:08','91.200.12.*'),(403159,0,'author','2018-03-14 20:31:09','91.200.12.*'),(403160,0,'author','2018-03-14 20:31:10','91.200.12.*'),(403161,0,'author','2018-03-14 20:31:12','91.200.12.*'),(403162,0,'author','2018-03-14 20:31:15','91.200.12.*'),(403163,0,'author','2018-03-14 20:31:16','91.200.12.*'),(403164,0,'author','2018-03-14 20:31:17','91.200.12.*'),(403165,0,'author','2018-03-14 20:31:17','91.200.12.*'),(403166,0,'author','2018-03-14 20:31:18','91.200.12.*'),(403167,0,'author','2018-03-14 20:31:23','91.200.12.*'),(403168,0,'author','2018-03-14 20:31:23','91.200.12.*'),(403169,0,'author','2018-03-14 20:31:24','91.200.12.*'),(403170,0,'author','2018-03-14 20:31:25','91.200.12.*'),(403171,0,'author','2018-03-14 20:31:25','91.200.12.*'),(403172,0,'author','2018-03-14 20:31:26','91.200.12.*'),(403173,0,'author','2018-03-14 20:31:26','91.200.12.*'),(403174,0,'author','2018-03-14 20:31:28','91.200.12.*'),(403175,0,'author','2018-03-14 20:31:28','91.200.12.*'),(403176,0,'author','2018-03-14 20:31:29','91.200.12.*'),(403177,0,'author','2018-03-14 20:31:29','91.200.12.*'),(403178,0,'author','2018-03-14 20:31:30','91.200.12.*'),(403179,0,'author','2018-03-14 20:31:30','91.200.12.*'),(403180,0,'author','2018-03-14 20:31:31','91.200.12.*'),(403181,0,'author','2018-03-14 20:31:31','91.200.12.*'),(403182,0,'author','2018-03-14 20:31:32','91.200.12.*'),(403183,0,'author','2018-03-14 20:31:33','91.200.12.*'),(403184,0,'author','2018-03-14 20:31:33','91.200.12.*'),(403185,0,'author','2018-03-14 20:31:34','91.200.12.*'),(403186,0,'author','2018-03-14 20:31:35','91.200.12.*'),(403187,0,'author','2018-03-14 20:31:35','91.200.12.*'),(403188,0,'author','2018-03-14 20:31:36','91.200.12.*'),(403189,0,'author','2018-03-14 20:31:37','91.200.12.*'),(403190,0,'author','2018-03-14 20:31:38','91.200.12.*'),(403191,0,'author','2018-03-14 20:31:42','91.200.12.*'),(403192,0,'author','2018-03-14 20:31:43','91.200.12.*'),(403193,0,'author','2018-03-14 20:31:44','91.200.12.*'),(403194,0,'author','2018-03-14 20:31:44','91.200.12.*'),(403195,0,'author','2018-03-14 20:31:47','91.200.12.*'),(403196,0,'author','2018-03-14 20:31:47','91.200.12.*'),(403197,0,'author','2018-03-14 20:31:47','91.200.12.*'),(403198,0,'author','2018-03-14 20:31:48','91.200.12.*'),(403199,0,'author','2018-03-14 20:31:49','91.200.12.*'),(403200,0,'author','2018-03-14 20:31:50','91.200.12.*'),(403201,0,'author','2018-03-14 20:31:50','91.200.12.*'),(403202,0,'author','2018-03-14 20:31:50','91.200.12.*'),(403203,0,'author','2018-03-14 20:31:51','91.200.12.*'),(403204,0,'author','2018-03-14 20:31:52','91.200.12.*'),(403205,0,'author','2018-03-14 20:31:53','91.200.12.*'),(403206,0,'author','2018-03-14 20:31:53','91.200.12.*'),(403207,0,'author','2018-03-14 20:31:54','91.200.12.*'),(403208,0,'author','2018-03-14 20:31:56','91.200.12.*'),(403209,0,'author','2018-03-14 20:31:57','91.200.12.*'),(403210,0,'author','2018-03-14 20:31:58','91.200.12.*'),(403211,0,'author','2018-03-14 20:31:58','91.200.12.*'),(403212,0,'author','2018-03-14 20:31:59','91.200.12.*'),(403213,0,'author','2018-03-14 20:32:00','91.200.12.*'),(403214,0,'author','2018-03-14 20:32:01','91.200.12.*'),(403215,0,'author','2018-03-14 20:32:01','91.200.12.*'),(403216,0,'author','2018-03-14 20:32:02','91.200.12.*'),(403217,0,'author','2018-03-14 20:32:03','91.200.12.*'),(403218,0,'author','2018-03-14 20:32:04','91.200.12.*'),(403219,0,'author','2018-03-14 20:32:05','91.200.12.*'),(403220,0,'author','2018-03-14 20:32:06','91.200.12.*'),(403221,0,'author','2018-03-14 20:32:07','91.200.12.*'),(403222,0,'author','2018-03-14 20:32:08','91.200.12.*'),(403223,0,'author','2018-03-14 20:32:08','91.200.12.*'),(403224,0,'author','2018-03-14 20:32:09','91.200.12.*'),(403225,0,'author','2018-03-14 20:32:09','91.200.12.*'),(403226,0,'author','2018-03-14 20:32:10','91.200.12.*'),(403227,0,'author','2018-03-14 20:32:11','91.200.12.*'),(403228,0,'author','2018-03-14 20:32:12','91.200.12.*'),(403229,0,'author','2018-03-14 20:32:13','91.200.12.*'),(403230,0,'author','2018-03-14 20:32:15','91.200.12.*'),(403231,0,'author','2018-03-14 20:32:15','91.200.12.*'),(403232,0,'author','2018-03-14 20:32:17','91.200.12.*'),(403233,0,'author','2018-03-14 20:32:17','91.200.12.*'),(403234,0,'author','2018-03-14 20:32:18','91.200.12.*'),(403235,0,'author','2018-03-14 20:32:18','91.200.12.*'),(403236,0,'author','2018-03-14 20:32:19','91.200.12.*'),(403237,0,'author','2018-03-14 20:32:20','91.200.12.*'),(403238,0,'author','2018-03-14 20:32:21','91.200.12.*'),(403239,0,'author','2018-03-14 20:32:21','91.200.12.*'),(403240,0,'author','2018-03-14 20:32:22','91.200.12.*'),(403241,0,'author','2018-03-14 20:32:23','91.200.12.*'),(403242,0,'author','2018-03-14 20:32:23','91.200.12.*'),(403243,0,'author','2018-03-14 20:32:24','91.200.12.*'),(403244,0,'author','2018-03-14 20:32:25','91.200.12.*'),(403245,0,'author','2018-03-14 20:32:25','91.200.12.*'),(403246,0,'author','2018-03-14 20:32:26','91.200.12.*'),(403247,0,'author','2018-03-14 20:32:27','91.200.12.*'),(403248,0,'author','2018-03-14 20:32:27','91.200.12.*'),(403249,0,'author','2018-03-14 20:32:28','91.200.12.*'),(403250,0,'author','2018-03-14 20:32:28','91.200.12.*'),(403251,0,'author','2018-03-14 20:32:29','91.200.12.*'),(403252,0,'author','2018-03-14 20:32:30','91.200.12.*'),(403253,0,'author','2018-03-14 20:32:31','91.200.12.*'),(403254,0,'author','2018-03-14 20:32:31','91.200.12.*'),(403255,0,'author','2018-03-14 20:32:32','91.200.12.*'),(403256,0,'author','2018-03-14 20:32:33','91.200.12.*'),(403257,0,'author','2018-03-14 20:32:33','91.200.12.*'),(403258,0,'author','2018-03-14 20:32:34','91.200.12.*'),(403259,0,'author','2018-03-14 20:32:35','91.200.12.*'),(403260,0,'author','2018-03-14 20:32:37','91.200.12.*'),(403261,0,'author','2018-03-14 20:32:37','91.200.12.*'),(403262,0,'author','2018-03-14 20:32:38','91.200.12.*'),(403263,0,'author','2018-03-14 20:32:38','91.200.12.*'),(403264,0,'author','2018-03-14 20:32:39','91.200.12.*'),(403265,0,'author','2018-03-14 20:32:40','91.200.12.*'),(403266,0,'author','2018-03-14 20:32:40','91.200.12.*'),(403267,0,'author','2018-03-14 20:32:41','91.200.12.*'),(403268,0,'author','2018-03-14 20:32:41','91.200.12.*'),(403269,0,'author','2018-03-14 20:32:41','91.200.12.*'),(403270,0,'author','2018-03-14 20:32:42','91.200.12.*'),(403271,0,'author','2018-03-14 20:32:43','91.200.12.*'),(403272,0,'author','2018-03-14 20:32:43','91.200.12.*'),(403273,0,'author','2018-03-14 20:32:43','91.200.12.*'),(403274,0,'author','2018-03-14 20:32:44','91.200.12.*'),(403275,0,'author','2018-03-14 20:32:44','91.200.12.*'),(403276,0,'author','2018-03-14 20:32:45','91.200.12.*'),(403277,0,'author','2018-03-14 20:32:46','91.200.12.*'),(403278,0,'author','2018-03-14 20:32:46','91.200.12.*'),(403279,0,'author','2018-03-14 20:32:47','91.200.12.*'),(403280,0,'author','2018-03-14 20:32:47','91.200.12.*'),(403281,0,'author','2018-03-14 20:32:48','91.200.12.*'),(403282,0,'author','2018-03-14 20:32:48','91.200.12.*'),(403283,0,'author','2018-03-14 20:32:49','91.200.12.*'),(403284,0,'author','2018-03-14 20:32:49','91.200.12.*'),(403285,0,'author','2018-03-14 20:32:50','91.200.12.*'),(403286,0,'author','2018-03-14 20:32:50','91.200.12.*'),(403287,0,'author','2018-03-14 20:32:51','91.200.12.*'),(403288,0,'author','2018-03-14 20:32:52','91.200.12.*'),(403289,0,'author','2018-03-14 20:32:52','91.200.12.*'),(403290,0,'author','2018-03-14 20:32:55','91.200.12.*'),(403291,0,'author','2018-03-14 20:33:00','91.200.12.*'),(403292,0,'author','2018-03-14 20:33:05','91.200.12.*'),(403293,0,'author','2018-03-14 20:33:05','91.200.12.*'),(403294,0,'author','2018-03-14 20:33:06','91.200.12.*'),(403295,0,'author','2018-03-14 20:33:06','91.200.12.*'),(403296,0,'author','2018-03-14 20:33:07','91.200.12.*'),(403297,0,'author','2018-03-14 20:33:08','91.200.12.*'),(403298,0,'author','2018-03-14 20:33:08','91.200.12.*'),(403299,0,'author','2018-03-14 20:33:09','91.200.12.*'),(403300,0,'author','2018-03-14 20:33:09','91.200.12.*'),(403301,0,'author','2018-03-14 20:33:10','91.200.12.*'),(403302,0,'author','2018-03-14 20:33:11','91.200.12.*'),(403303,0,'author','2018-03-14 20:33:11','91.200.12.*'),(403304,0,'author','2018-03-14 20:33:12','91.200.12.*'),(403305,0,'author','2018-03-14 20:33:12','91.200.12.*'),(403306,0,'author','2018-03-14 20:33:13','91.200.12.*'),(403307,0,'author','2018-03-14 20:33:13','91.200.12.*'),(403308,0,'author','2018-03-14 20:33:14','91.200.12.*'),(403309,0,'author','2018-03-14 20:33:14','91.200.12.*'),(403310,0,'author','2018-03-14 20:33:15','91.200.12.*'),(403311,0,'author','2018-03-14 20:33:15','91.200.12.*'),(403312,0,'author','2018-03-14 20:33:16','91.200.12.*'),(403313,0,'author','2018-03-14 20:33:16','91.200.12.*'),(403314,0,'author','2018-03-14 20:33:17','91.200.12.*'),(403315,0,'author','2018-03-14 20:33:17','91.200.12.*'),(403316,0,'author','2018-03-14 20:33:18','91.200.12.*'),(403317,0,'author','2018-03-14 20:33:19','91.200.12.*'),(403318,0,'author','2018-03-14 20:33:19','91.200.12.*'),(403319,0,'author','2018-03-14 20:33:20','91.200.12.*'),(403320,0,'author','2018-03-14 20:33:21','91.200.12.*'),(403321,0,'author','2018-03-14 20:33:23','91.200.12.*'),(403322,0,'author','2018-03-14 20:33:23','91.200.12.*'),(403323,0,'author','2018-03-14 20:33:24','91.200.12.*'),(403324,0,'author','2018-03-14 20:33:25','91.200.12.*'),(403325,0,'author','2018-03-14 20:33:25','91.200.12.*'),(403326,0,'author','2018-03-14 20:33:26','91.200.12.*'),(403327,0,'author','2018-03-14 20:33:26','91.200.12.*'),(403328,0,'author','2018-03-14 20:33:27','91.200.12.*'),(403329,0,'author','2018-03-14 20:33:28','91.200.12.*'),(403330,0,'author','2018-03-14 20:33:29','91.200.12.*'),(403331,0,'author','2018-03-14 20:33:30','91.200.12.*'),(403332,0,'author','2018-03-14 20:33:31','91.200.12.*'),(403333,0,'author','2018-03-14 20:33:32','91.200.12.*'),(403334,0,'author','2018-03-14 20:33:33','91.200.12.*'),(403335,0,'author','2018-03-14 20:33:33','91.200.12.*'),(403336,0,'author','2018-03-14 20:33:34','91.200.12.*'),(403337,0,'author','2018-03-14 20:33:34','91.200.12.*'),(403338,0,'author','2018-03-14 20:33:35','91.200.12.*'),(403339,0,'author','2018-03-14 20:33:35','91.200.12.*'),(403340,0,'author','2018-03-14 20:33:37','91.200.12.*'),(403341,0,'author','2018-03-14 20:33:48','91.200.12.*'),(403342,0,'author','2018-03-14 20:33:56','91.200.12.*'),(403343,0,'author','2018-03-14 20:33:58','91.200.12.*'),(403344,0,'author','2018-03-14 20:34:03','91.200.12.*'),(403345,0,'author','2018-03-14 20:34:09','91.200.12.*'),(403346,1,'fisawards','2018-03-14 21:36:23','91.200.12.*'),(403347,0,'admin','2018-03-14 21:59:23','123.57.254.*'),(403348,0,'admin','2018-03-14 22:38:14','123.57.254.*'),(403349,0,'admin','2018-03-14 22:51:23','123.57.254.*'),(403350,0,'admin','2018-03-14 23:30:24','123.57.254.*'),(403351,0,'admin','2018-03-14 23:30:45','123.57.254.*'),(403352,0,'admin','2018-03-15 01:54:21','123.57.254.*'),(403353,0,'admin','2018-03-15 02:20:49','123.57.254.*'),(403354,0,'admin','2018-03-15 02:47:20','123.57.254.*'),(403355,0,'admin','2018-03-15 03:00:23','123.57.254.*'),(403356,0,'admin','2018-03-15 03:00:48','123.57.254.*'),(403357,0,'admin','2018-03-15 03:27:00','123.57.254.*'),(403358,1,'fisawards','2018-03-15 04:05:42','91.200.12.*'),(403359,0,'admin','2018-03-15 04:19:24','123.57.254.*'),(403360,0,'admin','2018-03-15 05:25:31','123.57.254.*'),(403361,0,'admin','2018-03-15 05:38:35','123.57.254.*'),(403362,0,'admin','2018-03-15 06:19:03','123.57.254.*'),(403363,0,'admin','2018-03-15 06:44:50','123.57.254.*'),(403364,0,'admin','2018-03-15 06:46:00','123.57.254.*'),(403365,0,'admin','2018-03-15 07:53:38','123.57.254.*'),(403366,1,'fisawards','2018-03-15 08:15:52','213.140.64.*'),(403367,1,'fisawards','2018-03-15 08:15:52','92.243.228.*'),(403368,0,'admin','2018-03-15 08:20:56','123.57.254.*'),(403369,1,'fisawards','2018-03-15 08:28:30','80.255.7.*'),(403370,0,'admin','2018-03-15 08:48:14','123.57.254.*'),(403371,0,'admin','2018-03-15 09:10:46','123.57.254.*'),(403372,0,'admin','2018-03-15 09:29:10','123.57.254.*'),(403373,0,'admin','2018-03-15 10:09:59','123.57.254.*'),(403374,0,'admin','2018-03-15 11:37:25','123.57.254.*'),(403375,0,'admin','2018-03-15 11:50:48','123.57.254.*'),(403376,0,'admin','2018-03-15 12:17:34','123.57.254.*'),(403377,0,'admin','2018-03-15 12:44:22','123.57.254.*'),(403378,0,'admin','2018-03-15 14:18:37','123.57.254.*'),(403379,0,'admin','2018-03-15 14:59:12','123.57.254.*');
/*!40000 ALTER TABLE `wp_aiowps_failed_logins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_aiowps_global_meta`
--
DROP TABLE IF EXISTS `wp_aiowps_global_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_aiowps_global_meta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`date_time` datetime NOT NULL DEFAULT '1000-10-10 10: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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_aiowps_global_meta`
--
LOCK TABLES `wp_aiowps_global_meta` WRITE;
/*!40000 ALTER TABLE `wp_aiowps_global_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_aiowps_global_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_aiowps_login_activity`
--
DROP TABLE IF EXISTS `wp_aiowps_login_activity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 '1000-10-10 10:00:00',
`logout_date` datetime NOT NULL DEFAULT '1000-10-10 10: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=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_aiowps_login_activity`
--
LOCK TABLES `wp_aiowps_login_activity` WRITE;
/*!40000 ALTER TABLE `wp_aiowps_login_activity` DISABLE KEYS */;
INSERT INTO `wp_aiowps_login_activity` VALUES (1,1,'fisawards','2017-02-08 08:50:28','2017-02-08 08:58:09','217.206.184.94','',''),(2,1,'fisawards','2017-02-13 17:00:17','0000-00-00 00:00:00','217.206.184.94','',''),(3,1,'fisawards','2017-03-07 10:07:24','0000-00-00 00:00:00','217.206.184.94','',''),(4,1,'fisawards','2017-10-23 08:41:53','0000-00-00 00:00:00','217.206.184.92','',''),(5,1,'fisawards','2017-10-31 10:43:39','0000-00-00 00:00:00','217.206.184.92','',''),(6,1,'fisawards','2017-11-09 15:51:31','0000-00-00 00:00:00','217.206.184.92','',''),(7,1,'fisawards','2017-11-10 13:18:58','0000-00-00 00:00:00','217.206.184.92','',''),(8,1,'fisawards','2017-11-20 12:15:30','0000-00-00 00:00:00','217.206.184.92','',''),(9,1,'fisawards','2017-11-21 15:31:18','0000-00-00 00:00:00','217.206.184.92','',''),(10,1,'fisawards','2017-11-23 10:00:26','0000-00-00 00:00:00','217.206.184.92','',''),(11,1,'fisawards','2018-03-15 16:10:32','0000-00-00 00:00:00','185.175.113.70','','');
/*!40000 ALTER TABLE `wp_aiowps_login_activity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_aiowps_login_lockdown`
--
DROP TABLE IF EXISTS `wp_aiowps_login_lockdown`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 '1000-10-10 10:00:00',
`release_date` datetime NOT NULL DEFAULT '1000-10-10 10: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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_aiowps_login_lockdown`
--
LOCK TABLES `wp_aiowps_login_lockdown` WRITE;
/*!40000 ALTER TABLE `wp_aiowps_login_lockdown` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_aiowps_login_lockdown` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_aiowps_permanent_block`
--
DROP TABLE IF EXISTS `wp_aiowps_permanent_block`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 '1000-10-10 10:00:00',
`unblock` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_aiowps_permanent_block`
--
LOCK TABLES `wp_aiowps_permanent_block` WRITE;
/*!40000 ALTER TABLE `wp_aiowps_permanent_block` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_aiowps_permanent_block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_cerber_files`
--
DROP TABLE IF EXISTS `wp_cerber_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_cerber_files` (
`scan_id` int(10) unsigned NOT NULL,
`scan_type` int(10) unsigned NOT NULL DEFAULT 1,
`scan_mode` int(10) unsigned NOT NULL DEFAULT 0,
`scan_status` int(10) unsigned NOT NULL DEFAULT 0,
`file_status` int(10) unsigned NOT NULL DEFAULT 0,
`file_name_hash` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`file_name` text NOT NULL,
`file_type` int(10) unsigned NOT NULL DEFAULT 0,
`file_hash` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`file_md5` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`file_hash_repo` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`hash_match` int(10) unsigned NOT NULL DEFAULT 0,
`file_size` bigint(20) unsigned NOT NULL DEFAULT 0,
`file_perms` int(11) NOT NULL DEFAULT 0,
`file_writable` int(10) unsigned NOT NULL DEFAULT 0,
`file_mtime` int(10) unsigned NOT NULL DEFAULT 0,
`file_ext` varchar(255) NOT NULL DEFAULT '',
`extra` text NOT NULL,
PRIMARY KEY (`scan_id`,`file_name_hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_cerber_files`
--
LOCK TABLES `wp_cerber_files` WRITE;
/*!40000 ALTER TABLE `wp_cerber_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_cerber_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_cerber_sets`
--
DROP TABLE IF EXISTS `wp_cerber_sets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_cerber_sets` (
`the_key` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`the_id` bigint(20) NOT NULL DEFAULT 0,
`the_value` longtext NOT NULL,
`expires` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`the_key`,`the_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_cerber_sets`
--
LOCK TABLES `wp_cerber_sets` WRITE;
/*!40000 ALTER TABLE `wp_cerber_sets` DISABLE KEYS */;
INSERT INTO `wp_cerber_sets` VALUES ('garbage_collector',0,'1624621989',0),('_background_tasks',0,'a:1:{s:40:\"d5e690918740ad0fcf9adc87b81a1182c28dc8ed\";a:1:{s:4:\"func\";s:23:\"cerber_upgrade_deferred\";}}',0),('_cerberkey_',0,'a:3:{i:0;s:32:\"61fa841af87d560a5ebf725c5f5ffab4\";i:1;i:1624621989;i:4;s:40:\"SK//JOST3K5XAPEQC291BZHY7MWGR6FUL0NVDI84\";}',0);
/*!40000 ALTER TABLE `wp_cerber_sets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_cerber_uss`
--
DROP TABLE IF EXISTS `wp_cerber_uss`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_cerber_uss` (
`user_id` bigint(20) unsigned NOT NULL,
`ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`started` int(10) unsigned NOT NULL,
`expires` int(10) unsigned NOT NULL,
`session_id` char(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`wp_session_token` varchar(250) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_cerber_uss`
--
LOCK TABLES `wp_cerber_uss` WRITE;
/*!40000 ALTER TABLE `wp_cerber_uss` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_cerber_uss` 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_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_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 */;
/*!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`)
) ENGINE=InnoDB AUTO_INCREMENT=37937 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://fisawards.co.uk','yes'),(2,'home','http://fisawards.co.uk','yes'),(3,'blogname','FIS Property Advice','yes'),(4,'blogdescription','Worldwide Property Services','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','zoe.allen@vanillacircus.co.uk','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','','no'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','','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','','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/%postname%','yes'),(29,'rewrite_rules','a:94:{s:34:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml$\";s:40:\"index.php?xml_sitemap=params=$matches[2]\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml\\.gz$\";s:49:\"index.php?xml_sitemap=params=$matches[2];zip=true\";s:35:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html$\";s:50:\"index.php?xml_sitemap=params=$matches[2];html=true\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html.gz$\";s:59:\"index.php?xml_sitemap=params=$matches[2];html=true;zip=true\";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: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: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_plugins1','a:7:{i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:37:\"head-footer-code/head-footer-code.php\";i:3;s:63:\"smntcs-google-webmaster-tools/smntcs-google-webmaster-tools.php\";i:4;s:29:\"spam-captcha/spam-captcha.php\";i:5;s:57:\"universal-google-analytics/universal-google-analytics.php\";i:6;s:24:\"wordpress-seo/wp-seo.php\";i:7;s:53:\"wp-meta-and-date-remover/wp-meta-and-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','businessx','yes'),(41,'stylesheet','businessx','yes'),(42,'comment_whitelist','','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','','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','1','yes'),(70,'close_comments_days_old','1','yes'),(71,'thread_comments','','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:3:{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;i:4;a:4:{s:5:\"title\";s:16:\"Award Categories\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}}','yes'),(79,'widget_text','a:5:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:312:\"\r\n<!-- START ADVERTISER: Silentnight from affiliatewindow.com -->\r\n\r\n<a href=\"https://www.awin1.com/cread.php?s=645919&v=7686&q=312081&r=312035\">\r\n <img src=\"https://www.awin1.com/cshow.php?s=645919&v=7686&q=312081&r=312035\" border=\"0\">\r\n</a>\r\n\r\n<!-- END ADVERTISER: Silentnight from affiliatewindow.com -->\r\n\";s:6:\"filter\";b:0;}i:5;a:3:{s:5:\"title\";s:23:\"Send us your questions!\";s:4:\"text\";s:280:\"<b>Tel:</b> 0800 4937 1876\r\n<b>Mail:</b> mail@fisawards.co.uk\r\n<b>Address:</b> Blythe Valley Park, Shirley, Solihull, West Midlands, B90 8AJ\r\n<br>\r\nFor property advice in London, check out <a href=\"http://www.wearespartacus.org.uk \" target=\"blank\">www.wearespartacus.org.uk </a>\r\n\";s:6:\"filter\";b:1;}i:7;a:3:{s:5:\"title\";s:21:\"Commercial Properties\";s:4:\"text\";s:602:\"<p>Our property advice also covers commercial properties, as well as residential. Commercial locations include offices, warehouses and builders sites.<br>\r\n To get the best out of your property when selling, we suggest hiring a cleaning company to clear away rubbish and make the area look brand new. A professional, commercial cleaning agency can clean carpets, windows and even washrooms - this removes all aspects of bacteria and improves overall hygiene of the building.<br>\r\n <a href=\"http://www.smartcleanservices.co.uk/\">For commercial cleaning in Brighton, visit Smart Clean</a>.</p>\r\n\";s:6:\"filter\";b:1;}}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:3:{s:29:\"spam-captcha/spam-captcha.php\";a:2:{i:0;s:12:\"spam_captcha\";i:1;s:20:\"uninstall_removedata\";}s:33:\"import-html-pages/html-import.php\";s:26:\"html_import_remove_options\";s:23:\"wp-cerber/wp-cerber.php\";s:13:\"cerber_finito\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:66:{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:20:\"wpseo_manage_options\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";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;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:37:{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:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','yes'),(95,'widget_recent-posts','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:3:{s:5:\"title\";s:11:\"Awards 2017\";s:6:\"number\";i:5;s:9:\"show_date\";b:0;}}','yes'),(96,'widget_recent-comments','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:2:{s:5:\"title\";s:18:\"Latest Nominations\";s:6:\"number\";i:5;}}','yes'),(97,'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'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:13:\"sidebar-index\";a:2:{i:0;s:6:\"text-5\";i:1;s:6:\"text-3\";}s:14:\"sidebar-single\";N;s:12:\"sidebar-page\";N;s:16:\"sidebar-footer-1\";a:2:{i:0;s:8:\"search-4\";i:1;s:6:\"text-7\";}s:16:\"sidebar-footer-2\";a:1:{i:0;s:14:\"recent-posts-4\";}s:16:\"sidebar-footer-3\";a:1:{i:0;s:12:\"categories-4\";}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{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,'cron','a:14:{i:1607720536;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1607724168;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1607764161;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:1607765169;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:1607767377;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:1607771583;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:1607777579;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1624358146;a:1:{s:23:\"wordfence_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1624358149;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1624358159;a:2:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1624621984;a:1:{s:40:\"wordfence_completeCoreUpdateNotification\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1624621987;a:2:{s:24:\"aiowps_hourly_cron_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}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:1624896000;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(112,'_site_transient_timeout_browser_624a74c077a47cf0aab8606325ccd24d','1485338571','no'),(113,'_site_transient_browser_624a74c077a47cf0aab8606325ccd24d','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"50.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'),(115,'can_compress_scripts','0','no'),(125,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:6:\"4.7.19\";s:7:\"current\";s:5:\"4.7.3\";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:1604052848;s:5:\"retry\";b:0;}','no'),(126,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:29:\"zoe.allen@vanillacircus.co.uk\";s:7:\"version\";s:6:\"4.7.19\";s:9:\"timestamp\";i:1604009177;}','no'),(136,'recently_activated','a:0:{}','yes'),(137,'aiowpsec_db_version','1.9','yes'),(138,'aio_wp_security_configs','a:93:{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:29:\"zoe.allen@vanillacircus.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:\"jmce3dzoaoovc61xpo6f\";s:26:\"aiowps_enable_whitelisting\";s:0:\"\";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:\"ebxlc4ekx0ut810sab5n\";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:29:\"zoe.allen@vanillacircus.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:0:\"\";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:0:\"\";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:29:\"zoe.allen@vanillacircus.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:35:\"aiowps_lockdown_enable_whitelisting\";s:0:\"\";s:36:\"aiowps_lockdown_allowed_ip_addresses\";s:0:\"\";s:35:\"aiowps_enable_registration_honeypot\";s:0:\"\";s:28:\"aiowps_block_fake_googlebots\";s:1:\"1\";s:31:\"aiowps_enable_woo_login_captcha\";s:0:\"\";s:34:\"aiowps_enable_woo_register_captcha\";s:0:\"\";s:38:\"aiowps_enable_woo_lostpassword_captcha\";s:0:\"\";s:27:\"aiowps_max_file_upload_size\";s:2:\"10\";s:32:\"aiowps_place_custom_rules_at_top\";s:0:\"\";s:33:\"aiowps_enable_bp_register_captcha\";s:0:\"\";s:35:\"aiowps_enable_bbp_new_topic_captcha\";s:0:\"\";s:42:\"aiowps_disallow_unauthorized_rest_requests\";s:0:\"\";s:25:\"aiowps_ip_retrieve_method\";s:1:\"0\";s:25:\"aiowps_recaptcha_site_key\";s:0:\"\";s:27:\"aiowps_recaptcha_secret_key\";s:0:\"\";s:24:\"aiowps_default_recaptcha\";s:0:\"\";}','yes'),(139,'wpcf7','a:2:{s:7:\"version\";s:5:\"4.9.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1484733787;s:7:\"version\";s:3:\"4.6\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(140,'spam_captcha_options','a:27:{s:12:\"contactform7\";b:0;s:16:\"hash_sha1_plugin\";s:40:\"ccb524225ee208fba3b2bc7cf7be90296d1bb965\";s:11:\"captcha_css\";s:43:\".captcha_image {\n \n}\n.captcha_comment {\n \n}\";s:14:\"captcha_enable\";b:0;s:14:\"flush_nb_jours\";i:30;s:15:\"flush_max_entry\";i:10000;s:14:\"akismet_enable\";b:0;s:10:\"akismet_id\";s:0:\"\";s:14:\"captcha_logged\";b:0;s:12:\"captcha_text\";b:1;s:16:\"captcha_addition\";b:0;s:14:\"captcha_number\";i:5;s:13:\"captcha_width\";i:200;s:14:\"captcha_height\";i:80;s:13:\"captcha_angle\";i:35;s:12:\"captcha_size\";i:30;s:18:\"captcha_background\";s:6:\"555555\";s:18:\"captcha_font_color\";s:6:\"BBBBBB\";s:23:\"captcha_color_variation\";b:1;s:13:\"captcha_noise\";b:1;s:34:\"captcha_color_variation_percentage\";i:10;s:12:\"captcha_html\";s:183:\"<div class=\'captcha_image\'> \n<p>Please type the characters of this captcha image in the input box</p>\n%image% \n<input type=\'text\' id=\'captcha_comment\' name=\'captcha_comment\' />\n</div>\";s:12:\"captcha_wave\";b:0;s:19:\"captcha_wave_period\";i:20;s:22:\"captcha_wave_amplitude\";i:10;s:14:\"ban_ip_cookies\";b:0;s:14:\"ban_ip_akismet\";b:0;}','yes'),(141,'plugin_error_on_activation','','yes'),(142,'wpmdr_css','/* Remove meta from post */\n.entry-meta {\ndisplay:none !important;\n}\n\n/* Remove meta from home page */\n.home .entry-meta { \ndisplay: none; \n}\n/* WPTheme 2015 Metadata Removal */\n.entry-footer {\ndisplay:none !important;\n}\n\n/* WPTheme 2015 Metadata Removal */\n.home .entry-footer { \ndisplay: none; \n}','yes'),(143,'wpmdr_disable_php','0','yes'),(144,'wpmdr_disable_css','0','yes'),(145,'wpseo','a:25:{s:14:\"blocking_files\";a:0:{}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:5:\"5.7.1\";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:1484733787;}','yes'),(146,'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'),(147,'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'),(148,'wpseo_social','a:20:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"24e396e8fed58394f707993a5c879572\";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'),(149,'wpseo_rss','a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}','yes'),(150,'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'),(151,'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'),(152,'wpseo_flush_rewrite','1','yes'),(156,'coreSLframework_options','a:2:{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\";}}s:11:\"debug_level\";i:3;}','yes'),(157,'wpseo_sitemap_1_cache_validator','46v8J','no'),(158,'wpseo_sitemap_page_cache_validator','4DcLj','no'),(159,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487005569;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'),(1058,'wpseo_sitemap_post_cache_validator','46v9l','no'),(1059,'wpseo_sitemap_revision_cache_validator','5qMyy','no'),(1060,'wpseo_sitemap_category_cache_validator','46v8V','no'),(1067,'wpseo_sitemap_cache_validator_global','3NNeT','no'),(1069,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1070,'universal_google_analytics_tracking_id','UA-91866341-1','yes'),(1078,'sm_options','a:52:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:9:\"sm_b_ping\";b:1;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_pingmsn\";b:1;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:0;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.59999999999999998;s:15:\"sm_pr_posts_min\";d:0.20000000000000001;s:11:\"sm_pr_pages\";d:0.59999999999999998;s:10:\"sm_pr_cats\";d:0.29999999999999999;s:10:\"sm_pr_arch\";d:0.29999999999999999;s:10:\"sm_pr_auth\";d:0.29999999999999999;s:10:\"sm_pr_tags\";d:0.29999999999999999;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1487005514;s:16:\"sm_i_hide_survey\";b:0;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";s:20:\"4419803f79d2f00066d8\";s:13:\"sm_i_lastping\";i:1511432012;s:16:\"sm_i_supportfeed\";b:1;s:22:\"sm_i_supportfeed_cache\";i:1520877914;}','yes'),(1079,'sm_status','O:28:\"GoogleSitemapGeneratorStatus\":4:{s:39:\"\0GoogleSitemapGeneratorStatus\0startTime\";d:1511432011.8235259;s:37:\"\0GoogleSitemapGeneratorStatus\0endTime\";d:1511432012.1463659;s:41:\"\0GoogleSitemapGeneratorStatus\0pingResults\";a:2:{s:6:\"google\";a:5:{s:9:\"startTime\";d:1511432011.8555939;s:7:\"endTime\";d:1511432011.943939;s:7:\"success\";b:1;s:3:\"url\";s:97:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=http%3A%2F%2Ffisawards.co.uk%2Fsitemap.xml\";s:4:\"name\";s:6:\"Google\";}s:4:\"bing\";a:5:{s:9:\"startTime\";d:1511432011.9788539;s:7:\"endTime\";d:1511432012.113596;s:7:\"success\";b:1;s:3:\"url\";s:90:\"http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2Ffisawards.co.uk%2Fsitemap.xml\";s:4:\"name\";s:4:\"Bing\";}}s:38:\"\0GoogleSitemapGeneratorStatus\0autoSave\";b:1;}','no'),(1089,'current_theme','Businessx','yes'),(1090,'theme_mods_minamaze','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487005639;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:0:{}}}}','yes'),(1091,'theme_switched','','yes'),(1092,'thinkup_redux_variables','a:28:{s:22:\"thinkup_general_layout\";s:1:\"0\";s:32:\"thinkup_general_breadcrumbswitch\";s:1:\"0\";s:35:\"thinkup_general_breadcrumbdelimeter\";s:1:\"/\";s:23:\"thinkup_homepage_layout\";s:1:\"0\";s:29:\"thinkup_homepage_sliderswitch\";s:7:\"option1\";s:34:\"thinkup_homepage_sliderpresetwidth\";s:1:\"1\";s:35:\"thinkup_homepage_sliderpresetheight\";s:3:\"350\";s:28:\"thinkup_homepage_introswitch\";s:1:\"0\";s:30:\"thinkup_homepage_sectionswitch\";s:1:\"1\";s:27:\"thinkup_header_searchswitch\";s:1:\"0\";s:27:\"thinkup_header_socialswitch\";s:1:\"0\";s:29:\"thinkup_header_facebookswitch\";s:1:\"0\";s:33:\"thinkup_header_facebookiconswitch\";s:1:\"0\";s:28:\"thinkup_header_twitterswitch\";s:1:\"0\";s:32:\"thinkup_header_twittericonswitch\";s:1:\"0\";s:27:\"thinkup_header_googleswitch\";s:1:\"0\";s:31:\"thinkup_header_googleiconswitch\";s:1:\"0\";s:29:\"thinkup_header_linkedinswitch\";s:1:\"0\";s:33:\"thinkup_header_linkediniconswitch\";s:1:\"0\";s:27:\"thinkup_header_flickrswitch\";s:1:\"0\";s:31:\"thinkup_header_flickriconswitch\";s:1:\"0\";s:28:\"thinkup_header_youtubeswitch\";s:1:\"0\";s:32:\"thinkup_header_youtubeiconswitch\";s:1:\"0\";s:24:\"thinkup_header_rssswitch\";s:1:\"0\";s:28:\"thinkup_header_rssiconswitch\";s:1:\"0\";s:21:\"thinkup_footer_layout\";s:1:\"0\";s:27:\"thinkup_footer_widgetswitch\";s:1:\"0\";s:19:\"thinkup_post_layout\";s:7:\"option1\";}','yes'),(1093,'thinkup_redux_variables-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1487005570;}','yes'),(1095,'theme_mods_louis','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487005672;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:12:\"louis-footer\";N;s:14:\"louis-features\";N;}}}','yes'),(1096,'theme_mods_generatepress','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487005742;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";N;s:6:\"header\";N;s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;s:8:\"footer-4\";N;s:8:\"footer-5\";N;s:10:\"footer-bar\";N;}}}','yes'),(1097,'generate_update_core_typography','true','yes'),(1100,'generate_settings','a:1:{s:12:\"post_content\";s:7:\"excerpt\";}','yes'),(1104,'theme_mods_primer','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487005800;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";N;s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;s:4:\"hero\";N;}}}','yes'),(1106,'theme_mods_eleganto','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487005834;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";N;s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;s:4:\"hero\";N;}}}','yes'),(1107,'theme_switched_via_customizer','','yes'),(1108,'customize_stashed_theme_mods','a:1:{s:6:\"primer\";a:3:{s:12:\"header_image\";a:3:{s:5:\"value\";s:13:\"remove-header\";s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;}s:17:\"header_image_data\";a:3:{s:5:\"value\";s:13:\"remove-header\";s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;}s:10:\"page_width\";a:3:{s:5:\"value\";s:5:\"fixed\";s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;}}}','no'),(1118,'widget_west_social_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1119,'widget_west_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1120,'widget_west-recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1121,'widget_west_video_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1122,'theme_mods_west','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487006623;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";N;s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;s:4:\"hero\";N;}}}','yes'),(1127,'_site_transient_timeout_wporg_theme_feature_list','1487016687','no'),(1128,'_site_transient_wporg_theme_feature_list','a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}','no'),(1136,'theme_mods_businessx','a:18:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"homepage_heading\";s:28:\"Worldwide Property Solutions\";s:12:\"header_image\";s:70:\"http://fisawards.co.uk/wp-content/uploads/2017/02/cropped-business.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:36;s:3:\"url\";s:70:\"http://fisawards.co.uk/wp-content/uploads/2017/02/cropped-business.jpg\";s:13:\"thumbnail_url\";s:70:\"http://fisawards.co.uk/wp-content/uploads/2017/02/cropped-business.jpg\";s:6:\"height\";i:799;s:5:\"width\";i:1900;}s:22:\"posts_single_hide_meta\";i:1;s:29:\"posts_single_hide_meta_author\";i:1;s:27:\"posts_single_hide_meta_date\";i:1;s:31:\"posts_single_hide_meta_category\";i:1;s:24:\"posts_single_comments_nr\";i:1;s:24:\"posts_single_tags_bottom\";i:1;s:26:\"posts_index_hide_meta_date\";i:1;s:30:\"posts_index_hide_meta_category\";i:1;s:26:\"posts_index_excerpt_length\";s:2:\"45\";s:26:\"posts_index_excerpt_ending\";s:12:\"read more...\";s:25:\"footer_credits_creds_line\";s:131:\"© <a href=\"http://fisawards.co.uk/\">FIS Awards</a> 2017. | Address: Blythe Valley Park, Shirley, Solihull, West Midlands, B90 8AJ\";s:16:\"preloader_enable\";i:1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}}','yes'),(1152,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1860,'_site_transient_timeout_browser_f731f7616ab74b84eb6e37a4dee2a379','1489486044','no'),(1861,'_site_transient_browser_f731f7616ab74b84eb6e37a4dee2a379','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"51.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'),(9606,'_transient_timeout_feed_08a9370cca8e4bda25c11f8557e93830','1509041958','no'),(9607,'_transient_feed_08a9370cca8e4bda25c11f8557e93830','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:23:\"\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:39:\"Google Sitemap Generator Support Topics\";s: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:39:\"Google Sitemap Generator Support Topics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Wed, 02 Jul 2014 7:54:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:3:{i:0;a:6:{s:4:\"data\";s:19:\"\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:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Common error messages in Google Webmaster Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://www.arnebrachhold.de/redir/sitemap-feed-gwterrs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"C2VZYxeTESzcCF2IhS13\";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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Apr 2014 00:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:19:\"\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:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"How to move your sitemap to the root of your domain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://www.arnebrachhold.de/redir/sitemap-feed-movesm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"C2VZYxeTESzcCF2IhS12\";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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Apr 2014 00:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:19:\"\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:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Introducing a new format for your sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://www.arnebrachhold.de/redir/sitemap-feed-newformat/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"C2VZYxeTESzcCF2IhS1l\";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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Apr 2014 00:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:4:\"date\";s:29:\"Thu, 19 Oct 2017 18:19:16 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=utf-8\";s:10:\"set-cookie\";s:133:\"__cfduid=d101e35bf62fc4d9efc9d164975e067c11508437156; expires=Fri, 19-Oct-18 18:19:16 GMT; path=/; domain=.arnebrachhold.de; HttpOnly\";s:13:\"cache-control\";s:23:\"public, max-age=2678400\";s:13:\"last-modified\";s:29:\"Wed, 02 Jul 2014 19:54:35 GMT\";s:4:\"etag\";s:32:\"d1272b2e516d060d6085f9129217af7c\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:4:\"gzip\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:7:\"expires\";s:29:\"Sun, 19 Nov 2017 18:19:16 GMT\";s:6:\"server\";s:16:\"cloudflare-nginx\";s:6:\"cf-ray\";s:20:\"3b05bea320cd68cc-CDG\";}}s:5:\"build\";s:14:\"20170530214036\";}','no'),(9608,'_transient_timeout_feed_mod_08a9370cca8e4bda25c11f8557e93830','1509041958','no'),(9609,'_transient_feed_mod_08a9370cca8e4bda25c11f8557e93830','1508437158','no'),(9991,'wpseo_license_server_version','2','yes'),(10821,'akismet_spam_count','3','yes'),(11506,'_site_transient_timeout_browser_910ae212836ebd1b512fb57c395ff9ff','1510847491','no'),(11507,'_site_transient_browser_910ae212836ebd1b512fb57c395ff9ff','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"56.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(12489,'_site_transient_timeout_browser_2b4bfa48262a79b6d8fe0f2344cb5695','1511883079','no'),(12490,'_site_transient_browser_2b4bfa48262a79b6d8fe0f2344cb5695','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"56.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(12554,'wpseo_sitemap_74_cache_validator','3D79j','no'),(12555,'wpseo_sitemap_72_cache_validator','2BFv','no'),(12556,'wpseo_sitemap_76_cache_validator','3D7fA','no'),(12557,'wpseo_sitemap_75_cache_validator','3D7gO','no'),(12704,'_site_transient_timeout_browser_f4b342427dc93e6e5fd5c14ef1fb74ec','1512036027','no'),(12705,'_site_transient_browser_f4b342427dc93e6e5fd5c14ef1fb74ec','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"57.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(21666,'_transient_timeout_feed_d21d2a68bac70d38fb7f9a7bd3d1725e','1521482714','no'),(21667,'_transient_feed_d21d2a68bac70d38fb7f9a7bd3d1725e','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:5:\"\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:371:\"\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 \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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org Forums » [Google XML Sitemaps] Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/support/plugin/google-sitemap-generator/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Mar 2018 17:53: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://bbpress.org/?v=2.6-alpha-6091\";s: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:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wordpress.org/support/topic/google-xml-sitemaps-showing-error-on-line-42-at-column-6-xml-declaration-allowe/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Google XML Sitemaps showing error on line 42 at column 6: XML declaration allowe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/google-xml-sitemaps-showing-error-on-line-42-at-column-6-xml-declaration-allowe/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2018 12:40: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:567:\"\n \n <p>Replies: 0</p>\n <p>I am using wordpress 4.8 version and installed Google XML Sitemaps plugin for generating sitemap.</p>\n<p>But it showing error :<br />\nThis page contains the following errors:<br />\nerror on line 42 at column 6: XML declaration allowed only at the start of the document<br />\nBelow is a rendering of the page up to the first error.</p>\n<p>I have tried all the possibilities like space removal from function.php, php tag end issue etc.<br />\nBut its not resolved yet.</p>\n<p>Please help me as soon as possible. </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"testeuphern\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/support/topic/no-sitemap-found-message-seen-at-the-sitemap-xml-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>&#8220;No sitemap found&#8221; message seen at the sitemap.xml file\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/support/topic/no-sitemap-found-message-seen-at-the-sitemap-xml-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2018 12:58: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:398:\"\n \n <p>Replies: 1</p>\n <p>I have newly installed Google XML Sitemaps plugin. </p>\n<p>The sitemap.xml page shows the error: No sitemap found. Maybe it’s being generated. Please try again later.</p>\n<p>I had Yoast plugin installed earlier, but I have deleted it right now, to check with this issue. </p>\n<p>I would really appreciate any help or pointers. Thanks.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"tanushree42\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/support/topic/showing-white-blank-page/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Showing White Blank Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/support/topic/showing-white-blank-page/\";s: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, 07 Mar 2018 11:47: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:170:\"\n \n <p>Replies: 0</p>\n <p>Showing only white bank pages. XML code found in source code. Checked with disabling yoast also. Please help me.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"sankar789\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/support/topic/noindex-nofollow-error-in-google-web-master-tool/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Noindex, nofollow error in google web master tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/noindex-nofollow-error-in-google-web-master-tool/\";s: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, 07 Mar 2018 07:22:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:606:\"\n \n <p>Replies: 2</p>\n <p>today, I got warning message that my blog has new index coverage issue. </p>\n<p>Message says “Search Console has identified that your site is affected by 1 new Index coverage related issue. This means that Index coverage may be negatively affected in Google Search results. We encourage you to review and consider fixing this issue” when I went into deep it shows that sitemap.html is the issue. In this it shows noindex and nofollow. I have checked “the button “Include Sitemap in HTML format”. Should I uncheck this?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"hisureshkumar\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/support/topic/issues-with-google-web-master-tools/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Issues with Google Web Master Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/issues-with-google-web-master-tools/\";s: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, 07 Mar 2018 03:16: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"\n \n <p>Replies: 0</p>\n <p>Hi Guys,</p>\n<p>In my Website i promote a lot of pages (job listings) every week we deleted the old jobs and create it a new ones, but i saw that the site maps continue sending to Google the old Urls. How i can fix this?</p>\n<p>The plugin had some button to delete and create a new sitemap?</p>\n<p>Thks</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"algvictor\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/support/topic/sitemap-of-a-subsection-of-website/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Sitemap of a subsection of website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/support/topic/sitemap-of-a-subsection-of-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Mar 2018 01:37:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1895:\"\n \n <p>Replies: 0</p>\n <p>Hi is it possible to create multiple sitemaps for different sections of the website?</p>\n<p>Our site <a href=\"www.spadental.co.uk\" rel=\"noopener noreferrer\" target=\"_blank\" rel=\"nofollow\">https://www.spadental.co.uk/</a> covers six separate locations which we would like tracked in separate properties by Google Analytics.<br />\nie our locations are:<br />\n– SpaDental Ledbury – <a href=\"https://www.spadental.co.uk/ledbury\" rel=\"noopener noreferrer\" target=\"_blank\" rel=\"nofollow\">https://www.spadental.co.uk/ledbury</a><br />\n– SpaDental Plymouth – <a href=\"https://www.spadental.co.uk/plymouth\" rel=\"noopener noreferrer\" target=\"_blank\" rel=\"nofollow\">https://www.spadental.co.uk/plymouth</a><br />\n– SpaDental Ross on Wye – <a href=\"https://www.spadental.co.uk/ross-on-wye\" rel=\"noopener noreferrer\" target=\"_blank\" rel=\"nofollow\">https://www.spadental.co.uk/ross-on-wye</a><br />\n– SpaDental Wem – <a href=\"https://www.spadental.co.uk/wem\" rel=\"noopener noreferrer\" target=\"_blank\" rel=\"nofollow\">https://www.spadental.co.uk/wem</a><br />\n– SpaDental Whitchurch – <a href=\"https://www.spadental.co.uk/whitchurch\" rel=\"noopener noreferrer\" target=\"_blank\" rel=\"nofollow\">https://www.spadental.co.uk/whitchurch</a><br />\n– SpaDental Wotton under Edge – <a href=\"https://www.spadental.co.uk/wotton-under-edge\" rel=\"noopener noreferrer\" target=\"_blank\" rel=\"nofollow\">https://www.spadental.co.uk/wotton-under-edge</a></p>\n<p>Each location has about 50 WordPress Pages under the above URLs. In addition to the location pages, we have about 500 blog posts which are separate to the individual sites.</p>\n<p>If this plugin does not provide this functionality, does anyone know of a plugin that does provide this functionality?</p>\n<p>Thanks<br />\nChristopher Hilling</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Christopher Hilling\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wordpress.org/support/topic/removing-your-plugin-does-not-remove-the-sitemap-rewrite/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Removing your plugin does not remove the sitemap rewrite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wordpress.org/support/topic/removing-your-plugin-does-not-remove-the-sitemap-rewrite/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Mar 2018 12:25: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1242:\"\n \n <p>Replies: 0</p>\n <p>Whenever I install your plugin, you add 4 entries to the <code>wp_options</code> entry named <code>"rewrite_rules"</code></p>\n<p><code>s:34:"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml$";</code><br />\n<code>s:40:"index.php?xml_sitemap=params=$matches[2]";</code><br />\n<code>s:38:"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml\\.gz$";</code><br />\n<code>s:49:"index.php?xml_sitemap=params=$matches[2];zip=true";</code><br />\n<code>s:35:"sitemap(-+([a-zA-Z0-9_-]+))?\\.html$";</code><br />\n<code>s:50:"index.php?xml_sitemap=params=$matches[2];html=true";</code><br />\n<code>s:38:"sitemap(-+([a-zA-Z0-9_-]+))?\\.html.gz$";</code><br />\n<code>s:59:"index.php?xml_sitemap=params=$matches[2];html=true;zip=true";</code></p>\n<p>Whenever I uninstall your plugin, those rules stay in my <code>wp_options</code> table and going to <code>sitemap.xml</code> redirects to <code>sitemap.xml/</code> and shows my home page. Not too good to my point of view. The .html has the same problem and the .gz also show the home page.</p>\n<p>Whenever I deactivate your plugin I expect those entries to be removed.</p>\n<p>Thank you.<br />\nAlex</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/support/topic/sitemap-too-big/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Sitemap too big\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/support/topic/sitemap-too-big/\";s: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, 02 Mar 2018 22:16:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:437:\"\n \n <p>Replies: 0</p>\n <p>Google Webmaster gives me the following error for my site-map.</p>\n<p>Your Sitemap exceeds the maximum file size limit. Please create multiple Sitemaps containing fewer URLs to meet the file size limit.</p>\n<p>I’m not sure how to limit the URLs in the site-map or how to then regenerate it once I have done that. My site is GoingFor2.com in case you need it for anything. </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Goingfor2\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/support/topic/ive-changed-links-structure/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"I&#8217;ve changed links structure\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/support/topic/ive-changed-links-structure/\";s: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, 26 Feb 2018 14:47: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:194:\"\n \n <p>Replies: 1</p>\n <p>I’ve changed links structure could you please tell me how to re-generate new sitemap to remove old links from the page structure. </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"konkistadoor\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/support/topic/remove-noindex/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"remove noindex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/support/topic/remove-noindex/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 25 Feb 2018 09:17: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:828:\"\n \n <p>Replies: 12</p>\n <p>In my source sitemap.html i have:<br />\n<code>content="noindex,follow"/><style type="text/css"></code></p>\n<p>I received an error from Google because i have included sitemap in my robots allowed file</p>\n<p>but if i have nofollow in this generate an error.</p>\n<p>I can’t download sitemap with filezilla because is a virtual file generated by plugin.</p>\n<p>How can modify this?</p>\n<p>Thank you</p>\n\n\n<ul id=\"bbp-topic-revision-log-10012051\" class=\"bbp-topic-revision-log\">\n\n <li id=\"bbp-topic-revision-log-10012051-item-10012053\" class=\"bbp-topic-revision-log-item\">\n This topic was modified 2 weeks, 1 day ago by <a href=\"https://wordpress.org/support/users/fabrixx2/\" title=\"View fabrixx2's profile\">fabrixx2</a>.\n </li>\n\n</ul>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"fabrixx2\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/support/topic/why-are-there-4-versions-of-the-sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Why are there 4 versions of the sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/why-are-there-4-versions-of-the-sitemap/\";s: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, 24 Feb 2018 19:16: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:877:\"\n \n <p>Replies: 0</p>\n <p>For some reason I have 4 versions of the sitemap<br />\nWordpress is installed within a sub-folder<br />\nBut ALL of these resolve… which surely isn’t correct…<br />\n<a href=\"https://www.lastminutetheatretickets.com/londonwestend/sitemap.xml\" rel=\"nofollow\">https://www.lastminutetheatretickets.com/londonwestend/sitemap.xml</a><br />\n<a href=\"https://www.lastminutetheatretickets.com/londonwestend/sitemap-index.xml\" rel=\"nofollow\">https://www.lastminutetheatretickets.com/londonwestend/sitemap-index.xml</a><br />\n<a href=\"https://www.lastminutetheatretickets.com/sitemap-index.xml\" rel=\"nofollow\">https://www.lastminutetheatretickets.com/sitemap-index.xml</a><br />\n<a href=\"https://www.lastminutetheatretickets.com/sitemap.xml\" rel=\"nofollow\">https://www.lastminutetheatretickets.com/sitemap.xml</a></p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Gemini23\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/support/topic/submitted-url-not-selected-as-canonical/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Submitted URL not selected as canonical\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/submitted-url-not-selected-as-canonical/\";s: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, 23 Feb 2018 23:38: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1137:\"\n \n <p>Replies: 0</p>\n <p>Hey, I have never had this issue crop up before (I have been using this plugin for almost two years now) and this issue only recently appeared. I now have several of my major pages (Store directory, Leasing, contact, events page, etc) that are not being indexed because of this error.</p>\n<p>This issue is happening on ALL of our sites that are using this plugin.<br />\nAny suggestions? </p>\n<p>Here is a prntscrn link of what I am seeing on Google Search Console.<br />\n<a href=\"http://prntscr.com/iiy6mr\" rel=\"nofollow\">http://prntscr.com/iiy6mr</a></p>\n<p>EDIT: Here is my environment information;<br />\nWordpress 4.9.4<br />\nXML Sitemaps 4.0.9<br />\nHosting is managed by CrapDaddy (Switching to InMotion dedicated hosting soon).</p>\n\n\n<ul id=\"bbp-topic-revision-log-10009184\" class=\"bbp-topic-revision-log\">\n\n <li id=\"bbp-topic-revision-log-10009184-item-10009198\" class=\"bbp-topic-revision-log-item\">\n This topic was modified 2 weeks, 2 days ago by <a href=\"https://wordpress.org/support/users/dylanlee98/\" title=\"View dylanlee98's profile\">dylanlee98</a>.\n </li>\n\n</ul>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"dylanlee98\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/support/topic/change-to-ssl-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Change to SSL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/support/topic/change-to-ssl-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, 22 Feb 2018 19:28:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:405:\"\n \n <p>Replies: 0</p>\n <p>I installed sitemap when my page was unsecured, now that I have SSL how do I update my Dashboard The URL to your sitemap index file is: <a href=\"http://wwwc\" rel=\"nofollow\">http://wwwc</a>…. to Https:<br />\nOr maybe I don’t need to worry about it?<br />\nI have both an http and https in google search console.</p>\n<p>Thanks</p>\n<p>John</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"cecnaadmin\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/support/topic/change-the-post-url-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Change the post URL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/support/topic/change-the-post-url-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Feb 2018 07:14:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:443:\"\n \n <p>Replies: 0</p>\n <p>Hi,</p>\n<p>I would to know if there is any way to change the posts’ URL that saved in the sitemap from:<br />\n<a href=\"https://mydomain.com/blog/components/post-name\" rel=\"nofollow\">https://mydomain.com/blog/components/post-name</a><br />\nto:<br />\n<a href=\"https://mydomain.com/components/post-name\" rel=\"nofollow\">https://mydomain.com/components/post-name</a></p>\n<p>Thank you!</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"sampibiz\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/support/topic/priority-for-custom-taxonomies/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Priority for Custom Taxonomies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/support/topic/priority-for-custom-taxonomies/\";s: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, 17 Feb 2018 08:45: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"\n \n <p>Replies: 1</p>\n <p>How can we set the Priority for Custom Taxonomies?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"ratul29\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/support/topic/sitemap-could-not-be-read/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Sitemap could not be read\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/support/topic/sitemap-could-not-be-read/\";s: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, 14 Feb 2018 23:06:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"\n \n <p>Replies: 1</p>\n <p>HI<br />\nsitemap-tax-post_tag.xml not load<br />\n“Sitemap could not be read” in google webmaster tools<br />\nwhy?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"sirjavidan\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/sitemap-only-showing-154-out-of-6-5k-pages/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Google XML Sitemap only shows 154 of 6.5k+ pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/sitemap-only-showing-154-out-of-6-5k-pages/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Feb 2018 20:51:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:911:\"\n \n <p>Replies: 1</p>\n <p>My sitemap is only showing about 154 of my site’s 6.5k+ pages. I am considering moving off this plugin as I’ve tried so many different settings and forum/help suggestions but not had any success in getting my pages into the sitemap.</p>\n\n\n<ul id=\"bbp-topic-revision-log-9971286\" class=\"bbp-topic-revision-log\">\n\n <li id=\"bbp-topic-revision-log-9971286-item-9971332\" class=\"bbp-topic-revision-log-item\">\n This topic was modified 3 weeks, 5 days ago by <a href=\"https://wordpress.org/support/users/rbeckstead/\" title=\"View rbeckstead's profile\">rbeckstead</a>.\n </li>\n <li id=\"bbp-topic-revision-log-9971286-item-9972043\" class=\"bbp-topic-revision-log-item\">\n This topic was modified 3 weeks, 5 days ago by <a href=\"https://wordpress.org/support/users/jdembowski/\" title=\"View Jan Dembowski's profile\">Jan Dembowski</a>.\n </li>\n\n</ul>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"rbeckstead\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/support/topic/error-500-on-xml-sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Error 500 on XML Sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/support/topic/error-500-on-xml-sitemap/\";s: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, 12 Feb 2018 21:54: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:496:\"\n \n <p>Replies: 2</p>\n <p>I have been getting the following Errors in my Sitemap and the hosting company told me to look at the Sitemap’s setup!<br />\nIs anyone able to help me resolve this issue as I am not able to find a solution despite having reinstalled the Plug-in.</p>\n<p>Here are my Errors:<br />\n kvaelectric.ca/sitemap-tax-post_tag.xml<br />\nkvaelectric.ca/sitemap-pt-page-2013-05.xml<br />\nincluding the home page:<br />\nkvaelectric.ca/sitemap.xml</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"sparky\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wordpress.org/support/topic/xml-parsing-error-xml-processing-instruction-not-at-start-of-external-entity/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"XML Parsing Error: xml processing instruction not at start of external entity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wordpress.org/support/topic/xml-parsing-error-xml-processing-instruction-not-at-start-of-external-entity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Feb 2018 15:23: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:934:\"\n \n <p>Replies: 1</p>\n <p>hello,<br />\ni am trying to apply sitemap but i get this error<br />\nXML Parsing Error: xml processing instruction not at start of external entity<br />\nlocation: <a href=\"https://foru2.me/sitemap.xml\" rel=\"nofollow\">https://foru2.me/sitemap.xml</a><br />\nline 2, column1:<?xml version=”1.0″ encoding=”UTF-8″?><?xml-stylesheet type=”text/xsl” href=”https://foru2.me/wp-content/plugins/google-sitemap-generator/sitemap.xsl”?><!– sitemap-generator-url=”http://www.arnebrachhold.de” sitemap-generator-version=”4.0.9″ –><br />\n^<br />\ni have read in other posts and articles that maybe it is due to blank whitespaces.<br />\nbut where is it located in order to delete them?shouldn’t it be in the site root?<br />\nit isn’t.<br />\nany help is much appreciated,thank you</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"nickpapas\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/support/topic/automatic-including-post-url-in-sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Automatic including Post url in Sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/automatic-including-post-url-in-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2018 15:56:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:292:\"\n \n <p>Replies: 0</p>\n <p>Hi all,<br />\nIf I create some test Post and the status of the Post is Draft not publish. Does the Sitemap automatically included this Post also or only the Post with status Published will be included?<br />\nThanks a lot<br />\nRegards</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"masjmh\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wordpress.org/support/topic/google-webmaster-tools-flag-an-error-of-noindex-for-the-html-map/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Google WebMaster tools flag an error of &#8216;noindex&#8221; for the html map\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/google-webmaster-tools-flag-an-error-of-noindex-for-the-html-map/\";s: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, 02 Feb 2018 14:08: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:685:\"\n \n <p>Replies: 20</p>\n <p>Hi,<br />\nGoogle web master tools has a new “Google Search Console” in beta.<br />\nIt flags <a href=\"http://site.com/sitemap.html\" rel=\"nofollow\">http://site.com/sitemap.html</a> as having an index error of “Submitted URL marked ‘noindex’”.<br />\nIt links to more info at <a href=\"https://support.google.com/webmasters/answer/2642366\" rel=\"nofollow\">https://support.google.com/webmasters/answer/2642366</a></p>\n<p>I guess it is not a real error and intentional, as the HTML page of the site map is not really a content of the site, but a meta data of it – but I add it here the FYI of anyone.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"eitanc\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/support/topic/ajax-hashbang-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Ajax hashbang support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/support/topic/ajax-hashbang-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Jan 2018 20:05: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:739:\"\n \n <p>Replies: 0</p>\n <p>I know that many have said WordPress shouldn’t be used with ajax-loading hashbangs, but our old developers did just that, and we’re stuck with it for now.</p>\n<p>So, for example, we have a page example.com/page/ and also example.com/page/#!sub.</p>\n<p>Sitemap generator creates a sitemap that includes example.com/page/, but which does not include example.com/page/#!sub, and when google fetches the first one, it doesn’t see any of the content from the second one – which, since it isn’t being indexed – that content is never crawled at all.</p>\n<p>Is there any way for this plugin to include #! urls in the generated sitemap?</p>\n<p>Thank you.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"mrgad\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/support/topic/compatible-with-polylang-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Compatible with Polylang ?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/compatible-with-polylang-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Jan 2018 10:51: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1152:\"\n \n <p>Replies: 0</p>\n <p>Hi,</p>\n<p>Great fan of this plugin and have been using it for a number of years, but we wanted to check for compatibility with the also very popular Polylang module.</p>\n<p>By default we can see the new languages versions of pages and posts within the sitemap, but wanted to check is this the correct method for search engines to pick up on these new ‘lang’ pages?</p>\n<p>At present it shows:</p>\n<p>URL of sub-sitemap Last modified (GMT)<br />\n<a href=\"http://www.website.com/page.html\" rel=\"nofollow\">http://www.website.com/page.html</a> 2018-01-29 14:11<br />\n<a href=\"http://www.website.com/en/page.html\" rel=\"nofollow\">http://www.website.com/en/page.html</a> 2018-01-29 14:11<br />\n<a href=\"http://www.website.com/en_us/page.html\" rel=\"nofollow\">http://www.website.com/en_us/page.html</a> 2018-01-29 14:11</p>\n<p>But looking into this further should the XML also include the correct markup attributes:</p>\n<p>rel=”alternate” hreflang=”en” etc…</p>\n<p>Hope you can help and look forward to a reply?</p>\n<p>Many thanks! </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"itchytrig\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/support/topic/html-sitemap-o-index/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"html sitemap o-index\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/support/topic/html-sitemap-o-index/\";s: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, 30 Jan 2018 22:54: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"\n \n <p>Replies: 1</p>\n <p>Hi</p>\n<p>for some reason, the html sitemap is showing as no-index and I don’t know why – I cannot see anything in Robots.txt</p>\n<p>anyone?</p>\n<p><a href=\"https://www.londontheatre1.com/sitemap.html\" rel=\"nofollow\">https://www.londontheatre1.com/sitemap.html</a></p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Gemini23\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/support/topic/limit-sitemap-based-on-date-of-post/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Limit sitemap based on date of post?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/support/topic/limit-sitemap-based-on-date-of-post/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jan 2018 14:11: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"\n \n <p>Replies: 0</p>\n <p>Feature request:</p>\n<p>Could you please add an option to exclude posts/pages based upon date? We have no need to have posts from 2006-2010 appearing in our sitemap any longer, but there’s no way to exclude these hundreds of posts in the current plugin.</p>\n<p>Thanks!</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"docjohn\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/support/topic/plugin-does-not-list-product-pages-from-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Plugin does not list product pages from woocommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/support/topic/plugin-does-not-list-product-pages-from-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jan 2018 23:51: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:192:\"\n \n <p>Replies: 2</p>\n <p>I’m using the plugin with Woocommerce. The generated sitemaps do not show any of my product pages. Is this expected? What to do?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"mickeyman\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/multisite-464/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Multisite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/multisite-464/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 Jan 2018 15:20:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"\n \n <p>Replies: 0</p>\n <p>Hi there,<br />\nis this plugin working with WP Multisite?<br />\nSubdomain config<br />\nDomain mapping plugin<br />\nThanks<br />\nCheers<br />\nTR</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tahoerock\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/support/topic/too-few-arguments-to-function-gglstmp_update_sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Too few arguments to function gglstmp_update_sitemap()\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/too-few-arguments-to-function-gglstmp_update_sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Jan 2018 13:35:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1083:\"\n \n <p>Replies: 0</p>\n <p>After updating WordPress to 4.9.2, I get this error when deleting an event in The Event Calendar plugin:</p>\n<p>Fatal error: Uncaught ArgumentCountError: Too few arguments to function gglstmp_update_sitemap(), 1 passed in /home/govemplo/public_html/wp-includes/class-wp-hook.php on line 286 and exactly 2 expected in /home/govemplo/public_html/wp-content/plugins/google-sitemap-plugin/google-sitemap-plugin.php:1208 Stack trace: #0 /home/govemplo/public_html/wp-includes/class-wp-hook.php(286): gglstmp_update_sitemap(27913) #1 /home/govemplo/public_html/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array) #2 /home/govemplo/public_html/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #3 /home/govemplo/public_html/wp-includes/post.php(2677): do_action(‘trashed_post’, 27913) #4 /home/govemplo/public_html/wp-admin/post.php(222): wp_trash_post(27913) #5 {main} thrown in /home/govemplo/public_html/wp-content/plugins/google-sitemap-plugin/google-sitemap-plugin.php on line 1208</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"kevinhbruce\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/support/topic/sitemap-appears-to-be-an-html-page-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Sitemap appears to be an HTML page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/sitemap-appears-to-be-an-html-page-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jan 2018 15:12: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:765:\"\n \n <p>Replies: 4</p>\n <p>I have recently switched to XML Sitemaps from another similar plugin. However, Google Webmaster Tools reports that my “Sitemap appears to be an HTML page.” I have since removed the checkmark from the “Include sitemap in HTML format” option and resubmitted the sitemap. My site on GWT is with the https protocol and I am looking at the right site.</p>\n<p>I have noticed a couple of other similar posts that did not have an answer to this question. It would be great if we could find out how to fix this problem. I turned the previous plugin off since it had not been updated in the last couple of years, but may have to go back to it, because it worked.</p>\n<p>Thank you,</p>\n<p>Cemal</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"acekin\";s: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:67:\"\n \n \n \n \n \n\n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/support/topic/my-site-is-https-but-sitemap-links-are-with-http/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"My site is HTTPS but sitemap links are with HTTP?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/support/topic/my-site-is-https-but-sitemap-links-are-with-http/\";s: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 Jan 2018 18:10: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:222:\"\n \n <p>Replies: 1</p>\n <p>Did something go wrong during installation or what? I am not really sure how it affects google but I do have redirect to HTTPS. </p>\n<p>Should I leave it like that?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Boyka555\";s: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:67:\"https://wordpress.org/support/plugin/google-sitemap-generator/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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 12 Mar 2018 18:05:13 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:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20170530214036\";}','no'),(21668,'_transient_timeout_feed_mod_d21d2a68bac70d38fb7f9a7bd3d1725e','1521482714','no'),(21669,'_transient_feed_mod_d21d2a68bac70d38fb7f9a7bd3d1725e','1520877914','no'),(22263,'_transient_timeout_aiowps_captcha_string_info_4gi2x4xwrd','1521109327','no'),(22264,'_transient_aiowps_captcha_string_info_4gi2x4xwrd','MTUyMTEwNzUyN2VieGxjNGVreDB1dDgxMHNhYjVuMQ==','no'),(22275,'_transient_timeout_aiowps_captcha_string_info_dddql8k5gw','1521121516','no'),(22276,'_transient_aiowps_captcha_string_info_dddql8k5gw','MTUyMTExOTcxNmVieGxjNGVreDB1dDgxMHNhYjVuMg==','no'),(22277,'_transient_timeout_aiowps_captcha_string_info_o36ztrq1s7','1521122977','no'),(22278,'_transient_aiowps_captcha_string_info_o36ztrq1s7','MTUyMTEyMTE3N2VieGxjNGVreDB1dDgxMHNhYjVuNw==','no'),(22300,'aiowps_temp_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:29:\"zoe.allen@vanillacircus.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:\"jmce3dzoaoovc61xpo6f\";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:\"ebxlc4ekx0ut810sab5n\";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:29:\"zoe.allen@vanillacircus.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:29:\"zoe.allen@vanillacircus.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:35:\"aiowps_lockdown_enable_whitelisting\";s:0:\"\";s:36:\"aiowps_lockdown_allowed_ip_addresses\";s:0:\"\";s:35:\"aiowps_enable_registration_honeypot\";s:0:\"\";s:28:\"aiowps_block_fake_googlebots\";s:1:\"1\";}','yes'),(24621,'_site_transient_timeout_browser_dc1626103c560e84ff87ed0be16a2039','1534848713','no'),(24622,'_site_transient_browser_dc1626103c560e84ff87ed0be16a2039','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"56.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(24670,'_site_transient_timeout_browser_01fe6d96f512df15cc1b10345d6b37d9','1534853117','no'),(24671,'_site_transient_browser_01fe6d96f512df15cc1b10345d6b37d9','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"68.0.3440.106\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(25378,'wpseo_sitemap_221_cache_validator','4nYej','no'),(26379,'_site_transient_timeout_browser_4f580420fc30ef32385315403354ff54','1545131856','no'),(26380,'_site_transient_browser_4f580420fc30ef32385315403354ff54','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"63.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(26590,'_site_transient_timeout_browser_9ec285cc711c87e45c9244f4f89fc994','1545649404','no'),(26591,'_site_transient_browser_9ec285cc711c87e45c9244f4f89fc994','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"57.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(27348,'_site_transient_timeout_browser_e0b7751b8040fb7c8de50ddf95d10645','1549635203','no'),(27349,'_site_transient_browser_e0b7751b8040fb7c8de50ddf95d10645','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"64.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(27464,'_site_transient_timeout_browser_6a8f379af204eeb51ed26ba2f043df0f','1550228087','no'),(27465,'_site_transient_browser_6a8f379af204eeb51ed26ba2f043df0f','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"64.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(27481,'wpseo_sitemap_67_cache_validator','3Rxgn','no'),(29335,'_site_transient_timeout_browser_d05ee10df769c707d38bdd862b4df84b','1560502561','no'),(29336,'_site_transient_browser_d05ee10df769c707d38bdd862b4df84b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"75.0.3770.80\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(29558,'_site_transient_timeout_browser_480ab0ea437e023d38e280fd3bf88e97','1561547848','no'),(29559,'_site_transient_browser_480ab0ea437e023d38e280fd3bf88e97','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"74.0.3729.169\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(31531,'_site_transient_timeout_browser_289d30a4d23579d26a05a8aa808752b5','1572277121','no'),(31532,'_site_transient_browser_289d30a4d23579d26a05a8aa808752b5','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"77.0.3865.120\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(33006,'wpseo_sitemap_author_cache_validator','6fgPG','no'),(33607,'_transient_timeout_yst_sm_author_1:3NNeT_6fgPG','1583113075','no'),(33608,'_transient_yst_sm_author_1:3NNeT_6fgPG','C:24:\"WPSEO_Sitemap_Cache_Data\":48:{a:2:{s:6:\"status\";s:5:\"error\";s:3:\"xml\";s:0:\"\";}}','no'),(34896,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:12:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.7.2\";s:7:\"version\";s:5:\"5.7.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.6\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.7.2\";s:7:\"version\";s:5:\"5.7.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.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.4.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.6.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.6.4\";s:7:\"version\";s:5:\"5.6.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.5.5\";s:7:\"version\";s:5:\"5.5.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.6.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.4.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.6\";s:7:\"version\";s:5:\"5.4.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.8.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.3.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.8\";s:7:\"version\";s:5:\"5.3.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:6;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.11.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.11.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.11-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.2.11-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.2.11\";s:7:\"version\";s:6:\"5.2.11\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:7;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.1.10.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.1.10.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.10-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.1.10-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.1.10\";s:7:\"version\";s:6:\"5.1.10\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:8;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.0.13.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.0.13.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.13-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.0.13-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"5.0.13\";s:7:\"version\";s:6:\"5.0.13\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:9;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.9.18.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.9.18.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.18-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.9.18-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.9.18\";s:7:\"version\";s:6:\"4.9.18\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:10;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.8.17.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.8.17.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.8.17-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.8.17-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.8.17\";s:7:\"version\";s:6:\"4.8.17\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:11;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.7.21.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.7.21.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.21-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.7.21-new-bundled.zip\";s:7:\"partial\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.7.21-partial-3.zip\";s:8:\"rollback\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.21-rollback-3.zip\";}s:7:\"current\";s:6:\"4.7.21\";s:7:\"version\";s:6:\"4.7.21\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:5:\"4.7.3\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1624621983;s:15:\"version_checked\";s:5:\"4.7.3\";s:12:\"translations\";a:0:{}}','no'),(36333,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:33:\"wp-meta-and-date-remover/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1607599136;s:11:\"plugin_path\";s:53:\"wp-meta-and-date-remover/wp-meta-and-date-remover.php\";}}s:7:\"abspath\";s:34:\"/home/fisawards.co.uk/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:53:\"wp-meta-and-date-remover/wp-meta-and-date-remover.php\";s:8:\"sdk_path\";s:33:\"wp-meta-and-date-remover/freemius\";s:7:\"version\";s:5:\"2.4.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1607599136;}}','yes'),(36334,'fs_debug_mode','','yes'),(36335,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:6753;a:3:{s:4:\"slug\";s:24:\"wp-meta-and-date-remover\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:53:\"wp-meta-and-date-remover/wp-meta-and-date-remover.php\";}}s:11:\"plugin_data\";a:1:{s:24:\"wp-meta-and-date-remover\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:53:\"wp-meta-and-date-remover/wp-meta-and-date-remover.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1597937910;s:16:\"sdk_last_version\";s:7:\"2.4.0.1\";s:11:\"sdk_version\";s:5:\"2.4.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"1.8.2\";s:14:\"plugin_version\";s:5:\"1.9.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:15:\"fisawards.co.uk\";s:9:\"server_ip\";s:14:\"185.175.113.72\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1607599136;s:7:\"version\";s:5:\"1.9.1\";}s:15:\"prev_is_premium\";b:0;s:18:\"sticky_optin_added\";b:1;}}s:13:\"file_slug_map\";a:1:{s:53:\"wp-meta-and-date-remover/wp-meta-and-date-remover.php\";s:24:\"wp-meta-and-date-remover\";}s:7:\"plugins\";a:1:{s:24:\"wp-meta-and-date-remover\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:24:\"WP Meta and Date Remover\";s:4:\"slug\";s:24:\"wp-meta-and-date-remover\";s:12:\"premium_slug\";s:32:\"wp-meta-and-date-remover-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:8:\"selected\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:53:\"wp-meta-and-date-remover/wp-meta-and-date-remover.php\";s:7:\"version\";s:5:\"1.9.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:3:\"Pro\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_6bc68a469d4ab171bcc3dc4717f42\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"6753\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"ce9fde8675ccbd268ed6cdd5ff09a3b1\";s:13:\"admin_notices\";a:1:{s:24:\"wp-meta-and-date-remover\";a:1:{s:15:\"connect_account\";a:8:{s:7:\"message\";s:193:\"We made a few tweaks to the plugin, <b><a href=\"https://fisawards.co.uk/wp-admin/options-general.php?page=wp-meta-and-date-remover.php\">Opt in to make \"WP Meta and Date Remover\" better!</a></b>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:10:\"update-nag\";s:6:\"sticky\";b:1;s:2:\"id\";s:15:\"connect_account\";s:10:\"manager_id\";s:24:\"wp-meta-and-date-remover\";s:6:\"plugin\";s:24:\"WP Meta and Date Remover\";s:10:\"wp_user_id\";N;}}}}','yes'),(36336,'fs_options','a:1:{s:14:\"api_clock_diff\";i:416;}','yes'),(37018,'_site_transient_timeout_browser_ce4e9e986b0fbc713624d54b83c36283','1602765215','no'),(37019,'_site_transient_browser_ce4e9e986b0fbc713624d54b83c36283','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"85.0.4183.121\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(37034,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1602172007','no'),(37035,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4723;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:4398;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2684;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2564;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1977;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1825;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1807;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1491;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1491;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1487;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1459;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1458;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1446;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1306;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1224;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1206;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1161;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1135;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1109;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1016;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:905;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:901;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:882;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:880;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:814;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:803;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:795;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:781;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:779;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:753;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:751;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:726;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:720;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:703;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:703;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:688;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:664;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:663;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:657;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:651;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:636;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:635;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:615;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:605;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:592;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:584;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:582;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:578;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:568;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:563;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:558;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:557;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:552;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:551;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:543;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:533;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:532;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:528;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:523;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:521;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:521;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:507;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:497;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:492;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:484;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:481;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:478;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:465;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:459;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:441;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:441;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:439;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:439;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:436;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:433;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:428;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:427;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:426;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:424;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:420;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:416;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:413;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:404;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:399;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:397;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:393;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:388;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:384;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:383;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:378;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:378;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:376;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:372;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:365;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:360;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:358;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:349;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:346;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:345;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:341;}}','no'),(37040,'ai1wm_secret_key','GJz6A56z1nt8','yes'),(37041,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:311:\"<a href=\"http://fisawards.co.uk/wp-content/ai1wm-backups/fisawards.co.uk-20201008-125348-t10st3.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"fisawards.co.uk\" download=\"fisawards.co.uk-20201008-125348-t10st3.wpress\"><span>Download fisawards.co.uk</span><em>Size: 88 MB</em></a>\";}','yes'),(37046,'ai1wm_updater','a:0:{}','yes'),(37455,'_site_transient_timeout_browser_97fc230848bc304ccee289a55f3e5339','1606744369','no'),(37456,'_site_transient_browser_97fc230848bc304ccee289a55f3e5339','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"80.0.3987.132\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(37673,'_transient_timeout_yst_sm_page_1:3NNeT_4DcLj','1607014062','no'),(37674,'_transient_yst_sm_page_1:3NNeT_4DcLj','C:24:\"WPSEO_Sitemap_Cache_Data\":2690:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:2642:\"<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 http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <url>\n <loc>https://fisawards.co.uk/</loc>\n </url>\n <url>\n <loc>https://fisawards.co.uk/apply</loc>\n <lastmod>2017-10-23T09:05:28+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/shortlist</loc>\n <lastmod>2017-10-23T09:05:54+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/contact</loc>\n <lastmod>2017-10-23T09:09:30+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/local-property-links</loc>\n <lastmod>2017-10-23T09:16:38+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/winners</loc>\n <lastmod>2018-06-26T09:17:15+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/choosing-building-office-top-tips-make-process-easier</loc>\n <lastmod>2019-01-11T08:55:38+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/advice</loc>\n <lastmod>2019-02-01T14:22:08+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/finding-right-furniture-removal-company</loc>\n <lastmod>2019-02-01T15:03:16+00:00</lastmod>\n <image:image>\n <image:loc>http://fisawards.co.uk/wp-content/uploads/2019/02/truck-3910170_960_720.jpg</image:loc>\n <image:caption><![CDATA[moving-out]]></image:caption>\n </image:image>\n </url>\n <url>\n <loc>https://fisawards.co.uk/boost-office-productivity</loc>\n <lastmod>2019-10-21T16:09:28+00:00</lastmod>\n <image:image>\n <image:loc>http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg</image:loc>\n </image:image>\n <image:image>\n <image:loc>http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg</image:loc>\n <image:caption><![CDATA[office-productivity]]></image:caption>\n </image:image>\n </url>\n <url>\n <loc>https://fisawards.co.uk/common-plumbing-issues-fix</loc>\n <lastmod>2020-08-20T15:40:10+00:00</lastmod>\n <image:image>\n <image:loc>http://fisawards.co.uk/wp-content/uploads/2020/08/bath.jpeg</image:loc>\n <image:caption><![CDATA[Fixing something on your own can be an overwhelming thought, but it doesn’t have to be that way. There are lots of easy fixes you can do at home without needing to call out a plumber.]]></image:caption>\n </image:image>\n </url>\n <url>\n <loc>https://fisawards.co.uk/moving-home</loc>\n <lastmod>2020-11-23T13:56:46+00:00</lastmod>\n </url>\n</urlset>\";}}','no'),(37848,'_site_transient_timeout_browser_2d6330f380f44ac20f3a02eed0958f66','1608203684','no'),(37849,'_site_transient_browser_2d6330f380f44ac20f3a02eed0958f66','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"87.0.4280.88\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(37852,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1607642086','no'),(37853,'_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:27:\"News – – 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:\"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, 09 Dec 2020 05:54: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: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=5.7-alpha-49782\";s:7:\"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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 5.6 “Simone”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2020/12/simone/\";s: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 Dec 2020 19:46:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=9325\";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:206:\"Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone. Fire up a playlist with her best work and read on to discover what WordPress 5.6 has in store for you. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:63813:\"\n<p>Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone, who is known for tunes like “Feeling Good”, “Young, Gifted and Black”, and “Four Women”. Fire up a playlist with her best work and read on to discover what we have in store for you. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"633\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=632%2C633&ssl=1\" alt=\"WordPress 5.6 Simone with a photo of Nina Simone\" class=\"wp-image-9416\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=1022%2C1024&ssl=1 1022w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=300%2C300&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=768%2C769&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#d1e4dd;min-height:300px\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\" style=\"background-color:#d1e4dd;padding: 10px\">Welcome to WordPress 5.6</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">Sharing your stories has never been easier.</h3>\n</div></div>\n\n\n\n<p>WordPress 5.6 brings you countless ways to set your ideas free and bring them to life. With a brand-new default theme as your canvas, it supports an ever-growing collection of blocks as your brushes. Paint with words. Pictures. Sound. Or rich embedded media.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"234\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=632%2C234&ssl=1\" alt=\"colored circles\" class=\"wp-image-9346\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=1024%2C379&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=300%2C111&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=768%2C284&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>Greater layout flexibility</h3>\n\n\n\n<p>Bring your stories to life with more tools that let you edit your layout with or without code. Single column blocks, designs using mixed widths and columns, full-width headers, and gradients in your cover block—make small changes or big statements with equal ease!</p>\n\n\n\n<h3>More block patterns</h3>\n\n\n\n<p>In some themes, preconfigured block patterns make setting up standard pages on your site a breeze. Let the power of patterns streamline your workflow and save you clicks. Plus, share these features with clients, editors, and more.</p>\n\n\n\n<h3>Better video captioning</h3>\n\n\n\n<p>To help you add subtitles or captions to your videos, you can now upload them within your post or page. This makes it easier than ever to make your videos accessible for anyone who needs or prefers to use subtitles.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"120\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=632%2C120&ssl=1\" alt=\"black vertical line\" class=\"wp-image-9347\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=1024%2C194&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=300%2C57&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=768%2C146&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Twenty Twenty-One is here!</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"714\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=632%2C714&ssl=1\" alt=\"Examples of block patterns available in Twenty Twenty-One.\" class=\"wp-image-9426\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=907%2C1024&ssl=1 907w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=266%2C300&ssl=1 266w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=768%2C867&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=1360%2C1536&ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=1814%2C2048&ssl=1 1814w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1975&ssl=1 1975w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1264&ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Twenty Twenty-One is a blank canvas for your ideas, and the block editor is the best brush. It is built for the block editor and packed with brand-new block patterns you can only get in the default themes. Try different layouts in a matter of seconds, and let the theme’s eye-catching, yet timeless design make your work shine. </p>\n\n\n\n<p>What’s more, this default theme puts accessibility at the heart of your website. It conforms to the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/\">WordPress accessibility-ready guidelines</a> and addresses several more specialized standards from the <a href=\"https://www.w3.org/WAI/WCAG2AAA-Conformance\">Web Content Accessibility Guidelines (WCAG) 2.1 at level AAA</a>. It will help you meet the highest level of international accessibility standards when you create accessible content and choose plugins which are accessible too!</p>\n\n\n\n<h3>A rainbow of soft pastels</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"167\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=632%2C167&ssl=1\" alt=\"A mobile screenshot of each included color palette in Twenty Twenty-One, going in ROYGBIV order.\" class=\"wp-image-9424\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=1024%2C270&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=300%2C79&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=768%2C202&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=1536%2C405&ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=2048%2C540&ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?w=1264&ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Perfect for a new year, Twenty Twenty-One gives you a range of pre-selected color palettes in pastel, all of which conform to AAA standards for contrast. You can also choose your own background color for the theme, and the theme chooses accessibility-conscious text colors for you — automatically!</p>\n\n\n\n<p>Need more flexibility than that? You can also choose your own color palette from the color picker.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"151\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=632%2C151&ssl=1\" alt=\"colored circles\" class=\"wp-image-9351\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=1024%2C245&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=300%2C72&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=768%2C183&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Improvements for everyone</h2>\n\n\n\n<h3>Expanding auto-updates</h3>\n\n\n\n<p>For years, only developers have been able to update WordPress automatically. But now you have that option, right in your dashboard. If this is your first site, you have auto-updates ready to go, right now! Upgrading an existing site? No problem! Everything is the same as it was before.</p>\n\n\n\n<h3>Accessibility Statement </h3>\n\n\n\n<p>Even if you’re not an expert, you can start letting others know about your site’s commitment to accessibility! The new <a href=\"https://github.com/10degrees/accessibility-statement-plugin\">feature plugin</a> includes template copy for you to edit and publish, and it’s written to support different contexts and jurisdictions. </p>\n\n\n\n<h3>Built-in Patterns</h3>\n\n\n\n<p>If you’ve not had the chance to play with block patterns yet, all default themes now feature a range of block patterns that let you master complex layouts with minimal effort. Customize the patterns to your liking with the copy, images, and colors that fit your story or brand. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"185\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=632%2C185&ssl=1\" alt=\"colored and textured rectangles\" class=\"wp-image-9352\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=1024%2C300&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=300%2C88&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=768%2C225&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>For developers</h2>\n\n\n\n<h3>REST API authentication with Application Passwords</h3>\n\n\n\n<p>Thanks to the API’s new Application Passwords authorization feature, third-party apps can connect to your site seamlessly and securely. This new REST API feature lets you see what apps are connecting to your site and control what they do. </p>\n\n\n\n<h3>More PHP 8 support</h3>\n\n\n\n<p>5.6 marks the first steps toward WordPress Core support for PHP 8. Now is a great time to start planning how your WordPress products, services, and sites can support the latest PHP version. For more information about what to expect next, <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">read the PHP 8 developer note</a>.</p>\n\n\n\n<h3>jQuery</h3>\n\n\n\n<p>Updates to jQuery in WordPress take place across three releases 5.5, 5.6, and 5.7. As we reach the mid-point of this process, <a href=\"https://wordpress.org/plugins/wp-jquery-update-test/\">run the update test plugin to check your sites for errors</a> ahead of time. </p>\n\n\n\n<p>If you find issues with the way your site looks ( e.g. a slider doesn’t work, a button is stuck — that sort of thing), install <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">the jQuery Migrate plugin</a>.</p>\n\n\n\n<h3>Check out the Field Guide</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">Read about the latest version of WordPress in this guide.</a> It highlights developer notes for each change in the release. </p>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#d1e4dd;min-height:300px\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\" style=\"background-color:#d1e4dd;padding: 10px\">“It’s a new day, it’s a new life for me….and I’m feeling good.”</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">~Nina Simone</h3>\n</div></div>\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.6 release comes to you from an all-women release squad: </p>\n\n\n\n<ul><li><strong>Release Lead:</strong> Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>). Cohort: Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Angela Jin (<a href=\"https://profiles.wordpress.org/angelasjin/\">@angelasjin</a>).</li><li><strong>Release Coordinator:</strong> Dee Teal (<a href=\"https://profiles.wordpress.org/thewebprincess/\">@thewebprincess</a>). Cohort: Thelma Mutete (<a href=\"https://profiles.wordpress.org/thelmachido/\">@thelmachido</a>) and Laura Nelson (<a href=\"https://profiles.wordpress.org/laurora/\">@laurora</a>).</li><li><strong>Triage Lead:</strong> Tonya Mork (<a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>). </li><li><strong>Core Tech Lead:</strong> Helen Hou-Sandì (<a href=\"https://profiles.wordpress.org/helen/\">@helen</a>). Cohort: Amy Kamala (<a href=\"https://profiles.wordpress.org/amykamala/\">@amykamala</a>) and Ebonie Butler (<a href=\"https://profiles.wordpress.org/metalandcoffee/\">@metalandcoffee</a>).</li><li><strong>Editor Tech Lead:</strong> Isabel Brison (<a href=\"https://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a>). Cohort: Chandrika Guntur (<a href=\"https://profiles.wordpress.org/cguntur/\">@cguntur</a>), Anchen le Roux (<a href=\"https://profiles.wordpress.org/anchenlr/\">@anchenlr</a>), and Rebecca Hum (<a href=\"https://profiles.wordpress.org/rebasaurus/\">@rebasaurus</a>).</li><li><strong>Design Leads:</strong> Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>) and Tammie Lister (<a href=\"https://profiles.wordpress.org/karmatosed/\">@karmatosed</a>). Cohort: Anyssa Ferreira (<a href=\"https://profiles.wordpress.org/anyssa/\">@anyssa</a>), Estela Rueda (<a href=\"https://profiles.wordpress.org/estelaris/\">@estelaris</a>), Tracy Apps (<a href=\"https://profiles.wordpress.org/tray/\">@tray</a>), and Sophia DeRosia (<a href=\"https://profiles.wordpress.org/eringoblog/\">@eringoblog</a>).</li><li><strong>Design Tech Lead:</strong> Shital Marakana (<a href=\"https://profiles.wordpress.org/shital-patel/\">@shital-patel</a>).</li><li><strong>Accessibility Lead:</strong> Sarah Ricker (<a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricke<strong>r</strong></a>). Cohort: Hauwa Abashiya (<a href=\"https://profiles.wordpress.org/azhiyadev/\">@azhiyadev</a>).</li><li><strong>Marketing & Communications Leads:</strong> Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>). Cohort: Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Olga Gleckler (<a href=\"https://profiles.wordpress.org/oglekler/\">@ogleckler</a>), Larissa Murrillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Michelle Frechette (<a href=\"https://profiles.wordpress.org/michelleames/\">@michelleames</a>), Breann McDede (<a href=\"https://profiles.wordpress.org/bmcdede/\">@bmcdede</a>), and Afshana Diya (<a href=\"https://profiles.wordpress.org/afshanadiya/\">@afshanadiya</a>).</li><li><strong>Documentation Lead: </strong>Shawntelle Coker (<a href=\"https://profiles.wordpress.org/sncoker/\">@sncoker</a>). Cohort: Daisy Olsen (<a href=\"https://profiles.wordpress.org/daisyo/\">@DaisyO</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Winstina Hughes (<a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>).</li><li><strong>Documentation Review Lead:</strong> Michele Butcher-Jones (<a href=\"https://profiles.wordpress.org/m_butcher/\">@m_butcher</a>). Cohort: Nidhi Jain (<a href=\"https://profiles.wordpress.org/jainnidhi/\">@jainnidhi</a>), Laura Byrne Cristiano (<a href=\"https://wordpress.org/support/users/newyorkerlaura/\">@newyorkerlaura</a>).</li><li><strong>Default Theme Design Lead:</strong> Mel Choyce-Dwan (<a href=\"https://profiles.wordpress.org/melchoyce/\">@melchoyce</a>). Cohort: Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>).</li><li><strong>Default Theme Development Lead:</strong> Carolina Nymark (<a href=\"https://profiles.wordpress.org/poena/\">@poena</a>). Cohort: Kelly Choyce-Dwan (<a href=\"https://profiles.wordpress.org/ryelle/\">@ryelle</a>) and Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Default Theme Wrangler:</strong> Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Test Lead:</strong> Monika Rao (<a href=\"https://profiles.wordpress.org/monikarao/\">@monikarao</a>). Cohort: Allie Nimmons (<a href=\"https://profiles.wordpress.org/alliennimmons/\">@alliennimmons</a>).</li><li><strong>Support Lead:</strong> Bet Hannon (<a href=\"https://profiles.wordpress.org/bethannon1/\">@bethannon1</a>).</li></ul>\n\n\n\n<p>As always, this release reflects the hard work of 605 generous volunteer contributors. They collaborated on nearly 350 tickets on Trac and over 1,000 pull requests on GitHub.</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/zgrkaralar/\">Özgür KARALAR</a>, <a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/a5hleyrich/\">A5hleyRich</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/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/pokhriyal/\">Abhishek Pokhriyal</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/adriandegrafreak/\">Adrián de Grafreak</a>, <a href=\"https://profiles.wordpress.org/adriantirusli/\">Adrianti Rusli</a>, <a href=\"https://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/elgameel/\">Ahmed Elgameel</a>, <a href=\"https://profiles.wordpress.org/ajensen/\">ajensen</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/aktasfatih/\">aktasfatih</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/viper007bond/\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/alexstandiford/\">Alex Standiford</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/alliennimmons/\">Allie Nimmons</a>, <a href=\"https://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a>, <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>, <a href=\"https://profiles.wordpress.org/anchenlr/\">Anchen le Roux</a>, <a href=\"https://profiles.wordpress.org/anlino/\">Anders Norén</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/baicusandrei/\">Andrei Baicus</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/andystitt829/\">Andy Stitt</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/anuj2/\">anuj2</a>, <a href=\"https://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apermo/\">Apermo</a>, <a href=\"https://profiles.wordpress.org/archduck/\">archduck</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arippberger/\">arippberger</a>, <a href=\"https://profiles.wordpress.org/arjendejong/\">arjendejong</a>, <a href=\"https://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/akkspro/\">Arslan Ahmed Kalwar</a>, <a href=\"https://profiles.wordpress.org/asvinballoo/\">Asvin Balloo</a>, <a href=\"https://profiles.wordpress.org/tacitonic/\">Atharva Dhekne</a>, <a href=\"https://profiles.wordpress.org/austyfrosty/\">Austin Passy</a>, <a href=\"https://profiles.wordpress.org/austin880625/\">austin880625</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/ayesh/\">ayesh</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"https://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/benmeredithgmailcom/\">Ben Meredith</a>, <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bethannon1/\">Bet Hannon</a>, <a href=\"https://profiles.wordpress.org/bethsoderberg/\">Beth Soderberg</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/hareshlive/\">Bhagvan Mangukiya</a>, <a href=\"https://profiles.wordpress.org/bhautikvirani/\">bhautikvirani</a>, <a href=\"https://profiles.wordpress.org/bananastalktome/\">Billy</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boldgrid/\">BoldGrid</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</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/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/bmcdede/\">Breann McDede</a>, <a href=\"https://profiles.wordpress.org/bmillersw/\">Brent Miller</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brianhenryie/\">Brian Henry</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calin/\">Calin Don</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/campusboy1987/\">campusboy</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/carolinegeven/\">Caroline</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chadreitsma/\">Chad Reitsma</a>, <a href=\"https://profiles.wordpress.org/cguntur/\">Chandrika Guntur</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/alexandec/\">Chris Alexander</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/ctmartin0/\">Christian Martin</a>, <a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/claudiulodro/\">Claudiu Lodromanean</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/commeuneimage/\">Commeuneimage</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/salzano/\">Corey Salzano</a>, <a href=\"https://profiles.wordpress.org/cpapazoglou/\">cpapazoglou</a>, <a href=\"https://profiles.wordpress.org/cranewest/\">cranewest</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/ctmartin/\">ctmartin</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a>, <a href=\"https://profiles.wordpress.org/dantahoua/\">dantahoua</a>, <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a>, <a href=\"https://profiles.wordpress.org/dmchale/\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</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/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidjlaietta/\">David Wolfpaw</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/p00ya/\">Dean</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris (Demetris Kikizas)</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns/\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/designer023/\">Designer023</a>, <a href=\"https://profiles.wordpress.org/dfenton/\">dfenton</a>, <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dharmin16/\">Dharmin Shah</a>, <a href=\"https://profiles.wordpress.org/dhruvin/\">Dhruvin</a>, <a href=\"https://profiles.wordpress.org/dhulwells/\">Dhul Wells</a>, <a href=\"https://profiles.wordpress.org/dietpawel/\">dietpawel</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/djzone/\">DjZoNe</a>, <a href=\"https://profiles.wordpress.org/dogwithblog/\">dogwithblog</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/donsony/\">donsony</a>, <a href=\"https://profiles.wordpress.org/dossy/\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dpacks/\">dpacks</a>, <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/dushanthi/\">dushanthi</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/erikjandelange/\">erikjandelange</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/eringoblog/\">eringoblog</a>, <a href=\"https://profiles.wordpress.org/eroraghav/\">eroraghav</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/thegp/\">EugeneBos</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabifott/\">Fabian</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/ferkho/\">Ferenc Forgacs</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/flymike/\">flymike</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/subscriptiongroup/\">George</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/glauberglauber/\">Glauber Mota</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/goldenapples/\">goldenapples</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/guidooffermans/\">guidooffermans</a>, <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a>, <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/isharis/\">Haris Zulfiqar</a>, <a href=\"https://profiles.wordpress.org/harrym/\">harrym</a>, <a href=\"https://profiles.wordpress.org/harshbarach/\">harshbarach</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hoasi/\">HoaSi</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/gsayed786/\">Imran Sayed</a>, <a href=\"https://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/iqbalbary/\">iqbalbary</a>, <a href=\"https://profiles.wordpress.org/ireneyoast/\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/jagirbaheshwp/\">jagirbaheshwp</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">Jake Whiteley</a>, <a href=\"https://profiles.wordpress.org/jamescollins/\">James Collins</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/jameslnewell/\">jameslnewell</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/javidalkaruzi/\">Janvo Aldred</a>, <a href=\"https://profiles.wordpress.org/jaredcobb/\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jaswrks/\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/javorszky/\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami/\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jeffikus/\">jeffikus</a>, <a href=\"https://profiles.wordpress.org/jellypixel/\">jellypixel</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jeslen/\">Jeslen Bucci</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jfoulquier/\">jfoulquier</a>, <a href=\"https://profiles.wordpress.org/jimyaghi/\">jimyaghi</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"https://profiles.wordpress.org/joelyoder/\">joelyoder</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/joseaneto/\">joseaneto</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshlevinson/\">Josh Levinson</a>, <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"https://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/karthikbhatb/\">Karthik Bhat</a>, <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/kelsu02/\">Kelly R</a>, <a href=\"https://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"https://profiles.wordpress.org/kellylawrence/\">kellylawrence</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/kipperlenny/\">Kipperlenny</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjbenk/\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/komagain/\">komagain</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"https://profiles.wordpress.org/latifi/\">latifi</a>, <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>, <a href=\"https://profiles.wordpress.org/laurora/\">Laura Nelson</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/leutrimh/\">Leutrim Husaj</a>, <a href=\"https://profiles.wordpress.org/limera1n/\">lim3ra</a>, <a href=\"https://profiles.wordpress.org/lpointet/\">Lionel Pointet</a>, <a href=\"https://profiles.wordpress.org/llizard/\">llizard</a>, <a href=\"https://profiles.wordpress.org/louislaugesen/\">Louis</a>, <a href=\"https://profiles.wordpress.org/lucagrandicelli/\">Luca Grandicelli</a>, <a href=\"https://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lumne/\">Lumne</a>, <a href=\"https://profiles.wordpress.org/mager19/\">mager19</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/mahesh901122/\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/shamimmoeen/\">Mainul Hassan Main</a>, <a href=\"https://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"https://profiles.wordpress.org/manzwebdesigns/\">manzwebdesigns</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marijnkoopman/\">Marijn</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"https://profiles.wordpress.org/marks99/\">Mark Smallman</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep/\">markshep</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom/\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, <a href=\"https://profiles.wordpress.org/mattoperry/\">mattoperry</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/mgrenierfarmmedia/\">mgrenierfarmmedia</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/m_butcher/\">Michele Butcher-Jones</a>, <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikelopez/\">mikelopez</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/eemitch/\">Mitchell Bennis</a>, <a href=\"https://profiles.wordpress.org/mmarco9/\">mmarco9</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mopsyd/\">mopsyd</a>, <a href=\"https://profiles.wordpress.org/morganestes/\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/gwendydd/\">Morgan Kay</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a>, <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a>, <a href=\"https://profiles.wordpress.org/mrgrt/\">mrgrt</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/musicaljoeker/\">musicaljoeker</a>, <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"https://profiles.wordpress.org/n5hzr/\">n5hzr</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/navanathbhosale/\">Navanath Bhosale</a>, <a href=\"https://profiles.wordpress.org/naveenkharwar/\">Naveen Kharwar</a>, <a href=\"https://profiles.wordpress.org/lcyh78/\">Neil James (lcyh78)</a>, <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/arealnobrainer/\">Netravnen</a>, <a href=\"https://profiles.wordpress.org/nicomollet/\">nicomollet</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikolam/\">Nikola</a>, <a href=\"https://profiles.wordpress.org/nbachiyski/\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/njbrown/\">njbrown</a>, <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/noahshrader/\">noahshrader</a>, <a href=\"https://profiles.wordpress.org/nourma/\">nourma</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">O André</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/oolleegg55/\">oolleegg55</a>, <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/ovenall/\">ovenall</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/jhonqwerty/\">pabloselin</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</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/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/pekz0r/\">Peter Elmered</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/decrecementofeliz/\">Pilar Mera</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/pishmishy/\">pishmishy</a>, <a href=\"https://profiles.wordpress.org/pkvillanueva/\">pkvillanueva</a>, <a href=\"https://profiles.wordpress.org/prashanttholia/\">prashanttholia</a>, <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/prionkor/\">prionkor</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/puneetsahalot/\">Puneet Sahalot</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rajanit2000/\">Rajan Vijayan</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/redstar504/\">redstar504</a>, <a href=\"https://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"https://profiles.wordpress.org/retlehs/\">retlehs</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">ribaricplusplus</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"https://profiles.wordpress.org/roikles/\">roikles</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"https://profiles.wordpress.org/saeedfard/\">Saeed Fard</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a>, <a href=\"https://profiles.wordpress.org/sswebster/\">Sam Webster</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/saqibameen/\">Saqib Ameen</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sawanoboly/\">sawanoboly</a>, <a href=\"https://profiles.wordpress.org/scarolan/\">scarolan</a>, <a href=\"https://profiles.wordpress.org/l3rady/\">Scott Cariss</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanpaulrasmussen/\">seanpaulrasmussen</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/senning/\">Senning</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/sncoker/\">Shawntelle Coker</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shramee/\">shramee</a>, <a href=\"https://profiles.wordpress.org/sresok/\">Simon Resok</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/sproutchris/\">sproutchris</a>, <a href=\"https://profiles.wordpress.org/stulab/\">Stéphane Treilhou</a>, <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/garubi/\">Stefano Garuti</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a>, <a href=\"https://profiles.wordpress.org/sudoshreyansh/\">sudoshreyansh</a>, <a href=\"https://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/techboyg5/\">techboyg5</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/thefarlilacfield/\">thefarlilacfield</a>, <a href=\"https://profiles.wordpress.org/thelmachido/\">Thelma Mutete</a>, <a href=\"https://profiles.wordpress.org/thib3113/\">thib3113</a>, <a href=\"https://profiles.wordpress.org/thijsvanloef/\">thijsvanloef</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomaslhotta/\">thomaslhotta</a>, <a href=\"https://profiles.wordpress.org/timhavinga/\">Tim Havinga</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a>, <a href=\"https://profiles.wordpress.org/tray/\">tracy apps</a>, <a href=\"https://profiles.wordpress.org/treibstoff/\">treibstoff</a>, <a href=\"https://profiles.wordpress.org/trisha_cornelius/\">Trisha Cornelius</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/tzafrir/\">tzafrir</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/uxkai/\">uxkai</a>, <a href=\"https://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"https://profiles.wordpress.org/contact-banker/\">Varun Sharma</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"https://profiles.wordpress.org/ravivaddweb/\">vidhiaddweb</a>, <a href=\"https://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a>, <a href=\"https://profiles.wordpress.org/vinita29/\">Vinita Tandulkar</a>, <a href=\"https://profiles.wordpress.org/usestrict/\">Vinny</a>, <a href=\"https://profiles.wordpress.org/virgodesign/\">virgodesign</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/webmigrates/\">Webmigrates Technologies</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a>, <a href=\"https://profiles.wordpress.org/worldweb/\">worldweb</a>, <a href=\"https://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"https://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, and <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>.\n\n\n\n<p></p>\n\n\n\n<p>In addition, many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time, or they’ve been around since the first release all the way back in 2003. These releases are as successful as they are because of their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who helped make WordPress 5.6. available in 38 languages at the time of release. Our community translators are hard at work ensuring more languages are on their way (70 are already at 90%). If contributing to WordPress appeals to you, it’s easy to learn more. Check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9325\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"State of the Word 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2020/12/state-of-the-word-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Dec 2020 22:55: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:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=9296\";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:110:\"State of the Word will be streamed on Facebook, YouTube, and Twitter on Thursday, Dec 17th, 2020 at 1600 UTC.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2799:\"\n<p>State of the Word is an annual keynote address delivered by the project co-founder, Matt Mullenweg. This year’s keynote will be streamed on <a href=\"https://www.facebook.com/WordPress/\">Facebook</a>, <a href=\"https://www.youtube.com/wordpress\">YouTube</a>, and <a href=\"https://twitter.com/wordpress\">Twitter</a> on <a href=\"https://www.timeanddate.com/countdown/generic?iso=20201217T08&p0=224&msg=State+of+the+Word+2020&font=slab&csz=1\">Thursday, Dec 17th, 2020 at 1600 UTC</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"355\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?resize=632%2C355&ssl=1\" alt=\"\" class=\"wp-image-9316\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?resize=1024%2C575&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?resize=300%2C168&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?resize=768%2C431&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?resize=1536%2C863&ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?w=2048&ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?w=1264&ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>Have a question?</h3>\n\n\n\n<p>A Question and Answer period with pre-recorded videos will follow State of the Word. To take part, record a video of you asking your question to Matt on your computer or phone (landscape format, please). Don’t forget to include your name and how you use WordPress! Try to keep your video to under a minute so Matt can answer as many questions as possible.</p>\n\n\n\n<p>To submit your question, upload it as an unlisted video (<a href=\"https://support.google.com/youtube/answer/157177\">YouTube works great for this</a>) and send a link to <a href=\"mailto:ask-matt@wordcamp.org\">ask-matt@wordcamp.org</a>. <strong>Deadline is Friday, Dec 11th, 2020!</strong></p>\n\n\n\n<h3>New to State of the Word?</h3>\n\n\n\n<p>If this is your first time hearing of this talk, you’re in luck! Check out previous recordings below.</p>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2019/11/03/2019-state-of-the-word/\">State of the Word 2019 – WordCamp US, St. Louis</a></li><li><a href=\"https://wordpress.tv/2018/12/27/state-of-the-word-2018/\">State of the Word 2018 – WordCamp US, Nashville</a></li><li><a href=\"https://wordpress.tv/tag/state-of-the-word/\">All recordings</a></li></ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9296\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: November 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2020/12/the-month-in-wordpress-november-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Dec 2020 09:13:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=9283\";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:304:\"November 2020 saw several updates to the WordPress 5.6 release. Read on to follow all the latest news from the WordPress world! WordPress 5.6 updates The Core team released WordPress 5.6 Beta 3 on Nov. 2, Beta 4 on Nov. 12, release candidate 1 on Nov. 17, and release candidate 2 on Dec. 1. You […]\";s: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:\"Hari Shanker R\";s: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:10892:\"\n<p>November 2020 saw several updates to the WordPress 5.6 release. Read on to follow all the latest news from the WordPress world!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.6 updates</h2>\n\n\n\n<p>The Core team released WordPress 5.6 <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">Beta 3</a> on Nov. 2, <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-4/\">Beta 4</a> on Nov. 12, <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-release-candidate/\">release candidate</a> 1 on Nov. 17, and <a href=\"https://wordpress.org/news/2020/12/wordpress-5-6-release-candidate-2/\">release candidate 2</a> on Dec. 1. You can test the Beta versions and the release candidates by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or by using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. Check out the <a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 field guide</a> to understand the features of WordPress 5.6 and learn how you can incorporate them into your websites. WordPress 5.6 <a href=\"https://make.wordpress.org/core/5-6/\">will be out by Dec. 9, 2020</a>. </p>\n\n\n\n<p>But our work is never done: You can submit <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-5-7-whats-on-your-wishlist/\">feature suggestions for WordPress 5.7</a> by Dec. 15. </p>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress Core dev chats on Wednesdays at 5 a.m. and 8 p.m. UTC in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel on the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>, and <a href=\"https://make.wordpress.org/core/tag/dev-chat/\">catch up with recaps</a> on the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>. If you would like to help with WordPress 5.6 outreach, contact the <a href=\"https://make.wordpress.org/marketing/\">WordPress Marketing team</a> on the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel.</p>\n\n\n\n<h2>Gutenberg 9.3 and 9.4 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">Version 9.3</a> on Nov. 4 and <a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">Version 9.4</a> on Nov. 18. Both versions include several improvements to Full Site Editing (FSE) flows, in addition to bug fixes and feature upgrades. Version 9.3 is the first release that isn’t included entirely in WordPress 5.6; the version automatically enables FSE experiments when a block-based theme is active. Version 9.4 introduces some new features like percentage width for button blocks, block variation transformations, social icon support, and font size support for the list block. You can find out more about the Gutenberg roadmap in the <a href=\"https://make.wordpress.org/core/2020/11/02/whats-next-in-gutenberg-november-2020/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Learn WordPress updates</h2>\n\n\n\n<p>WordPress contributor teams are all set to launch <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> in December. Community members can now watch<a href=\"https://learn.wordpress.org/workshops\"> video workshops</a> to learn about various WordPress topics, <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">participate in discussion groups</a>, and use <a href=\"https://learn.wordpress.org/lesson-plans/\">lesson plans</a> for organizing their own workshops. Contributor teams have launched <a href=\"https://make.wordpress.org/community/2020/11/18/quizzes-are-now-live-on-learn-wordpress/\">quizzes</a> and are also working on <a href=\"https://make.wordpress.org/community/2020/11/18/standards-for-learn-wordpress-workshop-content/\">setting standards</a> for workshops.<br></p>\n\n\n\n<p>Want to contribute to Learn WordPress? You can now submit a <a href=\"https://learn.wordpress.org/workshop-presenter-application/\">workshop application</a> (submissions in languages other than English are welcome!), apply to become a <a href=\"https://learn.wordpress.org/discussion-group-leader-application/\">discussion group leader</a>, organize <a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">discussions for your local WordPress meetup group</a>, or <a href=\"https://make.wordpress.org/training/2020/11/25/high-priority-items-before-learn-wordpress-org-launch-part-2/\">help fix issues with existing lesson plans</a>.</p>\n\n\n\n<h2>WordPress 5.6 Translations and Polyglots survey</h2>\n\n\n\n<p>WordPress 5.6 is ready to be translated and is now at <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>. If you would like to contribute, <a href=\"https://make.wordpress.org/polyglots/2020/11/07/wordpress-5-6-ready-to-be-translated/\">check out these instructions</a> and ensure that <a href=\"https://make.wordpress.org/polyglots/handbook/translating/packaging-localized-wordpress/automated-release-packages/\">your locale is ready for an automated release</a>. The Polyglots team has also kicked off its <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">translator research survey</a>. Please <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">participate in the survey</a>, share the <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">survey link</a> with members of your locale, and help amplify the <a href=\"https://www.facebook.com/WPTranslationDay/posts/1275404086174610\">Facebook</a>, <a href=\"https://twitter.com/TranslateWP/status/1333342595913834496\">Twitter</a>, and <a href=\"https://www.linkedin.com/posts/wptranslationday_makewordpress-wordpress-activity-6739110862650523648-fX8R/\">LinkedIn</a> posts about it.</p>\n\n\n\n<p>Want to help WordPress speak your language? Follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RP50LK\">#polyglots</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><a href=\"https://www.php.net/releases/8.0/en.php\">PHP 8</a> is out, and WordPress 5.6 <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">aims to be “beta-compatible” with the latest PHP version</a>.</li><li>Contributor teams have kicked off <a href=\"https://make.wordpress.org/themes/2020/11/18/theme-previews-in-the-time-of-blocks/\">an ongoing discussion on starter content for WordPress themes</a>. Starter content for the <a href=\"http://wp-themes.com/twentytwentyone/\">Twenty Twenty One</a>, <a href=\"http://wp-themes.com/twentytwenty/\">Twenty Twenty</a>, and <a href=\"http://wp-themes.com/twentyseventeen/\">Twenty Seventeen</a> themes are now available.</li><li>The Accessibility team is <a href=\"https://github.com/10degrees/accessibility-statement-plugin\">testing a tool</a> to generate the structure of an accessibility statement for WordPress websites based on <a href=\"https://www.w3.org/WAI/planning/statements/generator/#create\">W3C standards</a>, and it is <a href=\"https://github.com/10degrees/accessibility-statement-plugin/issues\">requesting feedback from the community</a>.</li><li>The <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> has published a <a href=\"https://wordpressfoundation.org/2020/open-source-workshops-november-2020-report/\">report on Open Source workshops</a> that were held online in 2020, based on the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform.</li><li>The Docs team is actively <a href=\"https://make.wordpress.org/docs/2020/11/12/follow-up-on-gutenberg-developer-documentation-restructuring-proposal/\">following up</a> on a proposal to <a href=\"https://make.wordpress.org/docs/2020/08/13/plan-proposal-for-a-new-better-structured-gutenberg-developer-documentation/\">restructure the Gutenberg developer documentation</a>.</li><li>The Community team is back with <a href=\"https://make.wordpress.org/community/tag/tuesdaytrainings/\">Tuesday Trainings</a>. The team is <a href=\"https://make.wordpress.org/community/2020/11/16/community-team-goals-for-2021-share-your-suggestions/\">also inviting suggestions on team goals for 2021</a> with a deadline of Dec. 14.</li><li>The Support team is <a href=\"https://make.wordpress.org/support/2020/11/changing-up-the-forum-front-page/\">making changes to the forum page</a> to improve discoverability. </li><li>Two online WordCamps took place in November: <a href=\"https://finland.wordcamp.org/2020/\">WordCamp Finland Online</a> and <a href=\"https://mexico.wordcamp.org/2020/\">WordCamp Mexico Online</a>. You can find Livestream recaps of the events on their websites. Videos will soon be available on WordPress.tv as well.</li><li>The Themes team <a href=\"https://make.wordpress.org/themes/2020/11/11/meeting-notes-tuesday-november-10-2020/\">made some changes to WordPress theme requirements</a>. These include removing updated CSS guidelines and a proposed plan to make WordPress themes accessibility-ready. The team is also <a href=\"https://make.wordpress.org/themes/2020/11/19/feedback-requested-resolution-process-for-issues-found-in-live-themes/\">requesting feedback</a> on the resolution process for issues found in live themes.</li><li>WordPress 5.6 will feature a <a href=\"https://make.wordpress.org/core/2020/11/05/updating-core-jquery-to-version-3-part-2/\">major jQuery change</a>, with the bundled jQuery version being updated to Version 3.5.1 and jQuery Migrate being updated to Version 3.3.2.</li><li>The <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Diversity speaker training group</a> of the Community team is requesting feedback on reimagining their work. Please <a href=\"https://make.wordpress.org/community/2020/11/12/input-requested-re-imagining-the-work-of-the-diverse-speaker-training-group-wpdiversity/\">share your feedback as comments on the post</a> by Dec. 18.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"9283\";s: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:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.6 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/2020/12/wordpress-5-6-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:\"Tue, 01 Dec 2020 22:09:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9274\";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:388:\"The second release candidate for WordPress 5.6 is here! WordPress 5.6 is slated for release on December 8, 2020, and we need your help to get there—if you haven’t tried 5.6 yet, now is the time! You can test WordPress 5.6 release candidate 2 in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option). Or download 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:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2249:\"\n<p>The second release candidate for WordPress 5.6 is here!</p>\n\n\n\n<p>WordPress 5.6 is slated for release on <strong>December 8, 2020</strong>, and we need <em>your</em> help to get there—if you haven’t tried 5.6 yet, now is the time!</p>\n\n\n\n<p>You can test WordPress 5.6 release candidate 2 in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the <em>Tested up to</em> version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>. That way, those can be figured out before the final release. </p>\n\n\n\n<p>For a more detailed breakdown of the changes included in WordPress 5.6, check out the <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">WordPress 5.6 beta 1 post</a>. The <a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 Field Guide</a> is also out! It’s your source for details on all the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>Think you found a bug?</strong> Post it to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report you can <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>. Don’t forget to check <a href=\"https://core.trac.wordpress.org/tickets/major\">the list of known bugs</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:\"9274\";s: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:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.6 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/2020/11/wordpress-5-6-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:\"Tue, 17 Nov 2020 22:43: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9258\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 5.6 Release Candidate is 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3349:\"\n<p>The first release candidate for WordPress 5.6 is now available!</p>\n\n\n\n<p>This is an important milestone in the community’s progress toward the final release of WordPress 5.6.</p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.6 is slated for release on <strong>December 8, 2020</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.6 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.6 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.6?</h2>\n\n\n\n<p>The final release of 2020 continues the annual tradition of a new default theme that is custom built to showcase the new features and functionality of the software. Continued progress on the block editor is especially clear in this release, which brings more blocks to more places, and fewer clicks to implement your layouts.</p>\n\n\n\n<p>WordPress 5.6 also has lots of refinements to polish the developer experience. To learn more, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the <em>Tested up to</em> version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The WordPress 5.6 Field Guide, due very shortly, will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\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> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.6 release schedule.</p>\n\n\n\n<p><em><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>.</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:\"9258\";s: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:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.6 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2020 23:49:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9249\";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:363:\"WordPress 5.6 Beta 4 is now available for testing! This software is still in development, so we recommend that you run this version on a test site. You can test the WordPress 5.6 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option). Or download the beta here (zip). The current target for 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:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5658:\"\n<p>WordPress 5.6 Beta 4 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-beta4.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for the final release is December 8, 2020. This is just over<strong> three weeks away</strong>, so your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">beta 3</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since beta 3, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">42 bugs</a> have been fixed. Here is a summary of a few changes included in beta 4:</p>\n\n\n\n<ul><li>There was a change to the auto-updates implementation for new installations of the software (<a href=\"https://core.trac.wordpress.org/ticket/50907\">#50907</a>). <em><a href=\"https://make.wordpress.org/core/2020/11/10/upgrade-install-component-meeting-summary-november-10-2020/\">Next steps</a>, and <a href=\"https://make.wordpress.org/core/2020/11/10/wp5-6-auto-update-implementation-change/\">rationale</a> are both available.</em></li><li>Added better handling of unexpected values in Site Health (<a href=\"https://core.trac.wordpress.org/ticket/50145\">#50145</a>).</li><li>Added a way for developers to filter the available authors list in Quick Edit (<a href=\"https://core.trac.wordpress.org/ticket/47685\">#47685</a>).</li><li>More accessible handling of the tag cloud widget (<a href=\"https://core.trac.wordpress.org/ticket/51455\">#51455</a>).</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&component=Media&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Multiple improvements in the Media component</a>.</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&component=Build%2FTest+Tools&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Multiple improvements in the Build/Test Tools component</a>.</li></ul>\n\n\n\n<p><em>To see all of the features for each Gutenberg release in detail, check out the release posts: <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"https://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</em></p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/query?status=new&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">known bugs</a>.</p>\n\n\n\n<p><em>Props to @tonyamork, @audrasjb for technical notes and @angelasjin,<em> </em><a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a><em>, </em><a href=\"https://profiles.wordpress.org/cguntur/\">@cguntur</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> for final review.</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:\"9249\";s: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:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.6 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Nov 2020 21:23: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9234\";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:379:\"WordPress 5.6 Beta 3 is now available for testing! This software is still in development, so we recommend that you run this version on a test site. You can test the WordPress 5.6 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option). Or download the beta here (zip). The current target for 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:15:\"Chloe Bringmann\";s: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:5206:\"\n<p>WordPress 5.6 Beta 3 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-beta3.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for the final release is December 8, 2020. This is just <strong>five weeks away</strong>, so your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-2/\">beta 2 </a>development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since beta 2, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F28%2F2020..11%2F03%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">20 bugs</a> have been fixed. Here is a summary of a few changes included in beta 3:</p>\n\n\n\n<ul><li>Added block patterns for Twenty Twenty (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51098\">#51098</a>) and Twenty Nineteen (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51099\">#51099</a>) themes.</li><li>Added theme support for navigation-widgets (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51445\">#51445</a>).</li><li>Fixed incorrect slashes in the URL if the parent is empty for REST API (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/44745\">#44745</a>).</li><li>Added a test to Site Health to verify that the <code>Authorization</code> header is working as expected for Application Passwords (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/51638\">#51638</a>).</li><li>10 additional bugs fixed in the block editor (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/WordPress/gutenberg/pull/26588\">#26588</a>).</li></ul>\n\n\n\n<p>To see all of the features for each Gutenberg release in detail, check out the release posts: <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"https://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience as well. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/query?status=new&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> for help and <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> for final review.</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:\"9234\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"The Month in WordPress: October 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2020/11/the-month-in-wordpress-october-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Nov 2020 18:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=9225\";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:\"October 2020 was a notable month for WordPress lovers, thanks to the release of several products and updates. Read on to keep up with all the latest news! The 2020 WordPress Annual Survey is out The team published the 2020 WordPress Annual survey —  to help those who build WordPress to understand more about our […]\";s: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:\"Hari Shanker R\";s: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:11855:\"\n<p>October 2020 was a notable month for WordPress lovers, thanks to the release of several products and updates. Read on to keep up with all the latest news!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The 2020 WordPress Annual Survey is out</h2>\n\n\n\n<p>The team published the <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-english\">2020 WordPress Annual survey</a> — to help those who build WordPress to understand more about our software usage and our contributors’ experience. The Annual Survey will be open for at least 6 weeks and is available in <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2020-survey-spanish\">Spanish</a>. The survey results (once complete) will be posted on <a href=\"https://wordpress.org/news/\">WordPress.org/news</a>. The<a href=\"https://wordpress.org/news/2020/10/take-the-2020-wordpress-annual-survey-and-view-the-2019-results/\"> 2019 survey results</a> have also been released and can now be viewed as <a href=\"https://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit\">slides</a> or downloaded in <a href=\"https://www.dropbox.com/sh/bq62sficymopgos/AAA-wx73cDviVG84NSCTgjNDa?dl=0\">PDF format</a>. </p>\n\n\n\n<h2>WordPress Translation celebrations spanned four weeks</h2>\n\n\n\n<p>The last week of September and most of October were focused on recruiting and encouraging polyglot contributors to the WordPress translation project. What was originally envisioned as a single-day event lasted 24 days! The Polyglots and Marketing Teams are exploring how future mini-events can be supported to continue building the momentum. Recordings of the live talks and interviews with contributors are available <a href=\"https://www.youtube.com/playlist?list=PLCVEqsAbLfffK5WzOT9BhPsh82HgM8vj1\">on YouTube</a>. Write-ups from the different events are <a href=\"https://wptranslationday.org/\">on the WPTranslationDay website</a>. </p>\n\n\n\n<p>Want to help WordPress speak your own language? Follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RP50LK\">#polyglots</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. </p>\n\n\n\n<h2>WordPress maintenance and beta releases</h2>\n\n\n\n<p>The Core team released <a href=\"https://make.wordpress.org/core/2020/10/30/wordpress-5-5-3-release-some-technical-details/\">WordPress 5.5.3 on Oct. 31</a>, following the release of Version <a href=\"https://wordpress.org/news/2020/10/wordpress-5-5-2-security-and-maintenance-release/\">5.5.2 on Oct. 29</a>. Both releases fix several bugs and security issues with WordPress. You can update to the latest version directly from your WordPress dashboard or <a href=\"https://wordpress.org/download/\">download</a> it now from WordPress.org. The team also released WordPress 5.6 <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">Beta 1</a> on Oct. 20, followed by <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-2/\">Beta 2 </a>on Oct. 27. When ready, the final release will include improvements to the editor, auto-updates for major releases, PHP 8 support, and the Twenty Twenty One theme. You can test the Beta versions by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin.<br></p>\n\n\n\n<p>Want to be involved in the next release? Follow WordPress 5.6 updates on the <a href=\"https://make.wordpress.org/core/5-6/\">development cycle</a> and sign-up for the <a href=\"https://make.wordpress.org/core/2020/10/22/code-review-commit-office-hours-for-5-6/\">code review/commit office hours</a>. You can help build WordPress Core by following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a> and joining the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. If you would like to help out with WordPress 5.6 outreach, contact the <a href=\"https://make.wordpress.org/marketing/\">WordPress Marketing team</a> on the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel.</p>\n\n\n\n<h2>Gutenberg 9.2 is released</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">Version 9.2</a> of the Gutenberg plugin came out on Oct. 21. This release offers support for video subtitles, the ability to transform selected blocks into the columns block, background patterns in cover blocks, along with several exciting features such as improvements to the widget screen, as well as bug fixes. You can find out more about the Gutenberg roadmap in the <a href=\"https://make.wordpress.org/core/2020/10/01/whats-next-in-gutenberg-october/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Learn WordPress is gearing up for launch</h2>\n\n\n\n<p>The <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> initiative, which offers <a href=\"https://learn.wordpress.org/workshops/\">WordPress video workshops</a> followed by <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">interactive discussions</a>, is aiming to put out two courses by the end of the year as part of its full launch. The team is working on creating courses and is requesting feedback from community members on the <a href=\"https://make.wordpress.org/community/2020/10/23/learn-wordpress-course-planning/\">planned list of courses</a>.<br><br>Want to contribute to Learn WordPress? You can now submit a <a href=\"https://learn.wordpress.org/workshop-presenter-application/\">workshop application</a> (submissions in non-English languages are welcome), apply to become a <a href=\"https://learn.wordpress.org/discussion-group-leader-application/\">discussion group leader</a>, organize <a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">discussions for your local WordPress meetup group</a>, or <a href=\"https://make.wordpress.org/training/2020/10/14/call-for-screenshots-contributors/\">update screenshots</a> on existing <a href=\"https://learn.wordpress.org/lesson-plans/\">lesson plans</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/updates/2020/10/20/quarterly-updates-q3-2020/\">Q3 2020 update</a> from the WordPress project is now out!</li><li>The <a href=\"https://make.wordpress.org/marketing/\">WordPress Marketing team</a> has put together a list of <a href=\"https://github.com/wpmarketingteam/WP5.5\">WordPress 5.5 marketing resources</a> consisting of video presentations, slides, questions & answers, social media posts, and more – aimed at both developers and non-developers. The team has also prepared a list of <a href=\"https://www.youtube.com/playlist?list=PLCVEqsAbLffcS1Rx-COZ5CZBOmXZJEe6k\">captioned screen-recordings</a> in several languages to aid new contributors. Contact the team on the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel if you would like to contribute to these and upcoming projects. </li><li>The <a href=\"https://make.wordpress.org/core\">WordPress Core team</a> has <a href=\"https://make.wordpress.org/core/2020/09/23/proposal-rest-api-authentication-application-passwords/\">announced a proposal</a> to introduce application passwords for REST API integrations.</li><li>Five online WordCamps took place in October: <a href=\"https://2020.rochester.wordcamp.org/\">WordCamp Rochester, NY</a>, <a href=\"https://austin.wordcamp.org/2020/\">WordCamp Austin, TX</a>, <a href=\"https://2020.italia.wordcamp.org/\">WordCamp Italia Online</a>, <a href=\"https://la.wordcamp.org/2020/\">WordCamp Los Angeles, CA</a>, and <a href=\"https://bulgaria.wordcamp.org/2020/\">WordCamp Bulgaria Online</a>. You can find livestream recaps of these camps on their websites. The camps are also in the process of uploading their videos to <a href=\"https://wordpress.tv/\">WordPress.tv</a>. Check out the <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Schedule</a> to catch up with upcoming online WordCamps.</li><li>Contributor teams have started work on <a href=\"https://make.wordpress.org/core/2020/10/22/twenty-twenty-one-dark-mode-discussion/\">adding dark mode support for the Twenty Twenty One theme</a>. Additionally, the development of the <a href=\"https://make.wordpress.org/themes/2020/10/23/developing-the-full-site-editing-version-of-twenty-twenty-one/\">Full Site Editing version of Twenty Twenty One</a> has also kicked-off in the <a href=\"https://github.com/WordPress/theme-experiments/tree/master/twentytwentyone-blocks\">Theme Experiments GitHub repository</a>.</li><li><a href=\"https://buddypress.org/2020/10/buddypress-7-0-0-beta1/\">BuddyPress 7.0 beta</a>, which comes with new administration screens, blocks, and improved CLI support – is now available! </li><li>The Core team is <a href=\"https://make.wordpress.org/core/2020/10/06/revisiting-starter-content-on-org-and-beyond/\">revisiting starter content for WordPress themes</a> as part of the 5.6 release. The team also decided not to ship the widgets screen in WordPress 5.6 and have started discussions on <a href=\"https://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/\">aligning the WordPress release cycle with industry standards</a>.</li><li>WordPress Accessibility enthusiasts all over the world joined hands for the first ever 24 hour <a href=\"https://wpaccessibilityday.org/\">WP Accessibility day</a> event on Oct. 2. You can find the recorded livestream of the event on its <a href=\"https://www.youtube.com/channel/UCes9XCUZd51CAigbBEGlfNg/featured?view_as=subscriber\">YouTube channel</a>.</li><li>The <a href=\"https://make.wordpress.org/meta\">Meta</a> team has <a href=\"https://make.wordpress.org/meta/2020/10/27/block-pattern-directory-ideas-and-discussion/\">kicked off a discussion</a> on setting up a <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">Block pattern</a> directory (similar to the <a href=\"https://wordpress.org/support/article/block-directory/\">existing block directory</a>). </li><li>The <a href=\"https://make.wordpress.org/themes\">Themes</a> team has published a post clarifying <a href=\"https://make.wordpress.org/themes/2020/10/07/block-based-themes-and-wordpress-5-6/\">how Block based themes will work with WordPress 5.6</a>. Check out the <a href=\"https://developer.wordpress.org/block-editor/tutorials/block-based-themes/\">block-based theme tutorial</a> and its <a href=\"https://github.com/WordPress/gutenberg/blob/master/docs/designers-developers/developers/themes/block-based-themes.md\">documentation</a> to learn how to build block-based themes. </li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"9225\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.5.3 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/2020/10/wordpress-5-5-3-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:\"Fri, 30 Oct 2020 20: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: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=9212\";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:372:\"WordPress 5.5.3 is now available.  This maintenance release fixes an issue introduced in WordPress 5.5.2 which makes it impossible to install WordPress on a brand new website that does not have a database connection configured. This release does not affect sites where a database connection is already configured, for example, via one-click installers or an […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s: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:4118:\"\n<p>WordPress 5.5.3 is now available. </p>\n\n\n\n<p>This maintenance release fixes an issue introduced in WordPress 5.5.2 which makes it impossible to install WordPress on a brand new website that does not have a database connection configured. This release does not affect sites where a database connection is already configured, for example, via one-click installers or an existing <code>wp-config.php</code> file.</p>\n\n\n\n<h2>5.5.3-alpha Issue</h2>\n\n\n\n<p>Earlier today — between approximately 15:30 and 16:00 UTC — the auto-update system for WordPress updated some sites from version 5.5.2 to version 5.5.3-alpha. This auto-update was due to an error in the Updates API caused by the 5.5.3 release preparations (<a href=\"https://wordpress.org/support/topic/wordpress-5-5-3-alpha-auto-updates/\">see more here</a>). The 5.5.3-alpha version at this point was functionally identical to 5.5.2 as no development work had been started on 5.5.3; however, the following changes may have been made to your site:</p>\n\n\n\n<ul><li>The default “Twenty” themes installed as part of the pre-release package.</li><li>The “Akismet” plugin installed as part of the pre-release package.</li></ul>\n\n\n\n<p>These themes and plugins were not activated and therefore remain non-functional unless you installed them previously. It is safe to delete these features should you prefer not to use them. </p>\n\n\n\n<p>If you are not on 5.5.2, or have auto-updates for minor releases disabled, please manually update to the 5.5.3 version by downloading WordPress 5.5.3 or visiting Dashboard → Updates and click “Update Now.”</p>\n\n\n\n<p>For more technical details of the issue, we’ve <a href=\"https://make.wordpress.org/core/2020/10/30/wordpress-5-5-3-release-some-technical-details/\">posted on our Core Development blog</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>Thanks to those who contributed to the 5.5.3 release: <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/barry/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>barry</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/clorith/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>clorith</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, <a href=\'https://profiles.wordpress.org/johnbillion/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>johnbillion</a>, <a href=\'https://profiles.wordpress.org/garubi/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>garubi</a>, <a href=\'https://profiles.wordpress.org/metalandcoffee/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>metalandcoffee</a>, <a href=\'https://profiles.wordpress.org/mukesh27/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mukesh27</a>, <a href=\'https://profiles.wordpress.org/otto42/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>otto42</a>, <a href=\'https://profiles.wordpress.org/punitsoftac/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>punitsoftac</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>, <a href=\'https://profiles.wordpress.org/whyisjake/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>whyisjake</a>, and <a href=\'https://profiles.wordpress.org/xknown/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>xknown</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:\"9212\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.5.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2020/10/wordpress-5-5-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Oct 2020 20:41: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=9189\";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:364:\"WordPress 5.5.2 is now available! This security and maintenance release features 14 bug fixes in addition to 10 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.5.2 is a short-cycle security and maintenance release. The next […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s: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:7296:\"\n<p>WordPress 5.5.2 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.5.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">14 bug fixes</a> in addition to 10 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.5.2 is a short-cycle security and maintenance release. The next major release will be version 5.6.</p>\n\n\n\n<p>You can download WordPress 5.5.2 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Ten security issues affect WordPress versions 5.5.1 and earlier. If you haven’t yet updated to 5.5, all WordPress versions since 3.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props to Alex Concha of the WordPress Security Team for their work in hardening deserialization requests.</li><li>Props to David Binovec on a fix to disable spam embeds from disabled sites on a multisite network.</li><li>Thanks to Marc Montas from Sucuri for reporting an issue that could lead to XSS from global variables.</li><li>Thanks to Justin Tran who reported an issue surrounding privilege escalation in XML-RPC. He also found and disclosed an issue around privilege escalation around post commenting via XML-RPC.</li><li>Props to Omar Ganiev who reported a method where a DoS attack could lead to RCE.</li><li>Thanks to Karim El Ouerghemmi from <a href=\"https://www.ripstech.com/\">RIPS</a> who disclosed a method to store XSS in post slugs.</li><li>Thanks to Slavco for reporting, and confirmation from Karim El Ouerghemmi, a method to bypass protected meta that could lead to arbitrary file deletion.</li><li>Thanks to Erwan LR from <a href=\"https://wpscan.com/\">WPScan</a> who responsibly disclosed a method that could lead to CSRF. </li><li>And a special thanks to <a href=\'https://profiles.wordpress.org/zieladam/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>zieladam</a> who was integral in many of the releases and patches during this release.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.5.2&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-5-2/\">version 5.5.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.5.2 release was led by <a href=\"https://profiles.wordpress.org/whyisjake/\">@whyisjake</a> and the following release squad: <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">@johnbillion</a>, <a href=\"https://profile.wordpress.org/metalandcoffee\">@metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">@noisysocks</a> <a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricker</a> and <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.5.2 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey “Rarst” Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I. Chowdhury</a>, <a href=\"https://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</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:\"9189\";s: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:9:\"\n 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:4:\"\n 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:\"Thu, 10 Dec 2020 11:14:46 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, 09 Dec 2020 05:54:07 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:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20170530214036\";}','no'),(37854,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1607642086','no'),(37855,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1607598886','no'),(37856,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1607642087','no'),(37857,'_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:80:\"WPTavern: State of the Word 2020 Scheduled for December 17, with Virtual Q&A\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/state-of-the-word-2020-scheduled-for-december-17-with-virtual-qa?utm_source=rss&utm_medium=rss&utm_campaign=state-of-the-word-2020-scheduled-for-december-17-with-virtual-qa\";s: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:5937:\"<p>WordCamp US 2020, previously scheduled for October, was cancelled due to <a href=\"https://wptavern.com/wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue\">pandemic stress and online event fatigue</a>. Organizers did opt for running it as an online event, but Matt Mullenweg’s annual State of the Word address will be delivered virtually this year. It will be streamed on <a href=\"https://www.facebook.com/WordPress/\">Facebook</a>, <a href=\"https://www.youtube.com/wordpress\">YouTube</a>, and <a href=\"https://twitter.com/wordpress\">Twitter</a> on <a href=\"https://www.timeanddate.com/countdown/generic?iso=20201217T08&p0=224&msg=State+of+the+Word+2020&font=slab&csz=1\">Thursday, Dec 17th, 2020 at 1600 UTC</a>.</p>\n\n\n\n<p>In previous years, the State of the Word has been one the most highly anticipated keynotes at WordCamp US. Attendees pack into the venue’s auditorium in anticipation of hearing about all of the highlights and milestones the WordPress community has achieved over the past year. Mullenweg often uses the time to recast his vision for the project and deliver important announcements. </p>\n\n\n\n<p>This year has been unlike anything we have experienced before, but one thing has remained constant – WordPress’ phenomenal growth continues, as other major open source CMS’s are slowly declining. It is currently sitting at <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">39.3%</a> of the Alexa top 10 million, 4.2% higher than November 2019, according to Joost de Valk’s biannual <a href=\"https://joost.blog/cms-market-share-november-2020-analysis/\">analysis</a> of the CMS market share. de Valk attributes much of that growth to WooCommerce, which accounts for more than 18% of all the WordPress sites W3techs can detect. </p>\n\n\n\n<p>Despite the global upheaval caused by the coronavirus, WordPress’ development has remained steady. More than 605 people contributed to the last major release (5.6) and there were 805 for the previous release (with 38% of them being new contributors.) In addition to reinventing WordCamps for the new virtual event frontier, the community team has also <a href=\"https://make.wordpress.org/community/2020/08/12/learn-wordpress-is-live/\">launched</a> the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform to make educational resources more globally available, placing a new emphasis on training. The platform is cracking open a world of WordPress knowledge that was previously relegated to more limited in-person audiences.</p>\n\n\n\n<p>“Since we’ve collectively come to the realization that talks and training content can be delivered and consumed asynchronously, there will be less need to use the high-bandwidth time of physical events to passively watch a talk where we aren’t actively engaging with others,” WordPress community manager Hugh Lashbrooke said in a <a href=\"https://hugh.blog/2020/12/03/building-community-in-a-post-covid-world/\">post</a> with predictions on post-COVID community building. “The focus of these valuable meetings will rather be on interpersonal connection and mutual learning through active participation.”</p>\n\n\n\n<p>Lashbrooke’s predictions recognize a friction that has always existed at WordCamps: the “hallway track” is more engaging and more popular than most of the talks given at events. It’s the interpersonal connection that people crave more than turning up for sessions that are usually being recorded anyway.</p>\n\n\n\n<p>To those who have been homebound for the better part of this year, it may feel as though the world is standing still. But the WordPress community has put many meaningful changes in motion in response to the pandemic’s unique challenges. Despite all the uncertainty, WordPress is moving forward like a steady ship, with reliable improvements to the software and the community, thanks to the goodwill and cooperation of its unwavering base of contributors. This stability is worthy of commendation among this year’s milestones and is a testament to the maturity of the project.</p>\n\n\n\n<h3>Join the Virtual Q&A by Submitting a Pre-Recorded Video</h3>\n\n\n\n<p>Matt Mullenweg will be running the Q&A portion of his address virtually this year, with pre-recorded videos of questions from the audience. WordPress Executive Director Josepha Haden Chomphosy <a href=\"https://wordpress.org/news/2020/12/state-of-the-word-2020/\">outlined</a> the instructions for participating:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>To take part, record a video of you asking your question to Matt on your computer or phone (landscape format, please). Don’t forget to include your name and how you use WordPress! Try to keep your video to under a minute so Matt can answer as many questions as possible. </p></blockquote>\n\n\n\n<p>There are some positive aspects of this method but also a few drawbacks. It can create a more polished and efficient experience of Q&A where the audience is less likely to have to sit through long, rambling questions. It also allows equal opportunity for people living in all time zones to submit a question.</p>\n\n\n\n<p>On the other hand, the questions will be screened and pre-selected, allowing more preparation time for the answers. A live Q&A offers the opportunity to catch the person off guard and get answers that might not be delivered the same way in a different format. Pre-recorded videos have a few trade-offs but they may be the best option we have for this event.</p>\n\n\n\n<p>The deadline to submit video questions is Friday, December 11, 2020. Haden recommends participants upload their videos to YouTube as “<a href=\"https://support.google.com/youtube/answer/157177\">unlisted</a>” and send a link to <a href=\"mailto:ask-matt@wordcamp.org\">ask-matt@wordcamp.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, 10 Dec 2020 05:57: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: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: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:93:\"WPTavern: WordPress 5.6 “Simone” Includes New Twenty Twenty-One Theme and Improved Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/wordpress-5-6-simone-includes-new-twenty-twenty-one-theme-and-improved-editor?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-simone-includes-new-twenty-twenty-one-theme-and-improved-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9657:\"<img />Nina Simone<br />License: CC0 | Credit: <a href=\"https://commons.wikimedia.org/wiki/File:Nina_Simone_geeft_een_interview_in_het_Hilton_in_Amsterdam_in_het_kader_van_haar_nieuwe_album_%27Pastel_Blues%27,_NL-HlmNHA_1478_03720_K.JPG\">Noord-Hollands Archief / Fotoburo de Boer</a>\n\n\n\n<p class=\"has-drop-cap\">WordPress 5.6 “Simone,” named in honor of American performer and civil rights activist Nina Simone, was <a href=\"https://wordpress.org/news/2020/12/simone/\">released today</a> and is now available for download. The release was led by an <a href=\"https://wptavern.com/wordpress-5-6-development-kicks-off-with-all-women-release-squad\">all-women release squad</a>, a first in WordPress history. The new version includes many enhancements for the block editor, accessibility improvements, application password support for the REST API, and a new default theme.</p>\n\n\n\n<p>This release saw contributions from 605 volunteers who were involved with almost 350 Trac tickets and over 1,000 pull requests on GitHub.</p>\n\n\n\n<p>The following women formed the release squad for the 5.6 release:</p>\n\n\n\n<ul><li><strong>Release Lead:</strong> Josepha Haden. Cohort: Chloé Bringmann and Angela Jin.</li><li><strong>Release Coordinator:</strong> Dee Teal. Cohort: Thelma Mutete and Laura Nelson.</li><li><strong>Triage Lead:</strong> Tonya Mork.</li><li><strong>Core Tech Lead:</strong> Helen Hou-Sandì. Cohort: Amy Kamala and Ebonie Butler.</li><li><strong>Editor Tech Lead: </strong>Isabel Brison. Cohort: Chandrika Guntur, Anchen le Roux, and Rebecca Hum.</li><li><strong>Design Leads:</strong> Ellen Bauer and Tammie Lister. Cohort: Anyssa Ferreira, Estela Rueda, Tracy Apps, and Sophia DeRosia.</li><li><strong>Design Tech Lead:</strong> Shital Marakana.</li><li><strong>Accessibility Lead:</strong> Sarah Ricker. Cohort: Hauwa Abashiya.</li><li><strong>Marketing and Communications Leads:</strong> Abha Thakor and Yvette Sonneveld. Cohort: Nalini Thakor, Meher Bala, Olga Gleckler, Larissa Murrillo, Michelle Frechette, Breann McDede, and Afshana Diya.</li><li><strong>Documentation Lead:</strong> Shawntelle Coker. Cohort: Daisy Olsen, Meher Bala, and Winstina Hughes.</li><li><strong>Documentation Review Lead:</strong> Michele Butcher-Jones. Cohort: Nidhi Jain and Laura Byrne Cristiano.</li><li><strong>Default Theme Design Lead:</strong> Mel Choyce-Dwan. Cohort: Ellen Bauer.</li><li><strong>Default Theme Development Lead:</strong> Carolina Nymark. Cohort: Kelly Choyce-Dwan and Jessica Lyschik.</li><li><strong>Default Theme Wrangler:</strong> Jessica Lyschik.</li><li><strong>Test Lead: </strong>Monika Rao. Cohort: Allie Nimmons.</li><li><strong>Support Lead:</strong> Bet Hannon.</li></ul>\n\n\n\n<p>At times, the 5.6 development cycle felt a bit rocky. Block-based <a href=\"https://wptavern.com/wordpress-5-6-release-team-pulls-the-plug-on-block-based-widgets\">widgets</a> and <a href=\"https://wptavern.com/navigation-screen-sidelined-for-wordpress-5-6-full-site-editing-edges-closer-to-public-beta\">nav menus</a>, features expected to ship, were punted for a second time to a future release. These were hard decisions, but good leadership means making tough calls to hold off on features that are not ready for production.</p>\n\n\n\n<p>“You know, I was really hopeful for it too, and that last-minute call was one I labored over,” said Josepha Haden after pushing block-based widgets back. “When I last looked, it did seem close to ready, but then more focused testing was done and there were some interactions that are a little rough for users. I’m grateful for that because the time to discover painful user experiences is before launch rather than after!”</p>\n\n\n\n<p>Despite dropping what would have been major transitional features from the classic WordPress theming paradigm in preparation for WordPress 5.7’s expected site editor, the release still has a lot to offer.</p>\n\n\n\n<h2>Block Editor Enhancements</h2>\n\n\n\n<img />New dropdown for selecting block pattern category.\n\n\n\n<p class=\"has-drop-cap\">The Gutenberg plugin development team continues to make small but vital improvements to the block editor. They have also tacked on many new features in the past few months. Features from Gutenberg versions 8.6 – 9.2 are included in the update, along with bug fixes and performance improvements from 9.3 and 9.4.</p>\n\n\n\n<p>Much of the work this development cycle has been focused on the upcoming site editor. There was some initial hope that a beta version of it would land in the 5.6 release. It was a part of the proposed scope. However, the feature is still months away from being ready. This is not a bad thing. It needs more time to mature, and there should be no rush in integrating a feature that affects so many pieces of the platform.</p>\n\n\n\n<p>What end-users will see with this update is a more polished editor. Whether it is extra options for blocks or a dropdown select for block pattern categories, hundreds of minor changes have all led to a better overall experience.</p>\n\n\n\n<p>WP Tavern has covered nearly every major Gutenberg plugin release this cycle — <em>looks like we missed 8.8, sorry</em>. Catch up with anything you missed about editor changes from the following posts:</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/gutenberg-8-6-adds-cover-block-video-positioning-and-updates-block-patterns\">Gutenberg 8.6 Adds Cover Block Video Positioning and Updates Block Patterns</a></li><li><a href=\"https://wptavern.com/gutenberg-8-7-adds-minor-changes-updates-block-pattern-designs-and-continues-full-site-editing-work\">Gutenberg 8.7 Adds Minor Changes, Updates Block Pattern Designs, and Continues Full-Site Editing Work</a></li><li><a href=\"https://wptavern.com/gutenberg-8-9-brings-block-based-widgets-out-of-the-experimental-stage\">Gutenberg 8.9 Brings Block-Based Widgets Out of the Experimental Stage</a></li><li><a href=\"https://wptavern.com/gutenberg-9-0-brings-major-improvements-to-navigation-screen-and-query-block\">Gutenberg 9.0 Brings Major Improvements to Navigation Screen and Query Block</a></li><li><a href=\"https://wptavern.com/gutenberg-9-1-adds-patterns-category-dropdown-and-reverts-block-based-widgets-in-the-customizer\">Gutenberg 9.1 Adds Patterns Category Dropdown and Reverts Block-Based Widgets in the Customizer</a></li><li><a href=\"https://wptavern.com/gutenberg-9-2-adds-video-tracks-improvements-to-columns-and-cover-blocks\">Gutenberg 9.2 Adds Video Tracks, Improvements to Columns and Cover Blocks</a></li><li><a href=\"https://wptavern.com/gutenberg-9-3-provides-indicator-of-where-full-site-editing-is-going-a-future-without-widgets-and-customizer-screens\">Gutenberg 9.3 Provides Indicator of Where Full-Site Editing Is Going, a Future Without Widgets and Customizer Screens</a></li><li><a href=\"https://wptavern.com/gutenberg-9-4-introduces-button-width-selector-and-typography-controls-for-list-block\">Gutenberg 9.4 Introduces Button Width Selector and Typography Controls for List Block</a></li></ul>\n\n\n\n<h2>Twenty Twenty-One Theme</h2>\n\n\n\n<img />Inserting a Twenty Twenty-One block pattern into a post.\n\n\n\n<p class=\"has-drop-cap\">Twenty Twenty-One, <a href=\"https://wptavern.com/first-look-at-twenty-twenty-one-wordpresss-upcoming-default-theme\">the new default theme</a> for the upcoming year, takes full advantage of all the latest and greatest features of the block editor. While last year’s Twenty Twenty theme had a successful launch, the development team behind the new default has had more time to explore building themes in the block era.</p>\n\n\n\n<p>The theme makes use of more visual artistry. It will not be for everyone. It offers a wide range of color schemes for end-users, but it lends itself best to bloggers and other creators who prefer a bit of flair with their website’s design.</p>\n\n\n\n<p>The best thing is that it pushes the envelope with the block patterns feature, which was not available when Twenty Twenty landed a year ago. Older default themes will be <a href=\"https://wptavern.com/past-twenty-wordpress-themes-to-get-new-block-patterns\">getting the block-pattern treatment</a>. However, Twenty Twenty-One will be the first default built with custom patterns in mind from the get-go.</p>\n\n\n\n<p>For users who cannot wait for the site editor to land in WordPress, expected in some form in the 5.7 release, there is an alternate <a href=\"https://wptavern.com/twenty-twenty-one-blocks-theme-launching-as-a-separate-project\">Twenty Twenty-One Blocks</a> theme to tinker with.</p>\n\n\n\n<h2>Application Passwords for the REST API</h2>\n\n\n\n<p class=\"has-drop-cap\">Despite being a part of the core platform since 2015, the REST API has lacked support for application passwords. Such a feature is vital for third-party applications to communicate with WordPress. Previously, requests had to be run through cookie and nonce-based authentication. Else, they would need to use the legacy XML-RPC API. This limitation has also affected the mobile WordPress development teams, making it tough to support the block editor, which relies on the REST API.</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/wordpress-5-6-to-introduce-application-passwords-for-rest-api-authentication\">application passwords feature</a> will make it easier for applications to make API requests as well as request and revoke credentials.</p>\n\n\n\n<p>The REST API promised a future for all types of applications built upon and around WordPress. However, this vision has not panned out over the years on a broad scale. With a major limiting factor removed, perhaps there is still hope for robust applications in the coming years.</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 Dec 2020 00:07:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:38:\"WPTavern: Automattic Acquires MailPoet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/automattic-acquires-mailpoet?utm_source=rss&utm_medium=rss&utm_campaign=automattic-acquires-mailpoet\";s: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:3584:\"<p>Automattic has <a href=\"https://www.mailpoet.com/blog/mailpoet-joins-woocommerce/\">acquired MailPoet</a>, a popular email marketing solution for WordPress, to give WooCommerce store owners more integrated email management capabilities in the admin. The plugin is used by more than 300,000 websites for everything from building a mailing list to managing transaction and abandoned cart emails. The nine-year old company is now a team of 11 that will be joining Automattic.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/mailpoet/\">MailPoet</a> launched in 2011 under the name WYSIJA (“What you send is just awesome”), a branding misstep that founder and CEO Kim Gjerstad readily <a href=\"https://freemius.com/blog/interview-kim-gjerstad-mailpoet/\">acknowledged</a> as “a terrible idea.” The name was difficult to spell and remember. It was changed early on but the company was stuck with the “WYSIJA” slug in the WordPress plugins directory, a common issue for many plugins that have rebranded. </p>\n\n\n\n<p>When MailPoet version 3 was released in 2017, the company was finally able to get the “mailpoet” slug in the plugin’s URL on WordPress.org. Version 2, which still has more than 100,000 users, has support for multisite and uses the old email designer, among other <a href=\"https://kb.mailpoet.com/article/189-comparison-of-mailpoet-2-and-3\">differences</a>. MailPoet 2 has received security updates for the past three years and plans to continue these following the acquisition.</p>\n\n\n\n<p>Gjerstad reported that nearly a quarter of MailPoet users are running WooCommerce stores. The plugin’s developers have been <a href=\"https://www.mailpoet.com/woocommerce-email-marketing/\">expanding its WooCommerce functionality</a> over the past three years with features that help store owners catch customers’ emails at checkout, measure revenue per email, send automated emails using purchase data based on products purchased or product categories, customize store emails, and recover abandoned carts. </p>\n\n\n\n<p>Earlier this year MailPoet <a href=\"https://www.mailpoet.com/blog/mailpoet-smtp-plugin/\">introduced its own SMTP solution</a> to ensure emails sent from the plugin land in recipients’ inboxes, instead of flagged as spam. This silent background feature includes store emails as well, bringing higher deliverability without users having to depend on separate SMTP plugins.</p>\n\n\n\n<p>In WooCommerce’s acquisition <a href=\"https://woocommerce.com/posts/better-email-marketing-woocommerce-welcomes-mailpoet/\">announcement</a>, CEO Paul Maiorana said adding MailPoet “helps accelerate our roadmap toward a fully-integrated commerce experience.” Last year Maiorana and Gjerstad met at WordCamp U.S. and exchanged ideas about a partnership.</p>\n\n\n\n<p>“As our conversation progressed in the following months, we came to realize that we shared a common vision for stores; with store owners being able to access email right in their dashboard,” Gjerstad said.</p>\n\n\n\n<p> Maiorana said Automattic’s initial focus of the acquisition is to work together on improving the experience for WooCommerce users, but the company plans to “evolve our collaboration in a way that can benefit the entire WordPress community.” MailPoet’s FAQ’s on the announcement reiterate that all WordPress users will continue to be able to use the plugin, even if they do not have a WooCommerce store. There are no immediate changes planned for the plugin’s features.</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 Dec 2020 00:00: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: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:46:\"WordPress.org blog: WordPress 5.6 “Simone”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=9325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2020/12/simone/\";s: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:58237:\"<p>Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone, who is known for tunes like “Feeling Good”, “Young, Gifted and Black”, and “Four Women”. Fire up a playlist with her best work and read on to discover what we have in store for you. </p>\n\n\n\n<img width=\"632\" height=\"633\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=632%2C633&ssl=1\" alt=\"WordPress 5.6 Simone with a photo of Nina Simone\" class=\"wp-image-9416\" />\n\n\n\n<div class=\"wp-block-cover has-background-dim\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\">Welcome to WordPress 5.6</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">Sharing your stories has never been easier.</h3>\n</div></div>\n\n\n\n<p>WordPress 5.6 brings you countless ways to set your ideas free and bring them to life. With a brand-new default theme as your canvas, it supports an ever-growing collection of blocks as your brushes. Paint with words. Pictures. Sound. Or rich embedded media.</p>\n\n\n\n<img width=\"632\" height=\"234\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=632%2C234&ssl=1\" alt=\"colored circles\" class=\"wp-image-9346\" />\n\n\n\n<h3>Greater layout flexibility</h3>\n\n\n\n<p>Bring your stories to life with more tools that let you edit your layout with or without code. Single column blocks, designs using mixed widths and columns, full-width headers, and gradients in your cover block—make small changes or big statements with equal ease!</p>\n\n\n\n<h3>More block patterns</h3>\n\n\n\n<p>In some themes, preconfigured block patterns make setting up standard pages on your site a breeze. Let the power of patterns streamline your workflow and save you clicks. Plus, share these features with clients, editors, and more.</p>\n\n\n\n<h3>Better video captioning</h3>\n\n\n\n<p>To help you add subtitles or captions to your videos, you can now upload them within your post or page. This makes it easier than ever to make your videos accessible for anyone who needs or prefers to use subtitles.</p>\n\n\n\n<img width=\"632\" height=\"120\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=632%2C120&ssl=1\" alt=\"black vertical line\" class=\"wp-image-9347\" />\n\n\n\n<h2>Twenty Twenty-One is here!</h2>\n\n\n\n<a href=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?ssl=1\"><img width=\"632\" height=\"714\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=632%2C714&ssl=1\" alt=\"Examples of block patterns available in Twenty Twenty-One.\" class=\"wp-image-9426\" /></a>\n\n\n\n<p>Twenty Twenty-One is a blank canvas for your ideas, and the block editor is the best brush. It is built for the block editor and packed with brand-new block patterns you can only get in the default themes. Try different layouts in a matter of seconds, and let the theme’s eye-catching, yet timeless design make your work shine. </p>\n\n\n\n<p>What’s more, this default theme puts accessibility at the heart of your website. It conforms to the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/\">WordPress accessibility-ready guidelines</a> and addresses several more specialized standards from the <a href=\"https://www.w3.org/WAI/WCAG2AAA-Conformance\">Web Content Accessibility Guidelines (WCAG) 2.1 at level AAA</a>. It will help you meet the highest level of international accessibility standards when you create accessible content and choose plugins which are accessible too!</p>\n\n\n\n<h3>A rainbow of soft pastels</h3>\n\n\n\n<a href=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?ssl=1\"><img width=\"632\" height=\"167\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=632%2C167&ssl=1\" alt=\"A mobile screenshot of each included color palette in Twenty Twenty-One, going in ROYGBIV order.\" class=\"wp-image-9424\" /></a>\n\n\n\n<p>Perfect for a new year, Twenty Twenty-One gives you a range of pre-selected color palettes in pastel, all of which conform to AAA standards for contrast. You can also choose your own background color for the theme, and the theme chooses accessibility-conscious text colors for you — automatically!</p>\n\n\n\n<p>Need more flexibility than that? You can also choose your own color palette from the color picker.</p>\n\n\n\n<img width=\"632\" height=\"151\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=632%2C151&ssl=1\" alt=\"colored circles\" class=\"wp-image-9351\" />\n\n\n\n<h2>Improvements for everyone</h2>\n\n\n\n<h3>Expanding auto-updates</h3>\n\n\n\n<p>For years, only developers have been able to update WordPress automatically. But now you have that option, right in your dashboard. If this is your first site, you have auto-updates ready to go, right now! Upgrading an existing site? No problem! Everything is the same as it was before.</p>\n\n\n\n<h3>Accessibility Statement </h3>\n\n\n\n<p>Even if you’re not an expert, you can start letting others know about your site’s commitment to accessibility! The new <a href=\"https://github.com/10degrees/accessibility-statement-plugin\">feature plugin</a> includes template copy for you to edit and publish, and it’s written to support different contexts and jurisdictions. </p>\n\n\n\n<h3>Built-in Patterns</h3>\n\n\n\n<p>If you’ve not had the chance to play with block patterns yet, all default themes now feature a range of block patterns that let you master complex layouts with minimal effort. Customize the patterns to your liking with the copy, images, and colors that fit your story or brand. </p>\n\n\n\n<img width=\"632\" height=\"185\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=632%2C185&ssl=1\" alt=\"colored and textured rectangles\" class=\"wp-image-9352\" />\n\n\n\n<h2>For developers</h2>\n\n\n\n<h3>REST API authentication with Application Passwords</h3>\n\n\n\n<p>Thanks to the API’s new Application Passwords authorization feature, third-party apps can connect to your site seamlessly and securely. This new REST API feature lets you see what apps are connecting to your site and control what they do. </p>\n\n\n\n<h3>More PHP 8 support</h3>\n\n\n\n<p>5.6 marks the first steps toward WordPress Core support for PHP 8. Now is a great time to start planning how your WordPress products, services, and sites can support the latest PHP version. For more information about what to expect next, <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">read the PHP 8 developer note</a>.</p>\n\n\n\n<h3>jQuery</h3>\n\n\n\n<p>Updates to jQuery in WordPress take place across three releases 5.5, 5.6, and 5.7. As we reach the mid-point of this process, <a href=\"https://wordpress.org/plugins/wp-jquery-update-test/\">run the update test plugin to check your sites for errors</a> ahead of time. </p>\n\n\n\n<p>If you find issues with the way your site looks ( e.g. a slider doesn’t work, a button is stuck — that sort of thing), install <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">the jQuery Migrate plugin</a>.</p>\n\n\n\n<h3>Check out the Field Guide</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">Read about the latest version of WordPress in this guide.</a> It highlights developer notes for each change in the release. </p>\n\n\n\n<div class=\"wp-block-cover has-background-dim\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\">“It’s a new day, it’s a new life for me….and I’m feeling good.”</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">~Nina Simone</h3>\n</div></div>\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.6 release comes to you from an all-women release squad: </p>\n\n\n\n<ul><li><strong>Release Lead:</strong> Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>). Cohort: Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Angela Jin (<a href=\"https://profiles.wordpress.org/angelasjin/\">@angelasjin</a>).</li><li><strong>Release Coordinator:</strong> Dee Teal (<a href=\"https://profiles.wordpress.org/thewebprincess/\">@thewebprincess</a>). Cohort: Thelma Mutete (<a href=\"https://profiles.wordpress.org/thelmachido/\">@thelmachido</a>) and Laura Nelson (<a href=\"https://profiles.wordpress.org/laurora/\">@laurora</a>).</li><li><strong>Triage Lead:</strong> Tonya Mork (<a href=\"https://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>). </li><li><strong>Core Tech Lead:</strong> Helen Hou-Sandì (<a href=\"https://profiles.wordpress.org/helen/\">@helen</a>). Cohort: Amy Kamala (<a href=\"https://profiles.wordpress.org/amykamala/\">@amykamala</a>) and Ebonie Butler (<a href=\"https://profiles.wordpress.org/metalandcoffee/\">@metalandcoffee</a>).</li><li><strong>Editor Tech Lead:</strong> Isabel Brison (<a href=\"https://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a>). Cohort: Chandrika Guntur (<a href=\"https://profiles.wordpress.org/cguntur/\">@cguntur</a>), Anchen le Roux (<a href=\"https://profiles.wordpress.org/anchenlr/\">@anchenlr</a>), and Rebecca Hum (<a href=\"https://profiles.wordpress.org/rebasaurus/\">@rebasaurus</a>).</li><li><strong>Design Leads:</strong> Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>) and Tammie Lister (<a href=\"https://profiles.wordpress.org/karmatosed/\">@karmatosed</a>). Cohort: Anyssa Ferreira (<a href=\"https://profiles.wordpress.org/anyssa/\">@anyssa</a>), Estela Rueda (<a href=\"https://profiles.wordpress.org/estelaris/\">@estelaris</a>), Tracy Apps (<a href=\"https://profiles.wordpress.org/tray/\">@tray</a>), and Sophia DeRosia (<a href=\"https://profiles.wordpress.org/eringoblog/\">@eringoblog</a>).</li><li><strong>Design Tech Lead:</strong> Shital Marakana (<a href=\"https://profiles.wordpress.org/shital-patel/\">@shital-patel</a>).</li><li><strong>Accessibility Lead:</strong> Sarah Ricker (<a href=\"https://profiles.wordpress.org/sarahricker/\">@sarahricke<strong>r</strong></a>). Cohort: Hauwa Abashiya (<a href=\"https://profiles.wordpress.org/azhiyadev/\">@azhiyadev</a>).</li><li><strong>Marketing & Communications Leads:</strong> Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>). Cohort: Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Olga Gleckler (<a href=\"https://profiles.wordpress.org/oglekler/\">@ogleckler</a>), Larissa Murrillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Michelle Frechette (<a href=\"https://profiles.wordpress.org/michelleames/\">@michelleames</a>), Breann McDede (<a href=\"https://profiles.wordpress.org/bmcdede/\">@bmcdede</a>), and Afshana Diya (<a href=\"https://profiles.wordpress.org/afshanadiya/\">@afshanadiya</a>).</li><li><strong>Documentation Lead: </strong>Shawntelle Coker (<a href=\"https://profiles.wordpress.org/sncoker/\">@sncoker</a>). Cohort: Daisy Olsen (<a href=\"https://profiles.wordpress.org/daisyo/\">@DaisyO</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Winstina Hughes (<a href=\"https://profiles.wordpress.org/planningwrite/\">@planningwrite</a>).</li><li><strong>Documentation Review Lead:</strong> Michele Butcher-Jones (<a href=\"https://profiles.wordpress.org/m_butcher/\">@m_butcher</a>). Cohort: Nidhi Jain (<a href=\"https://profiles.wordpress.org/jainnidhi/\">@jainnidhi</a>), Laura Byrne Cristiano (<a href=\"https://wordpress.org/support/users/newyorkerlaura/\">@newyorkerlaura</a>).</li><li><strong>Default Theme Design Lead:</strong> Mel Choyce-Dwan (<a href=\"https://profiles.wordpress.org/melchoyce/\">@melchoyce</a>). Cohort: Ellen Bauer (<a href=\"https://profiles.wordpress.org/elmastudio/\">@elmastudio</a>).</li><li><strong>Default Theme Development Lead:</strong> Carolina Nymark (<a href=\"https://profiles.wordpress.org/poena/\">@poena</a>). Cohort: Kelly Choyce-Dwan (<a href=\"https://profiles.wordpress.org/ryelle/\">@ryelle</a>) and Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Default Theme Wrangler:</strong> Jessica Lyschik (<a href=\"https://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Test Lead:</strong> Monika Rao (<a href=\"https://profiles.wordpress.org/monikarao/\">@monikarao</a>). Cohort: Allie Nimmons (<a href=\"https://profiles.wordpress.org/alliennimmons/\">@alliennimmons</a>).</li><li><strong>Support Lead:</strong> Bet Hannon (<a href=\"https://profiles.wordpress.org/bethannon1/\">@bethannon1</a>).</li></ul>\n\n\n\n<p>As always, this release reflects the hard work of 605 generous volunteer contributors. They collaborated on nearly 350 tickets on Trac and over 1,000 pull requests on GitHub.</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/zgrkaralar/\">Özgür KARALAR</a>, <a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/a5hleyrich/\">A5hleyRich</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/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/pokhriyal/\">Abhishek Pokhriyal</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/adriandegrafreak/\">Adrián de Grafreak</a>, <a href=\"https://profiles.wordpress.org/adriantirusli/\">Adrianti Rusli</a>, <a href=\"https://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/elgameel/\">Ahmed Elgameel</a>, <a href=\"https://profiles.wordpress.org/ajensen/\">ajensen</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/aktasfatih/\">aktasfatih</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/viper007bond/\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/alexstandiford/\">Alex Standiford</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/alliennimmons/\">Allie Nimmons</a>, <a href=\"https://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a>, <a href=\"https://profiles.wordpress.org/anandau14/\">Anand</a>, <a href=\"https://profiles.wordpress.org/anlino/\">Anders Norén</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/baicusandrei/\">Andrei Baicus</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/andystitt829/\">Andy Stitt</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/anuj2/\">anuj2</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apermo/\">Apermo</a>, <a href=\"https://profiles.wordpress.org/archduck/\">archduck</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arippberger/\">arippberger</a>, <a href=\"https://profiles.wordpress.org/arjendejong/\">arjendejong</a>, <a href=\"https://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/akkspro/\">Arslan Ahmed Kalwar</a>, <a href=\"https://profiles.wordpress.org/asvinballoo/\">Asvin Balloo</a>, <a href=\"https://profiles.wordpress.org/tacitonic/\">Atharva Dhekne</a>, <a href=\"https://profiles.wordpress.org/austyfrosty/\">Austin Passy</a>, <a href=\"https://profiles.wordpress.org/austin880625/\">austin880625</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/ayesh/\">ayesh</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"https://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/benmeredithgmailcom/\">Ben Meredith</a>, <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bethsoderberg/\">Beth Soderberg</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/hareshlive/\">Bhagvan Mangukiya</a>, <a href=\"https://profiles.wordpress.org/bhautikvirani/\">bhautikvirani</a>, <a href=\"https://profiles.wordpress.org/bananastalktome/\">Billy</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bmcdede/\">bmcdede</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boldgrid/\">BoldGrid</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</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/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/bmillersw/\">Brent Miller</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brianhenryie/\">Brian Henry</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calin/\">Calin Don</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/campusboy1987/\">campusboy</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/carolinegeven/\">Caroline</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chadreitsma/\">Chad Reitsma</a>, <a href=\"https://profiles.wordpress.org/cguntur/\">Chandrika Guntur</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/alexandec/\">Chris Alexander</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/ctmartin0/\">Christian Martin</a>, <a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/claudiulodro/\">Claudiu Lodromanean</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/commeuneimage/\">Commeuneimage</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/salzano/\">Corey Salzano</a>, <a href=\"https://profiles.wordpress.org/cpapazoglou/\">cpapazoglou</a>, <a href=\"https://profiles.wordpress.org/cranewest/\">cranewest</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/ctmartin/\">ctmartin</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a>, <a href=\"https://profiles.wordpress.org/dantahoua/\">dantahoua</a>, <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a>, <a href=\"https://profiles.wordpress.org/dmchale/\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</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/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidjlaietta/\">David Wolfpaw</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"https://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/p00ya/\">Dean</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris (Demetris Kikizas)</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns/\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/designer023/\">Designer023</a>, <a href=\"https://profiles.wordpress.org/dfenton/\">dfenton</a>, <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dharmin16/\">Dharmin Shah</a>, <a href=\"https://profiles.wordpress.org/dhruvin/\">Dhruvin</a>, <a href=\"https://profiles.wordpress.org/dhulwells/\">Dhul Wells</a>, <a href=\"https://profiles.wordpress.org/dietpawel/\">dietpawel</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/djzone/\">DjZoNe</a>, <a href=\"https://profiles.wordpress.org/dogwithblog/\">dogwithblog</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/donsony/\">donsony</a>, <a href=\"https://profiles.wordpress.org/dossy/\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dpacks/\">dpacks</a>, <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/dushanthi/\">dushanthi</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgoric</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/erikjandelange/\">erikjandelange</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/eroraghav/\">eroraghav</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/thegp/\">EugeneBos</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabifott/\">Fabian</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/ferkho/\">Ferenc Forgacs</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/flymike/\">flymike</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/subscriptiongroup/\">George</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/glauberglauber/\">Glauber Mota</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/goldenapples/\">goldenapples</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/guidooffermans/\">guidooffermans</a>, <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a>, <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/isharis/\">Haris Zulfiqar</a>, <a href=\"https://profiles.wordpress.org/harrym/\">harrym</a>, <a href=\"https://profiles.wordpress.org/harshbarach/\">harshbarach</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hoasi/\">HoaSi</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/gsayed786/\">Imran Sayed</a>, <a href=\"https://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/iqbalbary/\">iqbalbary</a>, <a href=\"https://profiles.wordpress.org/ireneyoast/\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/jagirbaheshwp/\">jagirbaheshwp</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">Jake Whiteley</a>, <a href=\"https://profiles.wordpress.org/jamescollins/\">James Collins</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/jameslnewell/\">jameslnewell</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/javidalkaruzi/\">Janvo Aldred</a>, <a href=\"https://profiles.wordpress.org/jaredcobb/\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jaswrks/\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/javorszky/\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami/\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jeffikus/\">jeffikus</a>, <a href=\"https://profiles.wordpress.org/jellypixel/\">jellypixel</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jeslen/\">Jeslen Bucci</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jfoulquier/\">jfoulquier</a>, <a href=\"https://profiles.wordpress.org/jimyaghi/\">jimyaghi</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"https://profiles.wordpress.org/joelyoder/\">joelyoder</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/joseaneto/\">joseaneto</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshlevinson/\">Josh Levinson</a>, <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"https://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/karthikbhatb/\">karthikbhatb</a>, <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/kelsu02/\">Kelly R</a>, <a href=\"https://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"https://profiles.wordpress.org/kellylawrence/\">kellylawrence</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/kipperlenny/\">Kipperlenny</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjbenk/\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/komagain/\">komagain</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"https://profiles.wordpress.org/latifi/\">latifi</a>, <a href=\"https://profiles.wordpress.org/laurora/\">Laura Nelson</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/leutrimh/\">Leutrim Husaj</a>, <a href=\"https://profiles.wordpress.org/limera1n/\">lim3ra</a>, <a href=\"https://profiles.wordpress.org/lpointet/\">Lionel Pointet</a>, <a href=\"https://profiles.wordpress.org/llizard/\">llizard</a>, <a href=\"https://profiles.wordpress.org/louislaugesen/\">Louis</a>, <a href=\"https://profiles.wordpress.org/lucagrandicelli/\">Luca Grandicelli</a>, <a href=\"https://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lumne/\">Lumne</a>, <a href=\"https://profiles.wordpress.org/mager19/\">mager19</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/mahesh901122/\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/shamimmoeen/\">Mainul Hassan Main</a>, <a href=\"https://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"https://profiles.wordpress.org/manzwebdesigns/\">manzwebdesigns</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marijnkoopman/\">Marijn</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"https://profiles.wordpress.org/marks99/\">Mark Smallman</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep/\">markshep</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom/\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, <a href=\"https://profiles.wordpress.org/mattoperry/\">mattoperry</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/mgrenierfarmmedia/\">mgrenierfarmmedia</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/m_butcher/\">Michele Butcher-Jones</a>, <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikelopez/\">mikelopez</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/eemitch/\">Mitchell Bennis</a>, <a href=\"https://profiles.wordpress.org/mmarco9/\">mmarco9</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mopsyd/\">mopsyd</a>, <a href=\"https://profiles.wordpress.org/morganestes/\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/gwendydd/\">Morgan Kay</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a>, <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a>, <a href=\"https://profiles.wordpress.org/mrgrt/\">mrgrt</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/musicaljoeker/\">musicaljoeker</a>, <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"https://profiles.wordpress.org/n5hzr/\">n5hzr</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/navanathbhosale/\">Navanath Bhosale</a>, <a href=\"https://profiles.wordpress.org/naveenkharwar/\">Naveen Kharwar</a>, <a href=\"https://profiles.wordpress.org/lcyh78/\">Neil James (lcyh78)</a>, <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/arealnobrainer/\">Netravnen</a>, <a href=\"https://profiles.wordpress.org/nicomollet/\">nicomollet</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikolam/\">Nikola</a>, <a href=\"https://profiles.wordpress.org/nbachiyski/\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/njbrown/\">njbrown</a>, <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/noahshrader/\">noahshrader</a>, <a href=\"https://profiles.wordpress.org/nourma/\">nourma</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">O André</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/oolleegg55/\">oolleegg55</a>, <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/ovenall/\">ovenall</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/jhonqwerty/\">pabloselin</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</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/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/pekz0r/\">Peter Elmered</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/decrecementofeliz/\">Pilar Mera</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/pishmishy/\">pishmishy</a>, <a href=\"https://profiles.wordpress.org/pkvillanueva/\">pkvillanueva</a>, <a href=\"https://profiles.wordpress.org/prashanttholia/\">prashanttholia</a>, <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/prionkor/\">prionkor</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/puneetsahalot/\">Puneet Sahalot</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rajanit2000/\">Rajan Vijayan</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/redstar504/\">redstar504</a>, <a href=\"https://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"https://profiles.wordpress.org/retlehs/\">retlehs</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">ribaricplusplus</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"https://profiles.wordpress.org/roikles/\">roikles</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"https://profiles.wordpress.org/saeedfard/\">Saeed Fard</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a>, <a href=\"https://profiles.wordpress.org/sswebster/\">Sam Webster</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/saqibameen/\">Saqib Ameen</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sawanoboly/\">sawanoboly</a>, <a href=\"https://profiles.wordpress.org/scarolan/\">scarolan</a>, <a href=\"https://profiles.wordpress.org/l3rady/\">Scott Cariss</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanpaulrasmussen/\">seanpaulrasmussen</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/senning/\">Senning</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/sncoker/\">Shawntelle Coker</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shramee/\">shramee</a>, <a href=\"https://profiles.wordpress.org/sresok/\">Simon Resok</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/sproutchris/\">sproutchris</a>, <a href=\"https://profiles.wordpress.org/stulab/\">Stéphane Treilhou</a>, <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/garubi/\">Stefano Garuti</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a>, <a href=\"https://profiles.wordpress.org/sudoshreyansh/\">sudoshreyansh</a>, <a href=\"https://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/techboyg5/\">techboyg5</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/thefarlilacfield/\">thefarlilacfield</a>, <a href=\"https://profiles.wordpress.org/thelmachido/\">Thelma Mutete</a>, <a href=\"https://profiles.wordpress.org/thib3113/\">thib3113</a>, <a href=\"https://profiles.wordpress.org/thijsvanloef/\">thijsvanloef</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomaslhotta/\">thomaslhotta</a>, <a href=\"https://profiles.wordpress.org/timhavinga/\">Tim Havinga</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a>, <a href=\"https://profiles.wordpress.org/treibstoff/\">treibstoff</a>, <a href=\"https://profiles.wordpress.org/trisha_cornelius/\">Trisha Cornelius</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/tzafrir/\">tzafrir</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/uxkai/\">uxkai</a>, <a href=\"https://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"https://profiles.wordpress.org/contact-banker/\">Varun Sharma</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"https://profiles.wordpress.org/ravivaddweb/\">vidhiaddweb</a>, <a href=\"https://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a>, <a href=\"https://profiles.wordpress.org/vinita29/\">Vinita Tandulkar</a>, <a href=\"https://profiles.wordpress.org/usestrict/\">Vinny</a>, <a href=\"https://profiles.wordpress.org/virgodesign/\">virgodesign</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/webmigrates/\">Webmigrates Technologies</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a>, <a href=\"https://profiles.wordpress.org/worldweb/\">worldweb</a>, <a href=\"https://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"https://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, and <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>.\n\n\n\n<p></p>\n\n\n\n<p>In addition, many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time, or they’ve been around since the first release all the way back in 2003. These releases are as successful as they are because of their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who helped make WordPress 5.6. available in 38 languages at the time of release. Our community translators are hard at work ensuring more languages are on their way (70 are already at 90%). If contributing to WordPress appeals to you, it’s easy to learn more. Check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</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:\"Tue, 08 Dec 2020 23:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:42:\"BuddyPress: BuddyPress 2020 Survey results\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=315969\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://buddypress.org/2020/12/buddypress-2020-survey-results/\";s: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:44558:\"<p>The BuddyPress 2020 survey was published the same day we released <a href=\"https://buddypress.org/2020/05/buddypress-6-0-0/\">BuddyPress 6.0.0 “iovine’s”</a> (May 13, 2020). Now that we are about to release our next major release (<a href=\"https://buddypress.org/2020/12/buddypress-7-0-0-rc2/\">7.0.0 will be delivered in the coming days</a>), it is time to share with you the survey results.</p>\n\n\n\n<p>First, many thanks to all the respondents who participated to this survey <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f60d.png\" alt=\"😍\" class=\"wp-smiley\" />. Doing so you contributed to give the BuddyPress Core Team informations about how the plugin is used, could be used and how its usage is evolving. Some of the questions we asked are directions we’re considering for the plugin (eg: <a href=\"https://buddypress.org/wp-admin/post.php?post=315969&action=edit#q-9\">Q9</a>, <a href=\"https://buddypress.org/wp-admin/post.php?post=315969&action=edit#q-10\">Q10</a>, <a href=\"https://buddypress.org/wp-admin/post.php?post=315969&action=edit#q-17\">Q17</a>), so your inputs are very important to us.</p>\n\n\n\n<p>As no questions were required, it’s difficult to be 100% accurate about how many people took the survey. So we were at least (we also took the survey <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" />) <strong>483</strong> from <a href=\"https://buddypress.org/feed/#survey-map\">all over the world</a> as it’s the highest number a question was replied to.</p>\n\n\n\n<p>Most of the questions were leaving participants the choice to select more than one reply, this is why if you sum up the percentage results you’ll often find more than 100% <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f601.png\" alt=\"😁\" class=\"wp-smiley\" />.</p>\n\n\n\n<p>When we had data about a previous survey we made in 2018, we compared the 2020 results with them and calculated the differences between both years percentages. We thought it could be interesting to see how some results are evolving.</p>\n\n\n\n<span id=\"more-315969\"></span>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-1\"><em>1. How are you using BuddyPress?</em></h2>\n\n\n\n<p>Number of respondents: <strong>483</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\">I use BuddyPress on my own site</td>\n <td>2020</td>\n <td>72.7%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>74.2%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-1.6%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">I build BuddyPress sites for others</td>\n <td>2020</td>\n <td>35.2%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>32.4%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>2.8%</td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>I develop BuddyPress themes</strong></td>\n <td>2020</td>\n <td>13.3%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>9.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><strong><span class=\"has-inline-color\">3.6%</span></strong></td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>I develop BuddyPress plugins</strong></td>\n <td>2020</td>\n <td>15.1%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>13.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>2.1%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">I host BuddyPress sites</td>\n <td>2020</td>\n <td>15.5%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>14.8%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>0.7%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Other</td>\n <td>2020</td>\n <td>9.1%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>4.6%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.5%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: between 2018 & 2020 the “<em>I build BuddyPress sites, themes, and plugins.</em>” choice disappeared.</p>\n\n\n\n<p>It’s interesting to see BuddyPress plugin and theme developers replied more to this survey. Another explanation could be there are possibly more people extending or designing for BuddyPress <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64c.png\" alt=\"🙌\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-2\"><em>2. What types of BuddyPress sites have you built?</em></h2>\n\n\n\n<p>Number of respondents: <strong>409</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>Academic</td>\n <td>2020</td>\n <td>33.5%</td>\n </tr>\n <tr>\n <td>Artistic</td>\n <td>2020</td>\n <td>18.3%</td>\n </tr>\n <tr>\n <td>Gaming</td>\n <td>2020</td>\n <td>14.2%</td>\n </tr>\n <tr>\n <td>Generic</td>\n <td>2020</td>\n <td>30.3%</td>\n </tr>\n <tr>\n <td>Religious</td>\n <td>2020</td>\n <td>10.5%</td>\n </tr>\n <tr>\n <td>Scientific</td>\n <td>2020</td>\n <td>14.4%</td>\n </tr>\n <tr>\n <td>Sports</td>\n <td>2020</td>\n <td>10.5%</td>\n </tr>\n <tr>\n <td>Other</td>\n <td>2020</td>\n <td>33.5%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: data from 2018 is missing.</p>\n\n\n\n<p>The “Other” reply was often chosen. When looking deeply into these replies, we discovered some interesting types, eg: Health / Medical / Therapist communities, Recipe sharing sites, Intranet & Business networks, Non-profit / charity / solidarity / ecological communities, Social Marketplaces, Dating platforms, Local municipality information center / local life / Administration sites and some specific communities like private or restricted ones.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-3\"><em>3. How do you host your production sites using BuddyPress?</em></h2>\n\n\n\n<p>Number of respondents: <strong>414</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\">Shared Hosting</td>\n <td>2020</td>\n <td>44.9%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>52.5%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-7.6%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">Virtual Private Server</td>\n <td>2020</td>\n <td>30.0%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>30.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>-0.1%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Dedicated Server</td>\n <td>2020</td>\n <td>22.2%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>18.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.2%</td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>Managed WordPress Hosting</strong></td>\n <td>2020</td>\n <td>23.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>15.1%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>8.3%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">Cloud-based Services</td>\n <td>2020</td>\n <td>18.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>12.8%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>5.6%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Other</td>\n <td>2020</td>\n <td>6.0%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>3.4%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>2.6%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p>Looks like Managed WordPress Hosting plans are increasing <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f914.png\" alt=\"🤔\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-4\"><em>4. How do you set up BuddyPress in your WordPress installations?</em></h2>\n\n\n\n<p>Number of respondents: <strong>427</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\">WP in domain root</td>\n <td>2020</td>\n <td>68.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>74.8%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-6.4%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP in physical subdirectory folder</td>\n <td>2020</td>\n <td>19.7%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>15.6%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.1%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP in physical subdomain</td>\n <td>2020</td>\n <td>15.0%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>9.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>5.9%</td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>WP Multisite in domain root – BP Network-activated</strong></td>\n <td>2020</td>\n <td>20.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>11.5%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>8.9%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP Multisite in subsite (subdirectory) – BP Network-activated</td>\n <td>2020</td>\n <td>11.0%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>4.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>6.3%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP Multisite in subsite (subdomain) – BP Network activated</td>\n <td>2020</td>\n <td>11.7%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>4.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>7.0%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP Multisite in domain root – BP activated only on the main network site</td>\n <td>2020</td>\n <td>9.6%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>3.3%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>6.3%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP Multisite in subsite (subdirectory) – BP activated on a subsite of the network</td>\n <td>2020</td>\n <td>9.8%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>4.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>5.2%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP Multisite in subsite (subdomain) – BP activated on a subsite of the network</td>\n <td>2020</td>\n <td>9.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>4.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.7%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">WP Multisite in domain root – the constant BP_ENABLE_MULTIBLOG is defined in your wp-config.php file to spread BuddyPress on all sites of the network</td>\n <td>2020</td>\n <td>12.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>4.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>7.8%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: between 2018 & 2020 the “WP Multisite with BuddyPress Multi-Network” choice disappeared.</p>\n\n\n\n<p>Multisite configurations are slightly increasing while regular WordPress configurations are a bit less used.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-5\"><em>5. What BuddyPress components/features are always or almost always activated in your site/s?</em></h2>\n\n\n\n<p>Number of respondents: <strong>428</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Everytime</th>\n <th>Sometimes</th>\n <th>Never</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\">Account Settings</td>\n <td>2020</td>\n <td>74.5%</td>\n <td>11.9%</td>\n <td>4.2%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>91.8%</td>\n <td>6.5%</td>\n <td>1.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-17.3%</strong></span></td>\n <td>5.4%</td>\n <td>2.5%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Activity Streams</td>\n <td>2020</td>\n <td>64.3%</td>\n <td>17.5%</td>\n <td>6.3%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>75.0%</td>\n <td>20.9%</td>\n <td>4.1%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-10.7%</strong></span></td>\n <td>-3.4%</td>\n <td>2.2%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Extended Profiles</td>\n <td>2020</td>\n <td>70.1%</td>\n <td>16.4%</td>\n <td>4.2%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>86.6%</td>\n <td>12.1%</td>\n <td>1.4%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-16.5%</strong></span></td>\n <td>4.3%</td>\n <td>2.8%</td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>Friend Connections</strong></td>\n <td>2020</td>\n <td>73.4%</td>\n <td>22.2%</td>\n <td>11.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>62.9%</td>\n <td>26.5%</td>\n <td>10.6%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>10.5%</strong></span></td>\n <td>-4.3%</td>\n <td>0.8%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Private Messaging</td>\n <td>2020</td>\n <td>55.1%</td>\n <td>22.9%</td>\n <td>8.6%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>67.6%</td>\n <td>25.4%</td>\n <td>7.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-12.5%</strong></span></td>\n <td>-2.5%</td>\n <td>1.7%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Site Tracking</td>\n <td>2020</td>\n <td>37.6%</td>\n <td>24.8%</td>\n <td>20.1%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>56.3%</td>\n <td>25.4%</td>\n <td>18.3%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-18.7%</strong></span></td>\n <td>-0.6%</td>\n <td>1.8%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">User Groups</td>\n <td>2020</td>\n <td>55.4%</td>\n <td>23.8%</td>\n <td>8.9%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>64.1%</td>\n <td>26.0%</td>\n <td>10.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-8.7%</strong></span></td>\n <td>-2.1%</td>\n <td>-1.1%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p>I must say I was a bit surprised by the fact the Friends component was the only one which usage increased between 2018 and 2020 <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f633.png\" alt=\"😳\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-6\"><em>6. What theme/s have you activated for your site/s using BuddyPress?</em></h2>\n\n\n\n<p>Number of respondents: <strong>398</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\"><strong>Free WP theme</strong></td>\n <td>2020</td>\n <td>37.7%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>22.5%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>15.2%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">Free WP theme with custom BP CSS and/or template modifications</td>\n <td>2020</td>\n <td>18.8%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>14.1%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.8%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Free WP theme and I add custom BP CSS and/or template modifications</td>\n <td>2020</td>\n <td>22.9%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>14.1%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>8.8%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Commercial WP theme</td>\n <td>2020</td>\n <td>35.9%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>32.2%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>3.7%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Commercial WP theme with custom BP CSS and/or template modifications</td>\n <td>2020</td>\n <td>32.2%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>38.6%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-6.4%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">I create a brand-new WP theme and write my own custom BP CSS and template modifications using BP theme compat</td>\n <td>2020</td>\n <td>22.1%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>19.8%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>2.3%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p>Free WordPress themes without any customizations got the highest result: this proves using BuddyPress out of the box can be enough to power a great looking community site.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-7\"><em>7. Which BuddyPress Template Pack is your theme supporting in your production sites?</em></h2>\n\n\n\n<p>Number of respondents: <strong>384</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td><strong>BP Nouveau Templates (introduced in BP 3.0.0)</strong></td>\n <td>2020</td>\n <td><span class=\"has-inline-color\"><strong>63.3%</strong></span></td>\n </tr>\n <tr>\n <td>BP Legacy Templates (introduced in BP 1.7.0)</td>\n <td>2020</td>\n <td>28.1%</td>\n </tr>\n <tr>\n <td>BP Standalone theme like the bp-default theme (introduced in BP 1.2.0)</td>\n <td>2020</td>\n <td>13.5%</td>\n </tr>\n <tr>\n <td>I don’t know</td>\n <td>2020</td>\n <td>25.8%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: this question wasn’t asked in 2018</p>\n\n\n\n<p>1 respondent out of 4 don’t know what Template Pack is active on their website. As the BP Nouveau Template pack is used by default, there’s a good chance it’s the one these people are using. FYI: If you want to switch between available Template Packs, you can go into your WordPress Dashboard and activate the BuddyPress Options tab of the Settings > BuddyPress administration page to do so.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-8\"><em>8. Which BuddyPress template files do you customize for your own or third-party themes?</em></h2>\n\n\n\n<p>Number of respondents: <strong>377</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Never</th>\n <th>Sometimes</th>\n <th>Everytime</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>Activity templates</td>\n <td>2020</td>\n <td>36.6%</td>\n <td>31.6%</td>\n <td>22.5%</td>\n </tr>\n <tr>\n <td>Blogs templates</td>\n <td>2020</td>\n <td>38.5%</td>\n <td>29.7%</td>\n <td>19.6%</td>\n </tr>\n <tr>\n <td>Group templates</td>\n <td>2020</td>\n <td>32.9%</td>\n <td>31.0%</td>\n <td>21.8%</td>\n </tr>\n <tr>\n <td><strong>Member templates</strong></td>\n <td>2020</td>\n <td>26.8%</td>\n <td>31.0%</td>\n <td><span class=\"has-inline-color\"><strong>30.0%</strong></span></td>\n </tr>\n <tr>\n <td><strong>Stylesheet files</strong></td>\n <td>2020</td>\n <td>29.4%</td>\n <td>26.0%</td>\n <td><span class=\"has-inline-color\"><strong>29.4%</strong></span></td>\n </tr>\n <tr>\n <td>JavaScript files</td>\n <td>2020</td>\n <td>39.5%</td>\n <td>28.4%</td>\n <td>15.4%</td>\n </tr>\n <tr>\n <td>BuddyPress Email templates</td>\n <td>2020</td>\n <td>32.6%</td>\n <td>30.0%</td>\n <td>25.2%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: this question wasn’t asked in 2018.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-9\"><em>9. What do you prefer: using a BP Template Pack that lets you use most WordPress themes or use a BuddyPress specific theme ?</em></h2>\n\n\n\n<p>Number of respondents: <strong>375</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td><strong>BP Template Pack</strong></td>\n <td>2020</td>\n <td><span class=\"has-inline-color\"><strong>58.1%</strong></span></td>\n </tr>\n <tr>\n <td>BuddyPress specific theme</td>\n <td>2020</td>\n <td>41.9%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: this question wasn’t asked in 2018.</p>\n\n\n\n<p>Building a great BuddyPress theme as a replacement to our good old BP Default theme is something we are considering a lot. It’s important for us to remember that a lot of you like the fact BuddyPress doesn’t require a specific theme to run and needs to look as nice as possible inside your active WordPress theme.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-10\"><em><em>10. Would you test/use a new theme made by the BuddyPress team?</em></em></h2>\n\n\n\n<p>Number of respondents: <strong>377</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td><strong>Yes</strong></td>\n <td>2020</td>\n <td><span class=\"has-inline-color\"><strong>57.2%</strong></span></td>\n </tr>\n <tr>\n <td>No</td>\n <td>2020</td>\n <td>11.4%</td>\n </tr>\n <tr>\n <td>Maybe</td>\n <td>2020</td>\n <td>31.4%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: this question wasn’t asked in 2018</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-11\"><em><em><em>11. What features would you look for in a new BuddyPress theme?</em></em></em></h2>\n\n\n\n<p>Number of respondents: <strong>380</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td><strong>More BuddyPress customization options</strong></td>\n <td>2020</td>\n <td><span class=\"has-inline-color\"><strong>85.5%</strong></span></td>\n </tr>\n <tr>\n <td>Compatible with bbPress</td>\n <td>2020</td>\n <td>51.1%</td>\n </tr>\n <tr>\n <td>Compatible with WooCommerce</td>\n <td>2020</td>\n <td>44.7%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: this question wasn’t asked in 2018</p>\n\n\n\n<p>Got it! FYI: BP Nouveau has a specific panel into your customizer you should check. One of the comments you made was asking for a way to reorder the Member navigation, BP Nouveau has a section for it <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f448.png\" alt=\"👈\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-12\"><em><em><em>12. When do you test your sites, themes, and/or plugins with BuddyPress releases?</em></em></em></h2>\n\n\n\n<p>Number of respondents: <strong>396</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\">Trunk</td>\n <td>2020</td>\n <td>15.9%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>11.7%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.2%</td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>BP Beta 1</strong></td>\n <td>2020</td>\n <td>14.9%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>10.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>4,9%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>BP Release Candidate 1</strong></td>\n <td>2020</td>\n <td>11.4%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>7.5%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>3.9%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">BP Stable Release</td>\n <td>2020</td>\n <td>43.2%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>55.9%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>-12.7%</td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>A month after stable release</strong></td>\n <td>2020</td>\n <td>29.0%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>19.6%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>9.5%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">Never</td>\n <td>2020</td>\n <td>19.2%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>15.0%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.2%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Other</td>\n <td>2020</td>\n <td>8.1%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>4.3%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>3.8%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p>The results the Beta and RC pre-release got is encouraging. We really need to have more beta-testers to avoid bad surprises when you upgrade BuddyPress. We’ve tried to ease the way you can test BuddyPress with the BP Beta Tester plugin, but I guess we still need to work on ways to help you help us <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f469-1f3fb-200d-1f4bb.png\" alt=\"👩🏻💻\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-13\"><em><em><em>13. If you do beta test BuddyPress, what method do you use?</em></em></em></h2>\n\n\n\n<p>Number of respondents: <strong>236</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>I use the SVN repo \n(<code>svn co https://buddypress.svn.wordpress.org/trunk/</code>)</td>\n <td>2020</td>\n <td>31.8%</td>\n </tr>\n <tr>\n <td>I use the read-only Github mirror\n(<code>git clone git://buddypress.git.wordpress.org/</code>)</td>\n <td>2020</td>\n <td>46.2%</td>\n </tr>\n <tr>\n <td><strong>I use the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester plugin</a></strong></td>\n <td>2020</td>\n <td><span class=\"has-inline-color\"><strong>51.3%</strong></span></td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: this question wasn’t asked in 2018</p>\n\n\n\n<p>Looks like the BP Beta Tester plugin is the most used tool to beta test BuddyPress. This seems great! But the results might be a bit over rated. When looking deeply into it, some of you replied they were <strong>never</strong> beta-testing BuddyPress while using the BP Beta Tester plugin <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f928.png\" alt=\"🤨\" class=\"wp-smiley\" />. The goal of the BP Beta Tester plugin is to ease the beta/RC testing…</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-14\"><em><em><em>14. If you installed bbPress, how did you set it up with your BuddyPress site/s?</em></em></em></h2>\n\n\n\n<p>Number of respondents: <strong>311</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\">Sitewide forums only</td>\n <td>2020</td>\n <td>34.7%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>28.3%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>6.4%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">Group forums only</td>\n <td>2020</td>\n <td>29.3%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>29.3%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>0%</td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>Sitewide and Group forums</strong></td>\n <td>2020</td>\n <td>55.0%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>57.6%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-2.6%</strong></span></td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-15\"><em><em><em>15. How do you keep updated with the latest in BuddyPress development?</em></em></em></h2>\n\n\n\n<p>Number of respondents: <strong>355</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Years & evolution</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td rowspan=\"3\"><strong>Subscribed to <a href=\"https://bpdevel.wordpress.com\">bpdevel.wordpress.com</a></strong></td>\n <td>2020</td>\n <td>27.6%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>23.3%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color\"><strong>4.3%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\"><strong>Viewed changelog for each release in <a href=\"https://codex.buddypress.org/releases/\">codex.buddypress.org/releases</a></strong></td>\n <td>2020</td>\n <td>47.0%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>49.6%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td><span class=\"has-inline-color has-luminous-vivid-orange-color\"><strong>-2.6%</strong></span></td>\n </tr>\n <tr>\n <td rowspan=\"3\">Checking <a href=\"https://buddypress.trac.wordpress.org\">buddypress.trac.wordpress.org</a> regularly</td>\n <td>2020</td>\n <td>25.6%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>22.5%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>3.1%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Twitter: <a href=\"https://twitter.com/buddypress\">@buddypress</a>, <a href=\"https://twitter.com/buddypressdev\">@buddypressdev</a>, and/or <a href=\"https://twitter.com/bptrac\">@bptrac</a></td>\n <td>2020</td>\n <td>23.1%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>19.5%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>3.6%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Slack: <a href=\"https://wordpress.slack.com/messages/buddypress\">#buddypress</a>, <a href=\"https://wordpress.slack.com/messages/buddypress-commits\">#buddypress-commits</a>, <a href=\"https://wordpress.slack.com/messages/buddypress-firehose\">#buddypress-firehose</a> and/or <a href=\"https://wordpress.slack.com/messages/buddypress-newtickets\">#buddypress-newtickets</a></td>\n <td>2020</td>\n <td>15.5%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>12.2%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>3.3%</td>\n </tr>\n <tr>\n <td rowspan=\"3\">Other</td>\n <td>2020</td>\n <td>16.1%</td>\n </tr>\n <tr>\n <td>2018</td>\n <td>11.8%</td>\n </tr>\n <tr>\n <td>2018 to 2020</td>\n <td>4.2%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: between 2018 & 2020 the “Checking buddypress.org/support regularly.” choice disappeared.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-16\"><em><em><em>16. Case Studies: We’d like to feature how you are using BuddyPress in your current sites at BuddyPress.org. If you’re interested in sharing your BP story, please leave your name, email address, and your BP site URL.</em></em></em></h2>\n\n\n\n<p>Number of respondents: <strong>40</strong>.</p>\n\n\n\n<p>Many thanks to the 40 participants who shared their names, emails, and sites URL. We’ll try to contact you to share about your use cases on this website. It’s great to see how you’re using BuddyPress <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f4aa.png\" alt=\"💪\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"q-17\"><em><em><em>17. BuddyPress is a large plugin with optional components (3MB zipped). There’s a proposal to reconstitute BuddyPress as core + members only and improved upon with new functionalities and API’s among others for new BP plugins to hook into. The current optional components like groups, friends, private messaging, etc. can be migrated into separate plugins which can be activated as needed. What do you think?</em></em></em></h2>\n\n\n\n<p>Number of respondents: <strong>407</strong>.</p>\n\n\n\n\n <table class=\"has-fixed-layout\">\n <thead>\n <tr>\n <th>Possible replies</th>\n <th>Year</th>\n <th>Results</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td><strong>Keep BuddyPress as is: core + members and optional components</strong></td>\n <td>2020</td>\n <td><span class=\"has-inline-color\"><strong>43.2%</strong></span></td>\n </tr>\n <tr>\n <td>Break down BuddyPress: BuddyPress = core + members, optional components as BP plugins</td>\n <td>2020</td>\n <td>35.6%</td>\n </tr>\n <tr>\n <td>I don’t know</td>\n <td>2020</td>\n <td>21.1%</td>\n </tr>\n </tbody>\n </table>\n\n\n\n\n<p><strong>NB</strong>: this question wasn’t asked in 2018</p>\n\n\n\n<p>Ok. Thanks a lot for your replies, using optional components as separate add-ons is not something you are ready for <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f607.png\" alt=\"😇\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"survey-map\">BuddyPress is used from all over the world!</h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://docs.google.com/spreadsheets/d/e/2PACX-1vT067Mc1bnQPTdiwZzzZj7Kn1Y2V22aJxJnvy13rN2DXg27awoA_GXPJvX0uv2He8udDL_bLjCeUv7M/pubhtml?gid=1888221811&single=true\"><img width=\"1024\" height=\"639\" src=\"https://buddypress.org/wp-content/uploads/1/2020/12/survey-participants-1024x639.png\" alt=\"\" class=\"wp-image-316008\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2020 16:45: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:12:\"Mathieu Viet\";s: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:76:\"WPTavern: Easy WP SMTP 1.4.3 Patches Sensitive Data Disclosure Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108630\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/easy-wp-smtp-1-4-3-patches-sensitive-data-disclosure-vulnerability?utm_source=rss&utm_medium=rss&utm_campaign=easy-wp-smtp-1-4-3-patches-sensitive-data-disclosure-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3019:\"<p><a href=\"https://wordpress.org/plugins/easy-wp-smtp/\">Easy WP SMTP</a> has patched a vulnerability that allows attackers to capture the password reset link from the plugin’s debug log file and gain unauthorized access to the site. The plugin is used by more than 500,000 WordPress sites to configure and send all outgoing emails via a SMTP server so they are less likely to end up in recipients’ junk/spam folders. </p>\n\n\n\n<p><a href=\"https://wpscan.com/vulnerability/10494\">WPScan</a> categorized the vulnerability as a “sensitive data disclosure:”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The plugin has an optional debug log file generated with a random name, located in the plugin folder and which contains all email messages sent. However, this folder does not have any index page, allowing access to log file on servers with the directory listing enabled or misconfigured. This could allow attackers to gain unauthorised access to the blog by reseting the admin password by getting the reset link from the log.</p></blockquote>\n\n\n\n<p>Easy WP SMTP version 1.4.3 contains the fix, adding an empty “index.html” file to the plugin’s folder to prevent anyone from browsing the files (even if the Option -Indexes is missing on that server). Users are advised to update immediately, as the vulnerability has already been exploited in the wild. Several users took to the plugin’s support forums to <a href=\"https://wordpress.org/support/topic/security-issue-with-debug-log/\">report</a> attempts on their sites.</p>\n\n\n\n<p>Jerome Bruandet, a security researcher from NinTechNet, reported the vulnerability and published a <a href=\"https://blog.nintechnet.com/wordpress-easy-wp-smtp-plugin-fixed-zero-day-vulnerability/\">post</a> explaining how an attacker might access the debug log where the plugin writes all the email messages sent by the site. Using author archive scans, the hacker can find a username and then send a password reset email that gets intercepted via the Easy WP SMTP debug log file:</p>\n\n\n\n<div class=\"wp-block-image\"><img />Easy WP SMTP log file – source: <a href=\"https://blog.nintechnet.com/wordpress-easy-wp-smtp-plugin-fixed-zero-day-vulnerability/\">NinTechNet</a></div>\n\n\n\n<p>At the time of publishing, approximately 51.8% of users are on 1.4.x versions of the plugin. Without a more specific breakdown, it’s not clear how many users have updated to the patched 1.4.3 version. Approximately <a href=\"https://wordpress.org/plugins/easy-wp-smtp/advanced/\">59,000 sites</a> have downloaded the plugin today, leaving many installations still vulnerable.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>This is another case where automatic background updates on plugins can quietly save the day. Users who have auto-updates enabled for plugins have already received the fix. Administrators for older installations of WordPress or sites where auto-updates have been disabled will need to update manually as soon as possible.</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 Dec 2020 20:56: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress.org blog: State of the Word 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:34:\"https://wordpress.org/news/?p=9296\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2020/12/state-of-the-word-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:1880:\"<p>State of the Word is an annual keynote address delivered by the project co-founder, Matt Mullenweg. This year’s keynote will be streamed on <a href=\"https://www.facebook.com/WordPress/\">Facebook</a>, <a href=\"https://www.youtube.com/wordpress\">YouTube</a>, and <a href=\"https://twitter.com/wordpress\">Twitter</a> on <a href=\"https://www.timeanddate.com/countdown/generic?iso=20201217T08&p0=224&msg=State+of+the+Word+2020&font=slab&csz=1\">Thursday, Dec 17th, 2020 at 1600 UTC</a>.</p>\n\n\n\n<img width=\"632\" height=\"355\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/12/State-of-the-Word-cover.png?resize=632%2C355&ssl=1\" alt=\"\" class=\"wp-image-9316\" />\n\n\n\n<h3>Have a question?</h3>\n\n\n\n<p>A Question and Answer period with pre-recorded videos will follow State of the Word. To take part, record a video of you asking your question to Matt on your computer or phone (landscape format, please). Don’t forget to include your name and how you use WordPress! Try to keep your video to under a minute so Matt can answer as many questions as possible.</p>\n\n\n\n<p>To submit your question, upload it as an unlisted video (<a href=\"https://support.google.com/youtube/answer/157177\">YouTube works great for this</a>) and send a link to <a href=\"mailto:ask-matt@wordcamp.org\">ask-matt@wordcamp.org</a>. <strong>Deadline is Friday, Dec 11th, 2020!</strong></p>\n\n\n\n<h3>New to State of the Word?</h3>\n\n\n\n<p>If this is your first time hearing of this talk, you’re in luck! Check out previous recordings below.</p>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2019/11/03/2019-state-of-the-word/\">State of the Word 2019 – WordCamp US, St. Louis</a></li><li><a href=\"https://wordpress.tv/2018/12/27/state-of-the-word-2018/\">State of the Word 2018 – WordCamp US, Nashville</a></li><li><a href=\"https://wordpress.tv/tag/state-of-the-word/\">All recordings</a></li></ul>\";s: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 Dec 2020 22:55: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:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:48:\"BuddyPress: BuddyPress 7.0.0 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=315858\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://buddypress.org/2020/12/buddypress-7-0-0-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3608:\"<p>Hello,</p>\n\n\n\n<p>The second <a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-RC2.zip\">release candidate for BuddyPress 7.0.0</a> is now ready for an ultimate round of testing <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>What happened Since the <a href=\"https://buddypress.org/2020/11/buddypress-7-0-0-release-candidate/\">first release candidate</a>?</h2>\n\n\n\n<p>We’ve been working on getting the BP Nouveau Template Pack looks great into the next WordPress default theme “<a href=\"https://make.wordpress.org/core/2020/09/23/introducing-twenty-twenty-one/\">Twenty Twenty-One</a>“. We believe BP Nouveau is now ready to enjoy this awesome theme whether you use its regular or dark mode.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2020/12/bp-nouveau-2021.png\"><img width=\"1000\" height=\"479\" src=\"https://buddypress.org/wp-content/uploads/1/2020/12/bp-nouveau-2021.png\" alt=\"\" class=\"wp-image-315860\" /></a><em>Screen capture of the Members directory</em> (dark mode)</div>\n\n\n\n<p>BuddPress 7.0.0 is still slated for release on <strong>Wednesday, December 9</strong>, and if you haven’t tried 7.0.0 yet, <strong>it’s probably your last chance to do so!</strong></p>\n\n\n\n<p>Let’s test <a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-RC2.zip\">BuddyPress 7.0.0-RC2</a> with <a href=\"https://make.wordpress.org/core/2020/12/03/wordpress-5-6-rc-3/\">WordPress 5.6-RC3</a> to be sure both will be great as soon as they will be released! It’s also important to do so if you want to help us check BP Nouveau’s integration with Twenty Twenty-One is as nice as we think <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /></p>\n\n\n\n<p>You can test the <a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-RC2.zip\">7.0.0-RC2</a> pre-release in 4 ways :</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a> plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-RC2.zip\">Download the release candidate here (zip file)</a>.</li><li>Check out our SVN repository: <code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li><li>Clone our read-only Git repository: <code>git clone git://buddypress.git.wordpress.org/</code></li></ul>\n\n\n\n<p>A detailed changelog will be part of our official release note, but you can get a quick overview by reading the post about the <a href=\"https://buddypress.org/2020/10/buddypress-7-0-0-beta1/\">7.0.0 Beta1</a> release.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Polyglots contributors, let’s target 100% of translated strings.</h2>\n\n\n\n<p>Since previous release candidate we’ve reached the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#string-freeze\">string freeze</a> point of the 7.0.0 release schedule, so this one (RC2) does not introduce new strings to translate. Let’s use the days we have left to try to make BuddyPress fully available into your locale as soon as it is released. Thanks in advance for your help.</p>\n\n\n\n<p>As usual, <strong>if you think you’ve found a bug</strong>, please let us know reporting it on <a href=\"https://buddypress.org/support/topic/buddypress-7-0-0-release-candidate-2/\">this support topic</a> and/or on <a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Dec 2020 22:22:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s: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:116:\"WPTavern: State of CSS 2020 Survey Results: Tailwind CSS Wins Most Adopted Technology, Utility-First CSS on the Rise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108561\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:273:\"https://wptavern.com/state-of-css-2020-survey-results-tailwind-css-wins-most-adopted-technology-utility-first-css-on-the-rise?utm_source=rss&utm_medium=rss&utm_campaign=state-of-css-2020-survey-results-tailwind-css-wins-most-adopted-technology-utility-first-css-on-the-rise\";s: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:3346:\"<p>The <a href=\"https://2020.stateofcss.com/en-US/\">State of CSS 2020</a> survey results have just been published, with a summary of the tools, methodologies, frameworks, and libraries that are currently favored by CSS professionals. It includes data from 11,492 respondents in 102 countries, after the questions were translated for the first time into a dozen different languages.</p>\n\n\n\n<p>In the layout category, CSS Grid logged a 34% increase over the prior year in respondents who report having used it to position elements on the screen. It won an award for “Most Adopted Feature,” which is assigned to the feature with the largest year-over-year ”have used” progression. Only 6% of respondents said they have used Subgrid, which is included in Level 2 of the CSS Grid Layout specification. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>CSS Flexible Box Layout has been used by 97.5% of respondents, a ~3% increase over the previous year. Multi-column Layout saw a moderate increase in usage and a small decrease in awareness. CSS Grid experienced the most growth by far in this category.</p>\n\n\n\n<p>The technologies section is one of the most interesting parts of the survey, as the CSS ecosystem is constantly changing. The results include a scatter plot graph showing the relationship between each technology’s satisfaction ratio and its user count. Technologies in the “avoid” and “analyze” groupings are likely to decline in usage soon (or have already fallen out of favor). </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Tailwind CSS is once again the front-runner among CSS frameworks, followed by Bulma, which seems to be slowly waning in popularity. Tailwind CSS won the award for “Most Adopted Technology,” given to the technology with the largest year-over-year “would use again” progression, with a +17.8% progression over 2019. PureCSS, Ant Design, and Materialize CSS also recorded gains in their rankings from the previous year. </p>\n\n\n\n<p>A larger trend emerging is utility-first CSS frameworks and tools gaining momentum among professionals. The utility-first approach, which eschews traditional semantic class naming in favor of more functional class names, <a href=\"http://www.zeldman.com/2017/01/03/kiss-my-classname/\">has its ardent critics</a>. It is somewhat of an eyesore reminiscent of inline styles, and essentially drops the “cascading” aspect of CSS. Nevertheless, its proponents appreciate being able to look at the HTML and see at a glance which styles are applied, as well as the enforced consistency it offers.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>If you are interested in some of the finer details on which properties and positioning features professionals are using, shapes, graphics, and interactions, check out the <a href=\"https://2020.stateofcss.com/en-US/\">full report</a>. Each section has recommended resources for learning more about popular and emerging technologies and techniques, including industry podcasts and blogs that professionals are currently enjoying.</p>\n\n\n\n<p>The <a href=\"https://stateofjs.com/\">State of JavaScript</a> survey is also now open, which offers a similar treasure trove of data on the JavaScript ecosystem once the results are published. </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 Dec 2020 21:30:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: WordPress Community Team Discusses Return to In-Person Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108398\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:187:\"https://wptavern.com/wordpress-community-team-discusses-return-to-in-person-events?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-community-team-discusses-return-to-in-person-events\";s: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:6803:\"<p>Although the promise of effective COVID-19 vaccines is shining a light at the end of a long tunnel, the world remains firmly in the virus’ grip until distribution can ramp up to cover at-risk groups as well as the general populace.</p>\n\n\n\n<p>As pandemic-weary communities muster the discipline to ride out the next few months under continued restrictions, a new discussion popped up on WordPress.org regarding the <a href=\"https://make.wordpress.org/community/2020/12/01/discussion-how-can-the-wordpress-community-return-to-hosting-safe-in-person-events/\">return to in-person events</a>. WordPress has canceled all in-person events through the end of the year and 2021 flagship events have already been designated as online-only. Community organizer Angela Jin cited recent successful vaccine trials as a prompt for discussing how WordPress can safely resume in-person events: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>There has been promising news around some successful trials for vaccines recently! As such, it seems worthwhile to discuss how the WordPress community can return to hosting safe, in-person events. </p><p>Any in-person event would certainly be subject to local laws and any restrictions on gatherings, as they’ve always been. Beyond what local health authorities require, the Global Community Team may need to to help organizers identify what additional precautions are necessary to ensure in-person events are safe for participants. </p></blockquote>\n\n\n\n<p>Jin offered several examples of “additional precautions” to ensure events are safe, such as mandatory masks, social distancing, outdoor events, limits on the number of attendees, and no food or drink service. </p>\n\n\n\n<p>Although countries like Australia, Taiwan, and New Zealand, seem to have adequately contained the virus, the U.S., Europe, India, and Russia have cases spiraling out of control. The discussion seems oddly timed, as this week the U.S., which is leading the world in deaths, has seen daily deaths climb to <a href=\"https://www.npr.org/sections/coronavirus-live-updates/2020/12/02/941902471/u-s-hits-100-000-covid-19-hospitalizations-breaks-daily-death-record\">2,804</a>, surpassing the previous record of 2,607 reported on April 15, during the first wave of the pandemic.</p>\n\n\n\n<p>Several of those commenting mentioned that the discussion opener neglects a critical detail about whether or not in-person events would resume before vaccines are widely distributed.</p>\n\n\n\n<p>“I’m surprised I don’t see mention of the vaccine being a requirement,” Mika Epstein said. “I could assume so, but the risk of COVID is human life.</p>\n\n\n\n<p>“That means that unless WordPress (or any public event) has a way to ensure that no one will contract (and die) of COVID, then they have no business having any event, indoor or outdoor.</p>\n\n\n\n<p>“Not every country is handling things equally well, and just in the US alone, there are many places where the law says ‘do not have events’ but the local authorities refuse to intercede, which resulted in 80% of the people attending an outdoor party not too far from me all testing positive.” </p>\n\n\n\n<p>WordPress is a global community and reliance on local laws may still put event attendees at risk in communities that have been subject to a failure of leadership in protecting citizens.</p>\n\n\n\n<p>Cami Kaos, an eight-year WordPress community organizer, echoed these thoughts, saying, “The one thing we need to have in place in order to make a safe re-entry into in person events is to have wide spread access to an effective vaccine.” She commented on the difficulties of trying to ensure attendees don’t inadvertently put each other at risk:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It’s all well and good for us to say you can only organize within the recommendations of your local community, but we have no way of knowing how responsible individuals are being. Of knowing if they have come in from out of town for the event. If a member of their household is a frontline worker who might be exposed daily, if someone in their family is high risk and we could be endangering a life.</p></blockquote>\n\n\n\n<p>Without widely distributed vaccines, hosting in-person gatherings with the possibility of attendees traveling from hotspot locations would be unconscionable.</p>\n\n\n\n<p>Kaos also commented on how difficult enforcement would be for WordPress community volunteers who would be tasked with making sure individuals wear masks properly, use hand sanitizer, maintain distance, and uphold any other requirements. </p>\n\n\n\n<p>“All of this would be putting unpaid and uncompensated volunteers at risk unnecessarily,” Kaos said.</p>\n\n\n\n<p>“If people would like to make the choice to see their friends and collaborators in person, that can be their choice. But I don’t feel morally comfortable legally and finically supporting in-person gatherings when I think we could prevent even one death by extending our pause on in-person events to wait for a vaccine to be readily available.”</p>\n\n\n\n<p>Other commenters discussed how to manage the logistics of sponsoring masks and sanitizer for organizers by coordinating with local venues and figuring out a way around slow international shipments. </p>\n\n\n\n<p>“This actually opens totally new ways to organize WordPress events!” WordCamp organizer Timi Wahalahti said. “Why not have a bicycle trip or something similar with your WordPress friends?”</p>\n\n\n\n<p>Live event recordings are another consideration for hosting events in a way that is accessible to more vulnerable populations. According to WordPress community organizer Andrea Middleton, professional video recording has historically been cost prohibitive at scale.</p>\n\n\n\n<p>“A year ago focusing on recordings may have sounded in some ways counterproductive to growing in-person events,” WordPress core contributor David Ryan said. “But I think today they provide a short-term fix to the head count crunch, can help bring/keep folx in-the-fold while making in-person attendance even safer, all while adding long-term value even when travel and gatherings normalize.”</p>\n\n\n\n<p>The discussion on finding a safe path forward for restarting in-person events will be open until December 16, 2020. Organizers and community members can <a href=\"https://make.wordpress.org/community/2020/12/01/discussion-how-can-the-wordpress-community-return-to-hosting-safe-in-person-events/\">comment on the post</a> for consideration. Angela Jin said the Community Team will continue to support online events in 2021 and beyond, regardless of any decisions resulting from the discussion.</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 Dec 2020 22:10: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:\"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: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:91:\"WPTavern: Gutenberg 9.5 Improves Site Editor and Adds New Options for Cover and Code 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:30:\"https://wptavern.com/?p=108450\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:227:\"https://wptavern.com/gutenberg-9-5-improves-site-editor-and-adds-new-options-for-cover-and-code-blocks?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-5-improves-site-editor-and-adds-new-options-for-cover-and-code-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:4774:\"<p class=\"has-drop-cap\">Gutenberg 9.5 <a href=\"https://make.wordpress.org/core/2020/12/02/whats-new-in-gutenberg-2-december/\">went live today</a>. The development team is continuing forward with work that we will start seeing down the road in WordPress 5.7 and beyond. The big user-facing highlights for this release were the additions of a full-height alignment option for the Cover block, font-size support in the Code block, and improved previews for block patterns.</p>\n\n\n\n<p>The majority of users will not see most of the work that went into the 9.5 release. The team addressed dozens of bugs and enhancements for the full-site editing feature. To test them, users must be using a block-based WordPress theme, such as <a href=\"https://wptavern.com/twenty-twenty-one-blocks-theme-launching-as-a-separate-project\">Twenty Twenty-One Blocks</a>, <a href=\"https://wptavern.com/q-first-fse-wordpress-theme-now-live\">Q</a>, or <a href=\"https://wptavern.com/block-based-bosco-second-full-site-editing-theme-lands-in-the-wordpress-directory\">Block-Based Bosco</a>.</p>\n\n\n\n<p>We are a long way from seeing a production-ready site editor, but it is nice to see the improvements with each major Gutenberg release, such as the ability to <a href=\"https://github.com/WordPress/gutenberg/pull/27224\">set a post’s featured image</a> if it doesn’t exist. The new description, status, and theme <a href=\"https://github.com/WordPress/gutenberg/pull/27156\">admin columns for templates and template parts</a> add useful information. And, the developer side of me is happy to see a new <code>wp_theme</code> <a href=\"https://github.com/WordPress/gutenberg/pull/27016\">taxonomy for grouping templates</a> under the hood rather than metadata.</p>\n\n\n\n<p>The development team has made progress on the Query block. It is probably the most important piece of the full-site editing puzzle, and its current state is still holding back movement on block-based themes. The block now sports a new <a href=\"https://github.com/WordPress/gutenberg/pull/27067\">“grid view” option</a>. There is also a <a href=\"https://github.com/WordPress/gutenberg/pull/26990\">Posts List variation</a> that sets up a default of listing blog posts and excluding sticky posts. This block variation is a step toward pushing third-party plugin developers into creating custom variations for their post types in the future, building from the example set by WordPress.</p>\n\n\n\n<h2>Full-Screen Cover Block</h2>\n\n\n\n<img />Setting the Cover block to full height.\n\n\n\n<p class=\"has-drop-cap\">The Gutenberg team added a new <a href=\"https://github.com/WordPress/gutenberg/pull/26615\">Full Height Alignment</a> toolbar option to the Cover block. This is an independent alignment option and does not interfere with the existing horizontal alignments.</p>\n\n\n\n<p>When adding the Cover block to a post, users will see a new frame-like button in the toolbar. After clicking, it will automatically set the height setting in the block options to <code>100 vh</code>, which is the full height of the browser viewport. This option is far more flexible than having users set a height with pixel units, which do not automatically adjust based on the visitor’s screen size.</p>\n\n\n\n<p>By combining this new alignment with full-width alignment, users can create full-screen layouts with the Cover block.</p>\n\n\n\n<p>The new toolbar control will likely <a href=\"https://github.com/WordPress/gutenberg/issues/16385\">land in other core blocks</a>. The Media & Text block is another good use case. Plus, third-party plugin developers can integrate it into their blocks. As its use becomes more widespread in blocks, it will offer more robust design options for theme developers too.</p>\n\n\n\n<h2>Change Code Block Font Size</h2>\n\n\n\n<img />Setting the Code block’s font size.\n\n\n\n<p class=\"has-drop-cap\">The Code block now has the same <a href=\"https://github.com/WordPress/gutenberg/pull/27294\">font-size option</a> as other text-based blocks, such as Paragraph and List. In general, users should probably shy away from adjusting this on a per-post basis and stick to the global default set by their theme or the Global Styles options when they eventually land in WordPress.</p>\n\n\n\n<p>However, there are use cases where it makes sense to change the code font-size in particular layouts. I imagine some development-related site owners will want to highlight or showcase code in some way.</p>\n\n\n\n<p>With that in mind, it would be interesting to see other design options brought to Code block. Currently, it does not offer much in the way of customization, but color and background options could allow users to spruce up their code examples a bit without relying on a third-party plugin for that extra bit of pizzazz.</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 Dec 2020 23:45:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:57:\"WordPress.org blog: The Month in WordPress: November 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:34:\"https://wordpress.org/news/?p=9283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2020/12/the-month-in-wordpress-november-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:10892:\"<p>November 2020 saw several updates to the WordPress 5.6 release. Read on to follow all the latest news from the WordPress world!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.6 updates</h2>\n\n\n\n<p>The Core team released WordPress 5.6 <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">Beta 3</a> on Nov. 2, <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-4/\">Beta 4</a> on Nov. 12, <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-release-candidate/\">release candidate</a> 1 on Nov. 17, and <a href=\"https://wordpress.org/news/2020/12/wordpress-5-6-release-candidate-2/\">release candidate 2</a> on Dec. 1. You can test the Beta versions and the release candidates by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or by using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. Check out the <a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 field guide</a> to understand the features of WordPress 5.6 and learn how you can incorporate them into your websites. WordPress 5.6 <a href=\"https://make.wordpress.org/core/5-6/\">will be out by Dec. 9, 2020</a>. </p>\n\n\n\n<p>But our work is never done: You can submit <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-5-7-whats-on-your-wishlist/\">feature suggestions for WordPress 5.7</a> by Dec. 15. </p>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress Core dev chats on Wednesdays at 5 a.m. and 8 p.m. UTC in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel on the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>, and <a href=\"https://make.wordpress.org/core/tag/dev-chat/\">catch up with recaps</a> on the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>. If you would like to help with WordPress 5.6 outreach, contact the <a href=\"https://make.wordpress.org/marketing/\">WordPress Marketing team</a> on the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel.</p>\n\n\n\n<h2>Gutenberg 9.3 and 9.4 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">Version 9.3</a> on Nov. 4 and <a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">Version 9.4</a> on Nov. 18. Both versions include several improvements to Full Site Editing (FSE) flows, in addition to bug fixes and feature upgrades. Version 9.3 is the first release that isn’t included entirely in WordPress 5.6; the version automatically enables FSE experiments when a block-based theme is active. Version 9.4 introduces some new features like percentage width for button blocks, block variation transformations, social icon support, and font size support for the list block. You can find out more about the Gutenberg roadmap in the <a href=\"https://make.wordpress.org/core/2020/11/02/whats-next-in-gutenberg-november-2020/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Learn WordPress updates</h2>\n\n\n\n<p>WordPress contributor teams are all set to launch <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> in December. Community members can now watch<a href=\"https://learn.wordpress.org/workshops\"> video workshops</a> to learn about various WordPress topics, <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">participate in discussion groups</a>, and use <a href=\"https://learn.wordpress.org/lesson-plans/\">lesson plans</a> for organizing their own workshops. Contributor teams have launched <a href=\"https://make.wordpress.org/community/2020/11/18/quizzes-are-now-live-on-learn-wordpress/\">quizzes</a> and are also working on <a href=\"https://make.wordpress.org/community/2020/11/18/standards-for-learn-wordpress-workshop-content/\">setting standards</a> for workshops.<br /></p>\n\n\n\n<p>Want to contribute to Learn WordPress? You can now submit a <a href=\"https://learn.wordpress.org/workshop-presenter-application/\">workshop application</a> (submissions in languages other than English are welcome!), apply to become a <a href=\"https://learn.wordpress.org/discussion-group-leader-application/\">discussion group leader</a>, organize <a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">discussions for your local WordPress meetup group</a>, or <a href=\"https://make.wordpress.org/training/2020/11/25/high-priority-items-before-learn-wordpress-org-launch-part-2/\">help fix issues with existing lesson plans</a>.</p>\n\n\n\n<h2>WordPress 5.6 Translations and Polyglots survey</h2>\n\n\n\n<p>WordPress 5.6 is ready to be translated and is now at <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>. If you would like to contribute, <a href=\"https://make.wordpress.org/polyglots/2020/11/07/wordpress-5-6-ready-to-be-translated/\">check out these instructions</a> and ensure that <a href=\"https://make.wordpress.org/polyglots/handbook/translating/packaging-localized-wordpress/automated-release-packages/\">your locale is ready for an automated release</a>. The Polyglots team has also kicked off its <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">translator research survey</a>. Please <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">participate in the survey</a>, share the <a href=\"https://wordpressdotorg.survey.fm/polyglots-translator-research\">survey link</a> with members of your locale, and help amplify the <a href=\"https://www.facebook.com/WPTranslationDay/posts/1275404086174610\">Facebook</a>, <a href=\"https://twitter.com/TranslateWP/status/1333342595913834496\">Twitter</a>, and <a href=\"https://www.linkedin.com/posts/wptranslationday_makewordpress-wordpress-activity-6739110862650523648-fX8R/\">LinkedIn</a> posts about it.</p>\n\n\n\n<p>Want to help WordPress speak your language? Follow <a href=\"https://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the <a href=\"https://wordpress.slack.com/archives/C02RP50LK\">#polyglots</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><a href=\"https://www.php.net/releases/8.0/en.php\">PHP 8</a> is out, and WordPress 5.6 <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">aims to be “beta-compatible” with the latest PHP version</a>.</li><li>Contributor teams have kicked off <a href=\"https://make.wordpress.org/themes/2020/11/18/theme-previews-in-the-time-of-blocks/\">an ongoing discussion on starter content for WordPress themes</a>. Starter content for the <a href=\"http://wp-themes.com/twentytwentyone/\">Twenty Twenty One</a>, <a href=\"http://wp-themes.com/twentytwenty/\">Twenty Twenty</a>, and <a href=\"http://wp-themes.com/twentyseventeen/\">Twenty Seventeen</a> themes are now available.</li><li>The Accessibility team is <a href=\"https://github.com/10degrees/accessibility-statement-plugin\">testing a tool</a> to generate the structure of an accessibility statement for WordPress websites based on <a href=\"https://www.w3.org/WAI/planning/statements/generator/#create\">W3C standards</a>, and it is <a href=\"https://github.com/10degrees/accessibility-statement-plugin/issues\">requesting feedback from the community</a>.</li><li>The <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> has published a <a href=\"https://wordpressfoundation.org/2020/open-source-workshops-november-2020-report/\">report on Open Source workshops</a> that were held online in 2020, based on the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform.</li><li>The Docs team is actively <a href=\"https://make.wordpress.org/docs/2020/11/12/follow-up-on-gutenberg-developer-documentation-restructuring-proposal/\">following up</a> on a proposal to <a href=\"https://make.wordpress.org/docs/2020/08/13/plan-proposal-for-a-new-better-structured-gutenberg-developer-documentation/\">restructure the Gutenberg developer documentation</a>.</li><li>The Community team is back with <a href=\"https://make.wordpress.org/community/tag/tuesdaytrainings/\">Tuesday Trainings</a>. The team is <a href=\"https://make.wordpress.org/community/2020/11/16/community-team-goals-for-2021-share-your-suggestions/\">also inviting suggestions on team goals for 2021</a> with a deadline of Dec. 14.</li><li>The Support team is <a href=\"https://make.wordpress.org/support/2020/11/changing-up-the-forum-front-page/\">making changes to the forum page</a> to improve discoverability. </li><li>Two online WordCamps took place in November: <a href=\"https://finland.wordcamp.org/2020/\">WordCamp Finland Online</a> and <a href=\"https://mexico.wordcamp.org/2020/\">WordCamp Mexico Online</a>. You can find Livestream recaps of the events on their websites. Videos will soon be available on WordPress.tv as well.</li><li>The Themes team <a href=\"https://make.wordpress.org/themes/2020/11/11/meeting-notes-tuesday-november-10-2020/\">made some changes to WordPress theme requirements</a>. These include removing updated CSS guidelines and a proposed plan to make WordPress themes accessibility-ready. The team is also <a href=\"https://make.wordpress.org/themes/2020/11/19/feedback-requested-resolution-process-for-issues-found-in-live-themes/\">requesting feedback</a> on the resolution process for issues found in live themes.</li><li>WordPress 5.6 will feature a <a href=\"https://make.wordpress.org/core/2020/11/05/updating-core-jquery-to-version-3-part-2/\">major jQuery change</a>, with the bundled jQuery version being updated to Version 3.5.1 and jQuery Migrate being updated to Version 3.3.2.</li><li>The <a href=\"https://make.wordpress.org/community/tag/wpdiversity/\">Diversity speaker training group</a> of the Community team is requesting feedback on reimagining their work. Please <a href=\"https://make.wordpress.org/community/2020/11/12/input-requested-re-imagining-the-work-of-the-diverse-speaker-training-group-wpdiversity/\">share your feedback as comments on the post</a> by Dec. 18.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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 Dec 2020 09:13:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:73:\"WPTavern: New Plugin Adds Google-Doc Style Commenting to Gutenberg 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:30:\"https://wptavern.com/?p=108408\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/new-plugin-adds-google-doc-style-commenting-to-gutenberg-blocks?utm_source=rss&utm_medium=rss&utm_campaign=new-plugin-adds-google-doc-style-commenting-to-gutenberg-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:3328:\"<p><a href=\"https://www.multidots.com/\">Multidots</a>, a development agency and WordPress VIP Agency Partner, has released a plugin that brings content collaboration to the block editor. The <a href=\"https://wordpress.org/plugins/commenting-feature/\">Google-Doc Style Gutenberg Block Commenting</a> plugin landed on WordPress.org in October and is just starting to gain traction.</p>\n\n\n\n<p>It adds inline commenting to the editor where users can highlight text or select entire blocks and leave a comment. Other users can leave comments and/or mark the thread as resolved for a collaborative editing experience. Alternatively, the post author can use comments for making notes on sections that need to be improved or reviewed prior to publishing. The features support the following editorial workflow:</p>\n\n\n\n<ul><li>Add comments on Gutenberg blocks</li><li>Reply to comment</li><li>Get feedback</li><li>Resolve it</li><li>Get email notification of resolved comments</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Multidots has a <a href=\"https://www.multidots.com/gutenberg-commenting-demo/\">live demo</a> set up where you can test leaving comments, replies, and marking threads as resolved. The plugin is currently compatible with a range of text-based blocks that are part of a page or post. Commenting can be accessed by highlighting text and then clicking on the dropdown arrow in the toolbar. Inline comments can be displayed or hidden via the icon in the top toolbar.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The plugin restricts adding and editing comments to Super Administrators, Administrators, and Editors. These user roles can edit their own comments but cannot edit or delete those added by other users.</p>\n\n\n\n<p>Google-Doc Style Gutenberg Block Commenting could be useful for organizations where multiple teams need to review content before publishing. Not having the ability to collaborate using the block editor may even be a deal breaker for some teams that are considering WordPress. When collaborating on posts in the past I have often used Google Docs just for the ability to give inline comments with notifications. This plugin cuts many time-consuming steps out of that process, such as obtaining collaborators’ Gmail addresses, pasting the most recent version of the post into a document, and ultimately having to paste it all back into the editor. </p>\n\n\n\n<p>The plugin’s authors consider this a beta version and plan to add more features based on community feedback. After testing it, I found that resolved threads seem to disappear, but it might be helpful to have a lasting record of them. Users cannot comment on images or other types of non-text-based blocks, and this seems somewhat limiting. There are no notifications for comments – only resolved threads, which makes it difficult to know when content needs further review.</p>\n\n\n\n<p>Multidots is planning for the next release to be a more optimized version with enhanced commenting features, including the ability to leave popup suggestions for adding/removing certain text at a specific location and asynchronous commenting. Anyone interested in following the progress or contributing can <a href=\"https://github.com/multidots/gutenberg_commenting/\">find the project on GitHub</a>.</p>\n\n\n\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:\"Wed, 02 Dec 2020 04:40: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: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:53:\"WordPress.org blog: WordPress 5.6 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2020/12/wordpress-5-6-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2247:\"<p>The second release candidate for WordPress 5.6 is here!</p>\n\n\n\n<p>WordPress 5.6 is slated for release on <strong>December 8, 2020</strong>, and we need <em>your</em> help to get there—if you haven’t tried 5.6 yet, now is the time!</p>\n\n\n\n<p>You can test WordPress 5.6 release candidate 2 in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the <em>Tested up to</em> version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>. That way, those can be figured out before the final release. </p>\n\n\n\n<p>For a more detailed breakdown of the changes included in WordPress 5.6, check out the <a href=\"https://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">WordPress 5.6 beta 1 post</a>. The <a href=\"https://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 Field Guide</a> is also out! It’s your source for details on all the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>Think you found a bug?</strong> Post it to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report you can <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>. Don’t forget to check <a href=\"https://core.trac.wordpress.org/tickets/major\">the list of known bugs</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:\"Tue, 01 Dec 2020 22:09:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:92:\"WPTavern: Block-Based Bosco, Second Full-Site Editing Theme Lands in the WordPress Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:227:\"https://wptavern.com/block-based-bosco-second-full-site-editing-theme-lands-in-the-wordpress-directory?utm_source=rss&utm_medium=rss&utm_campaign=block-based-bosco-second-full-site-editing-theme-lands-in-the-wordpress-directory\";s: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:5489:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Fränk Klein, a Principal Engineer at Human Made, is now the second theme developer to release a block-based theme to the WordPress theme directory. <a href=\"https://wordpress.org/themes/block-based-bosco/\">Block-Based Bosco</a> is a recreation of his <a href=\"https://wordpress.org/themes/bosco/\">Bosco</a> theme, which he released in 2014.</p>\n\n\n\n<p>Block-based themes, also called FSE (full-site editing) themes, are currently experimental. They require the use of the Gutenberg plugin, which will automatically detect their structure and activate the beta version of the site editor. This system allows users to experience a WordPress install that is comprised entirely of blocks. Widgets, nav menus, and the customizer screens are out. Everything from posts to site headers to navigation is handled through HTML templates, which users can customize via the site editor. It is still a raw experience but continually improves with each update of the Gutenberg plugin.</p>\n\n\n\n<p>Just over a month ago, Themes Team representative Ari Stathopoulos <a href=\"https://wptavern.com/q-first-fse-wordpress-theme-now-live\">released the first block-based theme</a>, named Q, to the official theme directory. It was both a milestone in WordPress theming history and an invitation for developers to follow his lead.</p>\n\n\n\n<p>We have since seen the initial work toward a <a href=\"https://wptavern.com/twenty-twenty-one-blocks-theme-launching-as-a-separate-project\">block-based version</a> of the upcoming Twenty Twenty-One default theme. It is not yet in the directory, but the community should expect it soon.</p>\n\n\n\n<p>Developers like Klein and Stathopoulos are paving the way for others. For those who do not have the time or the inclination to scour the Gutenberg plugin’s code or follow dozens of tickets, they can take the easy route. Study the code of people who have done the legwork.</p>\n\n\n\n<p>Klein has also written a detailed post titled <a href=\"https://wpdevelopment.courses/articles/full-site-editing-theme-learnings/\">What I Learned Building a Full-Site Editing Theme</a> in which he goes into detail about his experience. Despite his optimism for the future of theming, he does not shy away from the problems he stumbled upon. It is a must-read for any theme author who is preparing to take the plunge into block-based theme building.</p>\n\n\n\n<p>One thing that some developers may find surprising or may even make them feel slightly uncomfortable is that Klein spent much of his development time working from the site editor rather than in a code editor. “It’s likely that this will be the future workflow for creating themes,” he wrote. “Because not only can you edit a theme visually, but it’s also much more practical than writing block markup by hand. Especially because the interface makes it easy to discover the different options offered by blocks, so that you can adjust them as needed for your desired theme design.”</p>\n\n\n\n<h2>About the Theme</h2>\n\n\n\n<img />Block-Based Bosco in the site editor.\n\n\n\n<p class=\"has-drop-cap\">Block-Based Bosco is relatively simple. It is a one-column, no-sidebar theme, which is what most block-based themes will look like at the moment.</p>\n\n\n\n<p>“Full-site editing themes are still missing a lot of essential features,” wrote Klein. “Therefore it’s important to choose a theme design that fits with these constraints. Else you’re going to have a very frustrating experience.”</p>\n\n\n\n<p>Unlike Q, which is a bare-bones theme primarily for testing theme-related features, Block-Based Bosco is based on a design that users might want to actually use on a site, at least someday. Currently, full-site editing is not yet ready for use with production sites. The theme design holds up well for a simple personal blog.</p>\n\n\n\n<p>There are things the theme could do better in the short term. Offering support for wide and full alignments would be ideal, particularly for a one-column theme. The editor and front-end content width also do not match, so it is not a perfect what-you-see-is-what-you-get experience. These are not make-or-break features for these types of experimental themes at this point. We are simply in the testing ground stage.</p>\n\n\n\n<p>Right now, end-users need to start tinkering with themes like Block-Based Bosco — please do so on a test install and not a live site — and offering feedback. They also allow other developers to get more comfortable with a new system before it suddenly feels like it comes crashing down in 2021.</p>\n\n\n\n<h2>Opening Up the Theme Directory</h2>\n\n\n\n<p class=\"has-drop-cap\">One thing is obvious at this point. The WordPress theme directory needs to allow theme authors to upload block-based themes without hacks or other workarounds. Block-Based Bosco and similar themes are currently being shipped with dummy files, such as <code>header.php</code> and <code>footer.php</code>, and unnecessary PHP code in <code>functions.php</code> to bypass the Theme Check system. With these extra files and code removed, block-based themes are minuscule in comparison to traditional WordPress themes.</p>\n\n\n\n<p>There is an <a href=\"https://meta.trac.wordpress.org/ticket/5504\">open ticket</a> on the WordPress Meta Trac and a <a href=\"https://github.com/WordPress/theme-check/pull/280\">patch for the Theme Check plugin</a>. Someone needs to pull the trigger and make it happen.</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 Dec 2020 21:19:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:113:\"WPTavern: Admin 2020 Version 2 Introduces New Lite Version, Better Plugin Compatibility, and Modular Architecture\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:267:\"https://wptavern.com/admin-2020-version-2-introduces-new-lite-version-better-plugin-compatibility-and-modular-architecture?utm_source=rss&utm_medium=rss&utm_campaign=admin-2020-version-2-introduces-new-lite-version-better-plugin-compatibility-and-modular-architecture\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5328:\"<img />\n\n\n\n<p>Six months ago, <a href=\"https://admintwentytwenty.com/\">Admin 2020</a> captured the attention of WordPress users with its fresh approach to skinning the admin screens. <a href=\"https://admintwentytwenty.com/admin-2-is-here/\">Version 2</a> of the plugin has been completely rewritten to support a modular architecture so users can enable or disable features, or selectively enable them by user role or username. Some users prefer the default menu but want to be able to categorize their media into folders with the plugin’s CMS-friendly architecture for organizing media and posts. This update significantly improves performance for those who don’t require the analytics, admin bar, menu, or other features. </p>\n\n\n\n<p>The plugin now has a new settings interface that is less cluttered than the previous version.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>“Admin 2020 started off as a WordPress admin theme, and that was always at the core of the plugin,” developer Mark Ashton said. “As we grew, we added more and more features on top of that and it became very difficult in its current iteration to separate those feature sets, or disable some features and let others carry on.”</p>\n\n\n\n<p>Version 2 also greatly improves compatibility with other plugins. Ashton was spending a lot of time adding support for other plugins, which slowed down development. The new approach to compatibility causes fewer styling conflicts and works without having to add custom stylesheets for other plugins. Prior to this version, Admin 2020 disabled 90% of WordPress admin styling and applied its own. </p>\n\n\n\n<p>“While this gave us complete control over layouts and styling, it was one of the reasons we had to spend a lot of time adding support for other plugins,” Ashton said. “So for version 2, we kept the WP styling (most of it anyway) and applied a lightweight theme on top of it. The end result is a theme that is more refined, quicker, and the most compatible we have ever put out.<br />Usually the only plugins we have problems with these days are the ones that actively disable non standard WP scripts and styles, which obviously breaks admin 2020’s layout.”</p>\n\n\n\n<p>In the interest of keeping Admin 2020 lightweight, the plugin now uses a custom build of the <a href=\"https://getuikit.com/\">UIkit</a> framework that is more tailored to its specific use case. </p>\n\n\n\n<p>“Instead of having uikit as a base, and then layering on top of it, we just tailored it to suit the plugin needs and thanks to the wonders of scss it is an incredibly easy framework to modify,” Ashton said. “Doing this also allowed us to support RTL much easier which was a very common feature request.”</p>\n\n\n\n<h2>New Admin 2020 Lite Version Offers Basic Features, Coming to WordPress.org in 2021</h2>\n\n\n\n<p>Admin 2020 is now available on the plugin’s website in a Lite version for free. In recognition of WordPress.org’s undeniable force as a distribution channel, Ashton is considering changing his previous strategy of pursuing a fully commercial model to embrace the idea of marketing a free plugin with a paid upgrade. </p>\n\n\n\n<p>“Admin 2020 has grown so much since we launched in May this year and it’s no longer just an admin theme,” Ashton said. “In fact, we see it as more of an admin extension now that also has a theme. Because of this, we felt there are now enough features to be able to offer the lite and pro versions.”</p>\n\n\n\n<p>With the new modular system in version 2, the free and commercial versions are the same plugins, except the lite version has the paid modules removed.</p>\n\n\n\n<p>“This means the development of the two versions is synched and updates, new features and bug fixes all rollout at the same time,” Ashton said. “For the time being we are going to stick to our own distribution channel just to keep everything streamlined, but releasing through <a rel=\"noreferrer noopener\" href=\"http://wordpress.org/\" target=\"_blank\">wordpress.org</a> is something we have planned for next year.”</p>\n\n\n\n<p>Launching a new business during a pandemic is no easy feat but Ashton has grown Admin 2020’s user base to 3,642 active installations and is still looking to hire someone to assist in developing and maintaining the plugin.</p>\n\n\n\n<p>“This has grown dramatically since the release of version 2 and will likely be around 5,000 or more in a week due to the sales from the Black Friday/Cyber Monday event,” he said. </p>\n\n\n\n<p>Next up on the roadmap, Admin 2020 users can expect more customization options and deeper integration with WooCommerce. Ashton is currently working on the custom admin pages feature set that will allow users to create admin pages using the block editor and some of the more popular page builders. </p>\n\n\n\n<p>“We are also working on expanding our WooCommerce integration with the idea of having a full suite of cards and data available on the overview page to help better visualize your business and sales,” Ashton said. “We are also going to be changing admin 2020’s name towards the end of the year but I won’t say what to just yet.”</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, 30 Nov 2020 23:36: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: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:97:\"WPTavern: Block Navigation Plugin Provides Missing Context-Based Outline for the WordPress Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/block-navigation-plugin-provides-missing-context-based-outline-for-the-wordpress-editor?utm_source=rss&utm_medium=rss&utm_campaign=block-navigation-plugin-provides-missing-context-based-outline-for-the-wordpress-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4596:\"<p class=\"has-drop-cap\">Álvaro García wrote the first code for his <a href=\"https://wordpress.org/plugins/block-navigation\">Block Navigation</a> plugin back in November 2018. It is one of those hidden gems that I wish I had known about two years ago as I began using the block editor. It has been available. I simply did not know about it until blindly stumbling upon it in a <a href=\"https://www.facebook.com/groups/gutenberghub/permalink/2844169185815585/\">discussion</a> in the WordPress Gutenberg Community group on Facebook.</p>\n\n\n\n<p>The goal of the plugin is to provide an alternative to the editor’s current navigation. For the most part, it excels. WordPress has set the bar so low that any improvement seems like a godsend.</p>\n\n\n\n<p>The plugin adds a new sidebar panel titled Block Navigation. That panel then lists each block with the added context needed to understand what block it is associated with in the content. For example, a Paragraph block in the navigation list will display its first few words. Other blocks do the same. Images and galleries in the list display their respective thumbnails. It handles nested blocks too.</p>\n\n\n\n<p>All users must do is search for and click on the block they want to jump to in the content.</p>\n\n\n\n<img />Navigating to specific paragraph in the document.\n\n\n\n<p>The plugin is packed with several other features. Users can shift blocks up and down from the navigation panel. They can also move blocks anywhere in the document with the click of a button or remove them altogether.</p>\n\n\n\n<p>One of the more interesting features of the Block Navigation plugin is its ability to log a block’s data to the console. For developers, this could be a handy feature to quickly look up information for a block. While I doubt the average user would use it, there might be some potential applications for support requests, particularly with third-party block plugins.</p>\n\n\n\n<img />Console log of a block’s data.\n\n\n\n<p>The downside of the plugin is that it does not provide a color scheme that simply matches the default WordPress color palette. However, it does provide a dozen color options for users to choose from. The Banana (light) scheme seemed the least out of place.</p>\n\n\n\n<p>With the navigation being handled in the sidebar, it could interfere with some users’ workflows. For users who prefer to keep the block options sidebar available at all times, they will need to switch back and forth between sidebars. The plugin does provide a button for switching to each block’s setting via its submenu (vertical ellipsis icon) in the navigation list.</p>\n\n\n\n<p>The thing that would make this plugin better would be putting it into the editor toolbar, replacing the current Outline dropdown.</p>\n\n\n\n<h2>It Should Be a Core WordPress Feature</h2>\n\n\n\n<p class=\"has-drop-cap\">The block editor’s Outline dropdown is lackluster at best. For short posts, it is unnecessary. For long posts, there is no context for any of the blocks in the list. The goal is to be able to jump to specific points in the document without scrolling. However, unless you know the exact location in the block you want to jump to, it can sometimes be impossible to use the feature.</p>\n\n\n\n<img />Outline dropdown.\n\n\n\n<p>The Document Outline section of the Details dropdown provides some much-needed context. It displays the post’s headings. However, this outline does not allow users to click on an item and jump to its associated block.</p>\n\n\n\n<img />Details dropdown.\n\n\n\n<p>Paal Joachim Romdahl proposed a fix for the Outline dropdown in October 2018. “What about just using the icon and then showing some of the text in the beginning of the paragraph?” he asked in a <a href=\"https://github.com/WordPress/gutenberg/issues/11010\">GitHub ticket</a> that has seen no discussion for nearly a year.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Merged dropdowns.</div>\n\n\n\n<p>There is currently an <a href=\"https://github.com/WordPress/gutenberg/pull/14956\">open pull request</a> on GitHub to merge the Details and Outline dropdowns in the toolbar. The original proposal added a tabbed interface. However, an alternative patch without the tabs proposed in the same ticket would merge the best of both worlds by adding the more-detailed structural outline while linking to the blocks in the document.</p>\n\n\n\n<p>The only question left now is whether I can still update my <a href=\"https://wptavern.com/wordpress-5-7-wish-list-save-block-editor-settings-per-user\">WordPress 5.7 wish list</a> to include this feature.</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, 30 Nov 2020 23:03: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:\"Justin Tadlock\";s: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:61:\"BuddyPress: BuddyPress 6.4.0 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=315780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://buddypress.org/2020/11/buddypress-6-4-0-maintenance-and-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1569:\"<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.6.4.0.zip\">BuddyPress 6.4.0</a> is now available. This is a security and maintenance release. All BuddyPress installations are strongly encouraged to upgrade as soon as possible.</p>\n\n\n\n<p>The 6.4.0 release addresses one security issue: non-capable users could add a style attributes to “span” and “p” elements in possible rich text fields of their profile page. The vulnerability has been fixed.</p>\n\n\n\n<p>Version 6.4.0 also fixes 7 bugs, including compatibility updates to welcome <a href=\"https://www.php.net/releases/8.0/en.php?lang=en\">PHP 8.0 release</a> (Congratulations to all PHP 8.0 contributors!).</p>\n\n\n\n<p>For complete details, visit the <a href=\"https://codex.buddypress.org/releases/version-6-4-0/\">6.4.0 changelog</a>.</p>\n\n\n\n<p>Update to BuddyPress 6.4.0 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the WordPress.org plugin repository</a>.</p>\n\n\n\n<h2>Many thanks to 6.4.0 contributors <span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/zeldatea/\">Zeldatea</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">Ray (r-a-y)</a>, <a href=\"https://profiles.wordpress.org/dcavins/\">David Cavins (dcavins)</a> & <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet (imath)</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Nov 2020 22:32:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s: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:65:\"WordPress Foundation: Open Source Workshops: November 2020 report\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=150204\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpressfoundation.org/2020/open-source-workshops-november-2020-report/\";s: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:3597:\"<p>The WordPress Foundation has been organizing <a href=\"https://wordpressfoundation.org/2018/open-source-training-events-announced/\">Introduction to Open Source workshops</a>, as part of our continuing efforts to educate the public about WordPress and related open-source software (OSS). In 2019, as part of our goal of organizing workshops in parts of the world with less participation in open source, we held <a href=\"https://wordpressfoundation.org/2019/successful-open-source-workshops-in-bhutan-india-pakistan-and-angola/\">four successful workshops</a> in India, Pakistan, Bhutan, and Thimphu. </p>\n\n\n\n<p>By March 2020, the COVID-19 pandemic had engulfed the world, forcing community organizers to cancel all in-person events. Unfazed by these challenges, our community organizers pivoted to online events by organizing <a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">four successful online charity hackathons</a> in <a href=\"https://doaction.org/ja/event/japan-2020/\">Japan</a>, <a href=\"https://doaction.org/event/south-africa-2020/\">South Africa</a>, <a href=\"https://doaction.org/event/india-2020/\">India</a>, and <a href=\"https://doaction.org/event/nigeria-2020/\">Nigeria</a>, so far. The Introduction to Open Source workshops have also moved online. The <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">workshop</a> is now available online as part of <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>, which is a brand new initiative from WordPress contributor teams to help people learn how to use, build for, and contribute to WordPress. Community members across the world can now<a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\"> learn about Open-Source</a> safely from the comfort of their homes and test their knowledge using <a href=\"https://learn.wordpress.org/quiz/introduction-to-open-source/\">the embedded quiz</a>. The workshops are also followed by <a href=\"https://www.meetup.com/learn-wordpress-discussions/\">discussion groups</a>, where participants can discuss their learnings in real-time and find answers to their questions. </p>\n\n\n\n<p>As of November 2020, the Introduction to Open-source workshop video has been viewed 757 times. Three online discussion group events with over 152 RSVPs were also held successfully. Sign-ups are open for two more discussion groups that are listed below:</p>\n\n\n\n<ul><li><a href=\"https://www.meetup.com/learn-wordpress-discussions/events/274841875/\">Tuesday, December 8 2020, at 6:00 AM UTC</a></li><li><a href=\"https://www.meetup.com/learn-wordpress-discussions/events/274841881/\">Wednesday, December 16 2020, at 4:00 PM UTC</a></li></ul>\n\n\n\n<p>You can watch the <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">workshop video</a> and participate in these discussion groups to learn about open-source software and find answers to your questions on open-source.</p>\n\n\n\n<p>In addition to these scheduled discussion groups, community organizers can organize <a href=\"https://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">their own online discussion groups</a> or hold online watch parties for the <a href=\"https://learn.wordpress.org/workshop/introduction-to-open-source/\">Introduction to Open-Source workshop</a>. </p>\n\n\n\n<p>Given the global spread of the COVID-19 pandemic, WordPress Foundation events are likely to be held online in 2021. We will be announcing our plans for 2021 events later this year.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Nov 2020 09:05:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hari Shanker\";s: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:38:\"WPTavern: Something To Be Thankful For\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108221\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/something-to-be-thankful-for?utm_source=rss&utm_medium=rss&utm_campaign=something-to-be-thankful-for\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4328:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Over the past several weeks, I have received around four dozen emails, texts, PMs, and other messages related to Black Friday and Cyber Monday deals. Last year, we ran a <a href=\"https://wptavern.com/wordpress-black-friday-sales-roundup\">roundup of deals</a> happening throughout the WordPress ecosystem. However, we are not running such a post this year. It took a solid week to compile and piece together the previous article. It was a lot of work for what was a statistical dud. Readership tends to wane around holidays as people spend more time offline and with their families.</p>\n\n\n\n<p>Plus, I firmly believe that our readers would rather see what we have to say about a particular product than simply scroll through a list of offers that are already widely shared on Twitter, Facebook, and elsewhere.</p>\n\n\n\n<p>As George Olaru, the CEO of Pixelgrade, wrote in <em><a href=\"https://pixelgrade.com/upstairs/discounts/\">I discount, you discount, we both lose</a></em>, software is not a perishable food item. It is not at risk of spoilage in a few days, and if it is, we have a real problem. On the flip side, some small businesses rely on this holiday to generate a large portion of their yearly revenue. However, we should all have some serious conversations about whether it is healthy for discounted software to permeate the WordPress plugin and theme markets every time a holiday rolls around. Whatever your stance, Olaru’s piece is worth reading and thinking on.</p>\n\n\n\n<p>It is also tough to get into the holiday spirit this year. With Covid-19, the Black Friday markets have changed, which is probably not a bad thing on the whole — <em>do we all really need to pile into stores to fight over the latest gadgets?</em> The pandemic has also meant that families have had to make hard decisions about gatherings. The Tadlock family decided to cancel our pre-Thanksgiving/reunion we have in early November. We host it early because the doctors and nurses in the family often have to work on the holiday, and they agreed that a large gathering was not ideal. Fortunately, we live in an era where we can connect with each other in moments and from vast distances.</p>\n\n\n\n<p>No, it did not feel right to do a sales roundup this year. Instead, I wanted to get back to the root of the Thanksgiving holiday, at least what I was taught the holiday was supposed to be about.</p>\n\n\n\n<p>While tomorrow’s Thanksgiving holiday is an American tradition, I am certain our readers abroad can join in the celebration. It is a day of giving thanks for the blessings of the previous year. In times past, this has often meant being thankful for the harvest and having food on the table. Today, it still means the same to many. However, the holiday is all about counting our blessings, and that is something we should all take time to do.</p>\n\n\n\n<p>This year, the thing I am most thankful for is the community, the people who all band together to create the most used CMS on the web, the people who evangelize the platform, and the people who continually take part in this grand experiment.</p>\n\n\n\n<p>One of the things I attempt to do when writing is to share exciting things happening in our little corner of the world. Yes, I am often critical too. This is because I want to see people and companies strive to create better themes, plugins, and other products. For those times when I stretch to hyperbole or perhaps lean toward the negative, know that it comes from a place that is hoping for your success. It is hard to balance at times, but I am thankful that I can do this day in and day out.</p>\n\n\n\n<p>After writing for the Tavern for over a year now, I feel like I am on a wondrous journey with so many of you. Whether it is a random message just to say hello or a ping about a new product, I look forward to seeing it all.</p>\n\n\n\n<p>These human-to-human connections were not something I was expecting as I began this gig. Thank you to everyone who has made that possible.</p>\n\n\n\n<p>Let’s all take a day and share some of the WordPress-related things we are thankful for this year — <em>we can all save our block editor criticisms for tomorrow</em>. It has been a rough year. We could all really use some positivity right now.</p>\n\n\n\n<p>What are you thankful for?</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, 25 Nov 2020 19:51:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:67:\"WPTavern: Getting Your WordPress Plugins and Themes Ready for PHP 8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108160\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/getting-your-wordpress-plugins-and-themes-ready-for-php-8?utm_source=rss&utm_medium=rss&utm_campaign=getting-your-wordpress-plugins-and-themes-ready-for-php-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7380:\"<p>On Monday, WordPress core contributor Jonathan Desrosiers published a <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\" target=\"_blank\">detailed post</a> on the Make WordPress Core blog about the upcoming PHP 8 release and how it affects WordPress.</p>\n\n\n\n<h2>PHP 8 Is Coming</h2>\n\n\n\n<p>Scheduled for release on <a rel=\"noreferrer noopener\" href=\"https://wiki.php.net/todo/php80\" target=\"_blank\">November 26, 2020</a>, PHP 8 is the next major update to our favorite scripting language. While previous PHP releases have not had too much of an adverse effect on the WordPress ecosystem, this update has some breaking changes that could affect backward compatibility. It should also be noted that many features that were deprecated in PHP 7.x will now be removed in PHP 8.</p>\n\n\n\n<h2>The Status of WordPress Core</h2>\n\n\n\n<p>In his post, Desrosiers highlights the work that has been done to keep the core software up to date. “WordPress Core aims to be compatible with PHP 8.0 in the 5.6 release (currently scheduled for December 8, 2020),” he wrote. </p>\n\n\n\n<p>However, this does not mean it is safe to upgrade to PHP 8 when WordPress 5.6 is released. WordPress is rarely run just on its own and usually relies on at least one theme and a collection of plugins to function as a blog or web site. As such, he points out, “The state of PHP 8 support within the broader ecosystem (plugins, themes, etc.) is impossible to know. For that reason, WordPress 5.6 should be considered ‘beta compatible’ with PHP 8<strong>.</strong>“</p>\n\n\n\n<p>What this means, essentially, is that until most major themes and plugins are PHP 8 compatible, WordPress cannot be considered fully compatible.</p>\n\n\n\n<h2>Understand How PHP 8 Could Affect Your Plugin or Theme</h2>\n\n\n\n<p>Companies like Yoast have been preparing for this for a little while now. In late October, Yoast CTO Omar Reiss, along with fellow contributors Juliette Reinders Folmer, maintainer of the <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/WordPress-Coding-Standards\" target=\"_blank\">WordPress Coding Standards Sniffs for PHPCS</a>, and Yoast DevOps manager Herre Groen, compiled and published a <a rel=\"noreferrer noopener\" href=\"https://developer.yoast.com/blog/the-2020-wordpress-and-php-8-compatibility-report/\" target=\"_blank\">comprehensive WordPress/PHP 8 compatibility report</a>. </p>\n\n\n\n<p>While I highly recommend you take the time to read through the entire report, it does outline the main reason that the PHP 8 upgrade could have such a drastic effect on large WordPress sites, especially the plugin and theme ecosystem.</p>\n\n\n\n<p>“However, PHP 7.* versions have seen a far larger set of deprecations than previous versions of PHP. Where PHP 5.6 to PHP 7 was a relatively simple migration, going from 7.x to 8 could be very painful, especially for very old codebases, like WordPress and many of the plugins that are available for it. For well-typed codebases or codebases which have stayed up-to-date with the latest PHP versions, there isn’t a big problem.”</p>\n\n\n\n<p>As a maintainer of a few plugins, some built on code dating back eight years, it is worrisome that this upgrade could cause sites to break.</p>\n\n\n\n<img />PHPCompatibility repository.\n\n\n\n<h2>How to Prepare Yourself</h2>\n\n\n\n<p>I asked Reiss and Folmer what plugin and theme developers can do to get ready, and they shared some pointers.</p>\n\n\n\n<p>First and foremost, developers should inform themselves about the changes coming in PHP 8: read <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\" target=\"_blank\">the Make post about PHP 8</a>, read the <a rel=\"noreferrer noopener\" href=\"https://developer.yoast.com/blog/the-2020-wordpress-and-php-8-compatibility-report/\" target=\"_blank\">Yoast PHP8 Compatibility</a> report, read the “<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\" target=\"_blank\">Migrating from PHP 7.4 to PHP 8.0</a>” section of the PHP manual, and potentially dig deeper by reading the <a rel=\"noreferrer noopener\" href=\"https://github.com/php/php-src/blob/PHP-8.0/UPGRADING\" target=\"_blank\">UPGRADING doc in the PHP 8 branch</a> and the <a rel=\"noreferrer noopener\" href=\"https://wiki.php.net/rfc#php_80\" target=\"_blank\">RFCs for PHP 8</a>.</p>\n\n\n\n<p>Some available tools can be used to help look for incompatibilities:</p>\n\n\n\n<ul><li>Run PHP lint on PHP 8 over their code, either via the <code>php -l</code> command (making sure to iterate over all files) or by using <a rel=\"noreferrer noopener\" href=\"https://github.com/php-parallel-lint/PHP-Parallel-Lint\" target=\"_blank\">PHP Parallel Lint</a>.</li><li>Run <a rel=\"noreferrer noopener\" href=\"https://github.com/PHPCompatibility/PHPCompatibility\" target=\"_blank\">PHPCompatibility</a> over their code: it should be noted that nearly all PHP 8 related sniffs are in the as-of-yet-not-yet-released version 10.0.0 of PHPCompatibility, so people would need to use the <code>develop</code> branch or via Composer <code>dev-develop</code> for the time being, until version 10.0.0 is released. </li><li>Run the unit/integration tests for the plugin or theme on PHP 8 and fix anything which that comes up as an error. This will often mean that the test suite first needs to be made compatible with PHPUnit 9.3+. The <a rel=\"noreferrer noopener\" href=\"https://github.com/Yoast/PHPUnit-Polyfills\" target=\"_blank\">PHPUnit Polyfills</a> package and <a rel=\"noreferrer noopener\" href=\"https://github.com/Yoast/wp-test-utils\" target=\"_blank\">WP Test Utils</a> package (both published under the Yoast GitHub organization) can help with this. It’s also important to note a considerable test coverage is needed to make this reliable.</li><li>Run the WordPress <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/handbook/testing/automated-testing/phpunit/\" target=\"_blank\">unit tests</a> and WordPress <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\" target=\"_blank\">e2e tests</a> with your plugin activated, and fix any issues that arise.</li><li>Check whether the (strict) code coverage of said tests is high enough and if not, add more tests, making sure both happy and unhappy paths are covered.</li><li>If there are no tests, test everything manually, focusing especially on the “unhappy paths”, and expect to receive bug reports for the foreseeable future. At the same time, this is probably a good time to look into implementing unit/integration tests for your plugin or theme.</li></ul>\n\n\n\n<h2>There Is Still Time, But It Is Running Out</h2>\n\n\n\n<p>As Desrosiers pointed out in the Make post, WordPress is only officially aiming to be PHP 8 ready by the time 5.6 is released in early December. Potentially, this means that many WordPress-focused hosting companies will only consider offering upgrades to their customers once WordPress core is compatible. So as plugin and theme developers, we have some time to test our products and get them ready, but that window is closing fast. </p>\n\n\n\n<p>Fortunately for us, the knowledge and tools to get up to date are out there. We merely need to put them into action.</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, 25 Nov 2020 17:03: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:18:\"Jonathan Bossenger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: WordPress 5.7 Wish List: Save Block Editor Settings Per User\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108176\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/wordpress-5-7-wish-list-save-block-editor-settings-per-user?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-7-wish-list-save-block-editor-settings-per-user\";s: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:4651:\"<p class=\"has-drop-cap\">WordPress 5.6 development is winding down as we begin to close out the beta testing round, inching toward the final release on December 8. That means it is time to think about what WordPress 5.7 will look like. This is one of my favorite times of the WordPress development cycle because I get to see what others want to be added to the core platform. I also get to share a feature request of my own.</p>\n\n\n\n<p>Francesca Marano <a href=\"https://make.wordpress.org/core/2020/11/23/wordpress-5-7-whats-on-your-wishlist/\">opened the discussion</a> on the Make Core blog. She asks that people link to a specific ticket, which can be from WordPress Trac or the Gutenberg repository.</p>\n\n\n\n<p>One consideration for everyone’s wish list is that 2021 will potentially see <a href=\"https://make.wordpress.org/core/2019/11/21/tentative-release-calendar-2020-2021/\">four major WordPress releases</a> rather than the typical three. WordPress 5.7 is tentatively scheduled to land on March 9, 2021. The team has scheduled future releases in three-month intervals. While the dates are not written in stone, it could mean each release’s feature set might need to be scaled back to some small degree.</p>\n\n\n\n<p>Most features that land in WordPress 5.7 will be items that are already under development. Enhancements like <a href=\"https://wptavern.com/wordpress-5-6-release-team-pulls-the-plug-on-block-based-widgets\">block-based widgets</a> and <a href=\"https://wptavern.com/navigation-screen-sidelined-for-wordpress-5-6-full-site-editing-edges-closer-to-public-beta\">nav menus</a> that were punted from the 5.6 release should land early and be ready for a full three months of testing. The development team will also focus heavily on pushing an early/beta version of the site editor into core WordPress.</p>\n\n\n\n<p>There is still room for other things to land, and now is the time for everyone to make their case for their pet feature.</p>\n\n\n\n<p>Unlike past wish-list discussions, I am going to take a step back and control myself. Instead of asking for one of those big-ticket items that I know is unlikely to happen — <em>hello, <a href=\"https://wptavern.com/open-call-for-wordpress-5-5-tickets-whats-on-your-wish-list\">completed post type API</a> and <a href=\"https://wptavern.com/wordpress-5-6-wish-list-homepage-post-type-selection-and-block-management\">homepage post type selection</a></em> —, I will simply ask for something more practical.</p>\n\n\n\n<p>In WordPress 5.7, I want the block inspector tabs and some block option defaults to remain the same each time I write a new post.</p>\n\n\n\n<p>One of my biggest pet-peeves is with the image block in particular. Each time I add an image, I first close the Styles tab in the sidebar. I do not use it often, so it is not important enough to always be open. Then, I must switch the Image Size setting to Full Size from its default Large. I typically format my images for display before uploading and simply want to use the image at the size I uploaded. These are small things, but they break my workflow. As a daily writer, it has become a nuisance over time.</p>\n\n\n\n<img />Configuring image block settings.\n\n\n\n<p>These should be per-user settings. Each user’s workflow is different, so WordPress likely needs to handle this as user metadata or a similar method.</p>\n\n\n\n<p>I was unable to track down an open ticket for saving the tab state. There are over 2,600 currently-open issues. Maybe I did not nail down the right search terminology. Or, it may be a non-issue for other users.</p>\n\n\n\n<p>However, there is a two-year-old ticket for <a href=\"https://github.com/WordPress/gutenberg/issues/8663\">remembering the last image size</a> used. I was happy to find like-minded peers who share my frustration in this case. There is also a more recent ticket about <a href=\"https://github.com/WordPress/gutenberg/pull/20269\">storing the default image size</a> on a per-user basis. The feedback in the tickets shows a clear and present need for WordPress to fix this problem.</p>\n\n\n\n<p>A representative of Feast Design Co. noted in the first ticket, “Every time somebody inserts an image they have to change the image size. This seems small but at 10 seconds per image x 5 images per post x 2 posts per week x 52 weeks per year, this is 86 minutes per year.” I believe I can manage it in a little less than 10 seconds per image, but it stills knocks me out of my flow each time. It is a seemingly trivial issue, but the time wastage adds up for those who add many images to posts throughout the year.</p>\n\n\n\n<p>What is on your wish list for WordPress 5.7?</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, 24 Nov 2020 21:43:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:77:\"WPTavern: Genesis Block Theme Beta, StudioPress Pursuing a Block-First Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/genesis-block-theme-beta-studiopress-pursuing-a-block-first-future?utm_source=rss&utm_medium=rss&utm_campaign=genesis-block-theme-beta-studiopress-pursuing-a-block-first-future\";s: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:5740:\"<p class=\"has-drop-cap\">On November 11, StudioPress <a href=\"https://studiopress.blog/genesis-block-theme-beta/\">announced an open beta</a> for its Genesis Block Theme. This is a pivotal moment, or at least one moment in a series of significant moments, for adoption of the block editor. Feel free to call me on this in a year or two if it does not pan out.</p>\n\n\n\n<p>The original Genesis theme is the foundational tool that 1,000s of developers use to build many 1,000s more websites across the web. Over the past decade, StudioPress has remained one of the top-tier commercial WordPress theme companies, and it has done so on the back of its Genesis product. It has also remained an important part of the company’s offering since <a href=\"https://wptavern.com/wp-engine-acquires-studiopress\">WP Engine acquired it in 2018</a>.</p>\n\n\n\n<p>While WP Engine and StudioPress have bet big on the block editor with products like <a href=\"https://wordpress.org/plugins/genesis-blocks\">Genesis Blocks</a>, the Genesis Block Theme will be a game-changer when it launches as a finished product, likely sometime next year.</p>\n\n\n\n<p>This is not necessarily because StudioPress will offer a better product than what many others are creating. It is about one of the largest theme development companies shifting toward a block-first approach. Others will fall in line. Or be left behind.</p>\n\n\n\n<p>WP Engine and StudioPress have done this slowly and strategically, thoughtfully transitioning their user base into the block world. With WP Engine’s <a href=\"https://wptavern.com/atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon\">acquisition of Atomic Blocks</a> (now Genesis Blocks) and <a href=\"https://wptavern.com/block-lab-team-joins-wp-engine-looks-to-the-future-of-block-building\">bringing on the Block Lab team</a> earlier this year, the company is setting itself up to continue pushing what developers and users can do with WordPress’s block system. The Genesis Block Theme is the next step in what I am assuming is a long list of product ideas the company is pursuing.</p>\n\n\n\n<img />Using the Genesis Blocks plugin with the Genesis Block Theme beta.\n\n\n\n<p>Typical Genesis-based child themes, at least those directly sold by the StudioPress team, have always catered to those who prefer a more minimalist-get-out-of-the-user’s-way approach to design. Many of them should make an easy transition to the block editor. Add a few style adjustments here, make a few tweaks there, and, you have a theme that is fully capable of handling the block editor. It is a testament to the company’s design chops when it does not really matter what WordPress is doing under the hood. The theme designs hold up regardless.</p>\n\n\n\n<p>Times are changing, however. The StudioPress team is looking at WordPress 5.7, which is expected to land in the spring of 2021, and getting ready to handle the launch of the WordPress site editor.</p>\n\n\n\n<p>David Vogelpohl, the VP of Growth for WP Engine, left specific instructions on how to test the Genesis Block Theme beta in the announcement. One of the key items in that list is to skip modifying the theme directly or using the customizer settings. The goal is to identify pain points when approaching site design via blocks. It is good to start shifting how the Genesis user base approaches building sites in general.</p>\n\n\n\n<p>He also asks testers to install the Genesis Blocks plugin. It is a library of various blocks, sections, and layouts for building block-based content. This will help both developers and users become more accustomed to the shift in building with the company’s key product.</p>\n\n\n\n<p>Vogelpohl <a href=\"https://wptavern.com/wp-engine-launches-genesis-pro-add-on-for-customers-more-features-in-the-works\">teased a “Genesis X” project</a> in May that would focus on pushing the boundaries of the block editor and, eventually, full-site editing. Deciding against launching a separate product, the team has been pushing features from this project into Genesis Blocks. Three weeks ago, StudioPress <a href=\"https://studiopress.blog/collections-for-genesis-blocks/\">launched its new Collections feature</a>, which was born from Genesis X.</p>\n\n\n\n<p>“You can think of Collections like a theme’s block-based demo content, but available on-demand as you build out content vs. only during one-click-theme-setup features within the framework today,” said Vogelpohl.</p>\n\n\n\n<img />The Slate Collection from the Genesis Blocks plugin.\n\n\n\n<p>Collections are essentially categorized page sections or entire layouts that share a similar design aesthetic. Genesis Blocks currently has one Collection titled Slate available for free. In practice, a user can already build out nearly an entire site with just this single Collection. This seems to be the direction that Genesis and its line of products are heading. Everything is pretty much plug-and-play. Select a few layouts for various pages. Click a few buttons. Customize the content. And, voilà — a turnkey system for building websites.</p>\n\n\n\n<p>StudioPress must wait for the site editor to land in WordPress 5.7 before it can handle everything. Site headers, footers, and sidebars still require customization outside of the block editor.</p>\n\n\n\n<p>Right now, the Genesis Block Theme beta is nothing out of the ordinary. It is essentially a base theme that allows the accompanying Genesis Blocks plugin to shine. It will also allow the development team to test ideas based on user feedback in the coming weeks and months. Vogelpohl said they will eventually tackle full-site editing based on what they learn from the beta run’s feedback.</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, 23 Nov 2020 22:11:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:46:\"BuddyPress: BuddyPress 7.0.0 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=315640\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://buddypress.org/2020/11/buddypress-7-0-0-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2972:\"<p>Hi BuddyPress community members!</p>\n\n\n\n<p>The first <a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-RC1.zip\">release candidate for BuddyPress 7.0.0</a> is ready for a last round of testing!</p>\n\n\n\n<p>This is an important milestone as we progress toward the BuddyPress 7.0.0 final release date. “Release Candidate” means that we think the new version is ready for release, but with more than 200,000 active installs, hundreds of BuddyPress plugins, thousands of WordPress themes, and many possible specific WordPress configurations it’s possible we missed one or more details.</p>\n\n\n\n<p><strong>BuddyPress 7.0.0 is slated for release on December 9th, 2020</strong>. Do you want to help us get there? Here’s how you can:</p>\n\n\n\n<ol><li>This release candidate also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#string-freeze\">string freeze</a> point of the 7.0.0 release schedule, so if you you speak a language other than English, please <a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/\">help us translate BuddyPress into many languages!</a></li><li>You are a BuddyPress Plugin and/or Theme developer? You should test your code against BuddyPress 7.0.0. If you find compatibility problems, please report a ticket on our <a href=\"https://buddypress.trac.wordpress.org/\">Trac environment</a>.</li><li>You are using BuddyPress and can easily set up a staging environment? Please use <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">our Beta Tester plugin</a> or <a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-RC1.zip\">directly install the Release Candidate</a> on your staging site to make sure everything works as expected for you. If not: tell us what’s wrong on <a href=\"https://wordpress.slack.com/messages/buddypress\">Slack</a> or reply to this specific <a href=\"https://buddypress.org/support/topic/buddypress-7-0-0-release-candidate/\">support topic</a> with a detailed explanation of your trouble.</li><li>You are a WordPress news writer? We’d love you to share this post with your readers: the more testers, the better!</li></ol>\n\n\n\n<p><strong>It’s always best to anticipate than having a bad surprise after updating the plugin from your WordPress Dashboard</strong>: <strong><a href=\"https://codex.buddypress.org/participate-and-contribute/\">get involved</a>!</strong></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>What to expect from BuddyPress 7.0.0</h2>\n\n\n\n<p>First, note that <strong>BP 7.0.0 will require at least version 4.9 of WordPress</strong>. Then, read an overview of its top features in the post we published to announce the <a href=\"https://buddypress.org/2020/10/buddypress-7-0-0-beta1/\">first beta of 7.0.0</a>. If you would like more detail, you can read our <a href=\"https://bpdevel.wordpress.com/category/development-notes/7-0/\">7.0.0 developer notes</a>.</p>\n\n\n\n<p>Thanks in advance for your contributions!</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, 20 Nov 2020 22:15: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:12:\"Mathieu Viet\";s: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:79:\"WPTavern: Build Editor Blocks for Clients With the Genesis Custom Blocks Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108109\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/build-editor-blocks-for-clients-with-the-genesis-custom-blocks-plugin?utm_source=rss&utm_medium=rss&utm_campaign=build-editor-blocks-for-clients-with-the-genesis-custom-blocks-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4956:\"<p class=\"has-drop-cap\">In early September, WP Engine <a href=\"https://wpengine.com/blog/introducing-genesis-custom-blocks/\">announced the launch</a> of <a href=\"https://wordpress.org/plugins/genesis-custom-blocks/\">Genesis Custom Blocks</a>, a block-creation plugin made possible by its StudioPress team. The concept should feel familiar to developers who have made use of Advanced Custom Fields and similar plugins. However, the focus of this new plugin is entirely on blocks.</p>\n\n\n\n<p>The plugin is more of a framework than a plug-and-play extension for WordPress. It requires some PHP knowledge to handle the front-end output. The goal is to make it easy for developers to create custom blocks without JavaScript knowledge. It allows them to render blocks on the server-side via custom templates.</p>\n\n\n\n<p>Genesis Custom Blocks handles all the dirty work on the backend while leaving the basic PHP, HTML, and CSS of the front end completely up to developers.</p>\n\n\n\n<p>The plugin seemed to slip through the cracks of the plugin directory’s guideline against frameworks — the Plugin Review Team started <a href=\"https://make.wordpress.org/plugins/2016/03/01/please-do-not-submit-frameworks/\">disallowing new framework-type plugins</a> in 2016. Team rep Mika Epstein confirmed that the plugin should not have been approved. She also said that she would talk to the developers, explain why it’s not good, and see about finding a path forward.</p>\n\n\n\n<p>Setting guideline issues aside, the plugin is a nice addition to the toolbox of any developer who needs to quickly knock out custom blocks for clients.</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<p class=\"has-drop-cap\">Genesis Custom Blocks is currently a lightweight field manager for custom blocks. It provides an admin interface for creating, editing, and managing those blocks. Developers use this interface to essentially create block options in which a user can configure via the editor.</p>\n\n\n\n<p>The free version of the plugin includes 13 standard form fields, such as text, image, URL, color, and more. The <a href=\"https://www.studiopress.com/genesis-custom-blocks/\">commercial version</a> includes an additional six field types and allows users to import or export their custom blocks.</p>\n\n\n\n<img />Editing the test block included with the plugin.\n\n\n\n<p>For the block to output anything on the front end, the developer must create custom templates and use the Genesis Custom Blocks API. This template will render the output in the editor too, at least until the user clicks on the block, which takes them into editing mode.</p>\n\n\n\n<img />Inserting and editing a custom block in the editor.\n\n\n\n<p>Without anything other than a cursory reading of <a href=\"https://developer.wpengine.com/genesis-custom-blocks/\">the docs</a>, I was able to build a custom block and its associating template in minutes. What makes the plugin stand out is the simplicity of its system. It does not try to do too much. It provides enough basic fields for most developers to create the custom blocks they need for clients. I am certain that many of them will get a ton of mileage out of it.</p>\n\n\n\n<p>It also does the extra things that developers should expect from a StudioPress-caliber product like allowing developers to create custom block categories, pick an icon, and set up keywords for each block.</p>\n\n\n\n<p>One missing element is the ability to set custom blocks to full and wide-width. Developers may need to write custom CSS for both the editor and front end to handle such use cases. They can create custom inspector (block options sidebar) controls for width or alignment too. However, it would be a nice bonus if the plugin handled the standard WordPress alignments.</p>\n\n\n\n<h2>The Big Problem</h2>\n\n\n\n<p class=\"has-drop-cap\">The plugin commits the greatest sin of WordPress development. It fails to <a href=\"https://developer.wordpress.org/plugins/plugin-basics/best-practices/#avoid-naming-collisions\">prefix or namespace</a> its custom functions. It is a mistake that is expected of rookie developers. However, for a seasoned company such as StudioPress to create <code>block_field()</code>, <code>block_value()</code>, and similarly-named functions in the global namespace is almost unforgivable.</p>\n\n\n\n<p>The problem this creates, particularly given the size of the Genesis development community, is that it is basically stealing potential function names from WordPress. If the core platform ever decides to add these functions, fatal errors will ensue on 1,000s of sites.</p>\n\n\n\n<p>If the functions were limited in scope to the plugin itself, it would be an easy fix. However, these functions are meant for direct use by developers who are building with the plugin.</p>\n\n\n\n<p>Given the plugin’s short time out in the wild, I hope the development team reconsiders their naming scheme and transitions it to something that does not run the risk of a future fatal error.</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, 20 Nov 2020 19:46: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:14:\"Justin Tadlock\";s: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:95:\"WPTavern: Gutenberg 9.4 Introduces Button Width Selector and Typography Controls for List Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108056\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/gutenberg-9-4-introduces-button-width-selector-and-typography-controls-for-list-block?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-4-introduces-button-width-selector-and-typography-controls-for-list-block\";s: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:3978:\"<p><a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">Gutenberg 9.4.0</a> was released this week with many small improvements to existing features, while work on full site editing continues. This release will not be included in the upcoming WordPress 5.6 release but those who are using the Gutenberg plugin will have access to the improvements right away. </p>\n\n\n\n<p>The button block now has a <a href=\"https://github.com/WordPress/gutenberg/pull/25999\">width selector</a>, which allows the user to set the button to 25%, 50%, 75%, or 100% of the parent container. By default, a button’s width is determined by the size of its content. If you like bigger buttons, this update will give you more flexibility. Button margins are also <a href=\"https://github.com/WordPress/gutenberg/pull/26781\">included in the width calculations</a>, so users can create multiple buttons in a row, or a grid of buttons, and have them properly fit together and aligned. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Making a button is easier than it has ever been before. Gone are the days of using shortcodes or hunting for the correct CSS class to apply in order to match the theme. Button creation used to be so needlessly difficult with a fragmented, unfriendly workflow, but the block editor continues to chip away at the complexity with each new release.</p>\n\n\n\n<p>Version 9.4 also introduces typography controls for the list block. Gutenberg contributors have been discussing <a href=\"https://github.com/WordPress/gutenberg/issues/8171\">adding color and text size customizations to all text-based blocks</a> since 2018, and the list block is finally getting some font size controls.</p>\n\n\n\n<img />\n\n\n\n<p>Social icons can also be resized now. Users can select from several preset sizes, including small, normal, large, and huge.</p>\n\n\n\n<p>The 9.4 update adds support for <kbd> tags with a new button in the overflow rich text menu. These tags are useful for displaying content in the browser’s default monospace font, which helps when writing documentation or articles with inline code.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>This release lays the groundwork for handling block variation transformations. Block variations are essentially the same block with registered variations that appear as a separate block in the block inserter. For example, the navigation block has horizontal and vertical variations. The editor now introduces a <code>transform</code> option for the <code>scope</code> field in block variations, so developers can control how to handle these transformations.</p>\n\n\n\n<p>Enhancements in this release add polish to many aspects of the UI, including the inserter search, custom select menu styles, the link interface, Search block styling, shortcode block styling, and reduces the UI on hover (an optional setting in preferences).</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>One handy new feature for writing is that users can now add a header by typing <code>/h1</code> to <code>/h6</code> followed by enter/return. While I like the idea of this, it seems unintuitive to have to use enter/return to change the block to a header. This feature would be easier to remember if it mimicked the existing feature that allows users to add a header by typing <code>###</code> followed by a space. Changing the trigger action to a space instead of a return would make more sense here.</p>\n\n\n\n<p>Version 9.4 also includes a great deal of progress behind the scenes on experiments, including the full site editing framework, FSE blocks, the site editor, and global styles. Check out the <a href=\"https://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">changelog</a> for a full list of bug fixes and enhancements.</p>\n\n\n\n<p></p>\n\n\n\n<ul class=\"wp-block-social-links\"></ul>\n\n\n\n<div class=\"wp-block-buttons\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Nov 2020 07:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:86:\"WPTavern: WordPress To Combine Its Long-Neglected Theme Previewer With Starter Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=108035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:217:\"https://wptavern.com/wordpress-to-combine-its-long-neglected-theme-previewer-with-starter-content?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-to-combine-its-long-neglected-theme-previewer-with-starter-content\";s: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:5669:\"<p class=\"has-drop-cap\">Six weeks ago, WordPress 5.6 release lead Helen Hou-Sandí breathed new life into two almost-forgotten features around the WordPress website and platform. The idea was to take the starter content feature, which themes can optionally add for new installs, and apply it to the WordPress.org theme preview system. It was not a new idea. However, it finally had some teeth because a core lead was making it a priority.</p>\n\n\n\n<p>“I’m revisiting this in the context of 5.6 and Twenty Twenty-One — could we possibly consider a combination of starter content (the core feature) and the existing theme unit test data (with room for more later)?” <a href=\"https://meta.trac.wordpress.org/ticket/30#comment:66\">wrote Hou-Sandí in a ticket</a> that seemed to be going nowhere after seven years. “I don’t think we’d want to have just starter content, as that should ideally be a much more limited amount of content pieces, but unifying somewhat would help with the overall goal of aligning the demo with what users can actually accomplish on their sites.”</p>\n\n\n\n<p>Yesterday, Hou-Sandí formally <a href=\"https://make.wordpress.org/themes/2020/11/18/theme-previews-in-the-time-of-blocks/\">announced the launch</a> of the project. Currently, the <a href=\"http://wp-themes.com/twentytwentyone/\">Twenty Twenty-One</a>, <a href=\"http://wp-themes.com/twentytwenty/\">Twenty Twenty</a>, and <a href=\"http://wp-themes.com/twentyseventeen/\">Twenty Seventeen </a>demos display their respective starter content.</p>\n\n\n\n<img />Block-based starter content in the Twenty Twenty-One theme preview.\n\n\n\n<p>The initial goal was to turn the feature on selectively, testing it with a few default themes. This would give the meta team time to iron out any bugs. It would also give the Themes Team time to decide on any additional guidelines considerations before opening it to everyone.</p>\n\n\n\n<p>The Themes Team reps do not seem to think there will be any need for new guidelines, so there should not be much to do on their end.</p>\n\n\n\n<p>“I’m up for having a discussion about it but I do think that, in general, guidelines already cover it (we might need to reword the guideline about excluding advertising for clarity), but theme devs aren’t gonna want to give a bad impression in their public-facing previews,” said Themes Team representative William Patton. “We probably want to just check the guidelines to make sure they cover things here, but from my perspective, I think guidelines already cover things quite well.”</p>\n\n\n\n<p>This is the sort of thing that could get theme authors excited again. Themers can sometimes feel like they are second-class citizens. More often than not, plugin authors get the shiny, new toys long before — if they ever — roll out to the theme directory. It is always an exciting time when themes are shown a little love.</p>\n\n\n\n<p>Hou-Sandí pointed out that the theme previewer changes would not be forever limited to a handful of core themes. This is merely the first step.</p>\n\n\n\n<p>The big question: <em>why now?</em></p>\n\n\n\n<p>There is no doubt that the theme previewer has been a problem area for years. Users have complained about it. Theme authors and reviewers have relentlessly discussed it and called for a change. Some authors have even attempted various, hacky workarounds, sometimes finding themselves on the shortlist for banishment. At the end of the day, most people just want to see themes in all their glory. They are the face of WordPress. As Hou-Sandí wrote in the announcement, “The theme previewer site in today’s context does a serious disservice to themes.”</p>\n\n\n\n<p>To answer the <em>why now</em> question, the block system has a lot to do with it. Internally, the system opens up a world of possibilities that are much easier to implement. Whether it is starter content or custom front page templates, blocks will be a huge part of the equation going forward.</p>\n\n\n\n<p>“I also believe that between blocks, block patterns, and eventually full site editing, it is more important than ever to the broad success of the WordPress project for themes to showcase their ideal states and make it easier for users to achieve the same thing on their sites,” wrote Hou-Sandí. “Starter content, introduced in 4.7, was a step in this direction, but has languished for quite some time.”</p>\n\n\n\n<p>It is also part of an ongoing rethinking of what should happen with starter content. On October 6, she <a href=\"https://make.wordpress.org/core/2020/10/06/revisiting-starter-content-on-org-and-beyond/\">opened a discussion</a> for feedback on the feature’s future. The post received a few useful responses. However, it could still use feedback from a wider range of people involved with the WordPress project, particularly theme authors.</p>\n\n\n\n<p>I also explored some possibilities in response to that post in <a href=\"https://wptavern.com/the-future-of-starter-content-wordpress-themes-need-a-modern-onboarding-and-importing-tool\">The Future of Starter Content: WordPress Themes Need a Modern Onboarding and Importing Tool</a>.</p>\n\n\n\n<p>The biggest concern at this point should be whether theme authors consider this <em>too little too late</em>. There is a little excitement brewing from a few short conversations I have seen in theming circles. However, this is a time for theme authors to jump on board, provide feedback, and pitch in. This is the first step in gaining the sort of control over theme previews that many have long sought.</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, 19 Nov 2020 21:40: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:14:\"Justin Tadlock\";s: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:65:\"WPTavern: Local 5.9.2 Adds Image Optimization via New Free Add-On\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107997\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/local-5-9-2-adds-image-optimization-via-new-free-add-on?utm_source=rss&utm_medium=rss&utm_campaign=local-5-9-2-adds-image-optimization-via-new-free-add-on\";s: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:2426:\"<p>Local 5.9.2 was <a href=\"https://localwp.com/releases/\">released</a> this month with a new image optimization feature. The Pro version of Flywheel’s local WordPress development product got a revamp four months ago, bringing in a new collection of pre‑launch tools. While image optimization falls into that category, the company decided to make this new feature available to both free and pro tiers via an optional <a href=\"https://localwp.com/add-ons/local-addon-image-optimizer\">add-on</a>. </p>\n\n\n\n<p>Users can install the new add-on directly in the app and then navigate to Tools › Image Optimizer. After enabling the add-on and relaunching the app, Local will be able to scan the installation for image files and compress them offline, without using cloud-based services. The add-on allows users to navigate away from an active optimization session and carry on with development while it works in the background.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Before proceeding, users can also navigate to the Image Optimizer settings and elect to strip the metadata (i.e. focal length, date, time, and location) to further reduce the file size and, as a byproduct, remove potentially identifying data. The default optimization simply reduces file size and does not strip metadata.</p>\n\n\n\n<p>After optimization is complete, an overview of the total reductions and disk space saved will be displayed.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The add-on currently uses <a href=\"https://github.com/danielgtaylor/jpeg-archive#jpeg-recompress\">jpeg-recompress</a> to optimize images, a utility from the open source <a href=\"https://github.com/danielgtaylor/jpeg-archive\">JPEG Archive</a> project. Here is how it works: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Compress JPEGs by re-encoding to the smallest JPEG quality while keeping <em>perceived</em> visual quality the same and by making sure huffman tables are optimized. This is a <strong>lossy</strong> operation, but the images are visually identical and it usually saves 30-70% of the size for JPEGs coming from a digital camera, particularly DSLRs. </p></blockquote>\n\n\n\n<p>Local’s development team plans to expand this in the future to add more options like lossless compression. Version 5.9.2 also fixes several bugs with the UI and adds improvements to make it more consistent. </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, 19 Nov 2020 03:19:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:68:\"WPTavern: Should WordPress Notify Users of Plugin Ownership Changes?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/should-wordpress-notify-users-of-plugin-ownership-changes?utm_source=rss&utm_medium=rss&utm_campaign=should-wordpress-notify-users-of-plugin-ownership-changes\";s: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:4409:\"<img />Potential idea for showing plugin ownership change.\n\n\n\n<p>That is the question posed by Ian Atkins in a <a href=\"https://meta.trac.wordpress.org/ticket/5509\">recent ticket</a> for WordPress.</p>\n\n\n\n<p>“I’ve experienced a few plugins change ownership, and it’s really not clear as a user, developer, and maintainer of sites when that has happened,” he wrote in the ticket. “Whilst having a plugin continue to be developed is admirable — I do think it would be wise to inform users of that change.”</p>\n\n\n\n<p>For full disclosure, the ownership change that prompted Atkins to create the ticket was from the Members plugin. I am the former owner of the plugin and sold it to the MemberPress team in 2019 (I was a full-time plugin and theme developer before joining WP Tavern). Having been both a plugin author and user in this scenario before helps mold my viewpoint.</p>\n\n\n\n<p>I agree with the idea. WordPress should have some mechanism for notifying users of changes of ownership. The more transparency that exists in the ecosystem, the healthier it is for all.</p>\n\n\n\n<p>As a plugin author who was letting go of a project that I had worked nearly a decade on, it was tough to say goodbye. I had built friendships and trusted users who walked beside me on my journey. I posted on the company blog, Twitter, Facebook, and the WordPress support forums. I replied to emails, PMs, and more. I wanted to be as transparent with my plugin users as possible. When the plugin was out of my hands, there was no way for me to reach out to the 1,000s of users who did not follow me on social media or the blog. The new owner was as transparent. Even today, a year later, some users are just now realizing someone else is running the show.</p>\n\n\n\n<p>In hindsight, perhaps there was more we could have done. Maybe there was more WordPress could have also done and can do in the future. There are valid concerns from users.</p>\n\n\n\n<p>Atkins lists three primary reasons for his proposal:</p>\n\n\n\n<ul><li>There might be privacy policy changes that have impacts on what data is shared and how it is shared. Legally, depending on location, this may have to be communicated to end-users (under GDPR, etc.).</li><li>The plugin may change direction or add features that were not originally included or required under the stewardship of the prior owner.</li><li>The plugin may have changed hands to a developer or development house that a user knows isn’t as reliable as the previous owner.</li></ul>\n\n\n\n<p>He also asked whether the plugin team reviewed ownership changes. <a href=\"https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/#how-do-i-change-the-plugin-owner\">Changing owners</a> is a simple task, and these changes are tracked internally.</p>\n\n\n\n<p>Mika Epstein, a Plugin Review Team representative, said that the team could make such changes public. The biggest flaw with that system is that it is not always possible to know when a plugin’s owner changes. Sometimes, an entire company is sold, which would include ownership of the WordPress.org account. She also cited situations where serviceware plugins change hands in unobvious ways.</p>\n\n\n\n<p>“I want to be clear, I’m not against this!” she said in a follow-up response. “I’m for this! I just want to be clear that we’re going to get MAYBE half of the changes.”</p>\n\n\n\n<p>Half would be better than none. An automated system may work to create notices in some situations. However, an addition to the plugin review guidelines may also be part of the solution.</p>\n\n\n\n<p>Plugin authors could also take it upon themselves to implement an ownership-change notification. This may be one of those use cases for the much-maligned admin notices that is worth exploring.</p>\n\n\n\n<p>At this point, we are just asking the question of whether WordPress should create a system in which users are notified of plugin ownership changes. What would you like to see in terms of solutions?</p>\n\n\n\n<p>I want to see continued progress on the transparency front. Atkins’ first list item is the most important. If there are privacy policy changes or a plugin deals with personal data in any way, users need to know when the plugin has a new owner. They should be able to make a decision about their continued use of the plugin with all the facts laid bare.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2020 17:09: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:14:\"Justin Tadlock\";s: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:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"HeroPress: Final Day to Apply to Speak at WordFest Live 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=3416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://heropress.com/final-day-to-apply-to-speak-at-wordfest-live-2021/#utm_source=rss&utm_medium=rss&utm_campaign=final-day-to-apply-to-speak-at-wordfest-live-2021\";s: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:1008:\"<p>Friends across the globe, today is your last chance to get in your talk for WordFest Live. You only have until midnight tonight, UTC, so don’t delay!</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://www.wordfest.live/call-for-speakers/\">Call for Speakers</a></blockquote>\n</div>\n\n\n\n<p>If you’re interested but not sure which talk to choose, learn more here: <a href=\"https://www.wordfest.live/2020/11/speaking-at-wordfest-live-2021/\">https://www.wordfest.live/2020/11/speaking-at-wordfest-live-2021/</a></p>\n\n\n\n<p>Share your knowledge across this 24 hour global celebration of WordPress. Support the team at Big Orange Heart by being involved. Let’s continue to go farther together!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/final-day-to-apply-to-speak-at-wordfest-live-2021/\">Final Day to Apply to Speak at WordFest Live 2021</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, 18 Nov 2020 16:10: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:\"\";}}}}}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:84:\"WPTavern: WordPress.com Gives Conservative Treehouse the Boot, Citing TOS Violations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107926\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/wordpress-com-gives-conservative-treehouse-the-boot-citing-tos-violations?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-gives-conservative-treehouse-the-boot-citing-tos-violations\";s: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:4931:\"<p>The Conservative Treehouse, a political publication hosted on WordPress.com for the past 10 years, is <a href=\"https://theconservativetreehouse.com/2020/11/15/the-treehouse-is-deplatformed/\">moving to a new host</a> after receiving a notice from Automattic regarding violations of its Terms of Service. The site’s owner, previously identified as Florida resident Mark Bradman, claims to have a 500,000 – 1,000,000 unique readers per day. He has been ordered to find a new hosting provider and migrate the site away from WordPress.com by December 2, 2020.</p>\n\n\n\n<p>Bradman followed up with Automattic to inquire about the specific infractions that put the site in violation of <a href=\"https://wordpress.com/automattic-ads-tos/\">Automattic Ads Terms of Service</a>. A representative from WordPress.com referred him to Section 5’s guidelines on “Prohibited Content,” and the prohibition against calls to violence in <a href=\"https://wordpress.com/support/user-guidelines/\">WordPress.com’s User Guidelines</a>. </p>\n\n\n\n<div class=\"wp-block-image\"><img />Source: <a href=\"https://theconservativetreehouse.com/2020/11/16/update-from-wordpress-automattic-on-treehouse-deplatforming/\">The Conservative Treehouse</a></div>\n\n\n\n<p>The Conservative Treehouse was characterized by <a href=\"https://www.thedailybeast.com/meet-the-conservative-treehouse-the-blog-thats-ground-zero-for-insane-trump-sht\">The Daily Beast</a> as “Patient Zero for a number of hoaxes that have percolated through [the] right-wing media ecosystem” after President Trump <a href=\"https://twitter.com/realDonaldTrump/status/1270333484528214018?s=20\">tweeted</a> a conspiracy theory that originated on the site. Trump referenced an incident in Buffalo where police officers shoved an elderly protestor during the anti-police brutality protests that happened in June. The notion that the protester was an “ANTIFA provacateur” was originally seeded by an <a href=\"https://theconservativetreehouse.com/2020/06/06/buffalo-officials-duped-by-professional-antifa-provocateur-arrest-and-charge-two-police-officers-righteous-police-team-stand-together-and-walk-out/\">article</a> on The Conservative Treehouse.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Buffalo protester shoved by Police could be an ANTIFA provocateur. 75 year old Martin Gugino was pushed away after appearing to scan police communications in order to black out the equipment. <a href=\"https://twitter.com/OANN?ref_src=twsrc%5Etfw\">@OANN</a> I watched, he fell harder than was pushed. Was aiming scanner. Could be a set up?</p>— Donald J. Trump (@realDonaldTrump) <a href=\"https://twitter.com/realDonaldTrump/status/1270333484528214018?ref_src=twsrc%5Etfw\">June 9, 2020</a></blockquote>\n</div>\n\n\n\n<p>A cursory review of the past several months of posts on the anonymous blog shows it is home to a steady stream of misinformation. <a href=\"https://www.newsguardtech.com/\">NewsGuard</a>, an organization that assigns trust ratings based on transparent <a href=\"https://www.newsguardtech.com/ratings/rating-process-criteria/\">criteria</a>, recommends readers proceed with caution because the website “severely violates basic journalistic standards.” The Conservative Treehouse gets a rating of <a href=\"https://www.newsguardtech.com/wp-content/uploads/2020/06/ConservativeTreeHouse-1.pdf\">30/100</a> due to publishing false information and unsubstantiated conspiracy theories on numerous topics:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Because The Conservative Treehouse has published false and misleading claims, including about the COVID-19 pandemic, NewsGuard has determined that the website repeatedly publishes false content and does not gather and present information responsibly.</p></blockquote>\n\n\n\n<p>Bradman said he received the notification about the website being removed after publishing his post on what he calls “<a href=\"https://theconservativetreehouse.com/2020/11/13/covid-19-is-the-agenda-biden-is-merely-the-delivery-vehicle/\">the COVID-19 agenda</a>.” The conclusion of the article includes an image of a knife with the word “resist” written on it, followed by the words “whatever it takes.” The site’s comments are home to a “Rag Tag Bunch of Conservative Misfits,” as the tagline suggests, and there are more than 1,800 comments on the post announcing its upcoming move to a new host.</p>\n\n\n\n<p>Despite the publication’s poor reputation, the site ranks #3,294 in the US, according to Alexa, with a largely American audience. Its owner claims to have more than 200,000 subscribers.</p>\n\n\n\n<p>“We will take this challenge head-on and we will use this attack against our freedom as fuel to launch CTH 2.0, a new version of The Conservative Treehouse,” Bradman said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Nov 2020 05:24:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:51:\"WordPress.org blog: WordPress 5.6 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9258\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2020/11/wordpress-5-6-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3347:\"<p>The first release candidate for WordPress 5.6 is now available!</p>\n\n\n\n<p>This is an important milestone in the community’s progress toward the final release of WordPress 5.6.</p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.6 is slated for release on <strong>December 8, 2020</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.6 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.6 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge” channel and Beta/RC Only” stream options)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.6?</h2>\n\n\n\n<p>The final release of 2020 continues the annual tradition of a new default theme that is custom built to showcase the new features and functionality of the software. Continued progress on the block editor is especially clear in this release, which brings more blocks to more places, and fewer clicks to implement your layouts.</p>\n\n\n\n<p>WordPress 5.6 also has lots of refinements to polish the developer experience. To learn more, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the <em>Tested up to</em> version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The WordPress 5.6 Field Guide, due very shortly, will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\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> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.6 release schedule.</p>\n\n\n\n<p><em><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>.</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:\"Tue, 17 Nov 2020 22:43: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:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: Proposal to Create an Expanded View or Overlay for the Block Patterns Inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:221:\"https://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter?utm_source=rss&utm_medium=rss&utm_campaign=proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter\";s: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:5954:\"<p class=\"has-drop-cap\">The “version 1.0” launch of block patterns in WordPress 5.5 was overall successful. However, it was easy to overlook the problems while waiting for this feature to land after months of anticipation. Now that we have had a couple of months of seeing the block pattern system baked into core WordPress, it is time to address issues that are becoming more evident.</p>\n\n\n\n<p>As much as I love block patterns as a feature, I cannot say the same for the user interface and overall experience. The pattern category dropdown <a href=\"https://wptavern.com/gutenberg-9-1-adds-patterns-category-dropdown-and-reverts-block-based-widgets-in-the-customizer\">added in Gutenberg 9.1</a> was a marked improvement over the endless list of patterns. However, it did not go far enough in presenting them in a user-friendly way.</p>\n\n\n\n<p>WordPress has long had a habit of sticking too much into a tiny panel — many theme authors never felt like the customizer panel <a href=\"https://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comment-68451\">offered enough space</a>, for example. The same seems to be the case for the block editor’s inserter panel. It is good enough for allowing end-users to pick and choose blocks. However, patterns are much larger than the smaller block icons. When users start scrolling through dozens of patterns at a time in the coming months and years, it will become a usability nightmare.</p>\n\n\n\n<p>Paal Joachim Romdahl is <a href=\"https://github.com/WordPress/gutenberg/issues/26905\">proposing an alternative</a>. His idea is to add an “expander” icon/button that would allow users to view more patterns at once via an overlay. At least this would be the case for larger screen sizes, such as desktop users.</p>\n\n\n\n<p>“Viewing a lot of patterns in the small inserter panel does not work too well,” he wrote in the GitHub ticket. “It gets tiring needing to scroll one pattern at a time. Having a larger view will help the user to compare multiple patterns at once.”</p>\n\n\n\n<img src=\"https://user-images.githubusercontent.com/5323259/99002124-46249480-253c-11eb-83bd-7524790f3b66.gif\" alt=\"Preview of how the current pattern overlay proposal would work.\" />Current pattern overlay proposal.\n\n\n\n<p>Romdahl has also created a <a href=\"https://www.figma.com/proto/TuDKX6ckaecNARP2B8NWp4/Expand-to-view-patterns-in-a-larger-overlay-window?node-id=3%3A49&scaling=min-zoom\">Figma prototype</a> for people to test what the system would look like in a live demo. The UI is not polished, but it looks like a promising start.</p>\n\n\n\n<p>He created the proposal after reading the Tavern’s recent coverage of WordPress.com’s <a href=\"https://wptavern.com/wordpress-com-drops-over-100-block-patterns-carving-a-path-the-design-community-should-follow\">launch of over 100 block patterns</a>. Some of the pattern categories are easy to work through and find the right layout. Others, such as the Text and Call to Action categories, may have 20 or more patterns to scroll through.</p>\n\n\n\n<img />Inserting a block pattern on WordPress.com.\n\n\n\n<p>If WordPress creates an official block pattern directory, which is <a href=\"https://wptavern.com/wordpress-contributors-discuss-launching-an-official-block-pattern-directory\">currently under consideration</a>, adding new patterns could be as simple as clicking a button. It would be an easy way to rack up dozens of patterns in moments, particularly if a user is trying out various layouts and does not uninstall unused patterns afterward.</p>\n\n\n\n<p>Not many users are exposed to the hundreds of patterns WordPress.com’s users have access to. We should move forward with this proposal before they are.</p>\n\n\n\n<p>An overlay for inserting patterns and templates is not a new concept. It is common in the WordPress development community. Plugin and theme developers solved this problem ages ago.</p>\n\n\n\n<p>The Redux plugin <a href=\"https://wptavern.com/redux-framework-relaunches-focuses-efforts-on-gutenberg-templates\">handles hundreds of templates</a> with an overlay:</p>\n\n\n\n<img />Viewing templates from the Redux library.\n\n\n\n<p>The Layout block from the <a href=\"https://wptavern.com/atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon\">Genesis Blocks plugin</a> is essentially just a custom pattern inserter with a much nicer UI than WordPress:</p>\n\n\n\n<img />Overlay created by the Layout block from Genesis Blocks.\n\n\n\n<p>Mikael Korpela <a href=\"https://github.com/WordPress/gutenberg/issues/21080#issuecomment-710055158\">added similar thoughts</a> to a ticket related to the next steps for the inserter. He proposed a full-screen experience for browsing patterns.</p>\n\n\n\n<p>“The patterns sidebar is great if you just want to keep it open while you modify your page, but it’s harder for browsing because of limited space, especially when you’ve registered a lot of patterns,” he wrote in the ticket.</p>\n\n\n\n<p>He shared an image of how Sections on Squarespace are handled:</p>\n\n\n\n<img />Selecting a Section on the Squarespace website.\n\n\n\n<p>An overlay might also help drive the pattern directory proposal. It would be easy enough at that point to create a new tab in the overlay interface, hook into the WordPress.org API, and allow users to browse through installable patterns — no need to leave the comfort of the block editor.</p>\n\n\n\n<p>Another common feature that many of these types of systems share is a way to save patterns as favorites. This makes them easy to locate in the future. Paul Lacey makes the same argument in <a href=\"https://youtu.be/0nT_41mxTsw?t=3047\">episode #136</a> of the WP Builds Weekly WordPress News podcast. He wants his clients to have easy access to their most-used block patterns. This would be a nice bonus to help clean up the block patterns user experience.</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, 17 Nov 2020 21:02:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:82:\"WPTavern: WPGraphQL 1.0 Released, Now Available in WordPress.org Plugins Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107827\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/wpgraphql-1-0-released-now-available-in-wordpress-org-plugins-directory?utm_source=rss&utm_medium=rss&utm_campaign=wpgraphql-1-0-released-now-available-in-wordpress-org-plugins-directory\";s: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:4075:\"<p><a href=\"https://www.wpgraphql.com/2020/11/16/announcing-wpgraphql-v1/\">Version 1.0</a> of the <a href=\"https://wordpress.org/plugins/wp-graphql/\">WPGraphQL plugin</a> is now available in the official plugins directory on WordPress.org. This is the first stable version recommended for use in production, landing nearly four years from when the project started in November 2016. </p>\n\n\n\n<p>In an effort to keep WPGraphQL in line with WordPress’ commitment to preserving backwards compatibility, Jason Bahl, the creator and maintainer, held it off from a 1.0 release until he could minimize the potential for breaking changes.</p>\n\n\n\n<p>“WPGraphQL turning 1.0 isn’t a statement that there will never be breaking changes, instead it’s a statement of stability and long term support,” Bahl said.</p>\n\n\n\n<p>WPGraphQL has already had quite a bit of real world usage ahead of its first stable release. The plugin is in use on high profile sites like <a href=\"https://qz.com/\">QZ.com</a>, <a href=\"https://denverpost.com/\">DenverPost.com</a>, and <a href=\"https://apollographql.com/blog\">ApolloGraphQL.com</a>. Installs of WPGraphQL grew from 50,000 in June 2020, to 71,573 installs in November 2020, according to <a href=\"https://packagist.org/packages/wp-graphql/wp-graphql\">Packagist.org</a>. Having the plugin available on WordPress.org will make it easier for users to install it and keep it updated.</p>\n\n\n\n<p>“One of the big reasons I didn’t want WPGraphQL on the .org repo was that the nature of it being an API could expose sites to potential security vulnerabilities,” Bahl said. “As we worked on stabilizing the plugin I wanted it to be a pretty conscious decision to add a GraphQL API to your WordPress site. Leaving the plugin on Github meant that the audience finding it and installing it was a more technical audience and could do at least some of the technical vetting to make sure it made sense for their project.”</p>\n\n\n\n<p>In September, <a href=\"https://www.gatsbyjs.com/\">Gatsby</a>, the company that sponsors Bahl’s time on WPGraphQL’s development and maintenance, hired Pen Test Partners to perform an audit of the plugin and has resolved all the issues they discovered. The full report and resolutions will be published to the project’s website soon.</p>\n\n\n\n<p>“Now that the plugin is stable and secure, we’re happy to have it on the WordPress.org repo where users will be able to find it by searching for plugins in the repo and take advantage of some new features of WordPress such as auto-updates,” Bahl said.</p>\n\n\n\n<p>The 1.0 release does not contain any technical changes – it simply bumps the version number. The project has been publishing pre-1.0 releases leading up to this, logging 33 <a href=\"https://github.com/wp-graphql/wp-graphql/releases\">releases</a> in the past 12 months. Bahl said the biggest difference between 1.0 and pre-1.0 is the new <a href=\"https://www.wpgraphql.com/\">WPGraphQL.com</a> website. Previously, the project’s documentation was hosted on a subdomain but it is now been rolled into the main site.</p>\n\n\n\n<p>“Previously, <a rel=\"noreferrer noopener\" href=\"https://t.co/s062Bpz09o?amp=1\" target=\"_blank\">WPGraphQL.com</a> was a traditional WordPress site with the front-end using the classic WordPress theme layer,” Bahl said. “The new site is built with WordPress as the CMS, Gutenberg as the content editor, Gatsby as the front-end, and WPGraphQL as the layer that allows Gatsby and WordPress to communicate with each other. We’re dogfooding our own technology.”</p>\n\n\n\n<p>The project has also added close to 300 pages of new documentation. It includes a <a href=\"https://www.wpgraphql.com/developer-reference/\">Developer Reference</a> section with documentation on Actions, Filters, and Functions for customizing and extending WPGraphQL, along with a new <a href=\"https://www.wpgraphql.com/recipes/\">Recipes</a> section with code snippets for implementing solutions faster.</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, 16 Nov 2020 23:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: The Plus Addons for Gutenberg Plugin to Launch Soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"https://wptavern.com/the-plus-addons-for-gutenberg-plugin-to-launch-soon?utm_source=rss&utm_medium=rss&utm_campaign=the-plus-addons-for-gutenberg-plugin-to-launch-soon\";s: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:6548:\"<p class=\"has-drop-cap\">WordPress development company POSIMYTH is getting set to announce its venture into block development in the coming days. The new plugin, <a href=\"https://theplusaddons.com/gutenberg/\">The Plus Addons for Gutenberg</a>, is a collection of blocks, templates, and additional features for building sites with the block editor. The plugin is currently awaiting review for inclusion in the WordPress.org plugin directory. I was able to snag a test version and have been using it for around a week.</p>\n\n\n\n<p>The POSIMYTH team began working as an outsourcing agency in 2013. Since then, it has worked on over 1,000 projects. The company eventually began building WordPress themes and plugins for the Envato Marketplace. It has continued to grow and currently serves more than 50,000 customers.</p>\n\n\n\n<p>“Being an outsourcing company in the past, we have always felt the need for one-stop solutions for agencies and freelancers,” said Sagar Patel, the founder and director at POSIMYTH Innovations. “We have built many Gutenberg field components from scratch as well as in-depth options in blocks, which will not just be for simple tasks, it will be for complex layouts and options as well.”</p>\n\n\n\n<p>One of the company’s most-used products is its <a href=\"https://wordpress.org/plugins/the-plus-addons-for-elementor-page-builder/\">The Plus Addons for Elementor</a> plugin. The free version currently has over 9,000 active installations. Patel describes it as a “complete package” for building Elementor-based websites.</p>\n\n\n\n<p>“Our Gutenberg version will be kind of a recreation of our Elementor version, but on top of that, we are adding more options and features based on our feedback from Elementor users,” he said. “Some blocks are completely revamped and made with a unique concept, but some are just a recreation of the Elementor version. For example, our Popup Builder, Countdown, Global Features, and some others are completely made from scratch with a new structure.”</p>\n\n\n\n<p>The company recently surveyed over 1,000 its users. One of the points they noted is that many of those users wanted to use WordPress’s built-in block editor. However, they were unable to find reliable options for building complex websites. The results of this survey are one of the primary reasons the company is building this plugin.</p>\n\n\n\n<h2>The Plugin</h2>\n\n\n\n<img />TP Row block for building columns.\n\n\n\n<p class=\"has-drop-cap\">The free version of The Plus Addons for Gutenberg will launch with 29 blocks, 16 of which are free and 13 <em>freemium</em> ones with commercial upgrades. The commercial/pro version of the plugin will add an extra 11 blocks along with several shapes, tooltips, effects, and other options. Pricing is expected to start at $39 per year for its lowest tier.</p>\n\n\n\n<p>The plugin also has global color and typography options. These should not be confused with WordPress’s upcoming Global Styles system. The two features work similarly. However, the plugin’s system only works with its blocks instead of the entire website.</p>\n\n\n\n<p>The terminology could pose some confusion for users. There will also be some crossover between the two systems, both handling the same needs. Patel said he is aware of this and will always work to make sure the plugin respects WordPress’s built-in Global Styles system. “We will always keep that in sync with our global options,” he said. “It’s still in the initial stage. We will keep on updating based on feedback from users and as per the updates of the Gutenberg team.”</p>\n\n\n\n<p>Many of the block options are similar to what <a href=\"https://wptavern.com/editorplus-introduces-its-first-blocks-and-adds-a-custom-block-creator\">Editor Plus</a> is doing for the core WordPress blocks. However, the options are for the plugin’s custom blocks only. The UI feels polished enough that you feel like the design team has been here before and knows what it is doing. Some plugins do not get to that point until version 2 or 3. I was able to navigate the block options with ease.</p>\n\n\n\n<p>However, some blocks were out of place. For example, the Style Lists block could have simply been custom options tacked onto the WordPress List block. Adding list items in the block sidebar is not as natural as in the editor’s content area. The end-goal is to simply make a standard list. Everything else is simply eye-candy. Ideally, the plugin would relegate those options to the core block.</p>\n\n\n\n<p>The same could be said of the Blockquote, TP Button, TP Image, and others. These could be extensions of the core WordPress blocks. Other blocks like the TP Heading, TP Paragraph, and Testimonials might be better served as custom patterns.</p>\n\n\n\n<img />Adding a testimonial from the plugin to the editor.\n\n\n\n<p>The concept of building custom, in-house blocks seems to be more prevalent each day as more plugin companies release block libraries. The trend will likely continue. The block system is reasonably extendable. <em>Recreating the wheel</em> is unnecessary.</p>\n\n\n\n<p>The Plus Addons for Gutenberg’s blocks are well done, and it is hard to fault a plugin for having a consistent experience across its custom blocks.</p>\n\n\n\n<p>Overall, the plugin does not offer any groundbreaking ideas for new blocks. Most of these are available in other, similar block libraries. What sets this plugin apart is the development team’s work on packing a ton of block options into an easy-to-use interface.</p>\n\n\n\n<p>Patel said he does not consider the team to be in competition with anyone else in the market. “We are on a mission to provide a one-stop solution for all needs of WordPress website designers and developers.” The goal is to make it easy for freelancers and agencies to build complex layouts in the block editor without writing code.</p>\n\n\n\n<p>The project’s website currently touts the availability of predesigned templates. The team decided not to include this feature in its initial free version, focusing on the other features in the plugin instead. Patel wants to assure users that templates will be available in both the free and pro versions of the plugin.</p>\n\n\n\n<p>“[Templates] will be available in a couple of months or early after the initial free version’s launch,” he said. “We will have UI blocks, homepage templates, as well as full-site demos with multiple pages in that.”</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, 16 Nov 2020 22:32:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:69:\"WPTavern: Google Webmasters Central Rebrands to Google Search Central\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/google-webmasters-central-rebrands-to-google-search-central?utm_source=rss&utm_medium=rss&utm_campaign=google-webmasters-central-rebrands-to-google-search-central\";s: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:2395:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Twenty years ago, every aspect of developing a website and putting it online was more complex than it is today – an enchantment of Merlin’s wand to most common folks. The term “webmaster” hasn’t aged well, but it was commonly used in a different era when tech wizards were the only people creating and managing websites. The term has become outmoded as online publishing and website building has become more user-friendly.</p>\n\n\n\n<p>Google recently ran a study that showed usage of the term webmaster is in sharp decline, as web professionals now prefer more specialized terms, such as blogger, developer, SEO, or online marketer. In recognition of this change, the company is <a href=\"https://webmasters.googleblog.com/2020/11/goodbye-google-webmasters.html\">rebranding</a> “Google Webmasters Central” to “Google Search Central.” The change will be rolled out to Google’s websites and social media within the next couple days.</p>\n\n\n\n<p>In addition to the rebranding, Google is also centralizing its help information on one site and consolidating its blogs:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Moving forward, the <a href=\"https://support.google.com/webmasters\">Search Console Help Center</a> will contain only documentation related to using Search Console. It’s also still the home of our help forum, newly renamed from “Webmasters Help Community” to “<a href=\"https://support.google.com/webmasters/community\">Google Search Central Community</a>“. The information related to how Google Search works, crawling and indexing, Search guidelines, and other Search-related topics are moving to <a href=\"https://developers.google.com/search\">our new site</a>, which previously focused only on web developer documentation. </p></blockquote>\n\n\n\n<p>The Google Webmasters blog and 13 other localized blogs are being moved to the new site for better discovery and easier language switching. Google is going to redirect current RSS and email subscribers to the new blog URL, so readers only need to update their bookmarks.</p>\n\n\n\n<p>Google is also introducing a new jumping spider bot to accompany its Googlebot mascot in crawling the internet. The creature doesn’t yet have a nickname, but the company is soliciting suggestions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Nov 2020 22: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: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:40:\"WordPress.org blog: WordPress 5.6 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2020/11/wordpress-5-6-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5476:\"<p>WordPress 5.6 Beta 4 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"https://wordpress.org/wordpress-5.6-beta4.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for the final release is December 8, 2020. This is just over<strong> three weeks away</strong>, so your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">beta 3</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since beta 3, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">42 bugs</a> have been fixed. Here is a summary of a few changes included in beta 4:</p>\n\n\n\n<ul><li>There was a change to the auto-updates implementation for new installations of the software (<a href=\"https://core.trac.wordpress.org/ticket/50907\">#50907</a>). <em><a href=\"https://make.wordpress.org/core/2020/11/10/upgrade-install-component-meeting-summary-november-10-2020/\">Next steps</a>, and <a href=\"https://make.wordpress.org/core/2020/11/10/wp5-6-auto-update-implementation-change/\">rationale</a> are both available.</em></li><li>Added better handling of unexpected values in Site Health (<a href=\"https://core.trac.wordpress.org/ticket/50145\">#50145</a>).</li><li>Added a way for developers to filter the available authors list in Quick Edit (<a href=\"https://core.trac.wordpress.org/ticket/47685\">#47685</a>).</li><li>More accessible handling of the tag cloud widget (<a href=\"https://core.trac.wordpress.org/ticket/51455\">#51455</a>).</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&component=Media&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Multiple improvements in the Media component</a>.</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=11%2F04%2F2020..11%2F12%2F2020&component=Build%2FTest+Tools&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Multiple improvements in the Build/Test Tools component</a>.</li></ul>\n\n\n\n<p><em>To see all of the features for each Gutenberg release in detail, check out the release posts: <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"https://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"https://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</em></p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/query?status=new&milestone=5.6&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">known bugs</a>.</p>\n\n\n\n<p><em>Props to @tonyamork, @audrasjb for technical notes and @angelasjin,<em> </em><a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a><em>, </em><a href=\"https://profiles.wordpress.org/cguntur/\">@cguntur</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a> for final review.</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:\"Thu, 12 Nov 2020 23:49:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:150:\"WPTavern: Envato Passes $1 Billion in Community Earnings While Continuing to Aggressively Market Its Elements Subscription Against Marketplace Authors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107668\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:343:\"https://wptavern.com/envato-passes-1-billion-in-community-earnings-while-continuing-to-aggressively-market-its-elements-subscription-against-marketplace-authors?utm_source=rss&utm_medium=rss&utm_campaign=envato-passes-1-billion-in-community-earnings-while-continuing-to-aggressively-market-its-elements-subscription-against-marketplace-authors\";s: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:16409:\"<p>Envato has <a href=\"https://forums.envato.com/t/we-ve-reached-1-billion-in-community-earnings/340756\">passed $1 billion in community earnings</a> after 14 years in business. The company reached the goal a year earlier than anticipated, thanks to the contributions of 81,000 different creators around the globe and millions of customers who have purchased products from <a rel=\"noreferrer noopener\" href=\"https://themeforest.net/\" target=\"_blank\">Envato Market</a>, <a rel=\"noreferrer noopener\" href=\"https://studio.envato.com/\" target=\"_blank\">Envato Studio</a>, <a href=\"https://tutsplus.com/\">Envato Tuts+</a> and <a href=\"https://elements.envato.com/\">Envato Elements</a>.</p>\n\n\n\n<p>“To this day, we’re very proud that our community earns more money than our company does,” Envato co-founder Collis Ta’eed said. Last month Ta’eed stepped down from his position as CEO to pursue a new ethical chocolate e-commerce <a href=\"https://heytiger.com.au/\">venture</a>. He was replaced by former HotelsCombined.com CEO, Hichame Assi. </p>\n\n\n\n<p>Due to the pandemic, the Australian tech company recently transitioned to all employees working from home during the global lockdown. Along with the announcement of Ta’eed’s exit, Envato delivered a 20% profit share payout, totaling $3.75m AUD, to its 630-person workforce. The company reported that this is an increase on the 10% allocation from the previous financial year. </p>\n\n\n\n<p>“Profit share has become an integral part of Envato and helps connect the team with a share of the success they create through their efforts,” Ta’eed said. </p>\n\n\n\n<p>During the past several years, the company has focused heavily on driving profits through Envato Elements, its subscription service. Ta’eed said the business is now “more subscription oriented than at any time in our history.”</p>\n\n\n\n<p>One WordPress plugin author, who sells on Codecanyon, <a href=\"https://forums.envato.com/t/we-ve-reached-1-billion-in-community-earnings/340756/18\">commented</a> on the milestone post, urging Envato to renew its focus on the marketplaces. </p>\n\n\n\n<p>“Please focus on the marketplaces as well,” FWDesign said. “In the past 2-3 years, you guys focused on Elements, cannibalizing the marketplace, is time to give us something back. Personally, I feel forgotten.” </p>\n\n\n\n<p>While the community earnings have allowed creators to improve their lives in various ways – from paying family medical bills to buying apartments – the increase in focus on Envato Elements has been highly controversial. Envato’s forums are replete with complaints about Elements “poaching clients from existing marketplaces,” after many authors <a href=\"https://forums.envato.com/t/what-are-envatos-plans-for-themeforest/66598/216\">spoke out</a> about Envato advertising Elements on authors’ marketplace product pages. </p>\n\n\n\n<p>Authors employ various marketing channels to bring traffic to their items, such as Facebook ads or Adwords, and have complained for years that potential customers were whisked away from their product pages by Elements ads. Many authors reported declining sales on individual products as a result. </p>\n\n\n\n<p>In May 2018, Envato rolled out a <a href=\"https://forums.envato.com/t/changes-to-wordpress-and-after-effects-on-elements/172885/12\">critical change</a> that made all items across all item types available to all subscribers (monthly and annual). This was particularly controversial for WordPress theme authors and many reported significant decreases in sales as a direct result.</p>\n\n\n\n<p>At that time, former Envato employee James Giroux responded to authors’ concerns, characterizing the new subscription service as “a long-term play:”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“With Elements, you are buying into a revenue stream rather than a one-time transaction. So, when you compare the value of a Market customer vs an Elements subscriber, you may see less from the subscriber in the first month, but more in their cumulative lifetime revenue.”</p></blockquote>\n\n\n\n<p>Elements may not be the right choice for every Envato creator, but the company’s investment in the service is now pulling in <a href=\"https://www.afr.com/technology/envato-profits-halve-but-every-staffer-ever-gets-spoils-20190407-p51btb\">$40 million in annual recurring revenue</a> as of 2018-2019, accounting for 35% of Envato’s $113M in revenue for 2019. </p>\n\n\n\n<p>“This year we continued to reinvent ourselves as a subscription company, with a major uptick in subscribers across Envato,” Ta’eed said in <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986\">Envato’s 2019 Annual Public Impact Statement</a>. However, this new business model is coming at the expense of authors who sell exclusively through the marketplaces.</p>\n\n\n\n<p>Envato authors have begged the company’s leadership to <a href=\"https://forums.envato.com/t/call-for-collis-ta-eed-envato-founder-please-separate-elements/216716/4\">take down the banners</a> that boost Elements’ sales by siphoning customers off the marketplace, but the aggressive push towards subscriptions prevails. The frustration is palpable in numerous threads across the company’s various marketplaces.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>“It’s one thing to advertise Elements on the web or wherever Envato likes, but to have this banner on all of our item pages is actively poaching potential customers away when they are moments away from buying our items,” AudioJungle author Alister Bunclark said.</p>\n\n\n\n<p>Many authors have seen a decline in sales that is outside their control. No amount of marketing traffic to their own portfolios can make up for the $16.50 “all you can eat” offer that is plastered to the top of every page. The banner for the in-house competitor even appears directly in the cart for customers who are trying to checkout with products from non-Elements authors.</p>\n\n\n\n<p>“The fact that we are even having to request that Envato stop relentlessly promoting a competing, lower-priced alternative to our portfolios (many of which are exclusively offered at AudioJungle) – on the marketplace where our portfolios are – is discouraging,” one author <a href=\"https://forums.envato.com/t/call-for-collis-ta-eed-envato-founder-please-separate-elements/216716/16\">said</a>.</p>\n\n\n\n<p>WordPress authors selling on Themeforest are also frustrated with the banners. In 2019, Envato sold an item every 5 seconds, with WordPress accounting for <a href=\"https://docs.google.com/presentation/d/1Rj1J4FEihZAuzL87P5bh18w2dEIA66iDFIrJbnNuECM/embed?start=false&loop=false&delayms=3000&slide=id.g793418c9c6_0_155\">a third of sales.</a> The company claims to be the “market leader for themes and templates for WordPress,” despite the marketplace’s overall poor reputation among WordPress professionals.</p>\n\n\n\n<p>One byproduct of Elements including WordPress products in the subscription is that it tends to encourage the use of outdated themes and plugins. Users can download thousands of products but the WordPress themes do not come with support. Many users are <a href=\"https://forums.envato.com/t/envato-elements-outdated-problem/141799\">not aware</a> of this when they purchase their subscriptions. Users can get updates only while their subscriptions are active, but they have to be downloaded manually. </p>\n\n\n\n<p>“Despite tons of complaints from authors (who made this place what it is in the first place) it is even pointless to promote your items elsewhere to attract some ‘buyers’ because they see the Elements promotions everywhere, even on our own product pages,” Themeforest Elite author Bedros <a href=\"https://forums.envato.com/t/two-days-without-sales/287149/6\">said</a>.</p>\n\n\n\n<p>When authors took to the forums to report no sales or declining sales, one user <a href=\"https://forums.envato.com/t/two-days-without-sales/287149/10\">responded</a>, “Don’t panic. They killed the market with Elements.”</p>\n\n\n\n<p>Certain marketplaces, like AudioJungle and WordPress themes, are disproportionately impacted by Elements, given the significant time investment to create these types of products. </p>\n\n\n\n<p>“I wonder what’s the point, in these circumstances, to spend months (in some cases even a year) to build a decent WordPress theme to sell on Envato,” Bedros <a href=\"https://forums.envato.com/t/two-days-without-sales/287149/5\">said</a>. Another author on the same thread reported working on a theme for 16 months and had only 17 sales two months after it was approved.</p>\n\n\n\n<p>“The big buyers (ad agencies and the like) will see an immediate savings on the subscription plan opposed to buying the products individually,” AudioJungle author Daniel Warneke <a href=\"https://www.quora.com/Is-Envato-killing-their-marketplace-with-Envato-elements\">said</a>. “This pulls the high volume purchasers out of the individual market.</p>\n\n\n\n<p>“Envato hand picks the authors that have products in Envato Elements, so it stands to reason that they selected a broad range of the most popular products. This would make the service the most appealing.” </p>\n\n\n\n<h2>Envato Reports 0.18% CTR on Elements Banner Ads But Will Not Remove Them</h2>\n\n\n\n<p>In the responses to <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986\">Envato’s 2019 Annual Public Impact Statement</a>, Collis Ta’eed confirmed that market sales are declining. He blames the “movement of the industry” towards other business models as the reason for the decline: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>To your question on Market sales, they’re holding up better than we’d hoped, though they are down year on year. Internally we look at the combination of Market and Elements both in gross revenue (which is up) and in authors earnings (which is up). But Market itself is down a few percent on this time last year, and that looks like an ongoing trend (though one that’s not as steep as my worst fears at times!)</p><p>It’s tempting to think the driver of Market’s changes are Elements, especially as we drive subscription customers over. But we’d been mapping the trend of the sales curve for years prior to the launch of Elements and had been seeing changes before we ever launched into subscriptions, because of the movement of the industry, first to ‘bundles’ and then to ‘subscriptions’ and ‘free’. From what I can tell the bigger forces on Market are actually industry ones.</p></blockquote>\n\n\n\n<p>Despite the vast undervaluing of their individual products, authors in general do not seem to be opposed to Elements entirely but rather they are opposed to Envato’s aggressive advertisements on their portfolios. The same question surfaces every year and the company’s leadership continues to dance around it.</p>\n\n\n\n<p>“Can you explain to authors why they should spend money on advertising their products when as soon as they land on the landing page they see a great big dirty banner saying they can get everything unlimited for a monthly fee?” template author Patchesoft <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986/39\">commented</a>. “I feel like this question came up last year and we got a ‘we’ll see what we can do about it’ and yet here we are a year later.” </p>\n\n\n\n<p>Ta’eed <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986/78\">responded</a>, characterizing the banners as a cross-promotion of traffic between Market and Elements. He claimed that after the company performed some tests, removing the banner “had negligible impact on sales at a daily level.”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Definitely I know that the header bar on Market is up there amongst the most annoying things to authors. But at the same time, it’s important for us to be transparent about the different offerings we have for customers so they can choose what’s best for their needs. While it’s pretty annoying, the traffic diverted from Market item pages is minimal (0.18% of visitors actually click through). That said we’re exploring ways to let customers better know about Elements (and Placeit).</p></blockquote>\n\n\n\n<p>Authors are not buying this justification for the banner ads, and object to the use of the term “cross-promotion,” when the promotion only goes one way. Meanwhile, Elements, which enables non-exclusive sales, is treated like an ad-free, exclusive library.</p>\n\n\n\n<p>“’Annoying’ is not the correct word,” AudioJungle member Purple Fog <a href=\"https://forums.envato.com/t/2019-envato-annual-public-impact-statement/272986/81\">said</a>. “You gotta understand it’s much, much more than that. It’s infuriating, it’s a betrayal, it’s you flipping us the finger.</p>\n\n\n\n<p>“If it’s so important for you to let buyers know what all their options are, then why isn’t there a top banner on Elements telling them they can also get the item for a one off fee, in case they don’t want to subscribe?</p>\n\n\n\n<p>“That 0.18% is pretty far from the figure you previously gave us (around 2%), and is even harder to believe. Do you mean that you are willing to antagonize the vast majority of authors just for 0.18% CTR? Makes little sense. It’s also hard to believe when there are countless threads opened by buyers who felt they were tricked by that infamous banner. Either your people are lying to you, or you didn’t set up the analytics properly, but in any case, something doesn’t add up here.”</p>\n\n\n\n<h2>Envato’s Transformation Into a Subscription Company Comes at the Expense of Its Exclusive Market Authors</h2>\n\n\n\n<p>Envato continues to write its own rules due to its early success and has now amassed a vast labor force who depend on the company’s offerings for their livelihoods. Those who are willing to devalue their work for inclusion in a subscription product (that is guaranteed to sell with a more compelling pricing point) are allowed to continue as cogs in a much more profitable machine.</p>\n\n\n\n<p>It’s not wrong for Envato to pivot towards becoming a subscription company. To do so at the expense of market authors is unfair. These authors are paying to advertise for a competing library with lost sales from their own products. It exploits the marketplace authors who were hoping to make a sale, since their higher prices are now just a prop for making Elements look more attractive. Their portfolios become a gateway to the subscription service.</p>\n\n\n\n<p> Unless Envato changes how it advertises Elements, the company will remain at odds with exclusive market authors’ interests. This is especially true for creators in markets where having their work available to more customers doesn’t instantly translate into more payments.</p>\n\n\n\n<p>“Many authors have chosen to set up shop here exclusively and have supported and promoted this marketplace for years,” AudioJungle author Promosapien said in a <a href=\"https://forums.envato.com/t/call-for-collis-ta-eed-envato-founder-please-separate-elements/216716/121\">thread</a> where authors called on the CEO to remove the banner ads.</p>\n\n\n\n<p>“Envato is presently making strategic choices that they obviously feel strongly about and feel are necessary for their own viability. Unfortunately, those choices are diminishing the benefits of being an exclusive author here.</p>\n\n\n\n<p>“In fact, you could probably make a good argument that there has never been a worse time to be an exclusive author at a marketplace – when that marketplace is actively and continually using its considerable promotional resources to move website visitors away from your portfolio to a newer, cheaper licensing platform (Elements subscription).” </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2020 23:47:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Do Not Build Theme-Specific Block Plugins for WordPress, Please\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107722\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/do-not-build-theme-specific-block-plugins-for-wordpress-please?utm_source=rss&utm_medium=rss&utm_campaign=do-not-build-theme-specific-block-plugins-for-wordpress-please\";s: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:5141:\"<p class=\"has-drop-cap\">A few days ago, I came across a small library of blocks. As always, I was interested in seeing what this new plugin brought to the table. Would it surprise me with a block that has not been done before? Would it present a new take on some old ideas? Or, would it be the same old set of blocks that every other block bundle has? Regardless of what it offered, I was excited to try it all the same.</p>\n\n\n\n<p>As I clicked on the description to find out more, I was immediately let down. The plugin specifically stated that it was built for only one theme. I could not use it with my preferred theme.</p>\n\n\n\n<p>This was not the first time I had run across this issue. Other theme authors have built their own block bundles in the past. The plugin was not bringing anything particularly new to the WordPress community. It had less than a handful of blocks that had already been done before in numerous other plugins.</p>\n\n\n\n<p>The problem was that this felt all too familiar.</p>\n\n\n\n<p>Over the years, the WordPress community has created a set of unwritten rules regarding what belongs in a theme vs. what belongs in a plugin. Custom post types, taxonomies, and shortcodes are <em>plugin territory</em>. To an extent, widgets should also be exclusive to plugins. However, because of the way they are handled under the hood, there was always an argument that it was OK for themes to register them.</p>\n\n\n\n<p>This theme vs. plugin argument has been ongoing for at least a decade. Because of how themes work, such arguments have been a losing battle. Except in a few edge cases, themes could do everything that a plugin could do. However, there was always supposed to be a clear-cut distinction between the two. Themes were meant to handle the front-end design of a website. Plugins were for everything else.</p>\n\n\n\n<p>Today, the WordPress project and its block system are making progress toward solidifying that distinction.</p>\n\n\n\n<p>Because of WordPress’s legacy of having various parts that did not all quite fit together in the past, it has created a culture of developers building in-house solutions. Nearly every large theme development company has its own plugins for overcoming the platform’s shortcomings. Most of the blame for this lies with the WordPress project. However, the project’s move to blocks is creating a standardized system that handles everything from a paragraph to the overall site container. With standardization across the board, there will be less and less need for these custom solutions from every theme company.</p>\n\n\n\n<p>The block system set a clear line in the sand. It removed the need for shortcodes — good riddance — and will soon phase out widgets. Blocks should be putting those old questions to bed.</p>\n\n\n\n<p>For clarity, there is little difference between bundling blocks with a theme and building a separate plugin that only works with a specific theme. The end result is the same. Such a plugin would lock a user into sticking with that theme if they relied on the plugin at all. Few people maintain the same front-end design forever.</p>\n\n\n\n<p>The goal is to allow users to switch themes at will while having access to their content and blocks.</p>\n\n\n\n<p>These theme-specific block plugins are thinking about blocks in the wrong way. When a user installs a block plugin, the expectation is that they can use those blocks regardless of their theme.</p>\n\n\n\n<p>The solution for themes is to use block <strong>patterns</strong> or <strong>styles</strong>. Suppose that you wanted to create a slider or carousel as a theme author. There are multiple solutions for this. The first and easiest is to simply recommend a plugin to users or build a plugin of your own that works with any theme. You could also easily add a slider style for the Gallery block. When the user selects it, it transforms the gallery into a slider.</p>\n\n\n\n<p>Or, suppose your theme needed to offer a big hero section with a call-to-action button. There is no need for a custom block in this situation. Theme authors can almost exclusively do this by building a custom pattern with existing blocks.</p>\n\n\n\n<p>The solution is not to bundle the block in the theme or create a plugin that only works with that one theme.</p>\n\n\n\n<p>The beauty of the block system is that most of the pieces are already in place, and they can be rearranged, grouped, and styled in unlimited ways.</p>\n\n\n\n<p>Today, there are hundreds of theme-specific plugins in existence. Part of that is because themers were working around the WordPress.org theme review guidelines. Part of that is because some developers did not think creatively enough about solutions. But, the biggest part of it has been because WordPress has not standardized how to build things across the entire platform. Much of that has changed and will continue to change as full-site editing crosses the horizon in 2021. There will be clear paths for themes and plugins.</p>\n\n\n\n<p>However, if theme companies continue building theme-specific blocks, we are just lugging along the baggage that the block system is meant to leave behind.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Nov 2020 21:58:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:34:\"BuddyPress: BuddyPress 7.0.0-beta2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=315529\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://buddypress.org/2020/11/buddypress-7-0-0-beta2/\";s: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:3225:\"<p>First of all, we’d like to thank all the contributors who tested the <a href=\"https://buddypress.org/2020/10/buddypress-7-0-0-beta1/\">first beta</a> of our next major release. Beta testing is very important to us as it’s a good way to check the improvements we brought to BuddyPress are behaving as expected on your WordPress/BuddyPress configurations.</p>\n\n\n\n<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-beta2.zip\">BuddyPress 7.0.0-beta2</a> is now available for testing, and we’d love to have your feedbacks about it!</p>\n\n\n\n<p>Since 7.0.0 beta1:</p>\n\n\n\n<ul><li>We fixed some issues about the newly introduced features (BP Activity Embed block : <a href=\"https://buddypress.trac.wordpress.org/changeset/12763\">12763</a> ; BP Types Admin UI : <a href=\"https://buddypress.trac.wordpress.org/changeset/12764\">12764</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12767\">12767</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12775\">12775</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12776\">12776</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12777\">12778</a>).</li><li>We improved the performance of the BP xProfile component : <a href=\"https://buddypress.trac.wordpress.org/changeset/12768\">12768</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12781\">12781</a>.</li><li>We changed Member Types to behave more like Group Types: <a href=\"https://buddypress.trac.wordpress.org/changeset/12765\">12765</a>, <a href=\"https://buddypress.trac.wordpress.org/changeset/12767\">12767</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12778\">12778</a>.</li><li>We gave a default avatar to the BP Blogs on multisite configurations : <a href=\"https://buddypress.trac.wordpress.org/changeset/12772\">12772</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12779\">12779</a>.</li><li>We fixed issues with the BP Nouveau Template pack : <a href=\"https://buddypress.trac.wordpress.org/changeset/12773\">12773</a> & <a href=\"https://buddypress.trac.wordpress.org/changeset/12774\">12774</a>.</li><li>We improved the BP Invitations feature : <a href=\"https://buddypress.trac.wordpress.org/changeset/12771\">12771</a>.</li></ul>\n\n\n\n<p>We’ve also updated the 7.0.0 release schedule : <strong>the 7.0.0 final release is now scheduled to December 9</strong>.</p>\n\n\n\n<p>And <strong>we need you to get there</strong>: do test the 7.0.0-beta2 release so that we can eventually solve issues you might find with your plugins, themes or specific WordPress/BuddyPress configurations.</p>\n\n\n\n<p>You can test BuddyPress 7.0.0-beta2 in 4 ways :</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a> plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.7.0.0-beta2.zip\">Download the beta here (zip file)</a>.</li><li>Check out our SVN repository: <code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li><li>Clone our read-only Git repository: <code>git clone git://buddypress.git.wordpress.org/</code></li></ul>\n\n\n\n<p>Thanks in advance for your contributions <span class=\"dashicons dashicons-heart\"></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, 11 Nov 2020 23:15: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:12:\"Mathieu Viet\";s: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:101:\"WPTavern: Themes Team Removes Outdated CSS Guidelines, Adds Stricter Requirement for Links in Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"https://wptavern.com/themes-team-removes-outdated-css-guidelines-adds-stricter-requirement-for-links-in-content?utm_source=rss&utm_medium=rss&utm_campaign=themes-team-removes-outdated-css-guidelines-adds-stricter-requirement-for-links-in-content\";s: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:6537:\"<p class=\"has-drop-cap\">In yesterday’s twice-monthly meeting, the WordPress Themes Team made a couple of important <a href=\"https://make.wordpress.org/themes/2020/11/11/meeting-notes-tuesday-november-10-2020/\">changes to the official theme directory guidelines</a>. They removed a requirement of some CSS classes that have long been sitting on the chopping block. They also implemented the third stage in their long-term plan to make all WordPress themes accessibility-ready.</p>\n\n\n\n<p>For years, theme authors have needed to either style several WordPress classes via CSS or add empty, unused selectors. It was a bit irritating for authors who fell in the latter group. The list includes several classes like <code>.sticky</code> (for sticky posts) and <code>.bypostauthor</code> (for post author comments). Now, styling these classes are optional.</p>\n\n\n\n<p>The one question mark in this decision is probably around the classes for handling left, right, and center alignment. While the newer block editor stylesheet does support these classes on the front end, it could leave end-users in the dust if they are using the classic editor and a theme author decides to drop support. Any images in posts could become misaligned. Theme authors should test this and consider any problems before deciding to remove these from their stylesheets. For the other classes, those are mostly design decisions.</p>\n\n\n\n<p>This change will not be official until the <a href=\"https://github.com/WordPress/theme-check/issues/282\">Theme Check plugin is updated</a> to allow themes without these classes through the system.</p>\n\n\n\n<p>The second big change is the reignition of the push toward creating more accessible themes in the directory. All themes in the directory are now required to distinguish links in “content” areas via an underline.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/themes/handbook/review/required/#links-within-content-must-be-underlined\">full guideline</a> is as follows:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>When links appear within a larger body of block-level content, they must be clearly distinguishable from surrounding content (Post content, comment content, text widgets, custom options with large blocks of texts).</p><p>Links in navigation-like contexts (e.g., menus, lists of upcoming posts in widgets, grouped post meta data) do not need to be specifically distinguished from surrounding content.</p><p>The underline is the only accepted method of indicating links within content. Bold, italicized, or color-differentiated text is ambiguous and will not pass.</p></blockquote>\n\n\n\n<p>While this is a simple change, it is a bold one. Thus far, there has not been any pushback from theme authors on the announcement post or in the team meeting. However, some may be expected as the news trickles through the theme design community.</p>\n\n\n\n<p>The one question that arose about the requirement was whether theme authors could add an option to allow end-users to opt-out of this behavior. The team said this was allowed as long as the underlined links were enabled by default.</p>\n\n\n\n<h2>The Road to Accessibility</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">In July 2019, the <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\">Themes Team made a commitment</a> to push theme authors to make their themes more accessible. It was not a switch they were going to flip overnight. Instead, the team made a goal of implementing a new accessibility-related requirement every two months or so. These periods would give both theme authors and reviewers ample time to familiarize themselves with each change.</p>\n\n\n\n<p>This is the third requirement added to the guidelines since the team implemented the plan. The team started with some low-hanging fruit and added a requirement that themes ship with a skip-to-content link. That guideline addition went over relatively smoothly. The team quickly added a new guideline requiring that visitors be able to navigate menus via keyboard.</p>\n\n\n\n<p>That second guideline landed in August 2019. From the outside looking in, the project was initially going well. However, until yesterday, the team had not added any new accessibility guidelines. Over a year had passed, and the plan seemed to be grinding to a halt. Accessibility advocates were probably wondering what happened.</p>\n\n\n\n<p>In a <a href=\"https://wptavern.com/why-accessibility-matters-for-wordpress-themes-and-their-users\">discussion with the Themes Team reps</a> a few months ago, they were not sure when they would implement the next guideline. The project was not going as planned.</p>\n\n\n\n<p>“We have not added anything else above that because theme authors are still not releasing themes with working implementations of skip links and usable keyboard navigation,” said team representative William Patton at the time. “When those two things become habitual it will be time to introduce another aspect as a requirement. The fact that this has taken so long for authors to get this right probably indicates that we need to do better at guiding them to resources to learn how to do it and why it is important. Perhaps that is a better avenue to pursue than looking to implement additional asks of them.”</p>\n\n\n\n<p>Team rep Carolina Nymark shared similar sentiments. She mentioned that underlined links were up next on the list. However, they did not have a deadline in mind yet.</p>\n\n\n\n<p>“Skip links and keyboard navigation are still a headache to some extent for some authors,” said Ganga Kafle, a team representative. He said that theme authors who regularly submit themes are doing so with these requirements in mind. However, keyboard navigation remains the biggest pain point, particularly on mobile views.</p>\n\n\n\n<p>“But almost all the themes we get are with skip links working properly,” he said. “That is a good thing so far. The new requirement is not so huge and tough. And I think we need to add such small things in a timely manner.”</p>\n\n\n\n<p>For now, the team seems to be picking up where they left off. There is still a long path to go before the project is complete.</p>\n\n\n\n<p>The best thing that theme authors can do right now is to follow all of the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/\">optional accessibility guidelines</a>. This will prepare them for a future in which they are all required.</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, 11 Nov 2020 18:10: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:14:\"Justin Tadlock\";s: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:77:\"WPTavern: Google Search to Add Page Experience to Ranking Signals in May 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107594\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"https://wptavern.com/google-search-to-add-page-experience-to-ranking-signals-in-may-2021?utm_source=rss&utm_medium=rss&utm_campaign=google-search-to-add-page-experience-to-ranking-signals-in-may-2021\";s: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:6228:\"<p>Six months ago, Google announced its plans to <a href=\"https://wptavern.com/google-search-to-introduce-new-page-experience-ranking-signal-in-2021\">introduce a new ranking signal</a> for Search, based on page experience as measured by <a href=\"https://web.dev/vitals/#core-web-vitals\">Core Web Vitals</a> metrics. At that time, Google promised to give site owners at least six months notice before rolling out the update so they can improve their scores on the metrics before the update. The company reports a 70% increase in users engaging with <a href=\"https://web.dev/vitals-tools/#lighthouse\">Lighthouse</a>, <a href=\"https://web.dev/vitals-tools/#pagespeed-insights\">PageSpeed Insights</a>, and Search Console’s Core Web Vitals report in preparation for the update.</p>\n\n\n\n<p>Today Google confirmed that it will roll out the new page experience signals in May 2021. The search engine also plans to introduce a new visual indicator for pages that fully comply with the page experience requirements:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>On results, the snippet or image preview helps provide topical context for users to know what information a page can provide. Visual indicators on the results are another way to do the same, and we are working on one that identifies pages that have met all of the page experience criteria. We plan to test this soon and if the testing is successful, it will launch in May 2021 and we’ll share more details on the progress of this in the coming months.</p></blockquote>\n\n\n\n<p>There are no additional details on what that will look like but AMP’s lightning bolt is a good example of how small graphics can have a meaningful impact on users’ behavior when navigating through search results.</p>\n\n\n\n<h2>Are WordPress Websites Ready for Page Experience as a Ranking Signal?</h2>\n\n\n\n<p>The page experience signals Google plans to roll out will include Core Web Vitals (Loading, Interactivity, and Visual Stability metrics), combined with existing search signals for <a href=\"https://webmasters.googleblog.com/2015/02/finding-more-mobile-friendly-search.html\">mobile-friendliness</a>, <a href=\"https://webmasters.googleblog.com/2016/09/more-safe-browsing-help-for-webmasters.html\">safe-browsing</a>, <a href=\"https://webmasters.googleblog.com/2016/11/heres-to-more-https-on-web.html\">HTTPS-security</a>, and <a href=\"https://webmasters.googleblog.com/2016/08/helping-users-easily-access-content-on.html\">intrusive interstitial guidelines</a>. Based on where the web is now, in terms of delivering a good page experience (as defined by Google), site owners will undoubtedly need the next six months lead time to become aware of the new ranking signal and prepare.</p>\n\n\n\n<p>Google’s Core Web Vitals assessment gives a pass or fail rating, with a “pass” requiring a good result in all three metrics. A cursory test using Page Speed Insights on a few of the websites for the largest companies, hosts, and agencies in the WordPress space shows most of them do not currently meet these requirements.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In August, Screaming Frog, a search marketing agency, published a lengthy <a href=\"https://www.screamingfrog.co.uk/passing-the-cwv-assessment/\">report</a> on tests that found only 12% of Mobile and 13% of Desktop results passed the Core Web Vitals assessment. Screaming Frog used the <a href=\"https://www.screamingfrog.co.uk/seo-spider/user-guide/configuration/#pagespeed-insights-integration\">PageSpeed Insights API</a> to test 20,000 websites, which were selected through scraping the first-page organic results from 2,500 keywords across 100 different topics. The report highlighted a few important findings:</p>\n\n\n\n<ul><li>First Input Delay (FID) on Desktop is negligible with <strong>99% of URLs</strong> considered good. And <strong>89% for Mobile</strong>.</li><li><strong>43% of Mobile</strong> and <strong>44% of Desktop</strong> URLs had a good Largest Contentful Paint (LCP).</li><li><strong>46% of Mobile</strong> and <strong>47% of Desktop</strong> URLs had a good Cumulative Layout Shift (CLS).</li><li>URLs in <strong>Position 1</strong> were<strong> 10% more likely</strong> to pass the CWV assessment than URLs in <strong>Position 9</strong>.</li></ul>\n\n\n\n<p>These results suggest that most website owners still have a good deal of work ahead of them in meeting the requirements for passing the Core Web Vitals assessment. Unsurprisingly, Google suggests AMP as the preferred vehicle to get there, but even AMP is not a magic bullet. </p>\n\n\n\n<p>At AMP Fest last month, the project reported that <a href=\"https://blog.amp.dev/2020/10/13/meet-amps-page-experience-guide/\">60% of AMP domains pass the Core Web Vitals metrics</a> (meaning 75% of pages on the domain passed), compared to 12% of non-AMP domains passing based on the same criteria.</p>\n\n\n\n<p>“Looking ahead to Google Search’s upcoming rollout of using page experience signals in ranking, we challenged ourselves to consider how we could better support the AMP community and reach a point where we are able to guarantee that all AMP domains meet the criteria included in the page experience ranking signal,” AMP Product Manager Naina Raisinghani said. </p>\n\n\n\n<p>Those who are already using AMP are encouraged to check out the <a href=\"http://amp.dev/page-experience\">AMP Page Experience Guide</a>, a diagnostic tool that helps developers improve their page experience metrics with practical advice.</p>\n\n\n\n<p>AMP is not required, however, if developers feel confident delivering the kind of performance metrics necessary to pass the Core Web Vitals assessment. Along with the new ranking signal, Google also plans to roll out another promised change that allows non-AMP content to become eligible for placement in the mobile Top Stories feature for Search. Starting in May 2021, sites that can deliver decent page experience metrics will be prioritized, regardless of whether they were built with AMP or through some other means.</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, 11 Nov 2020 05:00:55 +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:75:\"WPTavern: WordPress 5.6 Beta 4 Delayed, Auto-Updates Implementation Changed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107592\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/wordpress-5-6-beta-4-delayed-auto-updates-implementation-changed?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-beta-4-delayed-auto-updates-implementation-changed\";s: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:4446:\"<p class=\"has-drop-cap\">Earlier today, release lead Josepha Haden announced the team was <a href=\"https://make.wordpress.org/core/2020/11/10/wordpress-5-6-beta-4-delayed-from-november-10th-to-november-12th-2020/\">pushing back the release of WordPress 5.6 Beta 4</a> to Thursday, November 12. The beta release was slated to go live today. Questions around the readiness of the auto-updates feature held the beta update back. However, those questions are now resolved.</p>\n\n\n\n<p>Haden followed up the Beta 4 announcement with a more in-depth picture of <a href=\"https://make.wordpress.org/core/2020/11/10/wp5-6-auto-update-implementation-change/\">how auto-updates will change</a> for WordPress 5.6. She summarized the current concerns, laid out a path for version 5.6 and 5.7, and discussed plans for the future. The auto-updates feature is not something that will be complete overnight or in just one release. There are complex technical hurdles that must be jumped and a need for a dedicated focus in upcoming releases.</p>\n\n\n\n<p>Much of her post focuses on the tactics going forward. However, she mentioned in our chat that she does not want the community to lose sight of the big-picture, vision-setting aspects of the project.</p>\n\n\n\n<p>“The subject of auto-updates has resulted in many complicated discussions,” she wrote. “As I reminded the release squad, decisions like these require us to remember that we’re contributing to over 30% of the web, and we have to balance our immediate needs with long term planning.”</p>\n\n\n\n<p>The short-term plan is to allow current WordPress users to opt-in to major updates while enabling auto-updates for both minor and major releases for new installations. Some changes to the auto-updates UI are also in the works along with a plan to revise based on feedback in WordPress 5.6.1.</p>\n\n\n\n<p>In WordPress 5.7, which is several months away, the goal is to add a nudge on the Site Health screen for anyone opted out of major updates. We could also see a setting to opt-into updates as part of the WordPress installation flow for new sites.</p>\n\n\n\n<p><em>The big picture that Haden is talking about?</em> That is to make sure that all WordPress installations are receiving auto-updates, that these updates are seamless, and that users are running a secure version of WordPress.</p>\n\n\n\n<p>Nearly two years ago, WordPress project lead Matt Mullenweg outlined <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">nine goals for 2019</a>. One of those goals was to provide users a method of opting into automatic updates of major releases. It has taken WordPress a while to get there, but it is on the cusp of launching this feature that many have looked forward to.</p>\n\n\n\n<p>Haden also further clarified that goal. She said that the long-term plan for both Mullenweg and the other original feature contributors was to always have auto-updates for major releases enabled by default.</p>\n\n\n\n<p>Apart from those who already prefer to opt-out of any sort of automatic updates, some users’ trust in the system eroded a couple of weeks ago. The WordPress auto-update system <a href=\"https://wptavern.com/wordpress-auto-update-system-misfires-updating-live-sites-to-an-alpha-release\">updated sites to version 5.5.3-alpha</a> instead of 5.5.2 — WordPress currently automatically updates only minor releases. While there was no difference between the two versions and the core team quickly resolved the problem, the damage to user trust was already done.</p>\n\n\n\n<p>This was not an ideal leadup to the December launch of auto-updates for major releases.</p>\n\n\n\n<p>However, one hiccup — one that was effectively not an issue — seven years after WordPress 3.7 launched with security and maintenance updates is not too bad. The system has been a boon to making the web a more secure place. Ultimately, that is what auto-updates are all about. The big goal is to make sure that all WordPress sites are running on the most secure version available.</p>\n\n\n\n<p>“It’s important that whatever we implement isn’t taking us further away from our long term goals of having seamless, auto-updates across the project,” wrote Haden. “Auto-updates can help us have a more secure WordPress ecosystem, and in turn can help change the public perception of WordPress being an unsecure choice for users of any skill level.”</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, 10 Nov 2020 21:29:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"HeroPress: Don’t Miss Your Chance to Speak at WordFest Live 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=3409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://heropress.com/dont-miss-your-chance-to-speak-at-wordfest-live-2021/#utm_source=rss&utm_medium=rss&utm_campaign=dont-miss-your-chance-to-speak-at-wordfest-live-2021\";s: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:1905:\"<img width=\"960\" height=\"536\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/11/WordFest-Purple-Banner-1024x572.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"a banner for WordFest - a festival of inclusive events\" />\n<p>As part of the growth of HeroPress, we’re looking at ways to support other community-focused initiatives, and here’s an excellent place to start: </p>\n\n\n\n<p>Looking for something new in the new year? Kick off 2021 by being a part of <a href=\"http://wordfest.live\">WordFest Live</a>. The team at Big Orange Heart is pulling together the first ever global event focused around 24 hours of celebrating WordPress.</p>\n\n\n\n<p>They need sponsors and attendees, but most timely right now is the call for speakers.</p>\n\n\n\n<p>If you’d like to apply to speak, head over to <a href=\"https://www.wordfest.live/call-for-speakers/?fbclid=IwAR2JnzHaxZw1irDWQv7m4viLkE-vc0idPSe94Drh_yP_UpFaZSUG_MDFNq4\" rel=\"noreferrer noopener\" target=\"_blank\">https://www.wordfest.live/call-for-speakers/</a> The event is looking for speakers from all over the world to share their WordPress knowledge. </p>\n\n\n\n<p>Want to learn more? <a href=\"https://www.wordfest.live/2020/11/speaking-at-wordfest-live-2021/\">This article</a> gives you a feel for the event, answers some questions, provides some topics to help guide you if you’re stuck, and explains what makes this a festival instead of “just” a conference. </p>\n\n\n\n<p>The event is FREE with donations going to support <a href=\"https://www.bigorangeheart.org/\">Big Orange Heart</a>. <strong>Speaker submissions close 18 November, 2020</strong>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/dont-miss-your-chance-to-speak-at-wordfest-live-2021/\">Don’t Miss Your Chance to Speak at WordFest Live 2021</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:\"Tue, 10 Nov 2020 20:55:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:63:\"WPTavern: Biden-Harris Transition Website Launches on 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:30:\"https://wptavern.com/?p=107503\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"https://wptavern.com/biden-harris-transition-website-launches-on-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=biden-harris-transition-website-launches-on-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4112:\"<p>The Biden-Harris presidential transition team has launched <a href=\"https://twitter.com/Transition46\">a new Twitter account</a> and a website powered by WordPress. <a href=\"https://buildbackbetter.com/\">BuildBackBetter.com</a> is hosted by <a href=\"https://automattic.com/\">Automattic</a> and is zippy fast, thanks to Jetpack, Cloudflare CDN, and a lot of other performance optimizations. It <a href=\"https://tools.pingdom.com/#5d6c07d844800000\">loads in 333 ms</a>, performing just 19 requests.</p>\n\n\n\n<div class=\"wp-block-image shadow-none\"><img /></div>\n\n\n\n<p>The site was created by Ben Ostrower’s team at <a href=\"https://wideeye.co/\">Wide Eye</a>, an 11-year old agency based in Washington, D.C., and the same team behind <a href=\"https://wideeye.co/case-study/kamala-harris-for-the-people/\">Kamala Harris’ 2020 presidential campaign website</a>. Their work on Harris’ site won recognition as a finalist in <a href=\"https://www.fastcompany.com/90547945/graphic-design-innovation-by-design-2020\">Fast Company’s 2020 Innovation by Design Awards</a> in the Graphic Design category.</p>\n\n\n\n<p>In anticipation of winning the election, the Biden-Harris Transition team uploaded the content for the website in October, based on the image URLs. It uses a custom theme called Transition. Peeping under the hood, it looks like the site is using the <a href=\"https://wordpress.org/plugins/ninja-forms/\">Ninja Forms</a> plugin for the email signup and contact forms, as well as Google Tag Manager for analytics. The language switcher is powered by <a href=\"https://multilingualpress.org/\">MultilingualPress</a>. </p>\n\n\n\n<p>Wide Eye paid particular attention to the multilingual and accessibility features of the site with beautifully implemented toggles for contrast and font size. The high contrast toggle (dark mode) creates an elegant and natural transition between modes, without compromising the quality of the design. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The transition site also has an official <a href=\"https://buildbackbetter.com/accessibility-statement/\">accessibility statement</a> regarding the team’s commitment to working towards WCAG 2.1 AA standards compliance:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Our on-going accessibility effort works towards conforming to the Web Content Accessibility Guidelines (WCAG) version 2.1, level AA criteria. These guidelines not only help make web content accessible to users with sensory, cognitive and mobility disabilities, but ultimately to all users, regardless of ability.</p></blockquote>\n\n\n\n<p>Visitors are encouraged to email <a href=\"mailto:accessibility@bidentransition.org\">accessibility@bidentransition.org</a> with feedback on how to provide a better experience.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"es\" dir=\"ltr\">la web de Biden y Harris \"de transición\" (como lo llaman ellos) dice mucho de sus intenciones<br /><br />➡️ Está hecha con WordPress (código abierto)<br />➡️ Es multilingüe (español e inglés)<br />➡️ Es MUY accesible (me da entre un 80 y 90% en tests)<a href=\"https://t.co/vY2Peb8BJ4\">https://t.co/vY2Peb8BJ4</a></p>— Manu Quiroga 🎈 (@Manuls) <a href=\"https://twitter.com/Manuls/status/1325459089607024645?ref_src=twsrc%5Etfw\">November 8, 2020</a></blockquote>\n</div>\n\n\n\n<p>The Biden-Haris transition team is focused on building the necessary infrastructure for providing a smooth transfer of power from the current administration with a focus on critical matters, such as public health policy and national recovery plans. The website publishes updates on the leadership being assembled to tackle these challenges.</p>\n\n\n\n<p>Both the current administration’s <a href=\"https://www.whitehouse.gov/\">whitehouse.gov</a> and <a href=\"https://joebiden.com/\">JoeBiden.com</a> are also running on WordPress. If the Biden-Harris transition website is any indication, the next edition of whitehouse.gov may also relaunch on 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:\"Tue, 10 Nov 2020 04:24: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: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:66:\"WPTavern: WordPress 5.6 Will Ship With Another Major jQuery Change\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/wordpress-5-6-will-ship-with-another-major-jquery-change?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-will-ship-with-another-major-jquery-change\";s: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:5137:\"<img />\n\n\n\n<p class=\"has-drop-cap\">WordPress 5.6 will ship with the latest jQuery library next month. This is a major update that all plugin and theme developers should begin testing against. Last week, Marius Jensen <a href=\"https://make.wordpress.org/core/2020/11/05/updating-core-jquery-to-version-3-part-2/\">announced the change</a> on the Make Core blog.</p>\n\n\n\n<p>The following jQuery-related libraries are expected to ship in the update (<a href=\"https://core.trac.wordpress.org/ticket/50564\">WordPress Trac ticket</a>):</p>\n\n\n\n<ul><li>jQuery 3.5.1</li><li>jQuery Migrate 3.3.2</li><li>jQuery UI 1.12.1</li></ul>\n\n\n\n<p>This change is not surprising. Lead developer Andrew Ozz announced the <a href=\"https://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/\">original three-phase transition</a> to update the jQuery library earlier this June. The end goal is for WordPress to bundle the most up-to-date version and keep it updated going forward. WordPress has fallen behind and relied on an older version for several release cycles. As a result, much of the plugin and theme ecosystem has relied on outdated features.</p>\n\n\n\n<p>The three steps of the process are as follows:</p>\n\n\n\n<ul><li><strong>WordPress 5.5:</strong> Remove the jQuery Migrate 1.x script.</li><li><strong>WordPress 5.6:</strong> Update to the latest jQuery, jQuery UI, and jQuery Migrate scripts.</li><li><strong>WordPress 5.7:</strong> Remove the jQuery Migrate script.</li></ul>\n\n\n\n<p>If the removing, adding, and once again removing jQuery Migrate sounds confusing, it is because it can be. jQuery Migrate is essentially a helper script that allows developers to “migrate” to newer versions of jQuery. It is a backward-compatibility fix. The version of jQuery Migrate being re-added in WordPress 5.6 corresponds to newer versions of jQuery. It is being added as a temporary fix to give plugin and theme developers time to update their code. The hope is that developers will no longer rely on it by the time WordPress 5.7 ships.</p>\n\n\n\n<p>“Following the best practices and the recommendations of the jQuery team, Migrate should be used as a helper tool, not as a permanent backwards compatibility solution,” said Ozz in our <a href=\"https://wptavern.com/major-jquery-changes-on-the-way-for-wordpress-5-5-and-beyond\">discussion a few months ago</a>. “Ideally, WordPress will be able to do this.”</p>\n\n\n\n<p>Whether jQuery Migrate is removed in WordPress 5.7 remains to be seen. Right now, it is a tentative goal. Thus far, the process is still on track. Much of this also depends on how smooth the WordPress 5.6 ship sails. The <a href=\"https://wptavern.com/enable-jquery-migrate-helper-plugin-passes-10k-active-installs\">5.5 release sunk</a>, at least for many users. This is a result that we do not want to repeat.</p>\n\n\n\n<p>Navigating all of this is no small feat for end-users. They rely on WordPress, plugin, and theme developers to keep things running smoothly. With a month left before the launch of WordPress 5.6, plugin and theme authors need to start testing to make sure their projects work with the latest version of WordPress.</p>\n\n\n\n<p>Expecting some issues with WordPress 5.5, the WordPress development team created the <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">Enable jQuery Migrate Helper</a> plugin to ease the transition for users on WordPress 5.5. In the first week, the plugin had over 10,000 active installations. Today, it has over 200,000 users. This number is not necessarily indicative of plugins and themes with outdated code. Presumably, some percentage of these users no longer need the plugin because their extensions have been updated while they have yet to deactivate it. There is no public data on who is using the plugin and why.</p>\n\n\n\n<p>The plugin is still useful right now. It logs deprecation notices and makes them available to users. If the plugin does not log any notices after a week or two, users are encouraged to deactivate the plugin. If they are still seeing notices, they should contact their theme or plugin developers, depending on what is triggering the notices. When users update to WordPress 5.6, they should no longer need the plugin.</p>\n\n\n\n<p>We will be six months into this process for the next major release. Developers have had ample time to make adjustments. Let this be a friendly reminder to test plugins and themes during the 5.6 beta cycle.</p>\n\n\n\n<p>Plugin and theme authors should test with the <code>SCRIPT_DEBUG</code> constant enabled in their <code>wp-config.php</code> files. More information is available via the <a href=\"https://wordpress.org/support/article/debugging-in-wordpress/\">Debugging in WordPress</a> documentation.</p>\n\n\n\n<p>Jensen has published a guide on <a href=\"https://clorith.net/updating-jquery-code-in-your-unmaintained-wordpress-plugin-or-theme/\">updating jQuery in unmaintained themes or plugins</a>. It is primarily geared toward end-users who are comfortable enough going the DIY route. However, developers can find some useful information in the tutorial too.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Nov 2020 21:31:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:80:\"WPTavern: Editor Plus 2.1 Overhauls Block Controls UI and Adds Lottie Animations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107421\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/editor-plus-2-1-overhauls-block-controls-ui-and-adds-lottie-animations?utm_source=rss&utm_medium=rss&utm_campaign=editor-plus-2-1-overhauls-block-controls-ui-and-adds-lottie-animations\";s: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:4629:\"<p class=\"has-drop-cap\">Yesterday, Munir Kamal released version 2.1 of the <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus</a> plugin. The biggest change is a complete overhaul of its design controls. The developer also added a new Lottie animation block.</p>\n\n\n\n<p>I probably sound like a broken record after covering the last several releases of the plugin, but Kamal is doing some amazing things with the block editor. He is pushing limits and experimenting in areas that few others have yet to attempt. I am beginning to wonder if he has some secret, never-ending checklist of feature ideas in which he ticks off a few boxes every couple of weeks.</p>\n\n\n\n<p>The plugin has only 1,000+ active installs at the moment. However, it has maintained growth of over 11% since the midway point in 2020. I expect this to accelerate in the coming year as Kamal continues placing individual pieces of the larger puzzle, which includes the free blocks, patterns, and templates at <a href=\"https://gutenberghub.com/\">Gutenberg Hub</a>. He has laid the groundwork and now has one of the largest block editor resources on the web.</p>\n\n\n\n<h2>Design Controls Overhaul</h2>\n\n\n\n<img />More compact block design controls.\n\n\n\n<p class=\"has-drop-cap\">My biggest complaint about Editor Plus has always been how overwhelming some of the block options have felt. Too many choices can be blinding, and they make it tough to figure out where to start when customizing blocks.</p>\n\n\n\n<p>In our last discussion a couple of weeks ago, Kamal said that “other UI improvements are yet to come.” He was already working on tightening up controls, creating what he referred to as a more compact UI. He was drawing inspiration from the Figma and Sketch design tools.</p>\n\n\n\n<p>On the whole, this update creates that cleaner UI that he was shooting for. Some of the biggest improvements come from moving controls and labels inline with one another. The change means that users must do less scrolling to go through a multitude of options.</p>\n\n\n\n<p>There are still areas that could be cleaned and made more intuitive. Right now, Editor Plus adds custom block options tabs where WordPress already has the same tabs. For example, the plugin creates its own “+ Typography” tab. Instead, it should mount its custom options on the existing core Typography tab. From a purely user-experience perspective, it is confusing to see the similarly-named tabs. This would also create a more compact list of top-level tabs. The plugin has other tabs or controls with the same issue.</p>\n\n\n\n<h2>Lottie Animation Block</h2>\n\n\n\n<img />Still shot of the <a href=\"https://lottiefiles.com/37722-bouncy-car\">Bouncy Car</a> Lottie animation.\n\n\n\n<p class=\"has-drop-cap\">Kamal added the plugin’s first seven blocks in the <a href=\"https://wptavern.com/editorplus-introduces-its-first-blocks-and-adds-a-custom-block-creator\">last plugin update</a>. His primary goal is to stretch what the default WordPress blocks can do. However, he needed to create some new blocks to handle some of the layouts that were not possible with core alone. The latest update adds a Lottie animation block, which allows users to link to or upload a JSON file for a Lottie animation.</p>\n\n\n\n<p>Created by Airbnb, Lottie is a library that parses Adobe After Effects animations that are exported as JSON with Bodymovin. It then renders them natively on mobile devices or the web. The file sizes are smaller than many other options, and the animations can be scaled up or down without pixelation.</p>\n\n\n\n<p><a href=\"https://lottiefiles.com/\">LottieFiles</a> is one of the largest libraries of free Lottie animations on the web. It has 1,000s of animations for users to choose from.</p>\n\n\n\n<p>Kamal has already begun making use of the new Lottie animation block in Gutenberg Hub’s <a href=\"https://gutenberghub.com/template-category/patterns/\">section patterns library,</a> which houses block code that users can copy and paste into the editor, provided they have the Editor Plus plugin installed. Thus far, he has added three Lottie patterns with Black Friday animations — just in time for the shopping season.</p>\n\n\n\n<img />Still shot of an animated <a href=\"https://gutenberghub.com/templates/lottie-2/\">Black Friday pattern</a>.\n\n\n\n<p>While the Lottie animation JSON files are small, the script to play the animations is not. The JavaScript file comes in at a whopping 294 kb. This file is only loaded if the Lottie block is in use. The size may be a deal-breaker for some users. However, for animation-heavy websites, it might be worth considering.</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, 06 Nov 2020 22:03: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:14:\"Justin Tadlock\";s: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:97:\"WPTavern: WooCommerce Patches Vulnerability that Allowed Spam Bots to Create Accounts at Checkout\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/woocommerce-patches-vulnerability-that-allowed-spam-bots-to-create-accounts-at-checkout?utm_source=rss&utm_medium=rss&utm_campaign=woocommerce-patches-vulnerability-that-allowed-spam-bots-to-create-accounts-at-checkout\";s: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:4502:\"<p><a href=\"https://developer.woocommerce.com/2020/11/05/woocommerce-4-6-2-fix-release/\">WooCommerce 4.6.2</a> was released yesterday with a fix for a vulnerability that allowed account creation at checkout, even when the “Allow customers to create an account during checkout” setting is disabled. The WooCommerce team discovered it after several dozen users <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/\">reported</a> their sites were receiving spam orders, or “failed orders” where the payment details were fake.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Source: <a href=\"https://developer.woocommerce.com/2020/11/05/developer-advisory-spam-orders-and-accounts-from-bots/\">WooCommerce Developer Advisory</a></div>\n\n\n\n<p>WooCommerce developer Rodrigo Primo described how the bot is attacking stores: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The gist of it is that the bot is able to create a user when placing an order exploiting the bug fixed by 4.6.2. After creating the user, the bot tries to find vulnerabilities in other plugins installed on the site that require an unprivileged authenticated account.</p></blockquote>\n\n\n\n<p>WooCommerce recommends users update to 4.6.2 to stop bots from creating users at checkout and then remove any accounts the bot previously created. This will not stop the bots from creating fake orders so store owners are advised to <a href=\"https://woocommerce.com/search/?q=spam&categories=WooCommerce+Extensions&collections=product\">install additional spam protection</a> from the WooCommerce Marketplace. Some users in the support forum are trying free plugins like <a href=\"https://wordpress.org/plugins/advanced-nocaptcha-recaptcha/\">Advanced noCaptcha & Invisible Captcha</a> and <a href=\"https://wordpress.org/plugins/woo-blocker-lite-prevent-fake-orders-and-blacklist-fraud-customers/\">Fraud Prevention Plugin for WooCommerce</a>.</p>\n\n\n\n<p>The first <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/\">logged instance</a> happened nine days before WooCommerce was able to issue a fix. In the meantime, some users reported having their site’s URL changed and other hacking attempts. Dave Green, WordPress engineer at <a href=\"https://www.makedo.net/\">Make Do</a>, used log files to determine that the script relies on exploiting other vulnerabilities in order to gain access to the database. </p>\n\n\n\n<p>“That script is creating the order, and is also likely to be exploiting whatever vulnerability is available to bypass customer account settings and create a new user; it may or may not be relying upon other exploits for this,” Green <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/page/8/#post-13611713\">said</a>.</p>\n\n\n\n<p>“Assuming it has successfully gained access to the system, it then tries to update the DB. It either fails and leaves you with nuisance orders, or succeeds and points your site to the scam URL.”</p>\n\n\n\n<p>The WooCommerce team has also fixed this same bug in <a href=\"https://developer.woocommerce.com/2020/11/05/woocommerce-blocks-3-7-1-release-notes/\">WooCommerce Blocks 3.7.1</a>, preventing checkout from creating accounts when the related setting is disabled. </p>\n\n\n\n<p>WooCommerce did not publish the names of any of extensions that have vulnerabilities being exploited by this script. However, some one user <a href=\"https://wordpress.org/support/topic/failed-orders-fake-information/page/2/#post-13592568\">reported</a> an attack that coincided with the fake orders:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I had a failed order yesterday with similar info to the OP as well.</p><p>At the exact same time that failed order came in, my WAF blocked two attempted attacks from the same user/IP (bbbb bbbb) for “TI WooCommerce Wishlist < 1.21.12 – Authenticated WP Options Change”</p></blockquote>\n\n\n\n<p>The script may have been probing for a vulnerability in the <a href=\"https://wordpress.org/plugins/ti-woocommerce-wishlist/\">TI WooCommerce Wishlist</a> plugin, which was <a href=\"https://blog.nintechnet.com/critical-zero-day-vulnerability-fixed-in-wordpress-ti-woocommerce-wishlist-plugin/\">patched</a> approximately two weeks ago. The plugin is active on more than 70,000 WordPress sites.</p>\n\n\n\n<p>The WooCommerce team is still researching the origin and impact of this vulnerability and will publish more information as it becomes available.</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, 06 Nov 2020 20:37:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:104:\"WPTavern: WordPress.com Drops Over 100 Block Patterns, Carving a Path the Design Community Should Follow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=107332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"https://wptavern.com/wordpress-com-drops-over-100-block-patterns-carving-a-path-the-design-community-should-follow?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-drops-over-100-block-patterns-carving-a-path-the-design-community-should-follow\";s: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:5024:\"<p class=\"has-drop-cap\">Automattic <a href=\"https://wordpress.com/blog/2020/10/28/introducing-patterns/\">released over 100 block patterns</a> to its users on WordPress.com last week. Patterns are a set of blocks that users can insert into their posts or pages for predefined yet customizable sections of content. Most of WordPress.com’s new patterns are general enough in design to cover a range of uses. However, the choices also cover some niches like restaurants.</p>\n\n\n\n<p>“The WordPress Editor is a powerful tool that can help bring your design ideas to life but one of the best parts is, you don’t have to start from scratch,” wrote Ian Stewart, the WordPress.com Design Team Lead, in the announcement. “Building sophisticated designs can be as easy as picking Patterns from our growing library, and snapping them together to create beautiful-looking posts and pages.”</p>\n\n\n\n<p>Aside from the work that Gutenberg Hub has done with its <a href=\"https://wptavern.com/gutenberg-hub-launches-collection-of-100-block-templates\">template library</a>, this is one of the largest dumps of block patterns from anyone in the WordPress community at once. The big question right now is whether the larger WordPress community will see them in some form.</p>\n\n\n\n<p>“No immediate plans to bring those out to the larger community outside of WordPress.com just yet,” said Stewart in a quick chat. “I expect us to contribute in some fashion to the potential block pattern directory but no immediate plans there yet either.”</p>\n\n\n\n<p>Admittedly, I was a little disappointed in the response. I bought into the idea of block patterns from day one and have been patiently awaiting an explosion of layouts from the development community. As a former theme business owner, I see the dozens of problems that patterns would have solved for me five, six, or seven years ago. And, this is a feature that could win over some holdouts who are waiting for the block editor to mature enough to build more advanced layouts.</p>\n\n\n\n<img />Grouping Quote, Spacer, and Columns creates custom Quote pattern.\n\n\n\n<p>“The team’s current focus is on making great-looking WordPress.com patterns and contributing back to the Gutenberg Project when we see potential for improvement with the tools for creating them,” said Stewart. “I think, like you, we’re pretty excited about the potential for Patterns and improved design controls in the Block Editor. So we’re plugging away at that right now. There’s a lot of exciting designs that can be made today and even more that we’ll be able to make in the future.”</p>\n\n\n\n<p><em>Not now</em> is not a <em>no</em>, however. Automattic has a gluttony of talented designers. If a <a href=\"https://wptavern.com/wordpress-contributors-discuss-launching-an-official-block-pattern-directory\">block pattern directory emerges</a> from recent discussions (it’s still an early idea), I have little doubt that individuals from the company would submit patterns. Users of the WordPress software will also see new patterns in themes that the design team releases publicly, such as those within <a href=\"https://wptavern.com/exploring-seedlet-automattics-block-first-wordpress-theme\">Seedlet</a>.</p>\n\n\n\n<img />Heading, Paragraph, Spacer, and YouTube blocks create this pattern.\n\n\n\n<p>The great thing about patterns is that they are easy to recreate. Even if the WordPress.com design team decides to keep them in-house for the foreseeable future, they can offer inspiration to theme authors who are looking to dive into this feature. Most of the patterns use only the core WordPress blocks. However, some of the contact-related patterns use the Form block, which is available via the Jetpack plugin.</p>\n\n\n\n<p>Other patterns make use of the <a href=\"https://wordpress.org/plugins/layout-grid/\">Layout Grid block</a>, which is in the official plugin directory. This is one area that the block editor still lags a bit behind in, so it is necessary to use a plugin to make some of the more complex pattern designs work. However, there is an <a href=\"https://github.com/WordPress/gutenberg/issues/16271\">open discussion on a grid system</a> for core. Tavern readers seemed to be <a href=\"https://wptavern.com/should-the-block-editor-have-a-grid-system\">receptive to the idea</a> earlier this year too.</p>\n\n\n\n<img />Grids within grids — nesting for a complex layout.\n\n\n\n<p>The design team put together an extensive array of call-to-action patterns. With over 20 to choose from in this category alone, just about any site owner who wants to sell a product, service, or content should be able to find something that suits them.</p>\n\n\n\n<img />Call to Action block pattern for shops.\n\n\n\n<p>For now, those using WordPress.com can fully enjoy one of the better parts of the block editor. As for theme authors who are building for the open-source WordPress platform, remember that <em>great artists steal</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:\"Thu, 05 Nov 2020 23:09: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:14:\"Justin Tadlock\";s: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:45:\"WPTavern: Frontity Inks Partnership with 10up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=106861\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"https://wptavern.com/frontity-inks-partnership-with-10up?utm_source=rss&utm_medium=rss&utm_campaign=frontity-inks-partnership-with-10up\";s: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:4280:\"<img />photo credit: <a href=\"https://stocksnap.io/photo/laptop-desk-2BJQISGWND\">Matt Moloney</a>\n\n\n\n<p><a href=\"https://frontity.org/\">Frontity</a> has launched a <a href=\"https://frontity.org/partners/\">partnership program</a> to support the maintenance of its open source framework for building React-based WordPress sites. <a href=\"https://10up.com/\">10up</a>, a large agency that provides headless solutions to enterprise customers, is the first partner to join in support of the project.</p>\n\n\n\n<p>“Since we launched Frontity Framework last year, dozens of WordPress publishers have asked our team about consulting services and for help on their migration to Frontity,” Frontity communications director Reyes Martínez said. “It was great to see an increasing interest in using Frontity at an enterprise-level but, unfortunately, we didn’t have an efficient way to help them all and fulfill the custom requirements these projects usually need.”</p>\n\n\n\n<p>This partnership allows Frontity to funnel requests for consulting to 10up and other future agency partners. Reyes said the partnership does not have a monetary aspect but rather 10up is supporting the project by maintaining and extending the framework through contributions. </p>\n\n\n\n<p>Prior to this arrangement, the agency had already contributed to the core framework, most notably by developing the <a href=\"https://github.com/frontity/frontity/pull/507\">Link Component</a> and <a href=\"https://github.com/frontity/frontity/pull/518\">Auto-Prefetching</a> features. 10up also created the <a href=\"https://github.com/10up/frontity-packages/tree/develop/packages/elasticpress\">ElasticPress package</a>, which improves search for sites using Elasticsearch.</p>\n\n\n\n<p>“Frontity provides an easy to use package management interface that enables us to quickly extend the platform — similar to how plugins work in the WordPress ecosystem,” 10up VP of Engineering Taylor Lovett <a href=\"https://10up.com/blog/2020/10up-frontity-partnership/\">said</a>, explaining why the company formalized a partnership with the framework’s creators. “It includes features that typically require custom engineering, such as Google Analytics integration, routing, and integration with plugins (like SEO tools).”</p>\n\n\n\n<p>Earlier this year Frontity raised €1M in funding in a round led by <a href=\"https://kfund.co/\">K Fund</a>, with <a href=\"https://automattic.com/\">Automattic</a> covering 22%. This funding keeps the maintainers free to focus on the open source project. Frontity recently <a href=\"https://runacap.com/ross-index/\">ranked #9</a> on Runa Capital’s Open Source Startup (ROSS) Index, which ranked the top 20 startups by Github star growth for Q3 2020.</p>\n\n\n\n<p>The project’s partnership program is an interesting and somewhat uncommon approach to sustaining the framework’s growth. It redirects a steady stream of leads for custom work to partners, helping potential users find expertise, while ensuring the project is well maintained. As the WordPress ecosystem demonstrates increasing interest in building React-powered websites, Frontity is turning the growing demand for custom work into an opportunity to bolster the open source project and ensure the framework’s future.</p>\n\n\n\n<p>“Some companies are aware of the advantages of a decoupled React front-end and contact us because they are interesting in using Frontity, but don’t have the team or the internal resources to build or migrate a project from scratch,” Reyes said. “Others that have the resources and already tried (or know) Frontity, contact us because they still want a freelancer or agency to help with the development, design or maintenance of the project.”</p>\n\n\n\n<p>Frontity is in conversation with some agencies from the WordPress VIP Agency Partner Program and other hosting companies but could not share more details at this time. The basic qualifications for partners include previous experience with enterprise customers in the WordPress space, expertise with headless WordPress and React frontends, and willingness to actively contribute to the Frontity framework.</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, 05 Nov 2020 03:18:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}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:\"Thu, 10 Dec 2020 11:14:46 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 10 Dec 2020 11:00:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20170530214036\";}','no'),(37858,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1607642087','no'),(37859,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1607598887','no'),(37860,'_transient_timeout_plugin_slugs','1607685509','no'),(37861,'_transient_plugin_slugs','a:7:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:37:\"head-footer-code/head-footer-code.php\";i:2;s:63:\"smntcs-google-webmaster-tools/smntcs-google-webmaster-tools.php\";i:3;s:29:\"spam-captcha/spam-captcha.php\";i:4;s:57:\"universal-google-analytics/universal-google-analytics.php\";i:5;s:53:\"wp-meta-and-date-remover/wp-meta-and-date-remover.php\";i:6;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(37862,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1607642089','no'),(37863,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2020/12/simone/\'>WordPress 5.6 “Simone”</a> <span class=\"rss-date\">December 8, 2020</span><div class=\"rssSummary\">Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone. Fire up a playlist with her best work and read on to discover what WordPress 5.6 has in store for you.</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/state-of-the-word-2020-scheduled-for-december-17-with-virtual-qa?utm_source=rss&utm_medium=rss&utm_campaign=state-of-the-word-2020-scheduled-for-december-17-with-virtual-qa\'>WPTavern: State of the Word 2020 Scheduled for December 17, with Virtual Q&A</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-5-6-simone-includes-new-twenty-twenty-one-theme-and-improved-editor?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-simone-includes-new-twenty-twenty-one-theme-and-improved-editor\'>WPTavern: WordPress 5.6 “Simone” Includes New Twenty Twenty-One Theme and Improved Editor</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/automattic-acquires-mailpoet?utm_source=rss&utm_medium=rss&utm_campaign=automattic-acquires-mailpoet\'>WPTavern: Automattic Acquires MailPoet</a></li></ul></div><div class=\"rss-widget\"><ul></ul></div>','no'),(37868,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(37869,'category_children','a:0:{}','yes'),(37870,'wpseo_sitemap_323_cache_validator','45T3c','no'),(37871,'wpseo_sitemap_post_tag_cache_validator','46v99','no'),(37878,'_transient_timeout_yst_sm_1_1:3NNeT_46v8J','1607689547','no'),(37879,'_transient_yst_sm_1_1:3NNeT_46v8J','C:24:\"WPSEO_Sitemap_Cache_Data\":629:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:582:\"<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <sitemap>\n <loc>http://fisawards.co.uk/post-sitemap.xml</loc>\n <lastmod>2020-12-10T11:53:04+00:00</lastmod>\n </sitemap>\n <sitemap>\n <loc>http://fisawards.co.uk/page-sitemap.xml</loc>\n <lastmod>2020-11-23T13:56:46+00:00</lastmod>\n </sitemap>\n <sitemap>\n <loc>http://fisawards.co.uk/category-sitemap.xml</loc>\n <lastmod>2020-12-10T11:53:04+00:00</lastmod>\n </sitemap>\n <sitemap>\n <loc>http://fisawards.co.uk/post_tag-sitemap.xml</loc>\n <lastmod>2020-12-10T11:53:04+00:00</lastmod>\n </sitemap>\n</sitemapindex>\";}}','no'),(37880,'_transient_timeout_yst_sm_post_tag_1:3NNeT_46v99','1607689826','no'),(37881,'_transient_yst_sm_post_tag_1:3NNeT_46v99','C:24:\"WPSEO_Sitemap_Cache_Data\":823:{a:2:{s:6:\"status\";s:2:\"ok\";s:3:\"xml\";s:776:\"<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 http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <url>\n <loc>https://fisawards.co.uk/tag/ant-infestations</loc>\n <lastmod>2020-12-10T11:53:04+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/tag/home-advice</loc>\n <lastmod>2020-12-10T11:53:04+00:00</lastmod>\n </url>\n <url>\n <loc>https://fisawards.co.uk/tag/home-maintenance</loc>\n <lastmod>2020-12-10T11:53:04+00:00</lastmod>\n </url>\n</urlset>\";}}','no'),(37895,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1624621984;s:7:\"checked\";a:1:{s:9:\"businessx\";s:7:\"1.0.5.5\";}s:8:\"response\";a:1:{s:9:\"businessx\";a:6:{s:5:\"theme\";s:9:\"businessx\";s:11:\"new_version\";s:7:\"1.0.5.7\";s:3:\"url\";s:39:\"https://wordpress.org/themes/businessx/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/businessx.1.0.5.7.zip\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(37901,'_transient_doing_cron','1624621979.4329280853271484375000','yes'),(37905,'wordfence_ls_version','1.0.6','yes'),(37906,'wfls_last_role_change','1624358139','no'),(37907,'wordfence_version','7.5.4','yes'),(37908,'wordfence_case','1','yes'),(37909,'wordfence_installed','1','yes'),(37910,'wordfenceActivated','1','yes'),(37911,'active_plugins','a:2:{i:0;s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";i:1;s:23:\"wordfence/wordfence.php\";}','yes'),(37912,'wf_plugin_act_error','','yes'),(37918,'_site_transient_timeout_theme_roots','1624623782','no'),(37919,'_site_transient_theme_roots','a:1:{s:9:\"businessx\";s:7:\"/themes\";}','no'),(37920,'_cerber_db_errors','a:7:{i:0;a:3:{i:0;s:50:\"Table \'fisawardscouk.wp_cerber_sets\' doesn\'t exist\";i:1;s:73:\"SELECT * FROM wp_cerber_sets WHERE the_key = \"_nexus_mode\" AND the_id = 0\";i:2;d:1624621984.86898;}i:1;a:3:{i:0;s:50:\"Table \'fisawardscouk.wp_cerber_sets\' doesn\'t exist\";i:1;s:74:\"SELECT * FROM wp_cerber_sets WHERE the_key = \"admin_notice\" AND the_id = 0\";i:2;d:1624621984.896857;}i:2;a:3:{i:0;s:50:\"Table \'fisawardscouk.wp_cerber_sets\' doesn\'t exist\";i:1;s:101:\"INSERT INTO wp_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"admin_notice\",0,\"a:0:{}\",0)\";i:2;d:1624621984.896902;}i:3;a:3:{i:0;s:50:\"Table \'fisawardscouk.wp_cerber_sets\' doesn\'t exist\";i:1;s:75:\"SELECT * FROM wp_cerber_sets WHERE the_key = \"admin_message\" AND the_id = 0\";i:2;d:1624621984.896941;}i:4;a:3:{i:0;s:50:\"Table \'fisawardscouk.wp_cerber_sets\' doesn\'t exist\";i:1;s:102:\"INSERT INTO wp_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"admin_message\",0,\"a:0:{}\",0)\";i:2;d:1624621984.896976;}i:5;a:3:{i:0;s:50:\"Table \'fisawardscouk.wp_cerber_sets\' doesn\'t exist\";i:1;s:79:\"SELECT * FROM wp_cerber_sets WHERE the_key = \"cerber_admin_wide\" AND the_id = 0\";i:2;d:1624621984.897011;}i:6;a:3:{i:0;s:50:\"Table \'fisawardscouk.wp_cerber_sets\' doesn\'t exist\";i:1;s:100:\"INSERT INTO wp_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"cerber_admin_wide\",0,\"\",0)\";i:2;d:1624621984.897041;}}','no'),(37921,'cerber-main','a:38:{s:9:\"boot-mode\";i:0;s:8:\"attempts\";i:5;s:6:\"period\";i:30;s:7:\"lockout\";i:60;s:8:\"agperiod\";i:24;s:7:\"aglocks\";i:2;s:6:\"aglast\";i:4;s:10:\"limitwhite\";i:0;s:11:\"nologinhint\";i:0;s:15:\"nologinhint_msg\";s:0:\"\";s:10:\"nopasshint\";i:0;s:14:\"nopasshint_msg\";s:0:\"\";s:5:\"proxy\";i:0;s:10:\"cookiepref\";s:0:\"\";s:6:\"subnet\";i:0;s:8:\"nonusers\";i:0;s:7:\"wplogin\";i:0;s:10:\"noredirect\";i:0;s:7:\"page404\";s:0:\"\";s:9:\"loginpath\";s:0:\"\";s:9:\"loginnowp\";i:0;s:13:\"logindeferred\";i:0;s:10:\"citadel_on\";s:1:\"1\";s:7:\"cilimit\";i:200;s:8:\"ciperiod\";i:15;s:10:\"ciduration\";i:60;s:8:\"cinotify\";s:0:\"\";s:7:\"keeplog\";i:30;s:12:\"keeplog_auth\";i:30;s:8:\"ip_extra\";s:0:\"\";s:9:\"cerberlab\";i:0;s:11:\"cerberproto\";i:0;s:7:\"usefile\";i:0;s:10:\"dateformat\";s:0:\"\";s:10:\"plain_date\";i:0;s:10:\"admin_lang\";i:0;s:14:\"top_admin_menu\";i:0;s:14:\"no_white_my_ip\";i:0;}','no'),(37922,'cerber-hardening','a:14:{s:8:\"stopenum\";s:0:\"\";s:15:\"stopenum_oembed\";s:0:\"\";s:16:\"stopenum_sitemap\";i:0;s:8:\"adminphp\";i:0;s:8:\"phpnoupl\";i:0;s:8:\"nophperr\";s:0:\"\";s:6:\"xmlrpc\";i:0;s:7:\"nofeeds\";i:0;s:10:\"norestuser\";s:0:\"\";s:6:\"norest\";i:0;s:8:\"restauth\";s:0:\"\";s:9:\"restroles\";a:1:{i:0;s:13:\"administrator\";}s:9:\"restwhite\";a:2:{i:0;s:6:\"oembed\";i:1;s:14:\"wp-site-health\";}s:9:\"cleanhead\";s:0:\"\";}','no'),(37923,'cerber-users','a:19:{s:8:\"authonly\";i:0;s:11:\"authonlyacl\";i:0;s:11:\"authonlymsg\";s:68:\"Only registered and logged in users are allowed to view this website\";s:13:\"authonlyredir\";s:0:\"\";s:8:\"regwhite\";i:0;s:12:\"regwhite_msg\";s:0:\"\";s:12:\"reglimit_num\";i:3;s:12:\"reglimit_min\";i:60;s:6:\"emrule\";i:0;s:6:\"emlist\";a:0:{}s:10:\"prohibited\";a:0:{}s:7:\"app_pwd\";s:0:\"\";s:11:\"auth_expire\";s:0:\"\";s:8:\"usersort\";s:0:\"\";s:11:\"pdata_erase\";i:0;s:14:\"pdata_sessions\";i:0;s:12:\"pdata_export\";i:0;s:9:\"pdata_act\";i:0;s:9:\"pdata_trf\";a:0:{}}','no'),(37924,'cerber-antispam','a:10:{s:8:\"botscomm\";s:0:\"\";s:7:\"botsreg\";i:0;s:7:\"botsany\";i:0;s:8:\"botssafe\";i:0;s:10:\"botsnoauth\";s:0:\"\";s:10:\"customcomm\";i:0;s:9:\"botswhite\";s:0:\"\";s:8:\"spamcomm\";i:0;s:10:\"trashafter\";i:7;s:18:\"trashafter-enabled\";i:0;}','no'),(37925,'cerber-recaptcha','a:14:{s:7:\"sitekey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:9:\"invirecap\";i:0;s:10:\"recaplogin\";i:0;s:9:\"recaplost\";i:0;s:8:\"recapreg\";i:0;s:13:\"recapwoologin\";i:0;s:12:\"recapwoolost\";i:0;s:11:\"recapwooreg\";i:0;s:8:\"recapcom\";i:0;s:12:\"recapcomauth\";i:0;s:16:\"recaptcha-period\";i:60;s:16:\"recaptcha-number\";i:3;s:16:\"recaptcha-within\";i:30;}','no'),(37926,'cerber-notifications','a:11:{s:6:\"notify\";s:0:\"\";s:5:\"above\";i:3;s:5:\"email\";s:0:\"\";s:9:\"emailrate\";i:12;s:14:\"notify-new-ver\";s:1:\"1\";s:7:\"pbtoken\";s:0:\"\";s:8:\"pbdevice\";s:0:\"\";s:12:\"wreports-day\";s:1:\"1\";s:13:\"wreports-time\";i:9;s:12:\"email-report\";s:0:\"\";s:13:\"enable-report\";s:1:\"1\";}','no'),(37927,'cerber-traffic','a:22:{s:9:\"tienabled\";s:1:\"1\";s:9:\"tiipwhite\";i:0;s:7:\"tiwhite\";s:0:\"\";s:8:\"tierrmon\";s:1:\"1\";s:11:\"tierrnoauth\";s:0:\"\";s:6:\"timode\";s:1:\"3\";s:12:\"tilogrestapi\";i:0;s:11:\"tilogxmlrpc\";i:0;s:9:\"tinocrabs\";s:1:\"1\";s:8:\"tinolocs\";a:0:{}s:6:\"tinoua\";a:0:{}s:8:\"tifields\";i:0;s:6:\"timask\";s:0:\"\";s:6:\"tihdrs\";i:0;s:11:\"tihdrs_sent\";i:0;s:6:\"tisenv\";i:0;s:7:\"ticandy\";i:0;s:12:\"ticandy_sent\";i:0;s:8:\"tiphperr\";i:0;s:11:\"tithreshold\";s:0:\"\";s:9:\"tikeeprec\";i:30;s:14:\"tikeeprec_auth\";i:30;}','no'),(37928,'cerber-user_shield','a:9:{s:7:\"ds_4acc\";i:0;s:13:\"ds_regs_roles\";a:0:{}s:10:\"ds_add_acc\";a:1:{i:0;s:13:\"administrator\";}s:11:\"ds_edit_acc\";a:1:{i:0;s:13:\"administrator\";}s:11:\"ds_4acc_acl\";i:0;s:9:\"ds_4roles\";i:0;s:11:\"ds_add_role\";a:1:{i:0;s:13:\"administrator\";}s:12:\"ds_edit_role\";a:1:{i:0;s:13:\"administrator\";}s:13:\"ds_4roles_acl\";i:0;}','no'),(37929,'cerber-opt_shield','a:4:{s:8:\"ds_4opts\";i:0;s:14:\"ds_4opts_roles\";a:1:{i:0;s:13:\"administrator\";}s:13:\"ds_4opts_list\";a:7:{s:11:\"admin_email\";i:1;s:12:\"default_role\";i:1;s:4:\"home\";i:1;s:7:\"siteurl\";i:1;s:18:\"users_can_register\";i:1;s:14:\"active_plugins\";i:1;s:8:\"template\";i:1;}s:12:\"ds_4opts_acl\";i:0;}','no'),(37930,'cerber-scanner','a:10:{s:8:\"scan_cpt\";a:0:{}s:9:\"scan_uext\";a:0:{}s:12:\"scan_exclude\";a:0:{}s:9:\"scan_inew\";s:1:\"1\";s:9:\"scan_imod\";s:1:\"1\";s:10:\"scan_chmod\";i:0;s:8:\"scan_tmp\";i:0;s:9:\"scan_sess\";i:0;s:10:\"scan_debug\";i:0;s:13:\"scan_qcleanup\";s:2:\"30\";}','no'),(37931,'cerber-schedule','a:8:{s:11:\"scan_aquick\";i:0;s:10:\"scan_afull\";s:5:\"03:00\";s:18:\"scan_afull-enabled\";i:0;s:10:\"scan_reinc\";a:5:{i:3;i:1;i:4;i:1;i:15;i:1;i:50;i:1;i:51;i:1;}s:12:\"scan_relimit\";i:3;s:10:\"scan_isize\";i:0;s:12:\"scan_ierrors\";i:0;s:10:\"email-scan\";s:0:\"\";}','no'),(37932,'cerber-policies','a:9:{s:13:\"scan_delunatt\";i:0;s:11:\"scan_delupl\";a:0:{}s:14:\"scan_delunwant\";i:0;s:15:\"scan_recover_wp\";i:0;s:15:\"scan_recover_pl\";i:0;s:14:\"scan_nodeltemp\";i:0;s:14:\"scan_nodelsess\";i:0;s:13:\"scan_delexdir\";a:0:{}s:13:\"scan_delexext\";a:0:{}}','no'),(37933,'cerber-nexus_master','a:7:{s:13:\"master_tolist\";s:0:\"\";s:13:\"master_swshow\";s:0:\"\";s:14:\"master_at_site\";s:0:\"\";s:13:\"master_locale\";i:0;s:9:\"master_dt\";i:0;s:9:\"master_tz\";i:0;s:11:\"master_diag\";i:0;}','no'),(37934,'cerber-nexus-slave','a:3:{s:9:\"slave_ips\";s:0:\"\";s:12:\"slave_access\";i:2;s:10:\"slave_diag\";i:0;}','no'),(37935,'_cerber_up','a:2:{s:1:\"v\";s:5:\"8.8.5\";s:1:\"t\";i:1624621989;}','no'),(37936,'cerber_admin_info','<h1>Highlights from WP Cerber Security 8.8.5</h1><ul><li>New: Quick user activity analytics (user insights) with filtering links on the Activity and Live Traffic log pages. Select a user to see how it works.</li><li>New: Quick IP address activity and analytics (IP insights) with filtering links on the Activity and Live Traffic log pages. Select an IP address to see how it works.</li><li>Improved: The selected user profile is displayed when filtering log entries by the user login or using the username search on the Activity log page.</li><li>Improved: The IP address details and analytics are displayed when filtering log entries by the IP address or using the IP address search on the Activity log page.</li><li>Improved: Implemented AJAX rendering of the plugin admin pages for faster loading and more convenient navigation through WP Cerber’s admin pages</li><li>Improved: To load the Users admin page faster, the user table columns generated by WP Cerber are now loaded via AJAX.</li><li>Improved: Highlighting the selected filtering link in the navigation bar on the Activity and Live Traffic log pages.</li></ul><p style=\"margin-top: 18px; line-height: 1.3;\"><span class=\"dashicons-before dashicons-info-outline\"></span> <a href=\"https://wpcerber.com/?plugin_version=8.8.5\" target=\"_blank\">Read more on wpcerber.com</a></p> <h2 style=\"margin-top: 28px;\">We need your support to keep moving forward</h2>\r\n <table style=\"margin-top: 20px;\"><tr><td></td><td style=\"padding-top: 0;\">By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!\r\n </td></tr></table>\r\n \r\n <p><a href=\"https://www.trustpilot.com/evaluate/wpcerber.com\" target=\"_blank\">Leave review on Trustpilot</a>\r\n | \r\n <a href=\"https://www.g2.com/products/cerber-security-antispam-malware-scan/reviews/start\" target=\"_blank\">Leave review on G2.COM</a><p style=\"text-align:right; padding-right: 20px;\">\r\n <input type=\"button\" class=\"button button-primary cerber-dismiss\" value=\" Awesome! \"/></p>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_pluginSL_spam_captcha`
--
DROP TABLE IF EXISTS `wp_pluginSL_spam_captcha`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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 `wp_pluginSL_spam_captcha`
--
LOCK TABLES `wp_pluginSL_spam_captcha` WRITE;
/*!40000 ALTER TABLE `wp_pluginSL_spam_captcha` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_pluginSL_spam_captcha` 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=834 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 (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:9:{s:6:\"active\";b:1;s:7:\"subject\";s:27:\"FIS Awards \"[your-subject]\"\";s:6:\"sender\";s:39:\"[your-name] <wordpress@fisawards.co.uk>\";s:9:\"recipient\";s:25:\"leads@vanillacircus.co.uk\";s:4:\"body\";s:170:\"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 FIS Awards (http://fisawards.co.uk)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(7,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:27:\"FIS Awards \"[your-subject]\"\";s:6:\"sender\";s:38:\"FIS Awards <wordpress@fisawards.co.uk>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:112:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on FIS Awards (http://fisawards.co.uk)\";s:18:\"additional_headers\";s:39:\"Reply-To: zoe.allen@vanillacircus.co.uk\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(8,5,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9,5,'_additional_settings',''),(10,5,'_locale','en_US'),(39,23,'_edit_last','1'),(40,23,'_edit_lock','1530004597:1'),(41,24,'_edit_last','1'),(42,24,'_edit_lock','1606139676:1'),(43,25,'_edit_last','1'),(44,25,'_edit_lock','1606139726:1'),(45,26,'_edit_last','1'),(46,26,'_edit_lock','1508749416:1'),(53,35,'_wp_attached_file','2017/02/business.jpg'),(54,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:20:\"2017/02/business.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"business-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"business-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:20:\"business-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"business-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"business-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"business-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"business-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"business-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"20\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,36,'_wp_attached_file','2017/02/cropped-business.jpg'),(56,36,'_wp_attachment_context','custom-header'),(57,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:799;s:4:\"file\";s:28:\"2017/02/cropped-business.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-business-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-business-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"cropped-business-768x323.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"cropped-business-1024x431.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-business-1200x505.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:28:\"cropped-business-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:28:\"cropped-business-594x250.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:28:\"cropped-business-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58,36,'_wp_attachment_custom_header_last_used_businessx','1487006746'),(59,36,'_wp_attachment_is_custom_header','businessx'),(90,51,'_menu_item_type','custom'),(91,51,'_menu_item_menu_item_parent','0'),(92,51,'_menu_item_object_id','51'),(93,51,'_menu_item_object','custom'),(94,51,'_menu_item_target',''),(95,51,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(96,51,'_menu_item_xfn',''),(97,51,'_menu_item_url','http://fisawards.co.uk/'),(99,52,'_menu_item_type','post_type'),(100,52,'_menu_item_menu_item_parent','0'),(101,52,'_menu_item_object_id','23'),(102,52,'_menu_item_object','page'),(103,52,'_menu_item_target',''),(104,52,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(105,52,'_menu_item_xfn',''),(106,52,'_menu_item_url',''),(108,53,'_menu_item_type','post_type'),(109,53,'_menu_item_menu_item_parent','0'),(110,53,'_menu_item_object_id','24'),(111,53,'_menu_item_object','page'),(112,53,'_menu_item_target',''),(113,53,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(114,53,'_menu_item_xfn',''),(115,53,'_menu_item_url',''),(117,54,'_menu_item_type','post_type'),(118,54,'_menu_item_menu_item_parent','279'),(119,54,'_menu_item_object_id','25'),(120,54,'_menu_item_object','page'),(121,54,'_menu_item_target',''),(122,54,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(123,54,'_menu_item_xfn',''),(124,54,'_menu_item_url',''),(126,55,'_menu_item_type','post_type'),(127,55,'_menu_item_menu_item_parent','0'),(128,55,'_menu_item_object_id','26'),(129,55,'_menu_item_object','page'),(130,55,'_menu_item_target',''),(131,55,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(132,55,'_menu_item_xfn',''),(133,55,'_menu_item_url',''),(144,61,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/choosing-your-estate-agent-wisely-is-always-a-good-idea.html'),(145,62,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/common-problems-that-can-make-your-house-difficult-to-sell.html'),(146,63,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/common-residential-property-problems-and-how-to-solve-them.html'),(147,64,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/complaining-about-your-conveyancing-solicitors-service.html'),(148,65,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/estate-agency-contracts-have-a-7-day-cooling-off-period.html'),(149,66,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/house-selling-tips-from-master-estate-agents.html'),(150,67,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/how-to-avoid-delays-on-moving-day.html'),(151,68,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/how-to-avoid-getting-stuck-with-a-dodgy-tradesman.html'),(152,69,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/how-to-deal-with-mortgage-arrears.html'),(153,70,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/how-to-find-the-most-suitable-mortgage.html'),(154,71,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/if-your-house-isnt-selling-should-you-change-your-estate-agent.html'),(156,73,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/rejecting-an-estate-agents-claim-for-commission.html'),(160,77,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/understanding-the-conveyancing-process.html'),(161,78,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/understanding-the-property-misdescriptions-act-1991.html'),(162,79,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/what-to-do-if-a-buyers-valuation-or-structural-survey-highlights-problems-with-your-house.html'),(163,80,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/what-to-do-if-your-house-will-not-sell.html'),(164,81,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/what-to-do-when-good-house-sales-turn-bad.html'),(165,82,'URL_before_HTML_Import','/var/www/fisawards.co.uk/html/content/who-to-inform-when-moving-house.html'),(186,64,'_edit_lock','1508750392:1'),(187,64,'_edit_last','1'),(190,64,'wpmdr_menu','1'),(191,64,'businessx_single_hide_sidebar','0'),(192,64,'_yoast_wpseo_content_score','30'),(193,64,'_yoast_wpseo_primary_category',''),(194,65,'_edit_lock','1508750313:1'),(195,65,'_edit_last','1'),(198,65,'wpmdr_menu','1'),(199,65,'businessx_single_hide_sidebar','0'),(200,65,'_yoast_wpseo_content_score','30'),(201,65,'_yoast_wpseo_primary_category',''),(220,62,'_edit_lock','1511431931:1'),(221,62,'_edit_last','1'),(224,62,'wpmdr_menu','1'),(225,62,'businessx_single_hide_sidebar','0'),(226,62,'_yoast_wpseo_content_score','90'),(227,62,'_yoast_wpseo_primary_category',''),(228,61,'_edit_lock','1508750635:1'),(229,61,'_edit_last','1'),(232,61,'wpmdr_menu','1'),(233,61,'businessx_single_hide_sidebar','0'),(234,61,'_yoast_wpseo_content_score','60'),(235,61,'_yoast_wpseo_primary_category',''),(236,77,'_edit_lock','1508750790:1'),(237,77,'_edit_last','1'),(240,77,'wpmdr_menu','1'),(241,77,'businessx_single_hide_sidebar','0'),(242,77,'_yoast_wpseo_content_score','30'),(243,77,'_yoast_wpseo_primary_category',''),(244,70,'_edit_lock','1508748857:1'),(245,70,'_edit_last','1'),(248,70,'wpmdr_menu','1'),(249,70,'businessx_single_hide_sidebar','0'),(250,70,'_yoast_wpseo_content_score','30'),(251,70,'_yoast_wpseo_primary_category',''),(252,82,'_edit_lock','1508748897:1'),(253,82,'_edit_last','1'),(256,82,'wpmdr_menu','1'),(257,82,'businessx_single_hide_sidebar','0'),(258,82,'_yoast_wpseo_content_score','30'),(259,82,'_yoast_wpseo_primary_category',''),(260,81,'_edit_lock','1508748927:1'),(261,81,'_edit_last','1'),(264,81,'wpmdr_menu','1'),(265,81,'businessx_single_hide_sidebar','0'),(266,81,'_yoast_wpseo_content_score','30'),(267,81,'_yoast_wpseo_primary_category',''),(268,80,'_edit_lock','1559898654:1'),(269,80,'_edit_last','1'),(272,80,'wpmdr_menu','1'),(273,80,'businessx_single_hide_sidebar','0'),(274,80,'_yoast_wpseo_content_score','30'),(275,80,'_yoast_wpseo_primary_category',''),(276,79,'_edit_lock','1510244190:1'),(277,79,'_edit_last','1'),(280,79,'wpmdr_menu','1'),(281,79,'businessx_single_hide_sidebar','0'),(282,79,'_yoast_wpseo_content_score','60'),(283,79,'_yoast_wpseo_primary_category',''),(284,78,'_edit_lock','1508749027:1'),(285,78,'_edit_last','1'),(288,78,'wpmdr_menu','1'),(289,78,'businessx_single_hide_sidebar','0'),(290,78,'_yoast_wpseo_content_score','30'),(291,78,'_yoast_wpseo_primary_category',''),(292,73,'_edit_lock','1508749066:1'),(293,73,'_edit_last','1'),(296,73,'wpmdr_menu','1'),(297,73,'businessx_single_hide_sidebar','0'),(298,73,'_yoast_wpseo_content_score','30'),(299,73,'_yoast_wpseo_primary_category',''),(300,71,'_edit_lock','1508749097:1'),(301,71,'_edit_last','1'),(304,71,'wpmdr_menu','1'),(305,71,'businessx_single_hide_sidebar','0'),(306,71,'_yoast_wpseo_content_score','30'),(307,71,'_yoast_wpseo_primary_category',''),(308,69,'_edit_lock','1508749130:1'),(309,69,'_edit_last','1'),(312,69,'wpmdr_menu','1'),(313,69,'businessx_single_hide_sidebar','0'),(314,69,'_yoast_wpseo_content_score','30'),(315,69,'_yoast_wpseo_primary_category',''),(316,68,'_edit_lock','1544527593:1'),(317,68,'_edit_last','1'),(320,68,'wpmdr_menu','1'),(321,68,'businessx_single_hide_sidebar','0'),(322,68,'_yoast_wpseo_content_score','60'),(323,68,'_yoast_wpseo_primary_category',''),(324,67,'_edit_lock','1549623529:1'),(325,67,'_edit_last','1'),(328,67,'wpmdr_menu','1'),(329,67,'businessx_single_hide_sidebar','0'),(330,67,'_yoast_wpseo_content_score','60'),(331,67,'_yoast_wpseo_primary_category','4'),(332,66,'_edit_lock','1510319915:1'),(333,66,'_edit_last','1'),(336,66,'wpmdr_menu','1'),(337,66,'businessx_single_hide_sidebar','0'),(338,66,'_yoast_wpseo_content_score','30'),(339,66,'_yoast_wpseo_primary_category',''),(340,63,'_edit_lock','1508749262:1'),(341,63,'_edit_last','1'),(344,63,'wpmdr_menu','1'),(345,63,'businessx_single_hide_sidebar','0'),(346,63,'_yoast_wpseo_content_score','60'),(347,63,'_yoast_wpseo_primary_category',''),(350,23,'_wp_page_template','default'),(351,23,'businessx_page_hide_sidebar','0'),(352,23,'_yoast_wpseo_content_score','90'),(356,24,'_wp_page_template','default'),(357,24,'businessx_page_hide_sidebar','0'),(358,24,'_yoast_wpseo_content_score','30'),(362,25,'_wp_page_template','default'),(363,25,'businessx_page_hide_sidebar','0'),(364,25,'_yoast_wpseo_content_score','30'),(368,26,'_wp_page_template','default'),(369,26,'businessx_page_hide_sidebar','0'),(370,26,'_yoast_wpseo_content_score','30'),(374,118,'_wp_attached_file','2017/10/1proeprty.jpg'),(375,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:21:\"2017/10/1proeprty.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"1proeprty-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"1proeprty-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:21:\"1proeprty-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:21:\"1proeprty-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:21:\"1proeprty-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:21:\"1proeprty-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS 500D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"1.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(376,119,'_wp_attached_file','2017/10/111.jpe'),(377,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:223;s:6:\"height\";i:226;s:4:\"file\";s:15:\"2017/10/111.jpe\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"111-150x150.jpe\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(378,120,'_wp_attached_file','2017/10/11111.png'),(379,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:708;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2017/10/11111.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"11111-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"11111-295x300.png\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:17:\"11111-630x415.png\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:17:\"11111-594x604.png\";s:5:\"width\";i:594;s:6:\"height\";i:604;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:17:\"11111-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(380,121,'_wp_attached_file','2017/10/574407515_1280x720.jpg'),(381,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:30:\"2017/10/574407515_1280x720.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"574407515_1280x720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"574407515_1280x720-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:30:\"574407515_1280x720-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"574407515_1280x720-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"574407515_1280x720-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:30:\"574407515_1280x720-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:30:\"574407515_1280x720-594x334.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:30:\"574407515_1280x720-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(382,122,'_wp_attached_file','2017/10/AM8346790File-photo-dated-1.jpg'),(383,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:2000;s:4:\"file\";s:39:\"2017/10/AM8346790File-photo-dated-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"AM8346790File-photo-dated-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"AM8346790File-photo-dated-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"AM8346790File-photo-dated-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"AM8346790File-photo-dated-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"AM8346790File-photo-dated-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:39:\"AM8346790File-photo-dated-1-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:39:\"AM8346790File-photo-dated-1-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:39:\"AM8346790File-photo-dated-1-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:2:\"PA\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:584:\"File photo dated 12/10/2010 of For Sales signs. The number of potential home buyers looking to view properties dipped in August as the Olympics provided a distraction - although overall sales held firm, surveyors reported today. PRESS ASSOCIATION Photo. Issue date: Tuesday September 11, 2012. In the three months to August, chartered surveyors sold on average 7.5% of the homes on their books per month, a figure which has remained consistent throughout 2012, the latest RICS UK housing market survey said. See PA story ECONOMY House. Photo credit should read: Rebekah Downes/PA Wire\";s:17:\"created_timestamp\";s:10:\"1347376500\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:12:\"House prices\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(384,123,'_wp_attached_file','2017/10/btl.jpg'),(385,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:685;s:6:\"height\";i:1024;s:4:\"file\";s:15:\"2017/10/btl.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"btl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"btl-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"btl-685x1024.jpg\";s:5:\"width\";i:685;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:15:\"btl-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:15:\"btl-594x888.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:888;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:15:\"btl-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Alan Cleaver\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:11:\"UK currency\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"Alan Cleaver\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:5:\"Coins\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(386,124,'_wp_attached_file','2017/10/build.jpg'),(387,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:616;s:4:\"file\";s:17:\"2017/10/build.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"build-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"build-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"build-768x493.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:17:\"build-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:17:\"build-594x381.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:17:\"build-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(388,125,'_wp_attached_file','2017/10/building.jpg'),(389,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:638;s:4:\"file\";s:20:\"2017/10/building.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"building-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"building-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"building-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"building-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"building-594x395.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"building-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(390,126,'_wp_attached_file','2017/10/checlis.jpg'),(391,126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:19:\"2017/10/checlis.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"checlis-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"checlis-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:19:\"checlis-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"checlis-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:19:\"checlis-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:19:\"checlis-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:19:\"checlis-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(392,127,'_wp_attached_file','2017/10/conservatory.jpg'),(393,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2017/10/conservatory.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"conservatory-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"conservatory-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"conservatory-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:24:\"conservatory-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:24:\"conservatory-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:24:\"conservatory-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:19:\"0.00081499592502037\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(394,128,'_wp_attached_file','2017/10/croft-house.jpg'),(395,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:749;s:4:\"file\";s:23:\"2017/10/croft-house.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"croft-house-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"croft-house-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"croft-house-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"croft-house-1024x383.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"croft-house-1200x449.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:23:\"croft-house-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:23:\"croft-house-594x222.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:23:\"croft-house-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(396,129,'_wp_attached_file','2017/10/development.jpg'),(397,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:638;s:4:\"file\";s:23:\"2017/10/development.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"development-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"development-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"development-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:23:\"development-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:23:\"development-594x395.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:23:\"development-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(398,130,'_wp_attached_file','2017/10/domestic-services.jpg'),(399,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:817;s:4:\"file\";s:29:\"2017/10/domestic-services.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"domestic-services-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"domestic-services-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"domestic-services-768x613.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"domestic-services-1024x817.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:817;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:29:\"domestic-services-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:29:\"domestic-services-594x474.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:29:\"domestic-services-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(400,131,'_wp_attached_file','2017/10/edge-of-flats.jpg'),(401,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:639;s:4:\"file\";s:25:\"2017/10/edge-of-flats.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"edge-of-flats-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"edge-of-flats-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:25:\"edge-of-flats-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:25:\"edge-of-flats-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:25:\"edge-of-flats-594x395.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:25:\"edge-of-flats-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(402,132,'_wp_attached_file','2017/10/energy-efficiency.png'),(403,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:539;s:4:\"file\";s:29:\"2017/10/energy-efficiency.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"energy-efficiency-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"energy-efficiency-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"energy-efficiency-768x431.png\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:29:\"energy-efficiency-630x415.png\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:29:\"energy-efficiency-594x334.png\";s:5:\"width\";i:594;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:29:\"energy-efficiency-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(404,133,'_wp_attached_file','2017/10/energy-saving.jpg'),(405,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:423;s:4:\"file\";s:25:\"2017/10/energy-saving.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"energy-saving-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"energy-saving-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"energy-saving-768x338.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:25:\"energy-saving-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:25:\"energy-saving-594x262.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:25:\"energy-saving-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"22\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 70D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(406,134,'_wp_attached_file','2017/10/for-sale.jpg'),(407,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2017/10/for-sale.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"for-sale-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"for-sale-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"for-sale-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"for-sale-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"for-sale-594x594.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"for-sale-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(408,135,'_wp_attached_file','2017/10/hh.jpg'),(409,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:279;s:4:\"file\";s:14:\"2017/10/hh.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"hh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"hh-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:14:\"hh-630x279.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:14:\"hh-594x259.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:14:\"hh-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"FinePix E900\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1190649267\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.2\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:18:\"0.0022222222222222\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(410,136,'_wp_attached_file','2017/10/home-office.jpeg'),(411,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6016;s:6:\"height\";i:4000;s:4:\"file\";s:24:\"2017/10/home-office.jpeg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-office-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-office-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-office-768x511.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-office-1024x681.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"home-office-1200x798.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:24:\"home-office-630x415.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:24:\"home-office-594x395.jpeg\";s:5:\"width\";i:594;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:24:\"home-office-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1457202672\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(412,137,'_wp_attached_file','2017/10/houseforsale.png'),(413,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:571;s:4:\"file\";s:24:\"2017/10/houseforsale.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"houseforsale-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"houseforsale-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"houseforsale-768x457.png\";s:5:\"width\";i:768;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:24:\"houseforsale-630x415.png\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:24:\"houseforsale-594x353.png\";s:5:\"width\";i:594;s:6:\"height\";i:353;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:24:\"houseforsale-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(414,138,'_wp_attached_file','2017/10/household-waste.jpg'),(415,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:349;s:4:\"file\";s:27:\"2017/10/household-waste.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"household-waste-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"household-waste-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:27:\"household-waste-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:75:\"Radópakoló lomtalanítás, épületbontás, szelektív hulladékgyűjtés\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:75:\"Radópakoló lomtalanítás, épületbontás, szelektív hulladékgyűjtés\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:5:{i:0;s:14:\"költöztetés\";i:1;s:14:\"lomtalanítás\";i:2;s:12:\"Radópakoló\";i:3;s:29:\"szelektív hulladékgyűjtés\";i:4;s:15:\"épületbontás\";}}}'),(416,139,'_wp_attached_file','2017/10/house-lake.jpg'),(417,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2017/10/house-lake.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"house-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:22:\"house-lake-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"house-lake-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:22:\"house-lake-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:22:\"house-lake-594x334.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:22:\"house-lake-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:2:\"A7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(418,140,'_wp_attached_file','2017/10/houses.jpg'),(419,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:18:\"2017/10/houses.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"houses-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"houses-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:18:\"houses-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:18:\"houses-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:18:\"houses-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(420,141,'_wp_attached_file','2017/10/identify-property.jpg'),(421,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:865;s:4:\"file\";s:29:\"2017/10/identify-property.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"identify-property-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"identify-property-300x253.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"identify-property-768x649.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:649;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"identify-property-1024x865.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:865;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:29:\"identify-property-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:29:\"identify-property-594x502.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:29:\"identify-property-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(422,142,'_wp_attached_file','2017/10/images.jpe'),(423,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:187;s:4:\"file\";s:18:\"2017/10/images.jpe\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"images-150x150.jpe\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:18:\"images-250x187.jpe\";s:5:\"width\";i:250;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(424,143,'_wp_attached_file','2017/10/images1.jpe'),(425,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"height\";i:173;s:4:\"file\";s:19:\"2017/10/images1.jpe\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"images1-150x150.jpe\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:19:\"images1-250x173.jpe\";s:5:\"width\";i:250;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(426,144,'_wp_attached_file','2017/10/IMG_5591.jpg'),(427,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4272;s:6:\"height\";i:2848;s:4:\"file\";s:20:\"2017/10/IMG_5591.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_5591-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_5591-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:20:\"IMG_5591-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_5591-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_5591-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"IMG_5591-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"IMG_5591-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"IMG_5591-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1369247304\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(428,145,'_wp_attached_file','2017/10/IMG_5594.jpg'),(429,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4272;s:6:\"height\";i:2848;s:4:\"file\";s:20:\"2017/10/IMG_5594.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_5594-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_5594-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:20:\"IMG_5594-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_5594-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_5594-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"IMG_5594-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"IMG_5594-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"IMG_5594-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1369247321\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(430,146,'_wp_attached_file','2017/10/keys.jpg'),(431,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:16:\"2017/10/keys.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"keys-150x150.jpg\";s:5:\"width\";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:\"keys-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:16:\"keys-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:16:\"keys-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:16:\"keys-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:16:\"keys-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NX300M\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(432,147,'_wp_attached_file','2017/10/lease.jpg'),(433,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:17:\"2017/10/lease.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"lease-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"lease-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:17:\"lease-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"lease-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:17:\"lease-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:17:\"lease-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:17:\"lease-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(434,148,'_wp_attached_file','2017/10/list-of-flats.jpg'),(435,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:635;s:4:\"file\";s:25:\"2017/10/list-of-flats.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"list-of-flats-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"list-of-flats-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"list-of-flats-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:25:\"list-of-flats-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:25:\"list-of-flats-594x393.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:25:\"list-of-flats-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(436,149,'_wp_attached_file','2017/10/loan.jpg'),(437,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:565;s:4:\"file\";s:16:\"2017/10/loan.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"loan-150x150.jpg\";s:5:\"width\";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:\"loan-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"loan-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:16:\"loan-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:16:\"loan-594x350.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:16:\"loan-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(438,150,'_wp_attached_file','2017/10/mortgage.jpg'),(439,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:620;s:6:\"height\";i:388;s:4:\"file\";s:20:\"2017/10/mortgage.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mortgage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"mortgage-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"mortgage-594x372.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"mortgage-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(440,151,'_wp_attached_file','2017/10/mortgage2.jpg'),(441,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:21:\"2017/10/mortgage2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"mortgage2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"mortgage2-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:21:\"mortgage2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:21:\"mortgage2-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:21:\"mortgage2-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:21:\"mortgage2-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"25\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 70D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(442,152,'_wp_attached_file','2017/10/mortgage12.jpg'),(443,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:22:\"2017/10/mortgage12.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"mortgage12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"mortgage12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"mortgage12-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:22:\"mortgage12-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:22:\"mortgage12-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:22:\"mortgage12-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(444,153,'_wp_attached_file','2017/10/new-home-construction-1495982297idb.jpg'),(445,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:47:\"2017/10/new-home-construction-1495982297idb.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"new-home-construction-1495982297idb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"new-home-construction-1495982297idb-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:47:\"new-home-construction-1495982297idb-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"new-home-construction-1495982297idb-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"new-home-construction-1495982297idb-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:47:\"new-home-construction-1495982297idb-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:47:\"new-home-construction-1495982297idb-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:47:\"new-home-construction-1495982297idb-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(446,154,'_wp_attached_file','2017/10/NUTS_3_regions_of_South_East_England_2015_map.svg_.png'),(447,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1425;s:6:\"height\";i:1141;s:4:\"file\";s:62:\"2017/10/NUTS_3_regions_of_South_East_England_2015_map.svg_.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-768x615.png\";s:5:\"width\";i:768;s:6:\"height\";i:615;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-1024x820.png\";s:5:\"width\";i:1024;s:6:\"height\";i:820;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:63:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-1200x961.png\";s:5:\"width\";i:1200;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:62:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-630x415.png\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:62:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-594x476.png\";s:5:\"width\";i:594;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:62:\"NUTS_3_regions_of_South_East_England_2015_map.svg_-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(448,155,'_wp_attached_file','2017/10/office-581131_960_720.jpg'),(449,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:33:\"2017/10/office-581131_960_720.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"office-581131_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:\"office-581131_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:\"office-581131_960_720-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:33:\"office-581131_960_720-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:33:\"office-581131_960_720-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:33:\"office-581131_960_720-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(450,156,'_wp_attached_file','2017/10/P1010005.jpg'),(451,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4608;s:6:\"height\";i:3456;s:4:\"file\";s:20:\"2017/10/P1010005.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1010005-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"P1010005-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:20:\"P1010005-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"P1010005-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"P1010005-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"P1010005-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"P1010005-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"P1010005-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DMC-FS45\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370228757\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(452,157,'_wp_attached_file','2017/10/P1010008.jpg'),(453,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4608;s:6:\"height\";i:3456;s:4:\"file\";s:20:\"2017/10/P1010008.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1010008-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"P1010008-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:20:\"P1010008-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"P1010008-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"P1010008-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"P1010008-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"P1010008-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"P1010008-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DMC-FS45\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370228795\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(454,158,'_wp_attached_file','2017/10/property-development.jpg'),(455,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:32:\"2017/10/property-development.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"property-development-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"property-development-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:32:\"property-development-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:32:\"property-development-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:32:\"property-development-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:32:\"property-development-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(456,159,'_wp_attached_file','2017/10/qq.jpg'),(457,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2017/10/qq.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"qq-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"qq-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:14:\"qq-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:14:\"qq-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:14:\"qq-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(458,160,'_wp_attached_file','2017/10/red-bricks.jpg'),(459,160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2017/10/red-bricks.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"red-bricks-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"red-bricks-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"red-bricks-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:22:\"red-bricks-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:22:\"red-bricks-594x334.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:22:\"red-bricks-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"ILCE-7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(460,161,'_wp_attached_file','2017/10/removals.jpg'),(461,161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:20:\"2017/10/removals.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"removals-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"removals-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:20:\"removals-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"removals-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"removals-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"removals-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"removals-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(462,162,'_wp_attached_file','2017/10/renovation.jpg'),(463,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2017/10/renovation.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"renovation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"renovation-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"renovation-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:22:\"renovation-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:22:\"renovation-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:22:\"renovation-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(464,163,'_wp_attached_file','2017/10/ric-surveyor.png'),(465,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:70;s:4:\"file\";s:24:\"2017/10/ric-surveyor.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"ric-surveyor-150x70.png\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"ric-surveyor-300x40.png\";s:5:\"width\";i:300;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:23:\"ric-surveyor-250x70.png\";s:5:\"width\";i:250;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(466,164,'_wp_attached_file','2017/10/scaff.jpg'),(467,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:636;s:4:\"file\";s:17:\"2017/10/scaff.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"scaff-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"scaff-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"scaff-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:17:\"scaff-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:17:\"scaff-594x394.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:17:\"scaff-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(468,165,'_wp_attached_file','2017/10/scaffolding.jpg'),(469,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2017/10/scaffolding.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"scaffolding-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"scaffolding-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:23:\"scaffolding-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:23:\"scaffolding-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:23:\"scaffolding-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:23:\"scaffolding-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(470,166,'_wp_attached_file','2017/10/surveyor.jpg'),(471,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:638;s:4:\"file\";s:20:\"2017/10/surveyor.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"surveyor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"surveyor-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"surveyor-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"surveyor-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"surveyor-594x395.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"surveyor-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(472,167,'_wp_attached_file','2017/10/the-property-1540070_960_720.jpg'),(473,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:40:\"2017/10/the-property-1540070_960_720.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"the-property-1540070_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:40:\"the-property-1540070_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:40:\"the-property-1540070_960_720-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:40:\"the-property-1540070_960_720-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:40:\"the-property-1540070_960_720-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:40:\"the-property-1540070_960_720-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(474,168,'_wp_attached_file','2017/10/valuation.jpg'),(475,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2017/10/valuation.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"valuation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"valuation-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:21:\"valuation-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"valuation-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"valuation-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:21:\"valuation-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:21:\"valuation-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:21:\"valuation-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(476,25,'_thumbnail_id','130'),(477,82,'_thumbnail_id','126'),(478,68,'_thumbnail_id','167'),(479,61,'_thumbnail_id','134'),(480,70,'_thumbnail_id','122'),(481,79,'_thumbnail_id','135'),(482,81,'_thumbnail_id','139'),(483,64,'_thumbnail_id','147'),(484,24,'_thumbnail_id','131'),(485,26,'_thumbnail_id','121'),(486,63,'_thumbnail_id','139'),(487,62,'_thumbnail_id','125'),(488,80,'_thumbnail_id','150'),(489,71,'_thumbnail_id','154'),(490,67,'_thumbnail_id','121'),(491,23,'_thumbnail_id','149'),(492,66,'_thumbnail_id','150'),(493,78,'_thumbnail_id','167'),(494,73,'_thumbnail_id','147'),(495,69,'_thumbnail_id','140'),(496,77,'_thumbnail_id','143'),(497,65,'_thumbnail_id','122'),(500,171,'_menu_item_type','post_type'),(501,171,'_menu_item_menu_item_parent','178'),(502,171,'_menu_item_object_id','65'),(503,171,'_menu_item_object','post'),(504,171,'_menu_item_target',''),(505,171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(506,171,'_menu_item_xfn',''),(507,171,'_menu_item_url',''),(508,172,'_menu_item_type','post_type'),(509,172,'_menu_item_menu_item_parent','178'),(510,172,'_menu_item_object_id','79'),(511,172,'_menu_item_object','post'),(512,172,'_menu_item_target',''),(513,172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(514,172,'_menu_item_xfn',''),(515,172,'_menu_item_url',''),(518,173,'_edit_last','1'),(519,173,'_edit_lock','1508749630:1'),(520,173,'_wp_page_template','default'),(521,173,'businessx_page_hide_sidebar','0'),(522,173,'_yoast_wpseo_content_score','30'),(523,175,'_edit_last','1'),(524,175,'_edit_lock','1606139689:1'),(525,175,'_wp_page_template','default'),(526,175,'businessx_page_hide_sidebar','0'),(527,175,'_yoast_wpseo_content_score','60'),(528,178,'_menu_item_type','post_type'),(529,178,'_menu_item_menu_item_parent','0'),(530,178,'_menu_item_object_id','175'),(531,178,'_menu_item_object','page'),(532,178,'_menu_item_target',''),(533,178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(534,178,'_menu_item_xfn',''),(535,178,'_menu_item_url',''),(536,179,'_menu_item_type','post_type'),(537,179,'_menu_item_menu_item_parent','0'),(538,179,'_menu_item_object_id','173'),(539,179,'_menu_item_object','page'),(540,179,'_menu_item_target',''),(541,179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(542,179,'_menu_item_xfn',''),(543,179,'_menu_item_url',''),(550,173,'wpmdr_menu','1'),(553,25,'wpmdr_menu','1'),(554,23,'wpmdr_menu','1'),(555,26,'wpmdr_menu','1'),(556,24,'wpmdr_menu','1'),(557,175,'wpmdr_menu','1'),(558,221,'_edit_last','1'),(559,221,'_edit_lock','1538657974:1'),(561,221,'businessx_single_hide_sidebar','0'),(562,221,'_yoast_wpseo_content_score','60'),(563,221,'_yoast_wpseo_primary_category','3'),(566,221,'_thumbnail_id','150'),(568,221,'wpmdr_menu','1'),(569,247,'_edit_last','1'),(570,247,'_edit_lock','1606139713:1'),(571,248,'_wp_attached_file','2018/11/serviced-office.jpg'),(572,248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:639;s:4:\"file\";s:27:\"2018/11/serviced-office.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"serviced-office-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"serviced-office-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:27:\"serviced-office-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:27:\"serviced-office-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:27:\"serviced-office-594x395.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:27:\"serviced-office-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;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:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(573,248,'_wp_attachment_image_alt','office-productivity'),(574,247,'_thumbnail_id','248'),(575,247,'_wp_page_template','default'),(576,247,'businessx_page_hide_sidebar','0'),(577,247,'_yoast_wpseo_content_score','30'),(578,247,'wpmdr_menu','1'),(579,251,'_menu_item_type','post_type'),(580,251,'_menu_item_menu_item_parent','55'),(581,251,'_menu_item_object_id','247'),(582,251,'_menu_item_object','page'),(583,251,'_menu_item_target',''),(584,251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(585,251,'_menu_item_xfn',''),(586,251,'_menu_item_url',''),(589,68,'_oembed_dcbe4efdecd2bdd4b62d6f851e46c5e4','<blockquote data-secret=\"nsuRuQkkYU\" class=\"wp-embedded-content\"><a href=\"https://www.allstarsystems.co.uk/\">Home</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://www.allstarsystems.co.uk/embed/#?secret=nsuRuQkkYU\" data-secret=\"nsuRuQkkYU\" width=\"600\" height=\"338\" title=\"“Home” — All Star Systems\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(590,68,'_oembed_time_dcbe4efdecd2bdd4b62d6f851e46c5e4','1544527171'),(591,263,'_menu_item_type','post_type'),(592,263,'_menu_item_menu_item_parent','52'),(593,263,'_menu_item_object_id','221'),(594,263,'_menu_item_object','post'),(595,263,'_menu_item_target',''),(596,263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(597,263,'_menu_item_xfn',''),(598,263,'_menu_item_url',''),(600,264,'_menu_item_type','post_type'),(601,264,'_menu_item_menu_item_parent','55'),(602,264,'_menu_item_object_id','65'),(603,264,'_menu_item_object','post'),(604,264,'_menu_item_target',''),(605,264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(606,264,'_menu_item_xfn',''),(607,264,'_menu_item_url',''),(609,265,'_menu_item_type','post_type'),(610,265,'_menu_item_menu_item_parent','178'),(611,265,'_menu_item_object_id','64'),(612,265,'_menu_item_object','post'),(613,265,'_menu_item_target',''),(614,265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(615,265,'_menu_item_xfn',''),(616,265,'_menu_item_url',''),(618,266,'_menu_item_type','post_type'),(619,266,'_menu_item_menu_item_parent','52'),(620,266,'_menu_item_object_id','62'),(621,266,'_menu_item_object','post'),(622,266,'_menu_item_target',''),(623,266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(624,266,'_menu_item_xfn',''),(625,266,'_menu_item_url',''),(627,267,'_menu_item_type','post_type'),(628,267,'_menu_item_menu_item_parent','53'),(629,267,'_menu_item_object_id','61'),(630,267,'_menu_item_object','post'),(631,267,'_menu_item_target',''),(632,267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(633,267,'_menu_item_xfn',''),(634,267,'_menu_item_url',''),(636,268,'_menu_item_type','post_type'),(637,268,'_menu_item_menu_item_parent','279'),(638,268,'_menu_item_object_id','77'),(639,268,'_menu_item_object','post'),(640,268,'_menu_item_target',''),(641,268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(642,268,'_menu_item_xfn',''),(643,268,'_menu_item_url',''),(645,269,'_menu_item_type','post_type'),(646,269,'_menu_item_menu_item_parent','53'),(647,269,'_menu_item_object_id','82'),(648,269,'_menu_item_object','post'),(649,269,'_menu_item_target',''),(650,269,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(651,269,'_menu_item_xfn',''),(652,269,'_menu_item_url',''),(654,270,'_menu_item_type','post_type'),(655,270,'_menu_item_menu_item_parent','279'),(656,270,'_menu_item_object_id','81'),(657,270,'_menu_item_object','post'),(658,270,'_menu_item_target',''),(659,270,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(660,270,'_menu_item_xfn',''),(661,270,'_menu_item_url',''),(663,271,'_menu_item_type','post_type'),(664,271,'_menu_item_menu_item_parent','266'),(665,271,'_menu_item_object_id','80'),(666,271,'_menu_item_object','post'),(667,271,'_menu_item_target',''),(668,271,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(669,271,'_menu_item_xfn',''),(670,271,'_menu_item_url',''),(672,272,'_menu_item_type','post_type'),(673,272,'_menu_item_menu_item_parent','172'),(674,272,'_menu_item_object_id','79'),(675,272,'_menu_item_object','post'),(676,272,'_menu_item_target',''),(677,272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(678,272,'_menu_item_xfn',''),(679,272,'_menu_item_url',''),(681,273,'_menu_item_type','post_type'),(682,273,'_menu_item_menu_item_parent','178'),(683,273,'_menu_item_object_id','78'),(684,273,'_menu_item_object','post'),(685,273,'_menu_item_target',''),(686,273,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(687,273,'_menu_item_xfn',''),(688,273,'_menu_item_url',''),(690,274,'_menu_item_type','post_type'),(691,274,'_menu_item_menu_item_parent','279'),(692,274,'_menu_item_object_id','73'),(693,274,'_menu_item_object','post'),(694,274,'_menu_item_target',''),(695,274,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(696,274,'_menu_item_xfn',''),(697,274,'_menu_item_url',''),(699,275,'_menu_item_type','post_type'),(700,275,'_menu_item_menu_item_parent','52'),(701,275,'_menu_item_object_id','71'),(702,275,'_menu_item_object','post'),(703,275,'_menu_item_target',''),(704,275,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(705,275,'_menu_item_xfn',''),(706,275,'_menu_item_url',''),(708,276,'_menu_item_type','post_type'),(709,276,'_menu_item_menu_item_parent','279'),(710,276,'_menu_item_object_id','69'),(711,276,'_menu_item_object','post'),(712,276,'_menu_item_target',''),(713,276,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(714,276,'_menu_item_xfn',''),(715,276,'_menu_item_url',''),(717,277,'_edit_last','1'),(718,277,'_wp_page_template','default'),(719,277,'businessx_page_hide_sidebar','0'),(720,277,'_yoast_wpseo_content_score','30'),(721,277,'_edit_lock','1549031095:1'),(722,279,'_menu_item_type','post_type'),(723,279,'_menu_item_menu_item_parent','0'),(724,279,'_menu_item_object_id','277'),(725,279,'_menu_item_object','page'),(726,279,'_menu_item_target',''),(727,279,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(728,279,'_menu_item_xfn',''),(729,279,'_menu_item_url',''),(731,280,'_edit_last','1'),(732,280,'_edit_lock','1549033275:1'),(733,281,'_wp_attached_file','2019/02/truck-3910170_960_720.jpg'),(734,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:33:\"2019/02/truck-3910170_960_720.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"truck-3910170_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:\"truck-3910170_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:\"truck-3910170_960_720-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:33:\"truck-3910170_960_720-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:33:\"truck-3910170_960_720-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:33:\"truck-3910170_960_720-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"75\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(735,281,'_wp_attachment_image_alt','moving-out'),(736,280,'_wp_page_template','default'),(737,280,'businessx_page_hide_sidebar','0'),(738,280,'_yoast_wpseo_content_score','30'),(739,283,'_menu_item_type','post_type'),(740,283,'_menu_item_menu_item_parent','53'),(741,283,'_menu_item_object_id','280'),(742,283,'_menu_item_object','page'),(743,283,'_menu_item_target',''),(744,283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(745,283,'_menu_item_xfn',''),(746,283,'_menu_item_url',''),(748,280,'wpmdr_menu','1'),(749,277,'wpmdr_menu','1'),(752,289,'_edit_last','1'),(753,289,'_edit_lock','1560949957:1'),(754,290,'_wp_attached_file','2019/06/data-cabling.jpg'),(755,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:24:\"2019/06/data-cabling.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"data-cabling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"data-cabling-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:24:\"data-cabling-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:24:\"data-cabling-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:24:\"data-cabling-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:24:\"data-cabling-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(756,291,'_wp_attached_file','2019/06/office-data-cabling.jpg'),(757,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:698;s:4:\"file\";s:31:\"2019/06/office-data-cabling.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"office-data-cabling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"office-data-cabling-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"office-data-cabling-768x558.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:31:\"office-data-cabling-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:31:\"office-data-cabling-594x432.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:31:\"office-data-cabling-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-GX8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(758,291,'_wp_attachment_image_alt','office-data-cabling'),(759,289,'_thumbnail_id','291'),(760,289,'businessx_single_hide_sidebar','0'),(761,289,'_yoast_wpseo_content_score','30'),(762,289,'_yoast_wpseo_primary_category',''),(763,289,'wpmdr_menu','1'),(765,296,'_menu_item_type','post_type'),(766,296,'_menu_item_menu_item_parent','301'),(767,296,'_menu_item_object_id','289'),(768,296,'_menu_item_object','post'),(769,296,'_menu_item_target',''),(770,296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(771,296,'_menu_item_xfn',''),(772,296,'_menu_item_url',''),(775,297,'_edit_last','1'),(776,297,'_edit_lock','1571674105:1'),(777,298,'_wp_attached_file','2019/06/boost-office-productivity.jpg'),(778,298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2019/06/boost-office-productivity.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"boost-office-productivity-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"boost-office-productivity-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:37:\"boost-office-productivity-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:37:\"boost-office-productivity-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:37:\"boost-office-productivity-594x396.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:37:\"boost-office-productivity-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(779,298,'_wp_attachment_image_alt','boost-office-productivity'),(780,297,'_thumbnail_id','298'),(781,297,'_wp_page_template','default'),(782,297,'businessx_page_hide_sidebar','0'),(783,297,'_yoast_wpseo_content_score','90'),(784,301,'_menu_item_type','post_type'),(785,301,'_menu_item_menu_item_parent','0'),(786,301,'_menu_item_object_id','297'),(787,301,'_menu_item_object','page'),(788,301,'_menu_item_target',''),(789,301,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(790,301,'_menu_item_xfn',''),(791,301,'_menu_item_url',''),(794,297,'wpmdr_menu','1'),(795,305,'_wp_attached_file','2019/06/meetings.jpg'),(796,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:643;s:4:\"file\";s:20:\"2019/06/meetings.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"meetings-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"meetings-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"meetings-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:20:\"meetings-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:20:\"meetings-594x398.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:20:\"meetings-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(797,142,'wpmdr_menu','1'),(798,313,'_edit_last','1'),(799,313,'_edit_lock','1597937873:1'),(800,313,'_wp_page_template','default'),(801,313,'businessx_page_hide_sidebar','0'),(802,313,'_yoast_wpseo_focuskw_text_input','common plumbing problems'),(803,313,'_yoast_wpseo_focuskw','common plumbing problems'),(804,313,'_yoast_wpseo_metadesc','Fixing something on your own can be an overwhelming thought. There are lots of easy fixes you can do at home without needing to call out a plumber.'),(805,313,'_yoast_wpseo_linkdex','70'),(806,313,'_yoast_wpseo_content_score','60'),(807,315,'_wp_attached_file','2020/08/bath.jpeg'),(808,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1500;s:4:\"file\";s:17:\"2020/08/bath.jpeg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bath-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bath-300x234.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"bath-768x600.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"bath-1024x800.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"bath-1200x938.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:938;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:17:\"bath-630x415.jpeg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:17:\"bath-594x464.jpeg\";s:5:\"width\";i:594;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:17:\"bath-250x250.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(809,315,'_wp_attachment_image_alt','Fixing something on your own can be an overwhelming thought, but it doesn’t have to be that way. There are lots of easy fixes you can do at home without needing to call out a plumber.'),(810,313,'wpmdr_menu','1'),(811,318,'_menu_item_type','post_type'),(812,318,'_menu_item_menu_item_parent','54'),(813,318,'_menu_item_object_id','313'),(814,318,'_menu_item_object','page'),(815,318,'_menu_item_target',''),(816,318,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(817,318,'_menu_item_xfn',''),(818,318,'_menu_item_url',''),(819,323,'_edit_last','1'),(820,323,'_edit_lock','1607601185:1'),(821,324,'_wp_attached_file','2020/12/forest-ant-queen-55512_1920.jpg'),(822,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:39:\"2020/12/forest-ant-queen-55512_1920.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"forest-ant-queen-55512_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"forest-ant-queen-55512_1920-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:39:\"forest-ant-queen-55512_1920-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"forest-ant-queen-55512_1920-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"forest-ant-queen-55512_1920-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-portfolio\";a:4:{s:4:\"file\";s:39:\"forest-ant-queen-55512_1920-630x415.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"businessx-tmb-blog-wide\";a:4:{s:4:\"file\";s:39:\"forest-ant-queen-55512_1920-594x446.jpg\";s:5:\"width\";i:594;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"businessx-tmb-blog-normal\";a:4:{s:4:\"file\";s:39:\"forest-ant-queen-55512_1920-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(823,324,'_wp_attachment_image_alt','ants in your home'),(825,323,'businessx_single_hide_sidebar','0'),(826,323,'_yoast_wpseo_content_score','90'),(827,323,'_yoast_wpseo_primary_category','4'),(828,323,'wpmdr_menu','1'),(832,323,'_wp_old_slug','preventing-ants-home');
/*!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=329 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 (5,1,'2017-01-18 10:03:06','2017-01-18 10:03:06','<label> Your Name (required)\r\n [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n [email* your-email] </label>\r\n\r\n<label> Subject\r\n [text your-subject] </label>\r\n\r\n<label> Your Message\r\n [textarea your-message] </label>\r\n\r\n[submit \"Send\"]\n1\nFIS Awards \"[your-subject]\"\n[your-name] <wordpress@fisawards.co.uk>\nleads@vanillacircus.co.uk\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on FIS Awards (http://fisawards.co.uk)\nReply-To: [your-email]\n\n\n\n\nFIS Awards \"[your-subject]\"\nFIS Awards <wordpress@fisawards.co.uk>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on FIS Awards (http://fisawards.co.uk)\nReply-To: zoe.allen@vanillacircus.co.uk\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2017-10-23 09:09:18','2017-10-23 09:09:18','',0,'http://fisawards.co.uk/?post_type=wpcf7_contact_form&p=5',0,'wpcf7_contact_form','',0),(23,1,'2017-02-13 17:04:35','2017-02-13 17:04:35','<h2>Listen to our top tips on fast property sales</h2>\r\nOne of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\r\n\r\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\r\n\r\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\r\n<h2>Moving home internationally</h2>\r\nA lot of people are selling their home and moving abroad. The most popular places Brits are moving to include Spain, Australia and Thailand. <em>We are here to make your property search easier.</em>\r\n\r\nAre you looking for a property for sale in the extravagant city of Pattaya? Start your search with MuangThai Real Estate. They have hundreds of property listings, as well as land available to purchase. <a href=\"https://muangthai-realestate.com/\" target=\"_blank\">Start your search for Pattaya property</a>.\r\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\r\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home.\r\n\r\nYou may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\r\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\r\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle.\r\n\r\nDo a bit of budget DIY maintenance. Potential buyers will notice when things need work, such as shed roofs, broken fences and uneven walls. You can easily fix things these yourself and just buy the materials online.\r\n\r\nFor those homeowners that have a leaking shed roof, install rubber roofing instead. Rubber roofing is vastly superior to other materials such as felt and has a lifetime of 50+ years.\r\n\r\nEPDM rubber is easy to apply and has huge aesthetic benefits. Use an online calculator to figure out how much material you need and what other tools you may need for easy application. <a href=\"https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1\" target=\"_blank\">Click here</a>.\r\n\r\nAny buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\r\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\r\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession.\r\n\r\nYou may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell.\r\n\r\nDo not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\r\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\r\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\r\n\r\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short time frame (usually a matter of days).\r\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Contact FISA Awards for your local property experts</a>.</blockquote>\r\n\r\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','publish','closed','closed','','winners','','','2018-06-26 09:17:15','2018-06-26 09:17:15','',0,'http://fisawards.co.uk/winners',9,'page','',0),(24,1,'2017-02-13 17:04:35','2017-02-13 17:04:35','<h2><a href=\"/\">Moving home can be stress-free, just follow our tips</a></h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, bookcases, fridge/freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labelled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent, solicitor, mortgage broker and your new utility companies.\r\n\r\nMakeup and “emergency “ box with tea, coffee, milk, sugar, toilet roll, something to eat and the all-important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ). Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3>Step 5 - Professional Cleaners</h3>\r\nWhen moving out, the last thing you want is to deep clean the property. It can be time-consuming to clean the house, whilst managing everything else such as the furniture and other essentials that you need. Especially because you will also have to clean and organise your new home which can be very draining.\r\n\r\n<em>Hiring Professional Cleaners would be a great help to you, saving you much more time and energy.</em>\r\n\r\n<strong>Similar services that you could consider are:</strong>\r\n<ul>\r\n <li>End of lease cleaning</li>\r\n <li>Bond Cleaning</li>\r\n <li>Carpet Cleaning</li>\r\n <li>Perth Domestic Cleaning</li>\r\n <li class=\"bottomleft\">Spring Cleaning</li>\r\n</ul>\r\nIf you live in Perth you may <a href=\"http://perthhomecleaners.com.au/our-services\" target=\"_blank\">want to hire professional cleaners.</a>\r\n<h3><strong>Step 6 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbours and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbours to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel, however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>A very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. Outlining the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero</li>\r\n <li>£125,001 to £250,000- 1%</li>\r\n <li>£250,001 to £500,000- 3%</li>\r\n <li>£500,001 to £1,000,000 - 4%</li>\r\n <li>£1,000,001 to £2,000,000 - 5%</li>\r\n <li>£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a <a href=\"http://www.pembrokeshirebuilders.com\">reputable contractor</a> that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditations. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage-Related Charges:</h3>\r\nFirst, check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally, you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts, however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at levelling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move, however, is making sure you start planning your move early.</strong>','Here\'s everything you need to know about moving home','','publish','closed','closed','','moving-home','','','2020-11-23 13:56:46','2020-11-23 13:56:46','',0,'http://fisawards.co.uk/judges',10,'page','',0),(25,1,'2017-02-13 17:04:36','2017-02-13 17:04:36','<h1>15 of the best tips for selling a house that has tenants!</h1>\r\n<div class=\"entry-content\">\r\n\r\nIf you\'re thinking about selling your house, but currently have tenants renting it out, you may well be confused about where to start.\r\n<h2>Give Your Tenant First Refusal</h2>\r\nBefore trying to sell on the open market, give the tenant first option to buy, as this will enhance the feeling of goodwill during the sale process.\r\n\r\nThe last thing any seller wants is a tenant who feels that they are being forced from their home.\r\n\r\nIt is also a good idea to keep the tenant informed throughout the sale process, and offer them incentives e.g. reduced rent while the home is being sold, as you will need their cooperation to sell successfully.\r\n\r\nYou may grant tenants the right to stay in the property while it is being sold, thus giving them time to find another residence.\r\n\r\nYou could also discuss with the tenant the possibility of selling the property to another investor, from whom they may continue to rent the home.\r\n\r\nWhen trying to sell a house occupied by a tenant there are many potential pitfalls so obtaining advice, especially legal, will be of benefit. Do not cause yourself unnecessary trouble by breaching any clauses within the existing tenancy agreement.\r\n<h2>How To Be A Responsible Landlord</h2>\r\nBe a <a href=\"http://www.propertyinvestmentproject.co.uk/blog/landlord-advice/good-landlord-practice/\">good landlord</a> ! Potential avenues of good advice include Residential Landlords Association, local Letting Agents, Solicitors and the Citizens Advice Bureau.\r\n\r\nProblems you may encounter:\r\n\r\nWhen selling a tenanted property, you must first evaluate what type of tenancy agreement is in place, as well as any agreements with any property management company.\r\n\r\nIt is important to think ahead when first renting the property, and get potential renters to sign some form of fair and legal tenancy agreement. It is easier to facilitate a quick house sale if tenants are under an Assured Shorthold Tenancy Agreement lasting for a limited time i.e. 6 months.\r\n\r\nIf you have sitting tenants whom are long term tenants renting with no tenancy agreement; it may discourage potential investors from buying the property. Trying to evict sitting tenants can be a drawn out and expensive process, taking up to 5 months.\r\n\r\nTenanted homes often do not sell for as much as vacant properties, house sellers can be limited to selling to buy to let homebuyers, and tenants may be uncooperative, refusing to allow potential buyers to view the home. Thus it is important to have the tenants ?on your side?.\r\n\r\nOften when trying to sell a house on the open market buyers want the home available with full vacant possession, on completion of the sale. However, there are several cash property buyers that are more than willing to buy a tenanted property. Investors even see it as a benefit if the tenant has a good track record, as they receive rent from the first day of ownership and do not have to find tenants.\r\n\r\nA good place to sell a tenanted property is at a house auction, as many investors attend property auctions looking for buy to let opportunities, and may be willing to buy the property unseen. Another good avenue is to sell via an Estate Agent who specializes in rental property, as they may have a line on potential investors looking for such an opportunity.\r\n\r\nIf you have a tenanted property and need to sell it quickly, us.co.uk provide a <a href=\"/\">fast property buying service</a> that will even allow for your tenant to stay in the property for a maximum of 6 months.\r\n\r\n</div>','15 of the best tips for selling a house that has tenants!','','publish','closed','closed','','apply','','','2017-10-23 09:05:28','2017-10-23 09:05:28','',0,'http://fisawards.co.uk/apply',11,'page','',0),(26,1,'2017-02-13 17:04:36','2017-02-13 17:04:36','<h1>How can you sell a residental leasehold property?</h1>\r\nA leasehold property comes with more complex set of rules, which one has to consider fully before making the decision to sell or buy.\r\n\r\nWhen one is informed, one can go ahead with confidence and sell a leasehold house however, going ahead without knowing all the facts can result in a nightmare later on.\r\n<h2>1. What is a leaseholder?</h2>\r\nA leaseholder is the person who owns the property on lease for a stipulated period of time, which can be 99 years or 125 years. The leaseholder is also called a tenant, albeit a different tenant from a tenant in a short-term lease. The leaseholder agreement will set out the terms of the contract and one must familiarise him or her with them before signing.\r\n<h2>2. Implications of buying a leasehold house:</h2>\r\nThe lease contract between the leaseholder and the landlord offers conditional ownership of the house for a fixed period of time. The leaseholder will not be allowed to have free reign over the house and may still have to obtain consent from the landlord to carry out any improvements or alterations to the house.\r\n\r\nThe key issue is the length of the lease. <a href=\"http://www.extendmylease.com/why-extend-my-lease\">Mortgage lenders will not look at a property with a short lease favourably</a> . Bear that in mind if you are thinking of selling. Check the length of your lease as you may require a lease extension.\r\n<h2>3. The free holder remains the landlord:</h2>\r\nWhere one sells a leasehold property to a willing buyer, and the willing buyer complies with paying off the property and has all the receipts to show for it, the fact is that the free holder remains the landlord. The seller or the free holder continues to own the land upon which the property is built and the leaseholder continues to pay ground rent.\r\n<h2>4. Ownership of property is limited to the period of lease:</h2>\r\nWhen a leasehold property is sold, the ownership of the property by the new owner is only limited to the duration of the lease. Once the lease expires, the property will revert back to the freeholder. An example would be where you buy a leasehold residential property that still has 50 years on it. If you take a mortgage bond and finish paying it off in 20 years, after the 20 years, you will enjoy the ownership of the property, for the next 30 years. After 50 years, the property and the land will revert back to the freeholder, leaving you with no rights over it.\r\n<h2>5. Calculation of the rent or lease fee:</h2>\r\nThe leasehold or the lease fee is calculated at a percentage of the total freehold value. However the leaseholder will still be liable to pay other expenses like property insurance, council rates and maintenance of the property, amongst other things.\r\n<h2>6. The fee is fixed over the duration of the lease:</h2>\r\nThis is a benefit of a leasehold property. Whatever the amount is at the beginning of the lease, it will remain fixed, irrespective of annual rental increases of the increasing value of the property. However, at the end of the lease, the rental would be brought up to the value of the property and can increase exorbitantly.\r\n\r\n<hr />','How can you sell a residental leasehold property?','','publish','closed','closed','','shortlist','','','2017-10-23 09:05:54','2017-10-23 09:05:54','',0,'http://fisawards.co.uk/shortlist',12,'page','',0),(27,1,'2017-02-13 17:05:31','2017-02-13 17:05:31','','Winners','','inherit','closed','closed','','23-revision-v1','','','2017-02-13 17:05:31','2017-02-13 17:05:31','',23,'http://fisawards.co.uk/23-revision-v1',0,'revision','',0),(28,1,'2017-02-13 17:05:35','2017-02-13 17:05:35','','Judges','','inherit','closed','closed','','24-revision-v1','','','2017-02-13 17:05:35','2017-02-13 17:05:35','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(29,1,'2017-02-13 17:05:38','2017-02-13 17:05:38','','Apply','','inherit','closed','closed','','25-revision-v1','','','2017-02-13 17:05:38','2017-02-13 17:05:38','',25,'http://fisawards.co.uk/25-revision-v1',0,'revision','',0),(30,1,'2017-02-13 17:05:41','2017-02-13 17:05:41','','Shortlist','','inherit','closed','closed','','26-revision-v1','','','2017-02-13 17:05:41','2017-02-13 17:05:41','',26,'http://fisawards.co.uk/26-revision-v1',0,'revision','',0),(35,1,'2017-02-13 17:25:33','2017-02-13 17:25:33','','business','','inherit','open','closed','','business','','','2017-02-13 17:25:33','2017-02-13 17:25:33','',0,'http://fisawards.co.uk/wp-content/uploads/2017/02/business.jpg',0,'attachment','image/jpeg',0),(36,1,'2017-02-13 17:25:38','2017-02-13 17:25:38','','cropped-business.jpg','','inherit','open','closed','','cropped-business-jpg','','','2017-02-13 17:25:38','2017-02-13 17:25:38','',0,'http://fisawards.co.uk/wp-content/uploads/2017/02/cropped-business.jpg',0,'attachment','image/jpeg',0),(51,1,'2017-02-13 17:36:37','2017-02-13 17:36:37','','Home','','publish','closed','closed','','home','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=51',1,'nav_menu_item','',0),(52,1,'2017-02-13 17:36:37','2017-02-13 17:36:37','','Selling','','publish','closed','closed','','52','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=52',2,'nav_menu_item','',0),(53,1,'2017-02-13 17:36:37','2017-02-13 17:36:37','','Moving Home','','publish','closed','closed','','53','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=53',7,'nav_menu_item','',0),(54,1,'2017-02-13 17:36:37','2017-02-13 17:36:37','','Tenants','','publish','closed','closed','','54','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=54',12,'nav_menu_item','',0),(55,1,'2017-02-13 17:36:37','2017-02-13 17:36:37','','Leasehold','','publish','closed','closed','','55','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=55',18,'nav_menu_item','',0),(61,1,'2017-10-23 08:39:43','2017-10-23 08:39:43','<h1>Finding the best estate agent is a great idea!</h1>\r\nWhen it comes to selling your home, the success of your sale is hugely dependent on your estate agent.\r\n\r\nYour choice of an estate agent will determine largely what price you sell for and whether the sale will conclude in a timely manner.\r\n\r\nChoosing your estate agent therefore requires careful consideration. It is never a good idea to choose an estate agent purely on price. Experience is what you\'re looking for as a shoddy agent can cause more stress than you can believe.\r\n\r\nSo how then should one choose an estate agent? One must choose the best and most experienced when it comes to selling your type of property - be it a flat, a house with a big garden, an old house or a house in a rural setting. This is the primary consideration when short-listing agents. <a href=\"http://axworthy.co.uk/our-top-10-tips-on-how-to-add-value-to-your-home\" target=\"_blank\">Find out about property valuations</a>.\r\n<h2>How To Research Your Local Agents</h2>\r\nTake some time to research the agents in your area. Who seem to have the <a href=\"http://www.vizzihome.co.uk/property_market_share.php\">most \"for sale\" boards</a> up? They are most likely the best agent but are they selling your type of property?\r\n\r\nYou must not pick any agent who charges the lowest commission or the one who offers the highest valuation of your property.\r\n\r\nBe wary of any agent that caves in when you start to negotiate on their fee. Is this how they are going to negotiate with buyer on your behalf over the sale price of your house!?\r\n\r\nAlso, an agent that tells you your house is worth more than it actually is does your sale a major disservice. Instead of selling for more, your house may stay on the market for a long time without attracting any interest whatsoever. This too may be a sign of lack of experience on the estate agent?s side.\r\n\r\nSpend time rather monitoring agents in your area to see which ones are selling property quickly. The local newspapers, Rightmove Property Portal, Zoopla and driving around in your neighborhood and talking to friends and family can help you get a feel for which the best agent are.\r\n\r\nAs you do your research, it is important to find which estate agents sell property similar to yours. Once you have located them, the next step is to call them pretending to be a potential buyer. This mystery shopping exercise will give you a feel for how they will \"sell\" your house. Which estate agent pushes hardest to get you through the door of a property for a viewing? That\'s the kind of agent you want on your side.\r\n\r\nAs you visit the different estate agents in their offices, have a check-list handy and make sure that most of the questions you have are answered satisfactorily.\r\n\r\nYour check list should include such questions like what other similar properties to yours they have sold and at what price, how long it took to sell the property and how many viewings did they have on the property, how many buyers do they have on their books that are looking for properties similar to yours.\r\n<h2>Professional Bodies Governing Estate Agents</h2>\r\nYou should also find out if they are a member of a professional body such as the Property Ombudsman or The NAEA (National Association of Estate Agents). Have they have signed a code of conduct and are bound by such code? This is important information that will help you to choose the best estate agent to sell your property quickly and without fuss.\r\n\r\n<hr />','Finding the best estate agent is a great idea!','','publish','open','open','','choosing-your-estate-agent-wisely-is-always-a-good-idea-html','','','2017-10-23 09:26:09','2017-10-23 09:26:09','',0,'http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html',0,'post','',0),(62,1,'2017-10-23 08:39:55','2017-10-23 08:39:55','<h1>Is your house difficult to sell? Here are 10 common problems</h1>\r\n<div class=\"entry-content\">\r\n\r\nThe time has come for you to sell your home, and you are envisioning a stress free and relatively fast sale. However, there are several common problems that can get in the way of this, and make it difficult to secure an offer. <a href=\"http://aje.org.uk/information-for-tenants\" target=\"_blank\">Click here</a> for information for tenants.\r\n<h2>Problem 1 - Repairs and Maintenance:</h2>\r\nBefore letting your estate agent put your house on the market it is vital that you handle all basic repair and maintenance issues that could turn buyers off and delay your sale.\r\n\r\nThese issues run the gamut from messy and overgrown gardens, to doors that do not fit properly into their door-frames, and stained sinks. Taking care of all basic repairs, and sprucing up the home with some fresh paint, is a good first step towards impressing buyers.\r\n\r\nRemember that your front garden is the first thing a prospective house buyer gets to see of your property, so you may also want to focus on improving it kerb appeal (your homes appearance from the outside).\r\n<blockquote>If you have garden waste and/or house junk to get rid of, why not hire a specialist waste removal company to collect it for you?\r\n\r\n<strong>Any Waste Berkshire</strong> provide a 24-48 hour domestic clearance service for the whole county including Windsor, Maidenhead, Ascot, Slough and Reading. <a href=\"http://berkshire.me.uk/house-and-flats/index.php\" target=\"_blank\">Click here for details.</a></blockquote>\r\n<h2>Problem 2 - Uncontrollable Factors:</h2>\r\nIf a home has a dubious history, is built on a flood plain, or is in the vicinity of problem plants such as Japanese Knotweed, these dilemmas can make it hard to sell your house quickly.\r\n\r\nThere is little you can do about the flood-plain issue (except to make best endeavors to flood proof your home) however, <a href=\"http://www.jksl.com/private-gardens-and-mortgages.htm\">problem plants can be removed by specialists</a> and they should be contacted as soon as possible.\r\n<h2>Problem 3 - Damp:</h2>\r\nClearly visible water stains and damp marks, on the inside and outside of your home, as well as musty smelling rooms, are a clear indication to buyers that the house has not been properly maintained. This will be recorded in<a href=\"http://fisawards.co.uk/what-to-do-if-a-buyers-valuation-or-structural-survey-highlights-problems-with-your-house-html\"> the surveyor\'s report.</a> It is important that you take care of the problem causing the damp properly, and not attempt to simply cover it up with paint and air freshener, as buyers are often very through in their inspection of a selling property. If you have any queries, get in touch with <a href=\"http://tradingstandards.org.uk/\" target=\"_blank\">Trading Solutions.</a>\r\n<h2>Problem 4 - Odors:</h2>\r\nSmell is our most dominant sense. Thus it is important, when showing your house that you eradicate all unpleasant smells from your home. Smells such as cigarette smoke, mildew and pet odors, are a huge turn off to buyers. Do not simply try to mask smells with air freshener, as potential buyers may find this suspicious. Is your house not selling? <a href=\"http://fisawards.co.uk/what-to-do-if-your-house-will-not-sell-html\">Read more tips.</a>\r\n<h2>Problem 5 - Divergent Decorative Tastes:</h2>\r\nWhen trying to sell a home it is not advisable to make drastic and irreversible renovations, as this not only causes you to have to raise your selling price, but these changes may also send prospective buyers running. Everyone has different tastes; so when getting your place ready for sale focus on basic improvements and keep paint colors neutral. There are small changes that you can make to enhance a room, that won\'t set you back a fortune e.g. add lamps to bring warm light to gloomy rooms, replace dowdy curtains with tasteful white sheers, etc...<a href=\"http://padlife.co.uk/interior-design.html\" target=\"_blank\">click here for interior design ideas.</a>\r\n<h2>Problem 6 - The Area:</h2>\r\nTry to get on good terms with your neighbors, as property buyers may talk to them to get a feel for the area. Noisy / Anti-social neighbors are a big turn off to prospective buyers, so it will be helpful if you can get the neighbors on your side. Other problems include the area having poor network reception, or no access to amenities such as schools and shops. If this is the case find area selling points to balance these negatives out.\r\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Call us today</a> to find out how we can help you <a href=\"/\">sell your house fast</a> with the least amount of fuss possible.</blockquote>\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n</div>\r\n ','Is your house difficult to sell? Here are 10 common problems','','publish','open','open','','common-problems-that-can-make-your-house-difficult-to-sell-html','','','2017-11-23 10:12:24','2017-11-23 10:12:24','',0,'http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html',0,'post','',0),(63,1,'2017-10-23 08:16:26','2017-10-23 08:16:26','<h1>How we think you could solve your residential property problems</h1>\r\nMany problems go undetected and are not taken care of until it is too late. One can remedy most issues but the earlier they are spotted and identified the earlier and easier it is to deal with them successfully.\r\n\r\nSmall signs exist that can be used as a pointer that there is a problem inside or outside your property.\r\n<h2>Common Problems Outside</h2>\r\nExamining the gutters, downpipes and drains for any signs of deterioration can easily spot external problems on your property.\r\n\r\nAs one looks around, it is important to look out for any vegetation growth on the gutters, loose slates, rusting or cracking on cast iron, the downpipes or the gutters, leaking pipes, rising damp staining, cracks on any stonework, damaged drains and defects in lead flashings around your chimney and many others.\r\n\r\nYou can also check for Japanese knotweed. This will help you to detect if there is any damage, which needs your urgent fixing attention. Finally the <a href=\"http://www.johnbellman.co.uk/index.php/general-information/land-issues-2/subsidence/\">issue of subsidence</a> needs to be explored and if you are in an area that is affected you may need to look into underpinning.\r\n\r\nYou can also check for internal property problems. Internal property problems are not as easy to identify, and by the time you spot them the damage may have been done already.\r\n<h2>Common Problems Inside</h2>\r\nFor your basement and the roofs, you can check for water staining on your roof void. You can also check your baths and shower seals for any damage. You can check for dampness through using your sense of smell. If you happen to smell dampness anywhere inside your house, you will need to investigate it further; it can lead to more serious problems if left unchecked.\r\n\r\nYou can also take some measures to prevent further problems. Although simple enough, these measures can help you to avoid things that can in the long run require professional repairs or replacing.\r\n\r\nYou can for instance clear all debris and leaves from your roof gutters, hopper heads and water drains. After heavy rain, you must check for leaks or signs of overflow or signs of penetrating damp from your gutters and pipes. You can also look out for loose seals around your bath and shower as this could point out that water is seeping through behind your shower or bath and could result in a wet rot. You can also check for any damp earth or leaking pipes, especially if you have a sub floor crawl space. If these were left unchecked, they would mean timber repairs at a later stage, which are costly.\r\n\r\nAlthough this task can be a pain and some of these tips may seem mundane and tiresome, they mean the difference between having a problem-free property and a property, which is damaged and will need repairs and replacements in order to fetch a good selling price during a house sale.\r\n\r\nIf you do not have funds available to get your property into a state of good repair we can help. As a <a href=\"/\">quick cash property buyer</a> we\'re interested in your property no matter what condition it\'s in.\r\n\r\n<!-- End main content include --><!-- Start footer include -->\r\n\r\n<!-- End footer [contentinfo] --><!-- End footer include -->','How we think you could solve your residential property problems','','publish','open','open','','common-residential-property-problems-and-how-to-solve-them-html','','','2017-10-23 09:03:23','2017-10-23 09:03:23','',0,'http://fisawards.co.uk/common-residential-property-problems-and-how-to-solve-them-html',0,'post','',0),(64,1,'2017-10-23 08:40:08','2017-10-23 08:40:08','<h1>Have you had a bad solicitors service? Check out the process of complaining</h1>\r\nIf you are not satisfied with the service provide by your conveyancing solicitor (during your house sale or purchase) there are avenues you can pursue in order to make a formal complaint.\r\n\r\nAll issues pertaining to the legal transfer of title (for residential property) by a conveyancing solicitor of licensed conveyancer can be reported to the appropriate regulatory body. Did your surveyor live up to trading standards? <a href=\"http://www.planning-permission.org.uk/do-i-need-planning-permission-for-construction-project\" target=\"_blank\">More information here</a>.\r\n<h2>Your First Port Of Call (Your Solicitor)</h2>\r\n1. You can complain directly to the solicitor or the conveyancer\r\n\r\nAny solicitor or conveyancer must have a complaints procedure to be followed in the event of misconduct.\r\n\r\nDetails of how to initiate the complaints procedure can be found on their website or by speaking to the office administrator.\r\n\r\nYou can also contact the legal ombudsman who will ensure that your complaint is dealt with in a proper manner and will also give you advice on how to lodge your complaint.\r\n\r\nIf you are still not satisfied with how the solicitor or conveyancer deals with you matter, you can complain to the legal ombudsman as explained above, or to the council of licensed conveyancers. The other alternatives are going to the alternative dispute resolution or going to court.\r\n<h2>Bring Legal Action</h2>\r\nFailing that you can always <a href=\"http://www.sethlovisprofneg.co.uk/Solicitors-Barristers-Negligence/Conveyancing-Property-Negligence.shtml\">try to bring legal action</a> against your conveyancer with the help of a \"Solicitor\'s Negligence\" specialist.\r\n\r\n2. You can complain to the Council of Licensed Conveyancers (CLC)\r\n\r\nIf you are dealing with a licensed conveyancer you can lodge your complaint with CLC, if the complaint to the conveyancer did not yield any dividends regarding your case.\r\n\r\nThe CLC deals with issues of professional misconduct of the conveyancer. If it is a matter of negligence, the CLC will refer the matter to the conveyancer?s insurers before they can deal with the matter. The CLC can make the licensed conveyancer pay you compensation of up to £5000, repay you the fees you paid or put an error made right.\r\n\r\nThe CLC can also withdraw the conveyancer\'s licence or suspend them.\r\n<h2>Their Regulatory Body</h2>\r\n3. You can complain to the Solicitors\' Regulation Authority (SRA)\r\n\r\nIf one was dealing with a solicitor, one can complain to the SRA- only in instances where your matter has not been resolved by the solicitor or the legal ombudsman.\r\n\r\nThe SRA investigates and deals with matters of professional misconduct like lying to clients, taking unfair advantage of clients, holding onto clients money, breaking an undertaking given to you, discrimination on grounds of race, religion, age or disability by the solicitor, amongst others. The SRA has powers to prosecute a solicitor, and can take steps against a specific solicitor or the whole firm and the solicitor can be struck off from the roll of solicitors. The SRA does not however make the solicitor pay you compensation. For compensation you can try another method of complaint and a different avenue altogether.\r\n\r\nIn conclusion, you have a right to complain and you can enforce this right against your solicitor or conveyancer.\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />','Have you had a bad solicitors service? Check out the process of complaining','','publish','open','open','','complaining-about-your-conveyancing-solicitors-service-html','','','2017-10-23 09:22:05','2017-10-23 09:22:05','',0,'http://fisawards.co.uk/complaining-about-your-conveyancing-solicitors-service-html',0,'post','',0),(65,1,'2017-10-23 08:40:08','2017-10-23 08:40:08','<h1>What you need to know about the 7 day cooling off period</h1>\r\nIf you find yourself pressured to sign with an agent who promises to be able to sell your house fast, it is important to note that they are now obliged to provide potential house sellers with a 7 day cooling off period. If this is not provided, you may be able to withhold payment of the <a href=\"estate-agents.html\">estate agents fee for selling</a> your property.\r\n<h2><strong>What is a cooling off period?</strong></h2>\r\nEstate Agency contracts usually stipulate heavy penalty fees for contract cancelation. Thus it has been deemed necessary for Estate Agents to provide their clients with a 7 day cooling off period, during which they may cancel their contract penalty free. This applies only if it is signed at a location other than the agents business premises e.g. at the selling property. When signing such a contract house sellers must be given clear written notice, stating their right to cancel the contract within the cooling off period. Note that this applies to agency agreements but not contracts to buy, sell or let. If you need advice about property permission, <a href=\"http://www.planning-permission.org.uk/do-i-need-planning-permission-for-construction-project\" target=\"_blank\">see this website</a>.\r\n<h2><strong>Cooling off Controversy:</strong></h2>\r\nInitially instituted to protect house sellers from aggressive unsolicited sales advances, this regulation has become the source of much debate between Consumer Representation Bodies and Estate Agency Organizations.\r\n\r\nThe \"Cancelation of Contracts Made in a Consumer\'s Home or Place of Work Etc Regulations 2008\" states that clients, who sign contracts away from the relevant business premises, are entitled to the 7 day cooling off period. This is the case whether the sales visit is solicited or unsolicited by the estate agent.\r\n\r\nThe point of controversy centers on a stipulation stating that this ruling does not apply in the case of \"the construction, sale or rental of immovable property\" (with certain exceptions). Certain agents believe that this exemption applies to Real Estate sales (\'immovable property\'). However, the Office of Fair Trading has strongly advised that Estate Agencies are subject to the cooling off period regulation, and may be heavily fined if they violate it.\r\n\r\nThe wording of the act is open to discussion, but by and large ethical estate agents have agreed to adhere to this consumer protection policy.\r\n\r\nAny contract provided to you by an estate agent has to have a notice detailing your rights to cancel the agreement within 7 days. Any contract that does not include this is <a href=\"http://www.consumeractiongroup.co.uk/forum/showthread.php?299907-quot-estate-agent-be-warned-quot-%21%21%21\">automatically unenforceable</a> .\r\n<h2><strong>Read your contract:</strong></h2>\r\nBefore you sign a contract of any sort, it is vital that you read and understand what you are signing. Look out for stipulations pertaining to the type of agency agreement, the length of the agreement, and your rights and procedures for cancelling the contract. If you are unhappy with any of these terms do not sign. You can obtain advice on your rights from a solicitor, or a local Citizens Advice Bureau.\r\n<h2><strong>What can you do if you have a problem with your Estate Agent:</strong></h2>\r\nAll estate agents are bound by the <a href=\"http://www.legislation.gov.uk/ukpga/1979/38/section/18\">Estate Agents Act 1979 (EAA 79)</a>, which requires that they belong to a redress scheme such as <a href=\"http://www.tpos.co.uk/\">The Property Ombudsman</a> (TPO), thus providing house sellers with a port in the storm, if they have a problem with their agent.\r\n\r\nWhen choosing an estate agency to <a href=\"/\">sell a house</a>, it is also best to choose one registered with a relevant trade organization such as; <a href=\"http://www.naea.co.uk/\">The National Association of Estate Agents</a> (NAEA), <a href=\"http://www.guildproperty.co.uk/\">The Guild of Professional Estate Agents</a> or <a href=\"http://www.rics.org/uk/\">The Royal Institution of Chartered Surveyors</a> (RICS). Choosing an agent registered with one of these bodies ensures that you will get a better, and more ethical, level of customer service.\r\n\r\n ','What you need to know about the 7 day cooling off period','','publish','open','open','','estate-agency-contracts-have-a-7-day-cooling-off-period-html','','','2017-10-23 09:20:52','2017-10-23 09:20:52','',0,'http://fisawards.co.uk/estate-agency-contracts-have-a-7-day-cooling-off-period-html',0,'post','',0),(66,1,'2017-10-23 08:17:46','2017-10-23 08:17:46','<h1>The best house selling tips from established estate agents</h1>\r\n<div class=\"entry-content\">\r\n\r\nWhen selling a house one of the headaches you may encounter can be dealing with your estate agent. When you want to sell your home, the first thing is to engage the services of an estate agent who understands your local market and has experience in selling your type of property.\r\n\r\nEstate agents are paid a commission that is based on a percentage of the property sale price (usually it\'s 1.5-2%+VAT).\r\n\r\nThe relationship between a homeowner and an estate agent is a professional relationship formalised by a contract setting out the estate agent\'s terms of business.\r\n<h2>Your Relationship With Your Estate Agent</h2>\r\nFor some reason the homeowner can decide that selling his or her home is not the best option and may decide not to sell. For some other reason, the homeowner can decide to change the agent or to engage a number of agents to speed up the process of selling the house or property. The seller can also opt to save thousands of pounds by selling the property on his or her own. Either way, there are things that the homeowner needs to know or there are tips that will help the seller to get the most out of this relationship. Knowing what to do will always come in handy in cases of disagreement between you and your estate agent.\r\n\r\nIf one for instance has a <a href=\"http://uk.practicallaw.com/3-509-4370\">sole selling agreement</a>, one <a href=\"http://www.estateagenttoday.co.uk/News/Story/?storyid=3787&type=news_features\">must wait until completion</a> of the notice period. This is so even in instances where one has found a private buyer. The agent will have exclusive rights to sell your house to the exclusion of all others and even you as the seller cannot breach this agreement. If on the other hand you have a sole agency agreement, you need to check how long the period of the agreement runs for and you may not instruct or engage the services of another agency for the duration of the agreement or before the period of notice expires. In the event that you engage the services of another agency, you will remain liable to pay the commission fees of the first agent and that of the second agent too.\r\n<h2>When You Have To Pay The Fee</h2>\r\nWhen you engage the services of an estate agent, you are only liable to pay commission fees when the house has been sold. In the event that the house is sold to someone who was introduced to you by the agent, you must pay the agent his or her commission fees, irrespective of whether you have withdrawn the mandate or not. If the agency or the agent is the member of The Property Ombudsman, or the National Association of Estate Agents, after six months of the withdrawal of instruction by you, they waive the right to being paid a commission and they will not be entitled to claim it from you. Agents who are not members of these professional bodies may continue to claim commission from you for more that five years and you must be wary of them.\r\n\r\nIn the event that you have instructed more than one estate agent, the agent who introduces you to the buyer of your property can claim commission from you. If you would like to avoid using an estate agent and <a href=\"/\">sell your property quickly</a>, fill in our online form and one of the team will get back to you within the hour.\r\n\r\n</div>\r\n<!--close content-->\r\n\r\n<footer><section><!-- End .footer-left --><!-- End .footer-right --></section></footer><!-- End footer [contentinfo] --><!-- End footer include -->','The best house selling tips from established estate agents','','publish','open','open','','house-selling-tips-from-master-estate-agents-html','','','2017-10-23 09:02:42','2017-10-23 09:02:42','',0,'http://fisawards.co.uk/house-selling-tips-from-master-estate-agents-html',0,'post','',0),(67,1,'2019-01-23 08:19:01','2019-01-23 08:19:01','Moving day can be stressful enough as it is, one is worried about whether all has been packed and if one\'s valuable dinnerware is going to break. The last thing on your mind during this rather stressful period is about being late and delays on moving day.\r\n\r\n<strong>There are however, a few simple things to bear in mind that can help you avoid unnecessary and upsetting delays on moving day.</strong>\r\n<h2>Whether or not to use a removal company:</h2>\r\nRemoval companies can be a costly additional expense when moving and it may be tempting to cut costs and conduct the removal yourself. If you are only moving a short distance away this can be successfully accomplished but you need to be much organised and plan appropriately ahead of time.\r\n\r\nMeasure the size of all of your furniture and appliances to establish the size of removal van needed to save time. <a href=\"http://fisawards.co.uk/contact\">Contact us for more advice</a>.\r\n\r\nWhen moving home, it is often the case that people want to get rid of old furniture and junk. However, the last thing that is going to be on your mind is where to dispose of these things and when will you have the time?\r\n\r\nA reliable and professional rubbish removal company will be able to take care of all things waste, while you focus on getting to your new home. For house clearances in Ashford, Canterbury or Gravesend in Kent, <a href=\"http://www.rubbishclearancekent.me.uk/house-clearances\" target=\"_blank\">visit this website</a>.\r\n<h2>Hire a vacate cleaning service</h2>\r\nA vacate cleaning service gives you a 100% guarantee of getting your bond / deposit money back. Having a specialist cleaning service from experienced staff member\'s means you only have to worry about moving your furniture, rather than the dirty work. <a href=\"https://thatcarpetguy.com.au/services/vacate-cleans/\" target=\"_blank\">Click here</a>.\r\n\r\n<strong>Typical services include:</strong>\r\n<ul>\r\n <li>Oven / stove cleaning</li>\r\n <li>Carpet cleaning</li>\r\n <li>Bench top wiping</li>\r\n <li>Shower / tile cleaning</li>\r\n <li>Wiping down of skirting boards</li>\r\n</ul>\r\n<h2>Moving furniture and appliances:</h2>\r\nThere are a few simple ways to ensure that the removal of furniture and appliances does not cause unnecessary delays. Firstly, ensure drawers are securely shut with strong tape, rope or bubble wrap or remove them entirely. <a href=\"http://decenthomesstandard.co.uk/Occasional_Chairs.htm\" target=\"_blank\">Find out about different furniture</a>.\r\n\r\nSecondly, protect furniture with the appropriate packing materials, blankets or padding. Finally, pack all electronics in their original packaging as far as possible or protect them with thick blankets or moving pads.\r\n\r\n<strong>Do you need help selling your property? <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Take a look at 10 most common problems</a>.</strong>\r\n<h2>Final tips:</h2>\r\nFinally, make sure you are adequately prepared for the day ahead. Go through your home and check that you have not forgotten anything important and that everything is clean and in order for the new owners.\r\n\r\nPhone the removal company to double check that they will be there on the agreed upon date and time. Ensure that all of the utilities have been transferred to the new owners. Finally, if you are concerned about getting everything done on time, enlist additional help from a removal company or family members and friends.','Moving day coming up? Here\'s how you can avoid delays on the big day','','publish','open','open','','how-to-avoid-delays-on-moving-day-html','','\nhttp://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html','2019-02-08 11:00:13','2019-02-08 11:00:13','',0,'http://fisawards.co.uk/how-to-avoid-delays-on-moving-day-html',0,'post','',0),(68,1,'2017-10-23 08:19:53','2017-10-23 08:19:53','<h2>Avoiding cowboy tradesmen</h2>\r\nFinding a good tradesman is not always an easy task. Many have posed as the best and when the job has been done, the finished work will leave a lot to be desired and cost you double as the work had to be done again.\r\n\r\nIt is therefore crucial to get a reputable tradesman with a proven track record if you have any building work that needs doing.\r\n\r\nYou will be using your money, therefore it is best to get excellent value for your money and this is what you will get from a tradesman that comes with excellent references.\r\n\r\n1. Get referrals and recommendations:\r\n\r\nIt is important that you get referrals from friends, family and colleagues for any tradesman you consider. Their account and testimonials can be used as a starting point. Their information will at least give you an idea on where to start with looking for a good man.\r\n\r\nIf friends, family or colleagues cannot help you out on this one, you can also contact your local Builder\'s register where possible. This register will have a list of all plumbers, builders and tradesman who are properly qualified and carry the necessary insurance.\r\n\r\nLocal newspapers and online directories are also a good source of information. As you look around, take note of experience and the previous work done by the tradesman, this will give you an idea of what they can do for you.\r\n\r\nAlso keep an eye out online for <a href=\"http://www.facebook.com/pages/Name-And-Shame-Dodgy-Builders-Workmen-In-All-Trades-Here/156265024392212\">websites that name and shame</a> dodgy builders.\r\n\r\n2. Deal with established firms:\r\n\r\nAnother way to safeguard yourself and ensure that you are dealing with a reputable operator is through making sure that in looking for one, you deal only with established firms, not fly by nights or individual tradesman with no record of their work.\r\n\r\nTo this end, you can ensure that the firm has a physical address, offices, telephone numbers where you can contact them and that they correspond through headed paper. This is all-important as it shows that the tradesmen are established and can be trusted to do the job.\r\n\r\nYou must also check if the tradesman or the firm is a member of a reputable trade association and if they have a VAT number.\r\n\r\n3. Be clear about what you want done:\r\n\r\nHave estimates and specifications of what work you are looking to have done. Certainly get more than one estimate, as this will help you compare one builder against the other.\r\n\r\nAgree with your tradesman on payments and how payments will be scheduled before the work starts. Make sure that you have a clear plan of what you want before the job starts as changing your mind midway can be costly for you and can also result in delays.\r\n\r\n4. Have a checklist of what questions to ask:\r\n\r\nAs you go about choosing a reputable tradesman, have a ready checklist on what to look for and what to avoid. Avoid those who pressurise you and call themselves specialists. Do not sign anything even under pressure when you do not understand it. Avoid tradesman who ask for advance payments, especially at the beginning of the job. Also avoid those who demand cash payments.\r\n<h2>List of companies we recommend:</h2>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iY6Vv1LIWHG4\" data-hveid=\"71\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iY6Vv1LIWHG4-QjYh_nvGmIg\" data-rtid=\"iY6Vv1LIWHG4\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"http://www.msboilerrepairsnorwich.co.uk/\" target=\"_blank\">Majestic Services</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>07948 557560</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open ⋅ Closes 11PM</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iZ1uDzIKwh24\" data-hveid=\"79\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iZ1uDzIKwh24-QjYh_nvGmIg\" data-rtid=\"iZ1uDzIKwh24\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"http://www.gasway.co.uk/\" target=\"_blank\">Gasway Services Ltd</a></h3>\r\n</div>\r\n<div> Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>0800 074 3030</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open ⋅ Closes 8PM</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-i_H3RajskIbU\" data-hveid=\"89\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c i_H3RajskIbU-QjYh_nvGmIg\" data-rtid=\"i_H3RajskIbU\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.hgsplumbingandheating.co.uk/\" target=\"_blank\">HGS Plumbing and <wbr />Heating</a></h3>\r\n</div>\r\n<div><span class=\"BTtC6e\">4.8</span> (79) · Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 630608</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open 24 hours</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iRsjjDTQuVTA\" data-hveid=\"102\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iRsjjDTQuVTA-QjYh_nvGmIg\" data-rtid=\"iRsjjDTQuVTA\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.allstarsystems.co.uk/\" target=\"_blank\">Allstar Systems <wbr />(Norwich) Ltd</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>07557 349856</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open 24 hours</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iFqKuRhuTgH0\" data-hveid=\"112\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iFqKuRhuTgH0-QjYh_nvGmIg\" data-rtid=\"iFqKuRhuTgH0\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.rockwater.co.uk/\" target=\"_blank\">Rockwater</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 498889</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open 24 hours</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-inlpxh5fw26M\" data-hveid=\"122\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c inlpxh5fw26M-QjYh_nvGmIg rllt__local-item-selected\" data-rtid=\"inlpxh5fw26M\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.heatingengineernorwich.co.uk/\" target=\"_blank\">OJ Thurston Norwich <wbr />Heating Engineer</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 431871</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iLTyQ9bxS99k\" data-hveid=\"129\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iLTyQ9bxS99k-QjYh_nvGmIg\" data-rtid=\"iLTyQ9bxS99k\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"http://www.custanceandson.co.uk/\" target=\"_blank\">Custance & Son Ltd</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 401111</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<hr />','Avoiding cowboy tradesmen','','publish','open','open','','how-to-avoid-getting-stuck-with-a-dodgy-tradesman-html','','','2018-12-11 11:26:31','2018-12-11 11:26:31','',0,'http://fisawards.co.uk/how-to-avoid-getting-stuck-with-a-dodgy-tradesman-html',0,'post','',0),(69,1,'2017-10-23 08:21:01','2017-10-23 08:21:01','<h1>What are mortgage arrears and how should you deal with them?</h1>\r\nCurrently in the UK many homeowners are finding it difficult to keep up with mortgage loan repayments.\r\n\r\nMany have defaulted in payments resulting in mortgage arrears.\r\n\r\nFor some, their financial situation has deteriorated so much such that there is no ending in sight for their financial woes.\r\n\r\nMortgage loan lenders are also inundated with customers who find themselves unable to manage their debt and who are unable to repay mortgage loans.\r\n\r\nHome repossessions seem to be the only solution to this predicament. Even in such a climate, homeowners can still find ways to deal with mortgage arrears that will enable them to keep their homes. Hopefully soon the will be a <a href=\"http://www.arum.co.uk/blogs_index.php?blog=3&title=the_changing_face_of_consumer_collection&more=1&c=1&tb=1&pb=1\">code of conduct introduced</a> to the UK as there is in Ireland. A guide to dealing with arrears:\r\n\r\n1. Ask for a payment holiday from your lender:\r\n\r\nOne way that as homeowner, you can deal with mortgage arrears, especially where you suddenly find yourself unable to pay-is through consulting with the lender, explaining your financial status and requesting a payment holiday. This is a temporary measure which can assist you only for a few months. This will help you not to worry about monthly payments as you do everything within your power to find a solution. You will still owe the lender and once your financial fortunes improve, you will be expected to cover all your arrears and keep up with your payments. This way you will keep your home.\r\n\r\n2. Pay your arrears together with your monthly payments:\r\n\r\nIn certain circumstances, upon consultation with the lender, the lender may allow you to pay arrears together with your mortgage payments. This is usually so where the arrears are way less than your mortgage debt, or where you are in arrears for a few months. You will therefore contribute towards arrears as you keep up with payments.\r\n\r\n3. Rent out your home or a portion thereof:\r\n\r\nOne can also consider renting out his or her home. When you rent out your home, you can rent out somewhere cheaper or move in with family members or parents and the income from your leased home can go towards paying off your arrears. If moving in with family is not an option, you can rent out a room or a section of your home and use that income to pay your mortgage arrears.\r\n\r\n4. Give up your endowment policy:\r\n\r\nAnother way to deal with mortgage arrears is through giving up your endowment policy or selling it to an investor. This will give you access to a lump sum of money which you can use towards paying off your arrears in one go. It is wise to get financial advice before you do so.\r\n\r\n5. Claim against your mortgage insurance protection cover:\r\n\r\nIf you got into massive debt for one of the reasons or grounds covered by the policy, you can claim against your insurance and use the money to pay off your arrears.','What are mortgage arrears and how should you deal with them?','','publish','open','open','','how-to-deal-with-mortgage-arrears-html','','','2017-10-23 09:01:11','2017-10-23 09:01:11','',0,'http://fisawards.co.uk/how-to-deal-with-mortgage-arrears-html',0,'post','',0),(70,1,'2017-10-23 08:39:16','2017-10-23 08:39:16',' \r\n<h1>Finding the most suitable mortgage for your budget!</h1>\r\nNow that you have found a property that you want to call home; finding the most suitable finance with which to purchase it is the next big decision you will have to make.\r\n\r\nChoosing the best mortgage for your needs is quite a tricky task. You really need to get to grips with your personal finances and only choose a loan that you believe you can comfortably service over a period of 15-25 years.\r\n\r\nIt is important to do your research and ensure that you take all the necessary steps and measures to ensure that you get the best deal out of your mortgage before signing up to a loan that could turn out to be toxic further down the road.\r\n\r\nTip 1 - Get quotes From Several Lenders:\r\n\r\nThe rule to getting the most suitable mortgage is to get information and quotes from different lenders, not just the first lender willing to give you a loan.\r\n\r\nShopping around for a home loan can make all the difference and can save you thousands in the long run.\r\n\r\nThe only way to get the best finance deal for your home is through comparing the various lenders out there.\r\n\r\nTraditionally it is wise to put down a deposit of at least 20% and not borrow more than three times earnings in order to make sure the loan is affordable in the long run. Turns out the FSA is going to make mortgage advice compulsory so <a href=\"http://www.essentialifa.com/2012/08/13/compulsory-mortgage-advice-is-coming/\">you\'re going to get a finance lesson whether you like it or not</a> as of 2013.\r\n\r\nRepossessions are on the rise so make sure you do your maths before signing up to a mortgage you have no chance of making regular payments on. You will loose your home otherwise.\r\n\r\nTip 2 - Engage The Services Of A Broker:\r\n\r\nYou can also engage the services of a mortgage broker. Mortgage brokers have access to several lenders and they can contact as many lenders as possible making available to you information about a wider selection of products and loan terms for you to choose from.\r\n\r\nYou must however be warned that mortgage brokers are not obliged to find you the best deal unless you specifically contract them to do so on your behalf.\r\n\r\nUsing more than one broker can ensure that you get the best financing deal for your home. Different brokers are available to offer you their services from bank employees to whole of market brokers. The bank employees can tend to be biased towards their institution and may not be the best to consult if you want to choose the best suitable mortgage for your financial situation.\r\n\r\nTip 3 - Use Comparison Websites:\r\n\r\nMost companies appreciate that it can be a tiresome and time-consuming task to call different lenders and institutions, asking for quotes, sitting in meetings and gathering all the necessary information on your own. As a result, websites that give you already prepared rates, products, names of lenders and their terms can be accessed for information. These websites will help you compare rates, terms and different mortgage products and will enable you to choose the most suitable option that will suit your financial situation.\r\n\r\nComparison websites are your best option as all the information is readily available at the click of a button, and all you have to do is compare with what your financial situation is and choose the best one for yourself.\r\n\r\n<hr />','Finding the most suitable mortgage for your budget!','','publish','open','open','','how-to-find-the-most-suitable-mortgage-html','','','2017-10-23 08:56:38','2017-10-23 08:56:38','',0,'http://fisawards.co.uk/how-to-find-the-most-suitable-mortgage-html',0,'post','',0),(71,1,'2017-10-23 08:22:24','2017-10-23 08:22:24','<h1>Maybe you should change your estate agent if your property isn\'t selling</h1>\r\nGiven your need for a quick house sale, you engaged the services of a supposedly reputable estate agent, well known in your local area.\r\n\r\nHowever, after six months, no one has offered to buy your house. What do you do?\r\n<h2>Could your estate agent be the problem?</h2>\r\nThis is one of the questions you will ask yourself. In a recession where everything moves so slowly, it may even be harder to fathom your home remaining on the market for another six more months. What then would you do?\r\n\r\nThe first port of call will be arranging a meeting with your agent. There are some <a href=\"http://www.home-truths.co.uk/blog/7-questions-to-ask-your-estate-agent/\">basic questions</a> that they will have to provide robust answers to in order to avoid being sacked.\r\n\r\nYou can ask your agent whom he or she has sent your brochure to? At this point you will be trying to find out the kind of buyers the agency has been targeting and see if this can be widened and improved upon.\r\n\r\nAlso ask how many buyers have been sent emails about the property, and whether the agent has followed up those enquiries and secured viewings?\r\n\r\nYou can even ask to see the remaining brochures. Agents have a tendency not to print out more brochures when they run out and this could be one of the reasons that the house is still on the market. If there are not any left, ask that they reprint and send out more. You have the right to request this as you will be paying for the services at the end of the sale.\r\n\r\nWhere the estate agent has been bringing viewers to view your home and they never came back, you can follow up on this through your agent, to find out what the viewers- rather your potential buyers bought.\r\n\r\nIt is the <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">duty of your estate agent</a> to also keep a tab on what your viewers ended up deciding on. Although this may not seem helpful, it will assist you in giving you an idea of what buyers are looking for and you can go back to the drawing board if you need to <a href=\"/\">sell your home quickly</a>.\r\n<h2>If all else fails!</h2>\r\nWhen all else has failed with your estate agent, you can consider multi-agency agreements. Especially where one had a sole agent agreement, upon expiration of the notice, one can switch to a multi-agency agreement. This is when one instructs more than one agency to sell his or her home. The advantage of multi-agency agreements is that you will not be called upon to pay all the estate agents who assist you to sell your home, you will only pay commission fees to the estate agent who introduced you to the buyer of your home.\r\n\r\n<hr />','Maybe you should change your estate agent if your property isn\'t selling','','publish','open','open','','if-your-house-isnt-selling-should-you-change-your-estate-agent-html','','','2017-10-23 09:00:37','2017-10-23 09:00:37','',0,'http://fisawards.co.uk/if-your-house-isnt-selling-should-you-change-your-estate-agent-html',0,'post','',0),(73,1,'2017-10-23 08:35:47','2017-10-23 08:35:47','<h2>Understanding an estate agents commission policy</h2>\r\nEstate agents have been viewed in a decidedly bad light in recent times, particularly after the recent housing crash and are viewed by many with the same disdain as lawyers, politicians and journalists.\r\n\r\nWe have received numerous complaints from sellers regarding estate agents that have attempted to claim commission they were not due.\r\n\r\nIn order to clarify the murky world of estate agency fees, this article explains when you can reject an agent\'s claim for commission and who you can talk to when you feel that you are being taken advantage of.\r\n<h2>When is commission not payable?</h2>\r\nYou can reject a claim for commission by real estate agent if you have instructed the estate to withdraw your intentions to sell your home.\r\n\r\nIf the agent is a member is a member of The Property Ombudsman or National Association of Estate Agents, they waive their right to commission six months after your withdrawal.\r\n\r\nFurthermore, if the real estate agent attempts to additional charges on top of the commission which you were not told about from the start, you have the right to reject their claim for commission according to the Estate Agents Act 1979.\r\n<h2>When is commission payable?</h2>\r\nWhile you can reject a real estate agent\'s claim for commission if you have asked him or her to withdraw your intent to sell six months earlier, it is important to take note of an important ruling ( <a href=\"http://www.practicalconveyancing.co.uk/content/view/10354/1118/\">Dashwood v Fleurets Ltd [2007] EWHC 1610 QB</a> ) where the high court ruled in favour of the estate agent who claimed that there was proof that the estate agent had contributed to the sale of the property. In practise, this may mean that the estate agent introduced the buyer to purchase and not simply the property itself.\r\n<h2>Who to turn to if you need help:</h2>\r\nIf you feel as though you are being done in and are struggling with unfair claims by an estate agent there are two organizations that you can turn to in Britain. The Royal Institution for Chartered Surveyors and the National Association of Estate Agents operate internal complaints procedures who you can contact for help. The Ombudsman for Estate Agents also offers a complaints service for its member agencies. Furthermore, under the Consumer Act, all estate agents have to belong to an industry body.\r\n\r\nContact details for the relevant industry bodies are below:\r\n\r\nThe Ombudsman for Estate Agents Scheme: 01722 333306\r\n\r\nThe National Association of Estate Agents (NAEA): 01926 496800\r\n\r\n<hr />','Understanding an estate agents commission policy','','publish','open','open','','rejecting-an-estate-agents-claim-for-commission-html','','','2017-10-23 09:00:05','2017-10-23 09:00:05','',0,'http://fisawards.co.uk/rejecting-an-estate-agents-claim-for-commission-html',0,'post','',0),(77,1,'2017-10-23 08:39:32','2017-10-23 08:39:32','<h1>What is conveyancing? Understanding the process with us</h1>\r\nSelling or buying a home is not an easy and straightforward procedure. It is rather complicated and requires the services of conveyancing solicitors in order to take care of the legal transfer and ownership of your property.\r\n<h2>Conveyancing Process For House Sellers</h2>\r\nFrom the seller\'s perspective, the conveyancing (while simpler than when buying) can take anywhere up to 6-weeks and has three main stages.\r\n<h3>Stage 1</h3>\r\nThe first stage involves the sending out of draft contracts, which are to be negotiated between the parties later.\r\n\r\nThis is the stage where enquiries are also made. The buyer\'s solicitor will contact the seller\'s solicitor and the two solicitors will exchange details. The seller\'s solicitor will receive the draft contract on behalf of the seller, and then negotiate the draft contract. The seller\'s solicitor will then prepare the solicitor\'s package which includes the draft contract, copies of title deeds and previous title deeds, property information form and fixtures and fittings and contents form, amongst others. <a href=\"http://alldriroofing.co.uk/\" target=\"_blank\">Click here for roofing advice</a>.\r\n<h3>Stage 2</h3>\r\nThe second stage involves the exchange of contracts. This is where the seller and buyer exchange contracts after signing them and the deposit is paid over by the buyer.\r\n\r\nAt this stage both parties are now legally bound to follow the process through. Default by the buyer or seller can result in breach of contract. <a href=\"http://www.youtube.com/watch?v=B-TNB19MVu4&feature=relmfu\">Gazumping</a> by the seller can no longer take place at this stage. The deposit paid is non refundable and is paid by the buyer to the seller as security. If the buyer does not have this deposit, he or she can apply to the bank for a bridging loan.\r\n\r\nThe buyer\'s solicitor at this stage must draft a transfer document and send it to the seller\'s solicitor. In the event that the land or property is not registered, a special conveyance will have to be carried out. The transfer document transfers the property from the seller to the buyer and once both the seller and the buyer are in agreement, the transfer document is signed by both parties, and the buyer?s solicitor arranges for signing of mortgage documents and finalization of the transfer.\r\n<h3>Stage 3</h3>\r\nThe third and last stage is the completion stage wherein the buyer receives the title deeds and is handed the keys of the house. The seller is responsible for stamp duty and the transfer at the Land Registry is also arranged. The buyer can now move into the property, and the seller will now be forced to move out if he or she had not done so already. The buyer must now pay the balance of the house through solicitors that is the agreed price of sale minus the deposit already paid.\r\n\r\nThe property seller will now have to make alternative arrangements for his accommodation. At this stage the conveyancing process is concluded.\r\n\r\n ','What is conveyancing? Understanding the process with us','','publish','open','open','','understanding-the-conveyancing-process-html','','','2017-10-23 09:27:11','2017-10-23 09:27:11','',0,'http://fisawards.co.uk/understanding-the-conveyancing-process-html',0,'post','',0),(78,1,'2017-10-23 08:37:42','2017-10-23 08:37:42',' \r\n<h1>Understanding the Property Misdescriptions Act 1991</h1>\r\nWhat is the Property Misdescriptions Act 1991?\r\n\r\nThe Property Misdescriptions Act was created to protect homebuyers from false advertising.\r\n\r\nIt prohibits Estate Agents from misleading homebuyers, by making false or inaccurate statements about the specifics of a selling property. This applies whether that statement is made verbally or in writing, and applies to physical descriptions of the property, as well as title details, lease details, and other legal details. Contravening this act is seen as a criminal offense, and an Estate Agent found guilty is liable to pay a fine.\r\n<h2>What constitutes a Misdescription?</h2>\r\nEven if the statement is not intentionally or explicitly false, it may be considered misleading. A statement is considered misleading on the basis of what a reasonable layperson may be expected to infer from it.\r\n<h3>Misdescription includes:</h3>\r\nOver-emphasising enhancements e.g. describing alterations to a part of the home, in a way that implies they were done to the home as a whole. ? Omitting important information. ? Inaccurate location information. Other forms of inaccurate information i.e. proximity to amenities must be stated realistically and specifically.\r\n\r\nMany Agents make use of disclaimer clauses to avoid contravening the act, especially where the agent may not have adequate information. A disclaimer implies that the buyer is responsible for verifying all information, and that the agent cannot be held responsible for incorrect information.\r\n<h3>How does it affect Agents and Private House Sellers?</h3>\r\nIndividuals who sell their house privately are not subject to the Property Misdescriptions Act. However, if a sale is concluded and buyers discover evidence of false advertising, they may opt to sue house sellers for damages.\r\n<h2>An Estate Agent\'s Responsibilities</h2>\r\nEstate Agents are governed by several fair business practice acts including; The Estate Agents Act 1979, Consumer Protection from Unfair Trading Regulations 2008, The Property Misdescriptions Act 1991. They are also subject to regulations outlined by the organisations and redress schemes they may be members of.\r\n\r\nThe <a href=\"http://www.out-law.com/en/articles/2012/october/repeal-of-property-sales-law-will-pose-risks-for-housebuilders-says-expert/\">government is currently reviewing</a> the need for the Property Misdescriptions Act 1991, as similar regulations are outlined in the Consumer Protection from Unfair Trading Regulations 2008.\r\n\r\nUnder the Property Misdescriptions Act, the Agent is legally required to ensure that all statements made about a selling property are accurate, and not misleading. This includes descriptions of:\r\n\r\n1. The area / location. 2. Proximity to amenities. 3. Titles, leases and deeds. 4. The property size, measurements and architectural specifics.\r\n\r\nA buyer may not withdraw from a sale, where contracts have already been exchanged, on the basis of a property misdescription. However they may take action by reporting the Agent to the Property Ombudsman, Ombudsman Services: Property or Trading Standards Office.\r\n\r\nA buyer may want to discuss the infringement with the Agent in question first, as they may have a viable explanation / defence as to why certain information was misrepresented or omitted. If you feel that you have purchased a house on the basis of blatantly, and intentionally, misleading information it is important to seek legal advice.\r\n\r\n ','The property misdescriptions act 1991','','publish','open','open','','understanding-the-property-misdescriptions-act-1991-html','','','2017-10-23 08:59:27','2017-10-23 08:59:27','',0,'http://fisawards.co.uk/understanding-the-property-misdescriptions-act-1991-html',0,'post','',0),(79,1,'2017-10-23 08:38:06','2017-10-23 08:38:06','When your buyer\'s house valuation report comes in with a figure lower than that which you have negotiated this does not necessarily spell the end of your sale. <a href=\"http://www.wearespartacus.org.uk/top-10-tips-to-getting-to-know-house-surveys\" target=\"_blank\">Find out about surveyors</a>.\r\n\r\nSelling a home can be quite an expensive process, with all the expenses you will incur to effect repairs and replacements of what is old and broken.\r\n\r\nYou can spend a fortune fixing the obvious cracks, chirps, breakages and worn out places of your home and the buyer\'s valuation or the structural surveyor may still come back with more bad news about the state of your home.\r\n\r\nWhen you are the buyer, this will be disappointing as your mortgage lender may decide that they no longer want to lend on the property.\r\n\r\nAgain this does not spell the end to your move.\r\n<h2>Alternative To Explore With Your Buyer</h2>\r\nAs an interested buyer you do not have to walk away after a bad survey. One alternative is finding out how much repairs to the structural fault will cost. It may be something that can be easily fixed, without incurring high costs for the repairs. If you a cash buyer you can of course do what you like as you\'re not dependent on a mortgage (this is explained in more detail <a href=\"http://www.opusmove.co.uk/property-selling-questions-answers-york.aspx\" target=\"_blank\">here</a>).\r\n\r\nSecondly, you can renegotiate with the seller (after having obtained a quotation on how much the repairs will cost) by asking the seller to reduce their price by the same amount. This way you can still have your dream home. For more advice, <a href=\"http://www.planning-permission.org.uk/new-build\" target=\"_blank\">click here</a>.\r\n\r\nIn most instances, the most common problems include structural movement, timber and damp problems; rot- wet and dry, woodworm, defective wiring and an outdated or defective heating system. The seller can replace some of these, although this will mean more expenses for him.\r\n\r\nIt is also important to consider that an evaluation is exactly that - an evaluation, it enables the lender to make a lending decision. The buyer can still make his or her own decision about whether he or she really wants the house.\r\n<h2>Open Negotiation Is the Key</h2>\r\nIn most instances, what it takes to solve the problem is the coming together of the seller and the buyer and their working together in tackling the problems that would have arisen from the valuation.\r\n\r\nThe buyer\'s decision to want to buy the house was not on the basis of the valuation, but rather on his or her general impression of the house, and this often is not changed overnight by the valuation report obtained from the buyer\'s lender. The seller too can exercise some reasonableness and accommodate the new findings and adjust the price realistically. This way all parties will win and the problem will be resolved.\r\n\r\nHowever, if you\'re in the property market and are looking for a private lender to fund your project, a surveyor will have to come on site and take a report. They will go through all your figures and discuss an end product with you to see how suitable you are.\r\n\r\n<strong>To see the development loan process, <a href=\"https://www.hunterfinance.co.uk/property-development-finance/lending-process\" target=\"_blank\">visit this website</a>.</strong>','Has a surveyor highlighted problems with your property? Here are some alternative ideas','','publish','open','open','','what-to-do-if-a-buyers-valuation-or-structural-survey-highlights-problems-with-your-house-html','','','2017-11-09 16:18:32','2017-11-09 16:18:32','',0,'http://fisawards.co.uk/what-to-do-if-a-buyers-valuation-or-structural-survey-highlights-problems-with-your-house-html',0,'post','',0),(80,1,'2017-10-23 08:38:26','2017-10-23 08:38:26','<h1>Is your house not selling? Here is what you could do</h1>\r\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\r\n\r\nIt could be that the effects of the global recession have become personal and you need to sell a house fast due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home. Make sure you are with the right estate agent - <a href=\"http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html\">read more here.</a>\r\n\r\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell. <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Have a look at 10 reasons your house isn\'t selling.</a>\r\n<h2><strong>Rent your home:</strong></h2>\r\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job-related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\r\n<h2><strong>Price your home at the right price:</strong></h2>\r\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\r\n\r\nHave your home professionally cleaned. There is nothing more off-putting than see dirty windows are paintwork when looking at properties to buy. It is estimated that a buyer will pay 12% less for a dirty home! <a href=\"https://www.no1cleaningsolutions.co.nz/services/residential-domestic-cleaning/\" target=\"_blank\">Click here </a>for residential cleaning.\r\n<h2><strong>Renovate: give your home a new lease of life</strong></h2>\r\n<em>Thinking like a buyer when making home improvements could assist you in attracting the right buyers.</em>\r\n<ul>\r\n <li>Ensure that all light fixtures in your home are clean and working - <a href=\"http://electrician.me.uk/\" target=\"_blank\">get them checked by a qualified electrician</a></li>\r\n <li>Fix cracks and damp in walls</li>\r\n <li>Replace your windows with the latest double or triple glazed options. Rooflights and skylights make a great feature in living spaces.</li>\r\n <li>Give the house a fresh coat of paint on the inside and outside - <a href=\"http://boschkitchens.co.uk/\" target=\"_blank\">have a look at other home improvement options</a></li>\r\n <li>Update your furnishings for a modern look. <a href=\"/\">Click here</a> for some design inspiration.</li>\r\n <li>Keep your garden neat and tidy and consider getting a landscape architect in to give it a fresh new look</li>\r\n</ul>\r\nIf your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\r\n\r\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.\r\n<h3><a href=\"http://fisawards.co.uk/contact\">Send us your top property tips</a></h3>','Is your house not selling? Here is what you could do','','publish','open','open','','what-to-do-if-your-house-will-not-sell-html','','\nhttp://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html','2019-06-07 08:58:25','2019-06-07 08:58:25','',0,'http://fisawards.co.uk/what-to-do-if-your-house-will-not-sell-html',0,'post','',0),(81,1,'2017-10-23 08:38:43','2017-10-23 08:38:43','<h1>Has your house sale turned bad? Here\'s what you should do</h1>\r\n<div class=\"entry-content\">\r\n\r\nA house sale gone bad can be disheartening to any seller and may have far-reaching implications for the seller especially where the sale was for purposes of avoiding home repossession.\r\n\r\nGiven the economic climate we are faced with, the seller may be faced with uncertainty of not knowing when the property will sell, if at all. However there are things a seller can do when faced with a house sale that gone sour.\r\n<h2>Gazumping:</h2>\r\nGazumping is when a <a href=\"http://www.youtube.com/watch?v=B-TNB19MVu4\">seller refuses</a> usually at the last minute to authorise his or her conveyancing solicitor to finalise the sale and exchange contracts. There are many reasons why this may happen.\r\n\r\nIn most cases the seller may have received a higher offer on the property from another prospective buyer and is seriously considering selling to the prospective buyer. If the sale was due an impending home repossession and the seller wants to sell to avoid repossession, any positive change to the seller?s financial situation can lead to gazumping.\r\n<h2>Gazundering:</h2>\r\nGazundering on the other hand is when the buyer refuses to exchange contracts of sale with the seller or his agent and is also usually at the last minute. Reasons for this may vary, and may include the fact that the buyer is of opinion that the seller is too desperate and may accept a reduced price offer for the property.\r\n\r\nGazumping and gazundering has negative financial implications for one of the parties to the sale agreement and can also create havoc in the chain of transactions linked to the purchase or sale of that property.\r\n<h2>What you should do if the buyer withdraws at the last minute?</h2>\r\nWhen a buyer or a seller changes his or her mind at the last minute through gazundering or gazumping, there is not much that one can legally do as one cannot effectively force a sale. All sales are not legally binding unless they are reduced to and proved in writing in the form of contracts exchanged.\r\n\r\nOne way to combat gazundering is through lock out agreements by the seller. Also, a specific period can be set for exchanging contracts and during this time the seller will not be allowed to sell to someone else. This will combat against gazumping. When the buyer withdraws at the last minute, a seller can consider an auction sale of his property for a quick sale.\r\n\r\nThe best advice is to speak to a solicitor for legal advice and guidance especially on what to do when the chain breaks and more proactively on how one can be protected against gazumping and gazundering. When the chain breaks, this may lead to financial and possibly legal negative implications for the buyer and also for the seller.\r\n\r\n</div>','Has your house sale turned bad? Here\'s what you should do','','publish','open','open','','what-to-do-when-good-house-sales-turn-bad-html','','','2017-10-23 08:57:47','2017-10-23 08:57:47','',0,'http://fisawards.co.uk/what-to-do-when-good-house-sales-turn-bad-html',0,'post','',0),(82,1,'2017-10-23 08:39:14','2017-10-23 08:39:14','<h1>A list of people you should inform when moving home</h1>\r\nMoving house is an exciting time but it is also a major administrative headache.\r\n\r\nYour home or rather previous home would have been in your name, and you were responsible for paying Council Tax, utilities (water and gas), TV License, broadband, sky TV and many other services that would have been in your name. Oh, and if you drove a car you are also going to have to tell the DVLA.\r\n\r\nFurthermore, friends, family, your bank and your employers would all have the previous address as your place of fixed abode, and changes to this will not only affect you but them as well indirectly.\r\n\r\nTo make sure you avoid the <a href=\"http://www.gabbyadler.co.uk/2012/ten-common-mistakes-people-make-when-they-move-home/\">most common mistakes</a> you will need to notify everyone on your list and furnish them with details of your new address. This will include friends, family members and other relatives, employers and colleagues.\r\n\r\nNext on your list of people to inform will be the council, the DVLA, utilities service providers. If the move is a result of a house sale, your conveyancing solicitor will take care of all the paperwork relating to the Deeds of the property.\r\n\r\nIf you are moving from rented accommodation you will still need to contact the utilities providers and give gas an water meter readings. As someone else will be renting the property, this information must be provided to the council to enable them to effect a name change for bills and other payments. You can do this online, via email, a fax or by writing letters to the relevant authorities.\r\n\r\nThis checklist can assist you to establish that all persons and service providers concerned are notified of your move:\r\n\r\n1. Your water company 2. Your gas company 3. Your electricity company 4. Your telephone company 5. The broadband provider 6. The council in the area you lived in 7. Your satellite cable company 8. The utilities company or service providers 9. Your creditors\r\n\r\nInforming the relevant people and service providers will make your move smooth and the transition even smoother to the new owners or tenants. It also helps you to ensure that you are not charged of any rates or rather that you do not incur bills in your absence which bills will continue to accumulate and may spoil your credit rating.\r\n\r\nMoving house can be a blessing when handled correctly and can be one\'s worst nightmare if one neglects obvious and necessary things like informing those around him or her of the move to a new house.\r\n\r\nnfo] -->\r\n<!-- End footer include -->','A list of people you should inform when moving home','','publish','open','open','','who-to-inform-when-moving-house-html','','','2017-10-23 08:57:04','2017-10-23 08:57:04','',0,'http://fisawards.co.uk/who-to-inform-when-moving-house-html',0,'post','',0),(88,1,'2017-10-23 08:51:51','2017-10-23 08:51:51','<h1>Have you had a bad solicitors service? Check out the process of complaining</h1>\r\nIf you are not satisfied with the service provide by your conveyancing solicitor (during your house sale or purchase) there are avenues you can pursue in order to make a formal complaint.\r\n\r\nAll issues pertaining to the legal transfer of title (for residential property) by a conveyancing solicitor of licensed conveyancer can be reported to the appropriate regulatory body.\r\n<h2>Your First Port Of Call (Your Solicitor)</h2>\r\n1. You can complain directly to the solicitor or the conveyancer\r\n\r\nAny solicitor or conveyancer must have a complaints procedure to be followed in the event of misconduct.\r\n\r\nDetails of how to initiate the complaints procedure can be found on their website or by speaking to the office administrator.\r\n\r\nYou can also contact the legal ombudsman who will ensure that your complaint is dealt with in a proper manner and will also give you advice on how to lodge your complaint.\r\n\r\nIf you are still not satisfied with how the solicitor or conveyancer deals with you matter, you can complain to the legal ombudsman as explained above, or to the council of licensed conveyancers. The other alternatives are going to the alternative dispute resolution or going to court.\r\n<h2>Bring Legal Action</h2>\r\nFailing that you can always <a href=\"http://www.sethlovisprofneg.co.uk/Solicitors-Barristers-Negligence/Conveyancing-Property-Negligence.shtml\">try to bring legal action</a> against your conveyancer with the help of a \"Solicitor\'s Negligence\" specialist.\r\n\r\n2. You can complain to the Council of Licensed Conveyancers (CLC)\r\n\r\nIf you are dealing with a licensed conveyancer you can lodge your complaint with CLC, if the complaint to the conveyancer did not yield any dividends regarding your case.\r\n\r\nThe CLC deals with issues of professional misconduct of the conveyancer. If it is a matter of negligence, the CLC will refer the matter to the conveyancer?s insurers before they can deal with the matter. The CLC can make the licensed conveyancer pay you compensation of up to £5000, repay you the fees you paid or put an error made right.\r\n\r\nThe CLC can also withdraw the conveyancer\'s licence or suspend them.\r\n<h2>Their Regulatory Body</h2>\r\n3. You can complain to the Solicitors\' Regulation Authority (SRA)\r\n\r\nIf one was dealing with a solicitor, one can complain to the SRA- only in instances where your matter has not been resolved by the solicitor or the legal ombudsman.\r\n\r\nThe SRA investigates and deals with matters of professional misconduct like lying to clients, taking unfair advantage of clients, holding onto clients money, breaking an undertaking given to you, discrimination on grounds of race, religion, age or disability by the solicitor, amongst others. The SRA has powers to prosecute a solicitor, and can take steps against a specific solicitor or the whole firm and the solicitor can be struck off from the roll of solicitors. The SRA does not however make the solicitor pay you compensation. For compensation you can try another method of complaint and a different avenue altogether.\r\n\r\nIn conclusion, you have a right to complain and you can enforce this right against your solicitor or conveyancer.\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />','Have you had a bad solicitors service? Check out the process of complaining','','inherit','closed','closed','','64-revision-v1','','','2017-10-23 08:51:51','2017-10-23 08:51:51','',64,'http://fisawards.co.uk/64-revision-v1',0,'revision','',0),(89,1,'2017-10-23 09:20:25','2017-10-23 09:20:25','<h1>What you need to know about the 7 day cooling off period</h1>\nIf you find yourself pressured to sign with an agent who promises to be able to sell your house fast, it is important to note that they are now obliged to provide potential house sellers with a 7 day cooling off period. If this is not provided, you may be able to withhold payment of the <a href=\"estate-agents.html\">estate agents fee for selling</a> your property.\n<h2><strong>What is a cooling off period?</strong></h2>\nEstate Agency contracts usually stipulate heavy penalty fees for contract cancelation. Thus it has been deemed necessary for Estate Agents to provide their clients with a 7 day cooling off period, during which they may cancel their contract penalty free. This applies only if it is signed at a location other than the agents business premises e.g. at the selling property. When signing such a contract house sellers must be given clear written notice, stating their right to cancel the contract within the cooling off period. Note that this applies to agency agreements but not contracts to buy, sell or let. If you need advice about letting a property, see this website\n<h2><strong>Cooling off Controversy:</strong></h2>\nInitially instituted to protect house sellers from aggressive unsolicited sales advances, this regulation has become the source of much debate between Consumer Representation Bodies and Estate Agency Organizations.\n\nThe \"Cancelation of Contracts Made in a Consumer\'s Home or Place of Work Etc Regulations 2008\" states that clients, who sign contracts away from the relevant business premises, are entitled to the 7 day cooling off period. This is the case whether the sales visit is solicited or unsolicited by the estate agent.\n\nThe point of controversy centers on a stipulation stating that this ruling does not apply in the case of \"the construction, sale or rental of immovable property\" (with certain exceptions). Certain agents believe that this exemption applies to Real Estate sales (\'immovable property\'). However, the Office of Fair Trading has strongly advised that Estate Agencies are subject to the cooling off period regulation, and may be heavily fined if they violate it.\n\nThe wording of the act is open to discussion, but by and large ethical estate agents have agreed to adhere to this consumer protection policy.\n\nAny contract provided to you by an estate agent has to have a notice detailing your rights to cancel the agreement within 7 days. Any contract that does not include this is <a href=\"http://www.consumeractiongroup.co.uk/forum/showthread.php?299907-quot-estate-agent-be-warned-quot-%21%21%21\">automatically unenforceable</a> .\n<h2><strong>Read your contract:</strong></h2>\nBefore you sign a contract of any sort, it is vital that you read and understand what you are signing. Look out for stipulations pertaining to the type of agency agreement, the length of the agreement, and your rights and procedures for cancelling the contract. If you are unhappy with any of these terms do not sign. You can obtain advice on your rights from a solicitor, or a local Citizens Advice Bureau.\n<h2><strong>What can you do if you have a problem with your Estate Agent:</strong></h2>\nAll estate agents are bound by the <a href=\"http://www.legislation.gov.uk/ukpga/1979/38/section/18\">Estate Agents Act 1979 (EAA 79)</a>, which requires that they belong to a redress scheme such as <a href=\"http://www.tpos.co.uk/\">The Property Ombudsman</a> (TPO), thus providing house sellers with a port in the storm, if they have a problem with their agent.\n\nWhen choosing an estate agency to <a href=\"/\">sell a house</a>, it is also best to choose one registered with a relevant trade organization such as; <a href=\"http://www.naea.co.uk/\">The National Association of Estate Agents</a> (NAEA), <a href=\"http://www.guildproperty.co.uk/\">The Guild of Professional Estate Agents</a> or <a href=\"http://www.rics.org/uk/\">The Royal Institution of Chartered Surveyors</a> (RICS). Choosing an agent registered with one of these bodies ensures that you will get a better, and more ethical, level of customer service.\n\n ','What you need to know about the 7 day cooling off period','','inherit','closed','closed','','65-autosave-v1','','','2017-10-23 09:20:25','2017-10-23 09:20:25','',65,'http://fisawards.co.uk/65-autosave-v1',0,'revision','',0),(90,1,'2017-10-23 08:52:40','2017-10-23 08:52:40','<h1>What you need to know about the 7 day cooling off period</h1>\r\nIf you find yourself pressured to sign with an agent who promises to be able to sell your house fast, it is important to note that they are now obliged to provide potential house sellers with a 7 day cooling off period. If this is not provided, you may be able to withhold payment of the <a href=\"estate-agents.html\">estate agents fee for selling</a> your property.\r\n<h2><strong>What is a cooling off period?</strong></h2>\r\nEstate Agency contracts usually stipulate heavy penalty fees for contract cancelation. Thus it has been deemed necessary for Estate Agents to provide their clients with a 7 day cooling off period, during which they may cancel their contract penalty free. This applies only if it is signed at a location other than the agents business premises e.g. at the selling property. When signing such a contract house sellers must be given clear written notice, stating their right to cancel the contract within the cooling off period. Note that this applies to agency agreements but not contracts to buy, sell or let.\r\n<h2><strong>Cooling off Controversy:</strong></h2>\r\nInitially instituted to protect house sellers from aggressive unsolicited sales advances, this regulation has become the source of much debate between Consumer Representation Bodies and Estate Agency Organizations.\r\n\r\nThe \"Cancelation of Contracts Made in a Consumer\'s Home or Place of Work Etc Regulations 2008\" states that clients, who sign contracts away from the relevant business premises, are entitled to the 7 day cooling off period. This is the case whether the sales visit is solicited or unsolicited by the estate agent.\r\n\r\nThe point of controversy centers on a stipulation stating that this ruling does not apply in the case of \"the construction, sale or rental of immovable property\" (with certain exceptions). Certain agents believe that this exemption applies to Real Estate sales (\'immovable property\'). However, the Office of Fair Trading has strongly advised that Estate Agencies are subject to the cooling off period regulation, and may be heavily fined if they violate it.\r\n\r\nThe wording of the act is open to discussion, but by and large ethical estate agents have agreed to adhere to this consumer protection policy.\r\n\r\nAny contract provided to you by an estate agent has to have a notice detailing your rights to cancel the agreement within 7 days. Any contract that does not include this is <a href=\"http://www.consumeractiongroup.co.uk/forum/showthread.php?299907-quot-estate-agent-be-warned-quot-%21%21%21\">automatically unenforceable</a> .\r\n<h2><strong>Read your contract:</strong></h2>\r\nBefore you sign a contract of any sort, it is vital that you read and understand what you are signing. Look out for stipulations pertaining to the type of agency agreement, the length of the agreement, and your rights and procedures for cancelling the contract. If you are unhappy with any of these terms do not sign. You can obtain advice on your rights from a solicitor, or a local Citizens Advice Bureau.\r\n<h2><strong>What can you do if you have a problem with your Estate Agent:</strong></h2>\r\nAll estate agents are bound by the <a href=\"http://www.legislation.gov.uk/ukpga/1979/38/section/18\">Estate Agents Act 1979 (EAA 79)</a>, which requires that they belong to a redress scheme such as <a href=\"http://www.tpos.co.uk/\">The Property Ombudsman</a> (TPO), thus providing house sellers with a port in the storm, if they have a problem with their agent.\r\n\r\nWhen choosing an estate agency to <a href=\"/\">sell a house</a>, it is also best to choose one registered with a relevant trade organization such as; <a href=\"http://www.naea.co.uk/\">The National Association of Estate Agents</a> (NAEA), <a href=\"http://www.guildproperty.co.uk/\">The Guild of Professional Estate Agents</a> or <a href=\"http://www.rics.org/uk/\">The Royal Institution of Chartered Surveyors</a> (RICS). Choosing an agent registered with one of these bodies ensures that you will get a better, and more ethical, level of customer service.\r\n\r\n ','What you need to know about the 7 day cooling off period','','inherit','closed','closed','','65-revision-v1','','','2017-10-23 08:52:40','2017-10-23 08:52:40','',65,'http://fisawards.co.uk/65-revision-v1',0,'revision','',0),(93,1,'2017-10-23 08:55:06','2017-10-23 08:55:06','<h1>Is your house difficult to sell? Here are 10 common problems</h1>\r\n<div class=\"entry-content\">\r\n\r\nThe time has come for you to sell your home, and you are envisioning a stress free and relatively fast sale. However, there are several common problems that can get in the way of this, and make it difficult to secure an offer.\r\n<h2>Problem 1 - Repairs and Maintenance:</h2>\r\nBefore letting your estate agent put your house on the market it is vital that you handle all basic repair and maintenance issues that could turn buyers off and delay your sale.\r\n\r\nThese issues run the gamut from messy and overgrown gardens, to doors that do not fit properly into their door-frames, and stained sinks. Taking care of all basic repairs, and sprucing up the home with some fresh paint, is a good first step towards impressing buyers.\r\n\r\nRemember that your front garden is the first thing a prospective house buyer gets to see of your property, so you may also want to focus on improving it kerb appeal (your homes appearance from the outside).\r\n<h2>Problem 2 - Uncontrollable Factors:</h2>\r\nIf a home has a dubious history, is built on a flood plain, or is in the vicinity of problem plants such as Japanese Knotweed, these dilemmas can make it hard to sell your house quickly.\r\n\r\nThere is little you can do about the flood-plain issue (except to make best endeavors to flood proof your home) however, <a href=\"http://www.jksl.com/private-gardens-and-mortgages.htm\">problem plants can be removed by specialists</a> and they should be contacted as soon as possible.\r\n<h2>Problem 3 - Damp:</h2>\r\nClearly visible water stains and damp marks, on the inside and outside of your home, as well as musty smelling rooms, are a clear indication to buyers that the house has not been properly maintained. It is important that you take care of the problem causing the damp properly, and not attempt to simply cover it up with paint and air freshener, as buyers are often very through in their inspection of a selling property.\r\n<h2>Problem 4 - Odors:</h2>\r\nSmell is our most dominant sense. Thus it is important, when showing your house that you eradicate all unpleasant smells from your home. Smells such as cigarette smoke, mildew and pet odors, are a huge turn off to buyers. Do not simply try to mask smells with air freshener, as potential buyers may find this suspicious.\r\n<h2>Problem 5 - Divergent Decorative Tastes:</h2>\r\nWhen trying to sell a home it is not advisable to make drastic and irreversible renovations, as this not only causes you to have to raise your selling price, but these changes may also send prospective buyers running. Everyone has different tastes; so when getting your place ready for sale focus on basic improvements and keep paint colors neutral. There are small changes that you can make to enhance a room, that won\'t set you back a fortune e.g. add lamps to bring warm light to gloomy rooms, replace dowdy curtains with tasteful white sheers, etc...\r\n<h2>Problem 6 - The Area:</h2>\r\nTry to get on good terms with your neighbors, as property buyers may talk to them to get a feel for the area. Noisy / Anti-social neighbors are a big turn off to prospective buyers, so it will be helpful if you can get the neighbors on your side. Other problems include the area having poor network reception, or no access to amenities such as schools and shops. If this is the case find area selling points to balance these negatives out.\r\n\r\nHere at us we buy any house in any condition, anywhere in the UK. Call us today to find out how we can help you <a href=\"/\">sell your house fast</a> with the least amount of fuss possible.\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n</div>\r\n ','Is your house difficult to sell? Here are 10 common problems','','inherit','closed','closed','','62-revision-v1','','','2017-10-23 08:55:06','2017-10-23 08:55:06','',62,'http://fisawards.co.uk/62-revision-v1',0,'revision','',0),(94,1,'2017-10-23 09:25:53','2017-10-23 09:25:53','<h1>Finding the best estate agent is a great idea!</h1>\nWhen it comes to selling your home, the success of your sale is hugely dependent on your estate agent.\n\nYour choice of an estate agent will determine largely what price you sell for and whether the sale will conclude in a timely manner.\n\nChoosing your estate agent therefore requires careful consideration. It is never a good idea to choose an estate agent purely on price. Experience is what you\'re looking for as a shoddy agent can cause more stress than you can believe.\n\nSo how then should one choose an estate agent? One must choose the best and most experienced when it comes to selling your type of property - be it a flat, a house with a big garden, an old house or a house in a rural setting. This is the primary consideration when short-listing agents. FIn\n<h2>How To Research Your Local Agents</h2>\nTake some time to research the agents in your area. Who seem to have the <a href=\"http://www.vizzihome.co.uk/property_market_share.php\">most \"for sale\" boards</a> up? They are most likely the best agent but are they selling your type of property?\n\nYou must not pick any agent who charges the lowest commission or the one who offers the highest valuation of your property.\n\nBe wary of any agent that caves in when you start to negotiate on their fee. Is this how they are going to negotiate with buyer on your behalf over the sale price of your house!?\n\nAlso, an agent that tells you your house is worth more than it actually is does your sale a major disservice. Instead of selling for more, your house may stay on the market for a long time without attracting any interest whatsoever. This too may be a sign of lack of experience on the estate agent?s side.\n\nSpend time rather monitoring agents in your area to see which ones are selling property quickly. The local newspapers, Rightmove Property Portal, Zoopla and driving around in your neighborhood and talking to friends and family can help you get a feel for which the best agent are.\n\nAs you do your research, it is important to find which estate agents sell property similar to yours. Once you have located them, the next step is to call them pretending to be a potential buyer. This mystery shopping exercise will give you a feel for how they will \"sell\" your house. Which estate agent pushes hardest to get you through the door of a property for a viewing? That\'s the kind of agent you want on your side.\n\nAs you visit the different estate agents in their offices, have a check-list handy and make sure that most of the questions you have are answered satisfactorily.\n\nYour check list should include such questions like what other similar properties to yours they have sold and at what price, how long it took to sell the property and how many viewings did they have on the property, how many buyers do they have on their books that are looking for properties similar to yours.\n<h2>Professional Bodies Governing Estate Agents</h2>\nYou should also find out if they are a member of a professional body such as the Property Ombudsman or The NAEA (National Association of Estate Agents). Have they have signed a code of conduct and are bound by such code? This is important information that will help you to choose the best estate agent to sell your property quickly and without fuss.\n\n<hr />','Finding the best estate agent is a great idea!','','inherit','closed','closed','','61-autosave-v1','','','2017-10-23 09:25:53','2017-10-23 09:25:53','',61,'http://fisawards.co.uk/61-autosave-v1',0,'revision','',0),(95,1,'2017-10-23 08:55:38','2017-10-23 08:55:38','<h1>Finding the best estate agent is a great idea!</h1>\r\nWhen it comes to selling your home, the success of your sale is hugely dependent on your estate agent.\r\n\r\nYour choice of an estate agent will determine largely what price you sell for and whether the sale will conclude in a timely manner.\r\n\r\nChoosing your estate agent therefore requires careful consideration. It is never a good idea to choose an estate agent purely on price. Experience is what you\'re looking for as a shoddy agent can cause more stress than you can believe.\r\n\r\nSo how then should one choose an estate agent? One must choose the best and most experienced when it comes to selling your type of property - be it a flat, a house with a big garden, an old house or a house in a rural setting. This is the primary consideration when short-listing agents.\r\n<h2>How To Research Your Local Agents</h2>\r\nTake some time to research the agents in your area. Who seem to have the <a href=\"http://www.vizzihome.co.uk/property_market_share.php\">most \"for sale\" boards</a> up? They are most likely the best agent but are they selling your type of property?\r\n\r\nYou must not pick any agent who charges the lowest commission or the one who offers the highest valuation of your property.\r\n\r\nBe wary of any agent that caves in when you start to negotiate on their fee. Is this how they are going to negotiate with buyer on your behalf over the sale price of your house!?\r\n\r\nAlso, an agent that tells you your house is worth more than it actually is does your sale a major disservice. Instead of selling for more, your house may stay on the market for a long time without attracting any interest whatsoever. This too may be a sign of lack of experience on the estate agent?s side.\r\n\r\nSpend time rather monitoring agents in your area to see which ones are selling property quickly. The local newspapers, Rightmove Property Portal, Zoopla and driving around in your neighborhood and talking to friends and family can help you get a feel for which the best agent are.\r\n\r\nAs you do your research, it is important to find which estate agents sell property similar to yours. Once you have located them, the next step is to call them pretending to be a potential buyer. This mystery shopping exercise will give you a feel for how they will \"sell\" your house. Which estate agent pushes hardest to get you through the door of a property for a viewing? That\'s the kind of agent you want on your side.\r\n\r\nAs you visit the different estate agents in their offices, have a check-list handy and make sure that most of the questions you have are answered satisfactorily.\r\n\r\nYour check list should include such questions like what other similar properties to yours they have sold and at what price, how long it took to sell the property and how many viewings did they have on the property, how many buyers do they have on their books that are looking for properties similar to yours.\r\n<h2>Professional Bodies Governing Estate Agents</h2>\r\nYou should also find out if they are a member of a professional body such as the Property Ombudsman or The NAEA (National Association of Estate Agents). Have they have signed a code of conduct and are bound by such code? This is important information that will help you to choose the best estate agent to sell your property quickly and without fuss.\r\n\r\n<hr />','Finding the best estate agent is a great idea!','','inherit','closed','closed','','61-revision-v1','','','2017-10-23 08:55:38','2017-10-23 08:55:38','',61,'http://fisawards.co.uk/61-revision-v1',0,'revision','',0),(96,1,'2017-10-23 08:56:16','2017-10-23 08:56:16','<h1>What is conveyancing? Understanding the process with us</h1>\r\nSelling or buying a home is not an easy and straightforward procedure. It is rather complicated and requires the services of conveyancing solicitors in order to take care of the legal transfer and ownership of your property.\r\n<h2>Conveyancing Process For House Sellers</h2>\r\nFrom the seller\'s perspective, the conveyancing (while simpler than when buying) can take anywhere up to 6-weeks and has three main stages.\r\n<h3>Stage 1</h3>\r\nThe first stage involves the sending out of draft contracts, which are to be negotiated between the parties later.\r\n\r\nThis is the stage where enquiries are also made. The buyer\'s solicitor will contact the seller\'s solicitor and the two solicitors will exchange details. The seller\'s solicitor will receive the draft contract on behalf of the seller, and then negotiate the draft contract. The seller\'s solicitor will then prepare the solicitor\'s package which includes the draft contract, copies of title deeds and previous title deeds, property information form and fixtures and fittings and contents form, amongst others.\r\n<h3>Stage 2</h3>\r\nThe second stage involves the exchange of contracts. This is where the seller and buyer exchange contracts after signing them and the deposit is paid over by the buyer.\r\n\r\nAt this stage both parties are now legally bound to follow the process through. Default by the buyer or seller can result in breach of contract. <a href=\"http://www.youtube.com/watch?v=B-TNB19MVu4&feature=relmfu\">Gazumping</a> by the seller can no longer take place at this stage. The deposit paid is non refundable and is paid by the buyer to the seller as security. If the buyer does not have this deposit, he or she can apply to the bank for a bridging loan.\r\n\r\nThe buyer\'s solicitor at this stage must draft a transfer document and send it to the seller\'s solicitor. In the event that the land or property is not registered, a special conveyance will have to be carried out. The transfer document transfers the property from the seller to the buyer and once both the seller and the buyer are in agreement, the transfer document is signed by both parties, and the buyer?s solicitor arranges for signing of mortgage documents and finalization of the transfer.\r\n<h3>Stage 3</h3>\r\nThe third and last stage is the completion stage wherein the buyer receives the title deeds and is handed the keys of the house. The seller is responsible for stamp duty and the transfer at the Land Registry is also arranged. The buyer can now move into the property, and the seller will now be forced to move out if he or she had not done so already. The buyer must now pay the balance of the house through solicitors that is the agreed price of sale minus the deposit already paid.\r\n\r\nThe property seller will now have to make alternative arrangements for his accommodation. At this stage the conveyancing process is concluded.\r\n\r\n ','What is conveyancing? Understanding the process with us','','inherit','closed','closed','','77-revision-v1','','','2017-10-23 08:56:16','2017-10-23 08:56:16','',77,'http://fisawards.co.uk/77-revision-v1',0,'revision','',0),(97,1,'2017-10-23 08:56:38','2017-10-23 08:56:38',' \r\n<h1>Finding the most suitable mortgage for your budget!</h1>\r\nNow that you have found a property that you want to call home; finding the most suitable finance with which to purchase it is the next big decision you will have to make.\r\n\r\nChoosing the best mortgage for your needs is quite a tricky task. You really need to get to grips with your personal finances and only choose a loan that you believe you can comfortably service over a period of 15-25 years.\r\n\r\nIt is important to do your research and ensure that you take all the necessary steps and measures to ensure that you get the best deal out of your mortgage before signing up to a loan that could turn out to be toxic further down the road.\r\n\r\nTip 1 - Get quotes From Several Lenders:\r\n\r\nThe rule to getting the most suitable mortgage is to get information and quotes from different lenders, not just the first lender willing to give you a loan.\r\n\r\nShopping around for a home loan can make all the difference and can save you thousands in the long run.\r\n\r\nThe only way to get the best finance deal for your home is through comparing the various lenders out there.\r\n\r\nTraditionally it is wise to put down a deposit of at least 20% and not borrow more than three times earnings in order to make sure the loan is affordable in the long run. Turns out the FSA is going to make mortgage advice compulsory so <a href=\"http://www.essentialifa.com/2012/08/13/compulsory-mortgage-advice-is-coming/\">you\'re going to get a finance lesson whether you like it or not</a> as of 2013.\r\n\r\nRepossessions are on the rise so make sure you do your maths before signing up to a mortgage you have no chance of making regular payments on. You will loose your home otherwise.\r\n\r\nTip 2 - Engage The Services Of A Broker:\r\n\r\nYou can also engage the services of a mortgage broker. Mortgage brokers have access to several lenders and they can contact as many lenders as possible making available to you information about a wider selection of products and loan terms for you to choose from.\r\n\r\nYou must however be warned that mortgage brokers are not obliged to find you the best deal unless you specifically contract them to do so on your behalf.\r\n\r\nUsing more than one broker can ensure that you get the best financing deal for your home. Different brokers are available to offer you their services from bank employees to whole of market brokers. The bank employees can tend to be biased towards their institution and may not be the best to consult if you want to choose the best suitable mortgage for your financial situation.\r\n\r\nTip 3 - Use Comparison Websites:\r\n\r\nMost companies appreciate that it can be a tiresome and time-consuming task to call different lenders and institutions, asking for quotes, sitting in meetings and gathering all the necessary information on your own. As a result, websites that give you already prepared rates, products, names of lenders and their terms can be accessed for information. These websites will help you compare rates, terms and different mortgage products and will enable you to choose the most suitable option that will suit your financial situation.\r\n\r\nComparison websites are your best option as all the information is readily available at the click of a button, and all you have to do is compare with what your financial situation is and choose the best one for yourself.\r\n\r\n<hr />','Finding the most suitable mortgage for your budget!','','inherit','closed','closed','','70-revision-v1','','','2017-10-23 08:56:38','2017-10-23 08:56:38','',70,'http://fisawards.co.uk/70-revision-v1',0,'revision','',0),(98,1,'2017-10-23 08:57:04','2017-10-23 08:57:04','<h1>A list of people you should inform when moving home</h1>\r\nMoving house is an exciting time but it is also a major administrative headache.\r\n\r\nYour home or rather previous home would have been in your name, and you were responsible for paying Council Tax, utilities (water and gas), TV License, broadband, sky TV and many other services that would have been in your name. Oh, and if you drove a car you are also going to have to tell the DVLA.\r\n\r\nFurthermore, friends, family, your bank and your employers would all have the previous address as your place of fixed abode, and changes to this will not only affect you but them as well indirectly.\r\n\r\nTo make sure you avoid the <a href=\"http://www.gabbyadler.co.uk/2012/ten-common-mistakes-people-make-when-they-move-home/\">most common mistakes</a> you will need to notify everyone on your list and furnish them with details of your new address. This will include friends, family members and other relatives, employers and colleagues.\r\n\r\nNext on your list of people to inform will be the council, the DVLA, utilities service providers. If the move is a result of a house sale, your conveyancing solicitor will take care of all the paperwork relating to the Deeds of the property.\r\n\r\nIf you are moving from rented accommodation you will still need to contact the utilities providers and give gas an water meter readings. As someone else will be renting the property, this information must be provided to the council to enable them to effect a name change for bills and other payments. You can do this online, via email, a fax or by writing letters to the relevant authorities.\r\n\r\nThis checklist can assist you to establish that all persons and service providers concerned are notified of your move:\r\n\r\n1. Your water company 2. Your gas company 3. Your electricity company 4. Your telephone company 5. The broadband provider 6. The council in the area you lived in 7. Your satellite cable company 8. The utilities company or service providers 9. Your creditors\r\n\r\nInforming the relevant people and service providers will make your move smooth and the transition even smoother to the new owners or tenants. It also helps you to ensure that you are not charged of any rates or rather that you do not incur bills in your absence which bills will continue to accumulate and may spoil your credit rating.\r\n\r\nMoving house can be a blessing when handled correctly and can be one\'s worst nightmare if one neglects obvious and necessary things like informing those around him or her of the move to a new house.\r\n\r\nnfo] -->\r\n<!-- End footer include -->','A list of people you should inform when moving home','','inherit','closed','closed','','82-revision-v1','','','2017-10-23 08:57:04','2017-10-23 08:57:04','',82,'http://fisawards.co.uk/82-revision-v1',0,'revision','',0),(99,1,'2017-10-23 08:57:26','2017-10-23 08:57:26','<body><h1>What to Do When Good House Sales Turn Bad</h1>\n \n <div class=\"entry-content\">\n <p>\n A house sale gone bad can be disheartening to any seller and may have far-reaching implications for the seller especially where the sale was for purposes of avoiding home repossession.</p>\n <p>\n Given the economic climate we are faced with, the seller may be faced with uncertainty of not knowing when the property will sell, if at all. However there are things a seller can do when faced with a house sale that gone sour.</p>\n <h2>\n Gazumping:</h2>\n <p>\n Gazumping is when a <a href=\"http://www.youtube.com/watch?v=B-TNB19MVu4\">seller refuses</a> usually at the last minute to authorise his or her conveyancing solicitor to finalise the sale and exchange contracts. There are many reasons why this may happen.</p>\n <p>\n In most cases the seller may have received a higher offer on the property from another prospective buyer and is seriously considering selling to the prospective buyer. If the sale was due an impending home repossession and the seller wants to sell to avoid repossession, any positive change to the seller?s financial situation can lead to gazumping.</p>\n <h2>\n Gazundering:</h2>\n <p>\n Gazundering on the other hand is when the buyer refuses to exchange contracts of sale with the seller or his agent and is also usually at the last minute. Reasons for this may vary, and may include the fact that the buyer is of opinion that the seller is too desperate and may accept a reduced price offer for the property.</p>\n <p>\n Gazumping and gazundering has negative financial implications for one of the parties to the sale agreement and can also create havoc in the chain of transactions linked to the purchase or sale of that property.</p>\n <h2>\n What you should do if the buyer withdraws at the last minute?</h2>\n <p>\n When a buyer or a seller changes his or her mind at the last minute through gazundering or gazumping, there is not much that one can legally do as one cannot effectively force a sale. All sales are not legally binding unless they are reduced to and proved in writing in the form of contracts exchanged.</p>\n <p>\n One way to combat gazundering is through lock out agreements by the seller. Also, a specific period can be set for exchanging contracts and during this time the seller will not be allowed to sell to someone else. This will combat against gazumping. When the buyer withdraws at the last minute, a seller can consider an auction sale of his property for a quick sale.</p>\n <p>\n The best advice is to speak to a solicitor for legal advice and guidance especially on what to do when the chain breaks and more proactively on how one can be protected against gazumping and gazundering. When the chain breaks, this may lead to financial and possibly legal negative implications for the buyer and also for the seller.</p>\n\n\n\n</div></body>','what-to-do-when-good-house-sales-turn-bad.html','','inherit','closed','closed','','81-autosave-v1','','','2017-10-23 08:57:26','2017-10-23 08:57:26','',81,'http://fisawards.co.uk/81-autosave-v1',0,'revision','',0),(100,1,'2017-10-23 08:57:47','2017-10-23 08:57:47','<h1>Has your house sale turned bad? Here\'s what you should do</h1>\r\n<div class=\"entry-content\">\r\n\r\nA house sale gone bad can be disheartening to any seller and may have far-reaching implications for the seller especially where the sale was for purposes of avoiding home repossession.\r\n\r\nGiven the economic climate we are faced with, the seller may be faced with uncertainty of not knowing when the property will sell, if at all. However there are things a seller can do when faced with a house sale that gone sour.\r\n<h2>Gazumping:</h2>\r\nGazumping is when a <a href=\"http://www.youtube.com/watch?v=B-TNB19MVu4\">seller refuses</a> usually at the last minute to authorise his or her conveyancing solicitor to finalise the sale and exchange contracts. There are many reasons why this may happen.\r\n\r\nIn most cases the seller may have received a higher offer on the property from another prospective buyer and is seriously considering selling to the prospective buyer. If the sale was due an impending home repossession and the seller wants to sell to avoid repossession, any positive change to the seller?s financial situation can lead to gazumping.\r\n<h2>Gazundering:</h2>\r\nGazundering on the other hand is when the buyer refuses to exchange contracts of sale with the seller or his agent and is also usually at the last minute. Reasons for this may vary, and may include the fact that the buyer is of opinion that the seller is too desperate and may accept a reduced price offer for the property.\r\n\r\nGazumping and gazundering has negative financial implications for one of the parties to the sale agreement and can also create havoc in the chain of transactions linked to the purchase or sale of that property.\r\n<h2>What you should do if the buyer withdraws at the last minute?</h2>\r\nWhen a buyer or a seller changes his or her mind at the last minute through gazundering or gazumping, there is not much that one can legally do as one cannot effectively force a sale. All sales are not legally binding unless they are reduced to and proved in writing in the form of contracts exchanged.\r\n\r\nOne way to combat gazundering is through lock out agreements by the seller. Also, a specific period can be set for exchanging contracts and during this time the seller will not be allowed to sell to someone else. This will combat against gazumping. When the buyer withdraws at the last minute, a seller can consider an auction sale of his property for a quick sale.\r\n\r\nThe best advice is to speak to a solicitor for legal advice and guidance especially on what to do when the chain breaks and more proactively on how one can be protected against gazumping and gazundering. When the chain breaks, this may lead to financial and possibly legal negative implications for the buyer and also for the seller.\r\n\r\n</div>','Has your house sale turned bad? Here\'s what you should do','','inherit','closed','closed','','81-revision-v1','','','2017-10-23 08:57:47','2017-10-23 08:57:47','',81,'http://fisawards.co.uk/81-revision-v1',0,'revision','',0),(101,1,'2017-10-23 08:58:18','2017-10-23 08:58:18','<h1>Is your house not selling? Here is what you could do</h1>\r\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\r\n\r\nIt could be that the effects of the global recession have become personal and you need <a href=\"/\">to sell a house fast</a> due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home.\r\n\r\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell.\r\n<h2><strong>Rent your home:</strong></h2>\r\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\r\n<h2><strong>Price your home at the right price:</strong></h2>\r\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\r\n<h2><strong>Give it a new lease of life:</strong></h2>\r\nThinking like a buyer when making home improvements could assist you in attracting the right buyers. Ensuring that light fixtures in your home are clean and fixing cracks and damp in walls could all make the world of difference when it comes to attracting a buyer who is serious about purchasing your house. Giving the house a fresh coat of paint on the inside and outside also makes a house more appealing for a potential buyer. Finally, check that your garden is neat and tidy and consider getting a landscape architect in to give it a fresh new look. If your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\r\n\r\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.','Is your house not selling? Here is what you could do','','inherit','closed','closed','','80-revision-v1','','','2017-10-23 08:58:18','2017-10-23 08:58:18','',80,'http://fisawards.co.uk/80-revision-v1',0,'revision','',0),(102,1,'2017-10-23 08:59:05','2017-10-23 08:59:05','<h1>Has a surveyor highlighted problems with your property? Here are some alternative ideas</h1>\r\n<div class=\"entry-content\">\r\n\r\nWhen your buyer\'s house valuation report comes in with a figure lower than that which you have negotiated this does not necessarily spell the end of your sale.\r\n\r\nSelling a home can be quite an expensive process, with all the expenses you will incur to effect repairs and replacements of what is old and broken.\r\n\r\nYou can spend a fortune fixing the obvious cracks, chirps, breakages and worn out places of your home and the buyer\'s valuation or the structural surveyor may still come back with more bad news about the state of your home.\r\n\r\nWhen you are the buyer, this will be disappointing as your mortgage lender may decide that they no longer want to lend on the property.\r\n\r\nAgain this does not spell the end to your move.\r\n<h2>Alternative To Explore With Your Buyer</h2>\r\nAs an interested buyer you do not have to walk away after a bad survey. One alternative is finding out how much repairs to the structural fault will cost. It may be something that can be easily fixed, without incurring high costs for the repairs. If you a cash buyer you can of course do what you like as you?re not dependent on a mortgage (this is explained in more detail <a href=\"http://www.opusmove.co.uk/property-selling-questions-answers-york.aspx\">here</a> ).\r\n\r\nSecondly, you can renegotiate with the seller (after having obtained a quotation on how much the repairs will cost) by asking the seller to reduce their price by the same amount. This way you can still have your dream home.\r\n\r\nIn most instances, the most common problems include structural movement, timber and damp problems; rot- wet and dry, woodworm, defective wiring and an outdated or defective heating system. The seller can replace some of these, although this will mean more expenses for him.\r\n\r\nIt is also important to consider that an evaluation is exactly that - an evaluation, it enables the lender to make a lending decision. The buyer can still make his or her own decision about whether he or she really wants the house.\r\n<h2>Open Negotiation Is the Key</h2>\r\nIn most instances, what it takes to solve the problem is the coming together of the seller and the buyer and their working together in tackling the problems that would have arisen from the valuation.\r\n\r\nThe buyer\'s decision to want to buy the house was not on the basis of the valuation, but rather on his or her general impression of the house, and this often is not changed overnight by the valuation report obtained from the buyer\'s lender. The seller too can exercise some reasonableness and accommodate the new findings and adjust the price realistically. This way all parties will win and the problem will be resolved.\r\n\r\n</div>\r\n ','Has a surveyor highlighted problems with your property? Here are some alternative ideas','','inherit','closed','closed','','79-revision-v1','','','2017-10-23 08:59:05','2017-10-23 08:59:05','',79,'http://fisawards.co.uk/79-revision-v1',0,'revision','',0),(103,1,'2017-10-23 08:59:27','2017-10-23 08:59:27',' \r\n<h1>Understanding the Property Misdescriptions Act 1991</h1>\r\nWhat is the Property Misdescriptions Act 1991?\r\n\r\nThe Property Misdescriptions Act was created to protect homebuyers from false advertising.\r\n\r\nIt prohibits Estate Agents from misleading homebuyers, by making false or inaccurate statements about the specifics of a selling property. This applies whether that statement is made verbally or in writing, and applies to physical descriptions of the property, as well as title details, lease details, and other legal details. Contravening this act is seen as a criminal offense, and an Estate Agent found guilty is liable to pay a fine.\r\n<h2>What constitutes a Misdescription?</h2>\r\nEven if the statement is not intentionally or explicitly false, it may be considered misleading. A statement is considered misleading on the basis of what a reasonable layperson may be expected to infer from it.\r\n<h3>Misdescription includes:</h3>\r\nOver-emphasising enhancements e.g. describing alterations to a part of the home, in a way that implies they were done to the home as a whole. ? Omitting important information. ? Inaccurate location information. Other forms of inaccurate information i.e. proximity to amenities must be stated realistically and specifically.\r\n\r\nMany Agents make use of disclaimer clauses to avoid contravening the act, especially where the agent may not have adequate information. A disclaimer implies that the buyer is responsible for verifying all information, and that the agent cannot be held responsible for incorrect information.\r\n<h3>How does it affect Agents and Private House Sellers?</h3>\r\nIndividuals who sell their house privately are not subject to the Property Misdescriptions Act. However, if a sale is concluded and buyers discover evidence of false advertising, they may opt to sue house sellers for damages.\r\n<h2>An Estate Agent\'s Responsibilities</h2>\r\nEstate Agents are governed by several fair business practice acts including; The Estate Agents Act 1979, Consumer Protection from Unfair Trading Regulations 2008, The Property Misdescriptions Act 1991. They are also subject to regulations outlined by the organisations and redress schemes they may be members of.\r\n\r\nThe <a href=\"http://www.out-law.com/en/articles/2012/october/repeal-of-property-sales-law-will-pose-risks-for-housebuilders-says-expert/\">government is currently reviewing</a> the need for the Property Misdescriptions Act 1991, as similar regulations are outlined in the Consumer Protection from Unfair Trading Regulations 2008.\r\n\r\nUnder the Property Misdescriptions Act, the Agent is legally required to ensure that all statements made about a selling property are accurate, and not misleading. This includes descriptions of:\r\n\r\n1. The area / location. 2. Proximity to amenities. 3. Titles, leases and deeds. 4. The property size, measurements and architectural specifics.\r\n\r\nA buyer may not withdraw from a sale, where contracts have already been exchanged, on the basis of a property misdescription. However they may take action by reporting the Agent to the Property Ombudsman, Ombudsman Services: Property or Trading Standards Office.\r\n\r\nA buyer may want to discuss the infringement with the Agent in question first, as they may have a viable explanation / defence as to why certain information was misrepresented or omitted. If you feel that you have purchased a house on the basis of blatantly, and intentionally, misleading information it is important to seek legal advice.\r\n\r\n ','The property misdescriptions act 1991','','inherit','closed','closed','','78-revision-v1','','','2017-10-23 08:59:27','2017-10-23 08:59:27','',78,'http://fisawards.co.uk/78-revision-v1',0,'revision','',0),(104,1,'2017-10-23 09:00:05','2017-10-23 09:00:05','<h2>Understanding an estate agents commission policy</h2>\r\nEstate agents have been viewed in a decidedly bad light in recent times, particularly after the recent housing crash and are viewed by many with the same disdain as lawyers, politicians and journalists.\r\n\r\nWe have received numerous complaints from sellers regarding estate agents that have attempted to claim commission they were not due.\r\n\r\nIn order to clarify the murky world of estate agency fees, this article explains when you can reject an agent\'s claim for commission and who you can talk to when you feel that you are being taken advantage of.\r\n<h2>When is commission not payable?</h2>\r\nYou can reject a claim for commission by real estate agent if you have instructed the estate to withdraw your intentions to sell your home.\r\n\r\nIf the agent is a member is a member of The Property Ombudsman or National Association of Estate Agents, they waive their right to commission six months after your withdrawal.\r\n\r\nFurthermore, if the real estate agent attempts to additional charges on top of the commission which you were not told about from the start, you have the right to reject their claim for commission according to the Estate Agents Act 1979.\r\n<h2>When is commission payable?</h2>\r\nWhile you can reject a real estate agent\'s claim for commission if you have asked him or her to withdraw your intent to sell six months earlier, it is important to take note of an important ruling ( <a href=\"http://www.practicalconveyancing.co.uk/content/view/10354/1118/\">Dashwood v Fleurets Ltd [2007] EWHC 1610 QB</a> ) where the high court ruled in favour of the estate agent who claimed that there was proof that the estate agent had contributed to the sale of the property. In practise, this may mean that the estate agent introduced the buyer to purchase and not simply the property itself.\r\n<h2>Who to turn to if you need help:</h2>\r\nIf you feel as though you are being done in and are struggling with unfair claims by an estate agent there are two organizations that you can turn to in Britain. The Royal Institution for Chartered Surveyors and the National Association of Estate Agents operate internal complaints procedures who you can contact for help. The Ombudsman for Estate Agents also offers a complaints service for its member agencies. Furthermore, under the Consumer Act, all estate agents have to belong to an industry body.\r\n\r\nContact details for the relevant industry bodies are below:\r\n\r\nThe Ombudsman for Estate Agents Scheme: 01722 333306\r\n\r\nThe National Association of Estate Agents (NAEA): 01926 496800\r\n\r\n<hr />','Understanding an estate agents commission policy','','inherit','closed','closed','','73-revision-v1','','','2017-10-23 09:00:05','2017-10-23 09:00:05','',73,'http://fisawards.co.uk/73-revision-v1',0,'revision','',0),(105,1,'2017-10-23 09:00:13','2017-10-23 09:00:13','<body><h1>If Your House Won\'t Sell Should You Change Your Estate Agent?</h1>\n \n <p>\n Given your need for a quick house sale, you engaged the services of a supposedly reputable estate agent, well known in your local area.</p>\n<p>\n However, after six months, no one has offered to buy your house. What do you do?</p>\n<h2>\n Could your estate agent be the problem?</h2>\n<p>\n This is one of the questions you will ask yourself. In a recession where everything moves so slowly, it may even be harder to fathom your home remaining on the market for another six more months. What then would you do?</p>\n<p>\n The first port of call will be arranging a meeting with your agent. There are some <a href=\"http://www.home-truths.co.uk/blog/7-questions-to-ask-your-estate-agent/\">basic questions</a> that they will have to provide robust answers to in order to avoid being sacked.</p>\n<p>\n You can ask your agent whom he or she has sent your brochure to? At this point you will be trying to find out the kind of buyers the agency has been targeting and see if this can be widened and improved upon.</p>\n<p>\n Also ask how many buyers have been sent emails about the property, and whether the agent has followed up those enquiries and secured viewings?</p>\n<p>\n You can even ask to see the remaining brochures. Agents have a tendency not to print out more brochures when they run out and this could be one of the reasons that the house is still on the market. If there are not any left, ask that they reprint and send out more. You have the right to request this as you will be paying for the services at the end of the sale.</p>\n<p>\n Where the estate agent has been bringing viewers to view your home and they never came back, you can follow up on this through your agent, to find out what the viewers- rather your potential buyers bought.</p>\n<p>\n It is the <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">duty of your estate agent</a> to also keep a tab on what your viewers ended up deciding on. Although this may not seem helpful, it will assist you in giving you an idea of what buyers are looking for and you can go back to the drawing board if you need to <a href=\"/\">sell your home quickly</a>.</p>\n<h2>\n If all else fails!</h2>\n<p>\n When all else has failed with your estate agent, you can consider multi-agency agreements. Especially where one had a sole agent agreement, upon expiration of the notice, one can switch to a multi-agency agreement. This is when one instructs more than one agency to sell his or her home. The advantage of multi-agency agreements is that you will not be called upon to pay all the estate agents who assist you to sell your home, you will only pay commission fees to the estate agent who introduced you to the buyer of your home.</p>\n<hr/></body>','if-your-house-isnt-selling-should-you-change-your-estate-agent.html','','inherit','closed','closed','','71-autosave-v1','','','2017-10-23 09:00:13','2017-10-23 09:00:13','',71,'http://fisawards.co.uk/71-autosave-v1',0,'revision','',0),(106,1,'2017-10-23 09:00:37','2017-10-23 09:00:37','<h1>Maybe you should change your estate agent if your property isn\'t selling</h1>\r\nGiven your need for a quick house sale, you engaged the services of a supposedly reputable estate agent, well known in your local area.\r\n\r\nHowever, after six months, no one has offered to buy your house. What do you do?\r\n<h2>Could your estate agent be the problem?</h2>\r\nThis is one of the questions you will ask yourself. In a recession where everything moves so slowly, it may even be harder to fathom your home remaining on the market for another six more months. What then would you do?\r\n\r\nThe first port of call will be arranging a meeting with your agent. There are some <a href=\"http://www.home-truths.co.uk/blog/7-questions-to-ask-your-estate-agent/\">basic questions</a> that they will have to provide robust answers to in order to avoid being sacked.\r\n\r\nYou can ask your agent whom he or she has sent your brochure to? At this point you will be trying to find out the kind of buyers the agency has been targeting and see if this can be widened and improved upon.\r\n\r\nAlso ask how many buyers have been sent emails about the property, and whether the agent has followed up those enquiries and secured viewings?\r\n\r\nYou can even ask to see the remaining brochures. Agents have a tendency not to print out more brochures when they run out and this could be one of the reasons that the house is still on the market. If there are not any left, ask that they reprint and send out more. You have the right to request this as you will be paying for the services at the end of the sale.\r\n\r\nWhere the estate agent has been bringing viewers to view your home and they never came back, you can follow up on this through your agent, to find out what the viewers- rather your potential buyers bought.\r\n\r\nIt is the <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">duty of your estate agent</a> to also keep a tab on what your viewers ended up deciding on. Although this may not seem helpful, it will assist you in giving you an idea of what buyers are looking for and you can go back to the drawing board if you need to <a href=\"/\">sell your home quickly</a>.\r\n<h2>If all else fails!</h2>\r\nWhen all else has failed with your estate agent, you can consider multi-agency agreements. Especially where one had a sole agent agreement, upon expiration of the notice, one can switch to a multi-agency agreement. This is when one instructs more than one agency to sell his or her home. The advantage of multi-agency agreements is that you will not be called upon to pay all the estate agents who assist you to sell your home, you will only pay commission fees to the estate agent who introduced you to the buyer of your home.\r\n\r\n<hr />','Maybe you should change your estate agent if your property isn\'t selling','','inherit','closed','closed','','71-revision-v1','','','2017-10-23 09:00:37','2017-10-23 09:00:37','',71,'http://fisawards.co.uk/71-revision-v1',0,'revision','',0),(107,1,'2017-10-23 09:01:11','2017-10-23 09:01:11','<h1>What are mortgage arrears and how should you deal with them?</h1>\r\nCurrently in the UK many homeowners are finding it difficult to keep up with mortgage loan repayments.\r\n\r\nMany have defaulted in payments resulting in mortgage arrears.\r\n\r\nFor some, their financial situation has deteriorated so much such that there is no ending in sight for their financial woes.\r\n\r\nMortgage loan lenders are also inundated with customers who find themselves unable to manage their debt and who are unable to repay mortgage loans.\r\n\r\nHome repossessions seem to be the only solution to this predicament. Even in such a climate, homeowners can still find ways to deal with mortgage arrears that will enable them to keep their homes. Hopefully soon the will be a <a href=\"http://www.arum.co.uk/blogs_index.php?blog=3&title=the_changing_face_of_consumer_collection&more=1&c=1&tb=1&pb=1\">code of conduct introduced</a> to the UK as there is in Ireland. A guide to dealing with arrears:\r\n\r\n1. Ask for a payment holiday from your lender:\r\n\r\nOne way that as homeowner, you can deal with mortgage arrears, especially where you suddenly find yourself unable to pay-is through consulting with the lender, explaining your financial status and requesting a payment holiday. This is a temporary measure which can assist you only for a few months. This will help you not to worry about monthly payments as you do everything within your power to find a solution. You will still owe the lender and once your financial fortunes improve, you will be expected to cover all your arrears and keep up with your payments. This way you will keep your home.\r\n\r\n2. Pay your arrears together with your monthly payments:\r\n\r\nIn certain circumstances, upon consultation with the lender, the lender may allow you to pay arrears together with your mortgage payments. This is usually so where the arrears are way less than your mortgage debt, or where you are in arrears for a few months. You will therefore contribute towards arrears as you keep up with payments.\r\n\r\n3. Rent out your home or a portion thereof:\r\n\r\nOne can also consider renting out his or her home. When you rent out your home, you can rent out somewhere cheaper or move in with family members or parents and the income from your leased home can go towards paying off your arrears. If moving in with family is not an option, you can rent out a room or a section of your home and use that income to pay your mortgage arrears.\r\n\r\n4. Give up your endowment policy:\r\n\r\nAnother way to deal with mortgage arrears is through giving up your endowment policy or selling it to an investor. This will give you access to a lump sum of money which you can use towards paying off your arrears in one go. It is wise to get financial advice before you do so.\r\n\r\n5. Claim against your mortgage insurance protection cover:\r\n\r\nIf you got into massive debt for one of the reasons or grounds covered by the policy, you can claim against your insurance and use the money to pay off your arrears.','What are mortgage arrears and how should you deal with them?','','inherit','closed','closed','','69-revision-v1','','','2017-10-23 09:01:11','2017-10-23 09:01:11','',69,'http://fisawards.co.uk/69-revision-v1',0,'revision','',0),(108,1,'2017-10-23 09:01:33','2017-10-23 09:01:33','<h2>Avoiding cowboy tradesmen</h2>\r\nFinding a good tradesman is not always an easy task. Many have posed as the best and when the job has been done, the finished work will leave a lot to be desired and cost you double as the work had to be done again.\r\n\r\nIt is therefore crucial to get a reputable tradesman with a proven track record if you have any building work that needs doing.\r\n\r\nYou will be using your money, therefore it is best to get excellent value for your money and this is what you will get from a tradesman that comes with excellent references.\r\n\r\n1. Get referrals and recommendations:\r\n\r\nIt is important that you get referrals from friends, family and colleagues for any tradesman you consider. Their account and testimonials can be used as a starting point. Their information will at least give you an idea on where to start with looking for a good man.\r\n\r\nIf friends, family or colleagues cannot help you out on this one, you can also contact your local Builder\'s register where possible. This register will have a list of all plumbers, builders and tradesman who are properly qualified and carry the necessary insurance.\r\n\r\nLocal newspapers and online directories are also a good source of information. As you look around, take note of experience and the previous work done by the tradesman, this will give you an idea of what they can do for you.\r\n\r\nAlso keep an eye out online for <a href=\"http://www.facebook.com/pages/Name-And-Shame-Dodgy-Builders-Workmen-In-All-Trades-Here/156265024392212\">websites that name and shame</a> dodgy builders.\r\n\r\n2. Deal with established firms:\r\n\r\nAnother way to safeguard yourself and ensure that you are dealing with a reputable operator is through making sure that in looking for one, you deal only with established firms, not fly by nights or individual tradesman with no record of their work.\r\n\r\nTo this end, you can ensure that the firm has a physical address, offices, telephone numbers where you can contact them and that they correspond through headed paper. This is all-important as it shows that the tradesmen are established and can be trusted to do the job.\r\n\r\nYou must also check if the tradesman or the firm is a member of a reputable trade association and if they have a VAT number.\r\n\r\n3. Be clear about what you want done:\r\n\r\nHave estimates and specifications of what work you are looking to have done. Certainly get more than one estimate, as this will help you compare one builder against the other.\r\n\r\nAgree with your tradesman on payments and how payments will be scheduled before the work starts. Make sure that you have a clear plan of what you want before the job starts as changing your mind midway can be costly for you and can also result in delays.\r\n\r\n4. Have a checklist of what questions to ask:\r\n\r\nAs you go about choosing a reputable tradesman, have a ready checklist on what to look for and what to avoid. Avoid those who pressurise you and call themselves specialists. Do not sign anything even under pressure when you do not understand it. Avoid tradesman who ask for advance payments, especially at the beginning of the job. Also avoid those who demand cash payments.\r\n\r\n<hr />','Avoiding cowboy tradesmen','','inherit','closed','closed','','68-revision-v1','','','2017-10-23 09:01:33','2017-10-23 09:01:33','',68,'http://fisawards.co.uk/68-revision-v1',0,'revision','',0),(109,1,'2017-10-23 09:02:06','2017-10-23 09:02:06','<h1>Moving day coming up? Here\'s how you can avoid delays on the big day</h1>\r\nMoving day can be stressful enough as it is, one is worried about whether all has been packed and if one\'s valuable dinnerware is going to break. The last thing on your mind during this rather stressful period is about being late and delays on moving day. There are however, a few simple things to bear in mind that can help you avoid unnecessary and upsetting delays on moving day.\r\n\r\nWhether or not to use a removal company:\r\n\r\nRemoval companies can be a costly additional expense when moving and it may be tempting to cut costs and conduct the removal yourself. If you are only moving a short distance away this can be successfully accomplished but you need to be very organized and plan appropriately ahead of time.\r\n\r\nMeasure the size of all of your furniture and appliances to establish the size of removal van needed to save time. Calling on the assistance of friends, neighbours or family members who own an appropriate vehicle can also save time. If you decide to make use of a removal company, always try and obtain the first appointment of the day during the week as there is less chance that the removal company will run late due to previous commitments and most people move on weekends.\r\n\r\nMoving furniture and appliances:\r\n\r\nThere are a few simple ways to ensure that the <a href=\"http://www.athriftymrs.com/2011/05/moving-house-packing.html\">removal of furniture and appliances</a> does not cause unnecessary delays. Firstly, ensure drawers are securely shut with strong tape, rope or bubble wrap or remove them entirely. Secondly, protect furniture with the appropriate packing materials, blankets or padding. Finally, pack all electronics in their original packaging as far as possible or protect them with thick blankets or moving pads.\r\n\r\nChildcare:\r\n\r\nAs moving day is going to be extremely busy, it is crucial to ensure that younger children are appropriately looked after by a babysitter or family member or friend. Older children should be given tasks that are age appropriate and make them feel a part of the move and ease up the workload for everyone. This will make the entire experience delay free and more pleasant for everyone involved.\r\n\r\nFinal tips:\r\n\r\nFinally, make sure you are adequately prepared for the day ahead. Go through your home and check that you have not forgotten anything important and that everything is clean and in order for the new owners. Phone the removal company to double check that they will be there on the agreed upon date and time. Ensure that all of the utilities have been transferred to the new owners. Finally, if you are concerned about getting everything done on time, enlist additional help from a removal company or family members and friends.','Moving day coming up? Here\'s how you can avoid delays on the big day','','inherit','closed','closed','','67-revision-v1','','','2017-10-23 09:02:06','2017-10-23 09:02:06','',67,'http://fisawards.co.uk/67-revision-v1',0,'revision','',0),(110,1,'2017-10-23 09:02:20','2017-10-23 09:02:20','<body><h1>House Selling Tips From Master Estate Agents</h1>\n \n <div class=\"entry-content\">\n <p>\n When selling a house one of the headaches you may encounter can be dealing with your estate agent. When you want to sell your home, the first thing is to engage the services of an estate agent who understands your local market and has experience in selling your type of property.</p>\n <p>\n Estate agents are paid a commission that is based on a percentage of the property sale price (usually it\'s 1.5-2%+VAT).</p>\n <p>\n The relationship between a homeowner and an estate agent is a professional relationship formalised by a contract setting out the estate agent\'s terms of business.</p>\n <h2>\n Your Relationship With Your Estate Agent</h2>\n <p>\n For some reason the homeowner can decide that selling his or her home is not the best option and may decide not to sell. For some other reason, the homeowner can decide to change the agent or to engage a number of agents to speed up the process of selling the house or property. The seller can also opt to save thousands of pounds by selling the property on his or her own. Either way, there are things that the homeowner needs to know or there are tips that will help the seller to get the most out of this relationship. Knowing what to do will always come in handy in cases of disagreement between you and your estate agent.</p>\n <p>\n If one for instance has a <a href=\"http://uk.practicallaw.com/3-509-4370\">sole selling agreement</a>, one <a href=\"http://www.estateagenttoday.co.uk/News/Story/?storyid=3787&type=news_features\">must wait until completion</a> of the notice period. This is so even in instances where one has found a private buyer. The agent will have exclusive rights to sell your house to the exclusion of all others and even you as the seller cannot breach this agreement. If on the other hand you have a sole agency agreement, you need to check how long the period of the agreement runs for and you may not instruct or engage the services of another agency for the duration of the agreement or before the period of notice expires. In the event that you engage the services of another agency, you will remain liable to pay the commission fees of the first agent and that of the second agent too.</p>\n <h2>\n When You Have To Pay The Fee</h2>\n <p>\n When you engage the services of an estate agent, you are only liable to pay commission fees when the house has been sold. In the event that the house is sold to someone who was introduced to you by the agent, you must pay the agent his or her commission fees, irrespective of whether you have withdrawn the mandate or not. If the agency or the agent is the member of The Property Ombudsman, or the National Association of Estate Agents, after six months of the withdrawal of instruction by you, they waive the right to being paid a commission and they will not be entitled to claim it from you. Agents who are not members of these professional bodies may continue to claim commission from you for more that five years and you must be wary of them.</p>\n <p>\n In the event that you have instructed more than one estate agent, the agent who introduces you to the buyer of your property can claim commission from you. If you would like to avoid using an estate agent and <a href=\"/\">sell your property quickly</a>, fill in our online form and one of the team will get back to you within the hour.</p>\n\n</div> \n \n \n \n\n <!--close content-->\n \n \n \n\n<!-- End main content include -->\n <!-- Start footer include -->\n<footer role=\"contentinfo\"><section><!-- End .footer-left --><!-- End .footer-right --></section></footer><!-- End footer [contentinfo] --><!-- End footer include --></body>','house-selling-tips-from-master-estate-agents.html','','inherit','closed','closed','','66-autosave-v1','','','2017-10-23 09:02:20','2017-10-23 09:02:20','',66,'http://fisawards.co.uk/66-autosave-v1',0,'revision','',0),(111,1,'2017-10-23 09:02:42','2017-10-23 09:02:42','<h1>The best house selling tips from established estate agents</h1>\r\n<div class=\"entry-content\">\r\n\r\nWhen selling a house one of the headaches you may encounter can be dealing with your estate agent. When you want to sell your home, the first thing is to engage the services of an estate agent who understands your local market and has experience in selling your type of property.\r\n\r\nEstate agents are paid a commission that is based on a percentage of the property sale price (usually it\'s 1.5-2%+VAT).\r\n\r\nThe relationship between a homeowner and an estate agent is a professional relationship formalised by a contract setting out the estate agent\'s terms of business.\r\n<h2>Your Relationship With Your Estate Agent</h2>\r\nFor some reason the homeowner can decide that selling his or her home is not the best option and may decide not to sell. For some other reason, the homeowner can decide to change the agent or to engage a number of agents to speed up the process of selling the house or property. The seller can also opt to save thousands of pounds by selling the property on his or her own. Either way, there are things that the homeowner needs to know or there are tips that will help the seller to get the most out of this relationship. Knowing what to do will always come in handy in cases of disagreement between you and your estate agent.\r\n\r\nIf one for instance has a <a href=\"http://uk.practicallaw.com/3-509-4370\">sole selling agreement</a>, one <a href=\"http://www.estateagenttoday.co.uk/News/Story/?storyid=3787&type=news_features\">must wait until completion</a> of the notice period. This is so even in instances where one has found a private buyer. The agent will have exclusive rights to sell your house to the exclusion of all others and even you as the seller cannot breach this agreement. If on the other hand you have a sole agency agreement, you need to check how long the period of the agreement runs for and you may not instruct or engage the services of another agency for the duration of the agreement or before the period of notice expires. In the event that you engage the services of another agency, you will remain liable to pay the commission fees of the first agent and that of the second agent too.\r\n<h2>When You Have To Pay The Fee</h2>\r\nWhen you engage the services of an estate agent, you are only liable to pay commission fees when the house has been sold. In the event that the house is sold to someone who was introduced to you by the agent, you must pay the agent his or her commission fees, irrespective of whether you have withdrawn the mandate or not. If the agency or the agent is the member of The Property Ombudsman, or the National Association of Estate Agents, after six months of the withdrawal of instruction by you, they waive the right to being paid a commission and they will not be entitled to claim it from you. Agents who are not members of these professional bodies may continue to claim commission from you for more that five years and you must be wary of them.\r\n\r\nIn the event that you have instructed more than one estate agent, the agent who introduces you to the buyer of your property can claim commission from you. If you would like to avoid using an estate agent and <a href=\"/\">sell your property quickly</a>, fill in our online form and one of the team will get back to you within the hour.\r\n\r\n</div>\r\n<!--close content-->\r\n\r\n<footer><section><!-- End .footer-left --><!-- End .footer-right --></section></footer><!-- End footer [contentinfo] --><!-- End footer include -->','The best house selling tips from established estate agents','','inherit','closed','closed','','66-revision-v1','','','2017-10-23 09:02:42','2017-10-23 09:02:42','',66,'http://fisawards.co.uk/66-revision-v1',0,'revision','',0),(112,1,'2017-10-23 09:03:23','2017-10-23 09:03:23','<h1>How we think you could solve your residential property problems</h1>\r\nMany problems go undetected and are not taken care of until it is too late. One can remedy most issues but the earlier they are spotted and identified the earlier and easier it is to deal with them successfully.\r\n\r\nSmall signs exist that can be used as a pointer that there is a problem inside or outside your property.\r\n<h2>Common Problems Outside</h2>\r\nExamining the gutters, downpipes and drains for any signs of deterioration can easily spot external problems on your property.\r\n\r\nAs one looks around, it is important to look out for any vegetation growth on the gutters, loose slates, rusting or cracking on cast iron, the downpipes or the gutters, leaking pipes, rising damp staining, cracks on any stonework, damaged drains and defects in lead flashings around your chimney and many others.\r\n\r\nYou can also check for Japanese knotweed. This will help you to detect if there is any damage, which needs your urgent fixing attention. Finally the <a href=\"http://www.johnbellman.co.uk/index.php/general-information/land-issues-2/subsidence/\">issue of subsidence</a> needs to be explored and if you are in an area that is affected you may need to look into underpinning.\r\n\r\nYou can also check for internal property problems. Internal property problems are not as easy to identify, and by the time you spot them the damage may have been done already.\r\n<h2>Common Problems Inside</h2>\r\nFor your basement and the roofs, you can check for water staining on your roof void. You can also check your baths and shower seals for any damage. You can check for dampness through using your sense of smell. If you happen to smell dampness anywhere inside your house, you will need to investigate it further; it can lead to more serious problems if left unchecked.\r\n\r\nYou can also take some measures to prevent further problems. Although simple enough, these measures can help you to avoid things that can in the long run require professional repairs or replacing.\r\n\r\nYou can for instance clear all debris and leaves from your roof gutters, hopper heads and water drains. After heavy rain, you must check for leaks or signs of overflow or signs of penetrating damp from your gutters and pipes. You can also look out for loose seals around your bath and shower as this could point out that water is seeping through behind your shower or bath and could result in a wet rot. You can also check for any damp earth or leaking pipes, especially if you have a sub floor crawl space. If these were left unchecked, they would mean timber repairs at a later stage, which are costly.\r\n\r\nAlthough this task can be a pain and some of these tips may seem mundane and tiresome, they mean the difference between having a problem-free property and a property, which is damaged and will need repairs and replacements in order to fetch a good selling price during a house sale.\r\n\r\nIf you do not have funds available to get your property into a state of good repair we can help. As a <a href=\"/\">quick cash property buyer</a> we\'re interested in your property no matter what condition it\'s in.\r\n\r\n<!-- End main content include --><!-- Start footer include -->\r\n\r\n<!-- End footer [contentinfo] --><!-- End footer include -->','How we think you could solve your residential property problems','','inherit','closed','closed','','63-revision-v1','','','2017-10-23 09:03:23','2017-10-23 09:03:23','',63,'http://fisawards.co.uk/63-revision-v1',0,'revision','',0),(114,1,'2017-10-23 09:04:27','2017-10-23 09:04:27','One of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\r\n\r\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\r\n\r\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\r\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\r\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home. You may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\r\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\r\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle. Any buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\r\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\r\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession. You may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell. Do not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\r\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\r\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\r\n\r\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short timeframe (usually a matter of days).\r\n\r\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','inherit','closed','closed','','23-revision-v1','','','2017-10-23 09:04:27','2017-10-23 09:04:27','',23,'http://fisawards.co.uk/23-revision-v1',0,'revision','',0),(115,1,'2017-10-23 09:04:58','2017-10-23 09:04:58','<h1>Here\'s everything you need to know about moving home</h1>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\nPacking is simple enough if you\'re using a removal company. Self-packed boxes usually aren\'t covered by a removal company\'s insurance plan, but the time saved in getting some items ready to go can save a significant amount of money. Inform your removal company if you plan to pack anything yourself. Otherwise, situate your items in a way that will make them easy for the movers to stow.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used. Make sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3><strong>Step 5 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\nThe key to a smooth move however, is making sure you start planing your campaign early.\r\n\r\nTake advantage of online tools such as the handy move planner from moveme.com - <a href=\"https://planner.moveme.com/\">https://planner.moveme.com/</a> and do yourself a massive favor - splash out on a professional removal company. You will not regret it.','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2017-10-23 09:04:58','2017-10-23 09:04:58','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(116,1,'2017-10-23 09:05:28','2017-10-23 09:05:28','<h1>15 of the best tips for selling a house that has tenants!</h1>\r\n<div class=\"entry-content\">\r\n\r\nIf you\'re thinking about selling your house, but currently have tenants renting it out, you may well be confused about where to start.\r\n<h2>Give Your Tenant First Refusal</h2>\r\nBefore trying to sell on the open market, give the tenant first option to buy, as this will enhance the feeling of goodwill during the sale process.\r\n\r\nThe last thing any seller wants is a tenant who feels that they are being forced from their home.\r\n\r\nIt is also a good idea to keep the tenant informed throughout the sale process, and offer them incentives e.g. reduced rent while the home is being sold, as you will need their cooperation to sell successfully.\r\n\r\nYou may grant tenants the right to stay in the property while it is being sold, thus giving them time to find another residence.\r\n\r\nYou could also discuss with the tenant the possibility of selling the property to another investor, from whom they may continue to rent the home.\r\n\r\nWhen trying to sell a house occupied by a tenant there are many potential pitfalls so obtaining advice, especially legal, will be of benefit. Do not cause yourself unnecessary trouble by breaching any clauses within the existing tenancy agreement.\r\n<h2>How To Be A Responsible Landlord</h2>\r\nBe a <a href=\"http://www.propertyinvestmentproject.co.uk/blog/landlord-advice/good-landlord-practice/\">good landlord</a> ! Potential avenues of good advice include Residential Landlords Association, local Letting Agents, Solicitors and the Citizens Advice Bureau.\r\n\r\nProblems you may encounter:\r\n\r\nWhen selling a tenanted property, you must first evaluate what type of tenancy agreement is in place, as well as any agreements with any property management company.\r\n\r\nIt is important to think ahead when first renting the property, and get potential renters to sign some form of fair and legal tenancy agreement. It is easier to facilitate a quick house sale if tenants are under an Assured Shorthold Tenancy Agreement lasting for a limited time i.e. 6 months.\r\n\r\nIf you have sitting tenants whom are long term tenants renting with no tenancy agreement; it may discourage potential investors from buying the property. Trying to evict sitting tenants can be a drawn out and expensive process, taking up to 5 months.\r\n\r\nTenanted homes often do not sell for as much as vacant properties, house sellers can be limited to selling to buy to let homebuyers, and tenants may be uncooperative, refusing to allow potential buyers to view the home. Thus it is important to have the tenants ?on your side?.\r\n\r\nOften when trying to sell a house on the open market buyers want the home available with full vacant possession, on completion of the sale. However, there are several cash property buyers that are more than willing to buy a tenanted property. Investors even see it as a benefit if the tenant has a good track record, as they receive rent from the first day of ownership and do not have to find tenants.\r\n\r\nA good place to sell a tenanted property is at a house auction, as many investors attend property auctions looking for buy to let opportunities, and may be willing to buy the property unseen. Another good avenue is to sell via an Estate Agent who specializes in rental property, as they may have a line on potential investors looking for such an opportunity.\r\n\r\nIf you have a tenanted property and need to sell it quickly, us.co.uk provide a <a href=\"/\">fast property buying service</a> that will even allow for your tenant to stay in the property for a maximum of 6 months.\r\n\r\n</div>','15 of the best tips for selling a house that has tenants!','','inherit','closed','closed','','25-revision-v1','','','2017-10-23 09:05:28','2017-10-23 09:05:28','',25,'http://fisawards.co.uk/25-revision-v1',0,'revision','',0),(117,1,'2017-10-23 09:05:54','2017-10-23 09:05:54','<h1>How can you sell a residental leasehold property?</h1>\r\nA leasehold property comes with more complex set of rules, which one has to consider fully before making the decision to sell or buy.\r\n\r\nWhen one is informed, one can go ahead with confidence and sell a leasehold house however, going ahead without knowing all the facts can result in a nightmare later on.\r\n<h2>1. What is a leaseholder?</h2>\r\nA leaseholder is the person who owns the property on lease for a stipulated period of time, which can be 99 years or 125 years. The leaseholder is also called a tenant, albeit a different tenant from a tenant in a short-term lease. The leaseholder agreement will set out the terms of the contract and one must familiarise him or her with them before signing.\r\n<h2>2. Implications of buying a leasehold house:</h2>\r\nThe lease contract between the leaseholder and the landlord offers conditional ownership of the house for a fixed period of time. The leaseholder will not be allowed to have free reign over the house and may still have to obtain consent from the landlord to carry out any improvements or alterations to the house.\r\n\r\nThe key issue is the length of the lease. <a href=\"http://www.extendmylease.com/why-extend-my-lease\">Mortgage lenders will not look at a property with a short lease favourably</a> . Bear that in mind if you are thinking of selling. Check the length of your lease as you may require a lease extension.\r\n<h2>3. The free holder remains the landlord:</h2>\r\nWhere one sells a leasehold property to a willing buyer, and the willing buyer complies with paying off the property and has all the receipts to show for it, the fact is that the free holder remains the landlord. The seller or the free holder continues to own the land upon which the property is built and the leaseholder continues to pay ground rent.\r\n<h2>4. Ownership of property is limited to the period of lease:</h2>\r\nWhen a leasehold property is sold, the ownership of the property by the new owner is only limited to the duration of the lease. Once the lease expires, the property will revert back to the freeholder. An example would be where you buy a leasehold residential property that still has 50 years on it. If you take a mortgage bond and finish paying it off in 20 years, after the 20 years, you will enjoy the ownership of the property, for the next 30 years. After 50 years, the property and the land will revert back to the freeholder, leaving you with no rights over it.\r\n<h2>5. Calculation of the rent or lease fee:</h2>\r\nThe leasehold or the lease fee is calculated at a percentage of the total freehold value. However the leaseholder will still be liable to pay other expenses like property insurance, council rates and maintenance of the property, amongst other things.\r\n<h2>6. The fee is fixed over the duration of the lease:</h2>\r\nThis is a benefit of a leasehold property. Whatever the amount is at the beginning of the lease, it will remain fixed, irrespective of annual rental increases of the increasing value of the property. However, at the end of the lease, the rental would be brought up to the value of the property and can increase exorbitantly.\r\n\r\n<hr />','How can you sell a residental leasehold property?','','inherit','closed','closed','','26-revision-v1','','','2017-10-23 09:05:54','2017-10-23 09:05:54','',26,'http://fisawards.co.uk/26-revision-v1',0,'revision','',0),(118,1,'2017-10-23 09:06:35','2017-10-23 09:06:35','','1proeprty','','inherit','open','closed','','1proeprty','','','2017-10-23 09:06:35','2017-10-23 09:06:35','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/1proeprty.jpg',0,'attachment','image/jpeg',0),(119,1,'2017-10-23 09:06:36','2017-10-23 09:06:36','','111','','inherit','open','closed','','111','','','2017-10-23 09:06:36','2017-10-23 09:06:36','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/111.jpe',0,'attachment','image/jpeg',0),(120,1,'2017-10-23 09:06:36','2017-10-23 09:06:36','','11111','','inherit','open','closed','','11111','','','2017-10-23 09:06:36','2017-10-23 09:06:36','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/11111.png',0,'attachment','image/png',0),(121,1,'2017-10-23 09:06:37','2017-10-23 09:06:37','','574407515_1280x720','','inherit','open','closed','','574407515_1280x720','','','2017-10-23 09:06:37','2017-10-23 09:06:37','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/574407515_1280x720.jpg',0,'attachment','image/jpeg',0),(122,1,'2017-10-23 09:06:38','2017-10-23 09:06:38','','House prices','File photo dated 12/10/2010 of For Sales signs. The number of potential home buyers looking to view properties dipped in August as the Olympics provided a distraction - although overall sales held firm, surveyors reported today. PRESS ASSOCIATION Photo. Issue date: Tuesday September 11, 2012. In the three months to August, chartered surveyors sold on average 7.5% of the homes on their books per month, a figure which has remained consistent throughout 2012, the latest RICS UK housing market survey said. See PA story ECONOMY House. Photo credit should read: Rebekah Downes/PA Wire','inherit','open','closed','','house-prices','','','2018-08-14 11:30:04','2018-08-14 11:30:04','',221,'http://fisawards.co.uk/wp-content/uploads/2017/10/AM8346790File-photo-dated-1.jpg',0,'attachment','image/jpeg',0),(123,1,'2017-10-23 09:06:39','2017-10-23 09:06:39','','Coins','UK currency','inherit','open','closed','','coins','','','2017-10-23 09:06:39','2017-10-23 09:06:39','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/btl.jpg',0,'attachment','image/jpeg',0),(124,1,'2017-10-23 09:06:40','2017-10-23 09:06:40','','build','','inherit','open','closed','','build','','','2017-10-23 09:06:40','2017-10-23 09:06:40','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/build.jpg',0,'attachment','image/jpeg',0),(125,1,'2017-10-23 09:06:40','2017-10-23 09:06:40','','building','','inherit','open','closed','','building','','','2017-10-23 09:06:40','2017-10-23 09:06:40','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/building.jpg',0,'attachment','image/jpeg',0),(126,1,'2017-10-23 09:06:41','2017-10-23 09:06:41','','checlis','','inherit','open','closed','','checlis','','','2017-10-23 09:06:41','2017-10-23 09:06:41','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/checlis.jpg',0,'attachment','image/jpeg',0),(127,1,'2017-10-23 09:06:42','2017-10-23 09:06:42','','conservatory','','inherit','open','closed','','conservatory','','','2017-10-23 09:06:42','2017-10-23 09:06:42','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/conservatory.jpg',0,'attachment','image/jpeg',0),(128,1,'2017-10-23 09:06:42','2017-10-23 09:06:42','','croft-house','','inherit','open','closed','','croft-house','','','2017-10-23 09:06:42','2017-10-23 09:06:42','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/croft-house.jpg',0,'attachment','image/jpeg',0),(129,1,'2017-10-23 09:06:43','2017-10-23 09:06:43','','development','','inherit','open','closed','','development','','','2017-10-23 09:06:43','2017-10-23 09:06:43','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/development.jpg',0,'attachment','image/jpeg',0),(130,1,'2017-10-23 09:06:44','2017-10-23 09:06:44','','domestic-services','','inherit','open','closed','','domestic-services','','','2017-10-23 09:06:44','2017-10-23 09:06:44','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/domestic-services.jpg',0,'attachment','image/jpeg',0),(131,1,'2017-10-23 09:06:44','2017-10-23 09:06:44','','edge-of-flats','','inherit','open','closed','','edge-of-flats','','','2017-10-23 09:06:44','2017-10-23 09:06:44','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/edge-of-flats.jpg',0,'attachment','image/jpeg',0),(132,1,'2017-10-23 09:06:45','2017-10-23 09:06:45','','energy-efficiency','','inherit','open','closed','','energy-efficiency','','','2017-10-23 09:06:45','2017-10-23 09:06:45','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/energy-efficiency.png',0,'attachment','image/png',0),(133,1,'2017-10-23 09:06:46','2017-10-23 09:06:46','','energy-saving','','inherit','open','closed','','energy-saving','','','2017-10-23 09:06:46','2017-10-23 09:06:46','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/energy-saving.jpg',0,'attachment','image/jpeg',0),(134,1,'2017-10-23 09:06:46','2017-10-23 09:06:46','','for sale','','inherit','open','closed','','for-sale','','','2017-10-23 09:06:46','2017-10-23 09:06:46','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/for-sale.jpg',0,'attachment','image/jpeg',0),(135,1,'2017-10-23 09:06:47','2017-10-23 09:06:47','','hh','','inherit','open','closed','','hh','','','2017-10-23 09:06:47','2017-10-23 09:06:47','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/hh.jpg',0,'attachment','image/jpeg',0),(136,1,'2017-10-23 09:06:51','2017-10-23 09:06:51','','home-office','','inherit','open','closed','','home-office','','','2017-10-23 09:06:51','2017-10-23 09:06:51','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/home-office.jpeg',0,'attachment','image/jpeg',0),(137,1,'2017-10-23 09:06:55','2017-10-23 09:06:55','','houseforsale','','inherit','open','closed','','houseforsale','','','2017-10-23 09:06:55','2017-10-23 09:06:55','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/houseforsale.png',0,'attachment','image/png',0),(138,1,'2017-10-23 09:06:56','2017-10-23 09:06:56','','Radópakoló lomtalanítás, épületbontás, szelektív hulladékgyűjtés','Radópakoló lomtalanítás, épületbontás, szelektív hulladékgyűjtés','inherit','open','closed','','radopakolo-lomtalanitas-epuletbontas-szelektiv-hulladekgyujtes','','','2017-10-23 09:06:56','2017-10-23 09:06:56','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/household-waste.jpg',0,'attachment','image/jpeg',0),(139,1,'2017-10-23 09:06:56','2017-10-23 09:06:56','','house-lake','','inherit','open','closed','','house-lake','','','2017-10-23 09:06:56','2017-10-23 09:06:56','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/house-lake.jpg',0,'attachment','image/jpeg',0),(140,1,'2017-10-23 09:06:57','2017-10-23 09:06:57','','houses','','inherit','open','closed','','houses','','','2017-10-23 09:06:57','2017-10-23 09:06:57','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/houses.jpg',0,'attachment','image/jpeg',0),(141,1,'2017-10-23 09:06:58','2017-10-23 09:06:58','','identify-property','','inherit','open','closed','','identify-property','','','2017-10-23 09:06:58','2017-10-23 09:06:58','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/identify-property.jpg',0,'attachment','image/jpeg',0),(142,1,'2017-10-23 09:06:58','2017-10-23 09:06:58','','images','','inherit','open','closed','','images','','','2017-10-23 09:06:58','2017-10-23 09:06:58','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/images.jpe',0,'attachment','image/jpeg',0),(143,1,'2017-10-23 09:06:59','2017-10-23 09:06:59','','images1','','inherit','open','closed','','images1','','','2017-10-23 09:06:59','2017-10-23 09:06:59','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/images1.jpe',0,'attachment','image/jpeg',0),(144,1,'2017-10-23 09:07:00','2017-10-23 09:07:00','','IMG_5591','','inherit','open','closed','','img_5591','','','2018-08-14 11:35:26','2018-08-14 11:35:26','',221,'http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591.jpg',0,'attachment','image/jpeg',0),(145,1,'2017-10-23 09:07:03','2017-10-23 09:07:03','','IMG_5594','','inherit','open','closed','','img_5594','','','2017-10-23 09:07:03','2017-10-23 09:07:03','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5594.jpg',0,'attachment','image/jpeg',0),(146,1,'2017-10-23 09:07:06','2017-10-23 09:07:06','','keys','','inherit','open','closed','','keys','','','2017-10-23 09:07:06','2017-10-23 09:07:06','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/keys.jpg',0,'attachment','image/jpeg',0),(147,1,'2017-10-23 09:07:06','2017-10-23 09:07:06','','lease','','inherit','open','closed','','lease','','','2017-10-23 09:07:06','2017-10-23 09:07:06','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/lease.jpg',0,'attachment','image/jpeg',0),(148,1,'2017-10-23 09:07:07','2017-10-23 09:07:07','','list-of-flats','','inherit','open','closed','','list-of-flats','','','2017-10-23 09:07:07','2017-10-23 09:07:07','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/list-of-flats.jpg',0,'attachment','image/jpeg',0),(149,1,'2017-10-23 09:07:08','2017-10-23 09:07:08','','loan','','inherit','open','closed','','loan','','','2017-10-23 09:07:08','2017-10-23 09:07:08','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/loan.jpg',0,'attachment','image/jpeg',0),(150,1,'2017-10-23 09:07:08','2017-10-23 09:07:08','','mortgage','','inherit','open','closed','','mortgage','','','2017-10-23 09:07:08','2017-10-23 09:07:08','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage.jpg',0,'attachment','image/jpeg',0),(151,1,'2017-10-23 09:07:09','2017-10-23 09:07:09','','mortgage2','','inherit','open','closed','','mortgage2','','','2017-10-23 09:07:09','2017-10-23 09:07:09','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage2.jpg',0,'attachment','image/jpeg',0),(152,1,'2017-10-23 09:07:10','2017-10-23 09:07:10','','mortgage12','','inherit','open','closed','','mortgage12','','','2018-08-14 11:33:32','2018-08-14 11:33:32','',221,'http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12.jpg',0,'attachment','image/jpeg',0),(153,1,'2017-10-23 09:07:10','2017-10-23 09:07:10','','new-home-construction-1495982297idb','','inherit','open','closed','','new-home-construction-1495982297idb','','','2017-10-23 09:07:10','2017-10-23 09:07:10','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/new-home-construction-1495982297idb.jpg',0,'attachment','image/jpeg',0),(154,1,'2017-10-23 09:07:11','2017-10-23 09:07:11','','NUTS_3_regions_of_South_East_England_2015_map.svg','','inherit','open','closed','','nuts_3_regions_of_south_east_england_2015_map-svg','','','2017-10-23 09:07:11','2017-10-23 09:07:11','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/NUTS_3_regions_of_South_East_England_2015_map.svg_.png',0,'attachment','image/png',0),(155,1,'2017-10-23 09:07:13','2017-10-23 09:07:13','','office-581131_960_720','','inherit','open','closed','','office-581131_960_720','','','2017-10-23 09:07:13','2017-10-23 09:07:13','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/office-581131_960_720.jpg',0,'attachment','image/jpeg',0),(156,1,'2017-10-23 09:07:15','2017-10-23 09:07:15','','P1010005','','inherit','open','closed','','p1010005','','','2017-10-23 09:07:15','2017-10-23 09:07:15','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/P1010005.jpg',0,'attachment','image/jpeg',0),(157,1,'2017-10-23 09:07:19','2017-10-23 09:07:19','','P1010008','','inherit','open','closed','','p1010008','','','2017-10-23 09:07:19','2017-10-23 09:07:19','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/P1010008.jpg',0,'attachment','image/jpeg',0),(158,1,'2017-10-23 09:07:22','2017-10-23 09:07:22','','property-development','','inherit','open','closed','','property-development','','','2017-10-23 09:07:22','2017-10-23 09:07:22','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/property-development.jpg',0,'attachment','image/jpeg',0),(159,1,'2017-10-23 09:07:23','2017-10-23 09:07:23','','qq','','inherit','open','closed','','qq','','','2017-10-23 09:07:23','2017-10-23 09:07:23','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/qq.jpg',0,'attachment','image/jpeg',0),(160,1,'2017-10-23 09:07:23','2017-10-23 09:07:23','','red-bricks','','inherit','open','closed','','red-bricks','','','2017-10-23 09:07:23','2017-10-23 09:07:23','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/red-bricks.jpg',0,'attachment','image/jpeg',0),(161,1,'2017-10-23 09:07:24','2017-10-23 09:07:24','','removals','','inherit','open','closed','','removals','','','2017-10-23 09:07:24','2017-10-23 09:07:24','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/removals.jpg',0,'attachment','image/jpeg',0),(162,1,'2017-10-23 09:07:25','2017-10-23 09:07:25','','renovation','','inherit','open','closed','','renovation','','','2017-10-23 09:07:25','2017-10-23 09:07:25','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/renovation.jpg',0,'attachment','image/jpeg',0),(163,1,'2017-10-23 09:07:26','2017-10-23 09:07:26','','ric-surveyor','','inherit','open','closed','','ric-surveyor','','','2017-10-23 09:07:26','2017-10-23 09:07:26','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/ric-surveyor.png',0,'attachment','image/png',0),(164,1,'2017-10-23 09:07:26','2017-10-23 09:07:26','','scaff','','inherit','open','closed','','scaff','','','2017-10-23 09:07:26','2017-10-23 09:07:26','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/scaff.jpg',0,'attachment','image/jpeg',0),(165,1,'2017-10-23 09:07:27','2017-10-23 09:07:27','','scaffolding','','inherit','open','closed','','scaffolding','','','2017-10-23 09:07:27','2017-10-23 09:07:27','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/scaffolding.jpg',0,'attachment','image/jpeg',0),(166,1,'2017-10-23 09:07:28','2017-10-23 09:07:28','','surveyor','','inherit','open','closed','','surveyor','','','2017-10-23 09:07:28','2017-10-23 09:07:28','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/surveyor.jpg',0,'attachment','image/jpeg',0),(167,1,'2017-10-23 09:07:29','2017-10-23 09:07:29','','the-property-1540070_960_720','','inherit','open','closed','','the-property-1540070_960_720','','','2017-10-23 09:07:29','2017-10-23 09:07:29','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/the-property-1540070_960_720.jpg',0,'attachment','image/jpeg',0),(168,1,'2017-10-23 09:07:29','2017-10-23 09:07:29','','valuation','','inherit','open','closed','','valuation','','','2017-10-23 09:07:29','2017-10-23 09:07:29','',0,'http://fisawards.co.uk/wp-content/uploads/2017/10/valuation.jpg',0,'attachment','image/jpeg',0),(171,1,'2017-10-23 09:09:00','2017-10-23 09:09:00','','Cooling Off','','publish','closed','closed','','cooling-off','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/cooling-off',27,'nav_menu_item','',0),(172,1,'2017-10-23 09:09:01','2017-10-23 09:09:01','','Surveyor','','publish','closed','closed','','surveyor','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/surveyor',24,'nav_menu_item','',0),(173,1,'2017-10-23 09:09:30','2017-10-23 09:09:30','[contact-form-7 id=\"5\" title=\"Contact form 1\"]','Contact','','publish','closed','closed','','contact','','','2017-10-23 09:09:30','2017-10-23 09:09:30','',0,'http://fisawards.co.uk/?page_id=173',0,'page','',0),(174,1,'2017-10-23 09:09:30','2017-10-23 09:09:30','[contact-form-7 id=\"5\" title=\"Contact form 1\"]','Contact','','inherit','closed','closed','','173-revision-v1','','','2017-10-23 09:09:30','2017-10-23 09:09:30','',173,'http://fisawards.co.uk/173-revision-v1',0,'revision','',0),(175,1,'2017-10-23 09:16:38','2017-10-23 09:16:38','Are you looking for property experts in your local area? We have generated a list of the best ones. Stay tuned to find out more.\r\n<ol>\r\n <li><a href=\"http://miller-pattison.co.uk/\" target=\"_blank\">miller pattison</a></li>\r\n <li><a href=\"http://www.crosbyhomes.co.uk/\" target=\"_blank\">crosby homes</a></li>\r\n <li><a href=\"http://aspenconsult.co.uk/\" target=\"_blank\">aspen consult</a></li>\r\n <li><a href=\"http://hewittandmay.co.uk/\" target=\"_blank\">hewitt and may</a></li>\r\n <li><a href=\"http://cabespace.org.uk/\" target=\"_blank\">cabe space</a></li>\r\n <li><a href=\"http://mackendrick-norcott.co.uk/\" target=\"_blank\">mackendrick norcott</a></li>\r\n <li><a href=\"http://www.fbe-org.co.uk/\" target=\"_blank\">fbe</a></li>\r\n <li><a href=\"http://cite.org.uk/\" target=\"_blank\">cite</a></li>\r\n <li><a href=\"http://www.ppmagazine.co.uk/\" target=\"_blank\">pp magazine</a></li>\r\n <li><a href=\"http://www.cssnet.org.uk/\" target=\"_blank\">cssnet</a></li>\r\n <li><a href=\"http://www.veyo.co.uk/\" target=\"_blank\">veyo</a></li>\r\n <li><a href=\"http://www.scottwood.co.uk/\" target=\"_blank\">scott wood</a></li>\r\n <li><a href=\"http://sedgewall.co.uk/\" target=\"_blank\">sedgewall</a></li>\r\n <li><a href=\"http://www.nakedtenant.co.uk/\" target=\"_blank\">naked tenant</a></li>\r\n</ol>','Local Property Links','','publish','closed','closed','','local-property-links','','','2017-10-23 09:16:38','2017-10-23 09:16:38','',0,'http://fisawards.co.uk/?page_id=175',0,'page','',0),(176,1,'2017-10-23 09:16:38','2017-10-23 09:16:38','Are you looking for property experts in your local area? We have generated a list of the best ones. Stay tuned to find out more.\r\n<ol>\r\n <li><a href=\"http://miller-pattison.co.uk/\" target=\"_blank\">miller pattison</a></li>\r\n <li><a href=\"http://www.crosbyhomes.co.uk/\" target=\"_blank\">crosby homes</a></li>\r\n <li><a href=\"http://aspenconsult.co.uk/\" target=\"_blank\">aspen consult</a></li>\r\n <li><a href=\"http://hewittandmay.co.uk/\" target=\"_blank\">hewitt and may</a></li>\r\n <li><a href=\"http://cabespace.org.uk/\" target=\"_blank\">cabe space</a></li>\r\n <li><a href=\"http://mackendrick-norcott.co.uk/\" target=\"_blank\">mackendrick norcott</a></li>\r\n <li><a href=\"http://www.fbe-org.co.uk/\" target=\"_blank\">fbe</a></li>\r\n <li><a href=\"http://cite.org.uk/\" target=\"_blank\">cite</a></li>\r\n <li><a href=\"http://www.ppmagazine.co.uk/\" target=\"_blank\">pp magazine</a></li>\r\n <li><a href=\"http://www.cssnet.org.uk/\" target=\"_blank\">cssnet</a></li>\r\n <li><a href=\"http://www.veyo.co.uk/\" target=\"_blank\">veyo</a></li>\r\n <li><a href=\"http://www.scottwood.co.uk/\" target=\"_blank\">scott wood</a></li>\r\n <li><a href=\"http://sedgewall.co.uk/\" target=\"_blank\">sedgewall</a></li>\r\n <li><a href=\"http://www.nakedtenant.co.uk/\" target=\"_blank\">naked tenant</a></li>\r\n</ol>','Local Property Links','','inherit','closed','closed','','175-revision-v1','','','2017-10-23 09:16:38','2017-10-23 09:16:38','',175,'http://fisawards.co.uk/175-revision-v1',0,'revision','',0),(178,1,'2017-10-23 09:17:02','2017-10-23 09:17:02','','Resources','','publish','closed','closed','','resources','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/resources',23,'nav_menu_item','',0),(179,1,'2017-10-23 09:17:02','2017-10-23 09:17:02',' ','','','publish','closed','closed','','179','','','2020-08-20 15:41:02','2020-08-20 15:41:02','',0,'http://fisawards.co.uk/179',29,'nav_menu_item','',0),(182,1,'2017-10-23 09:20:52','2017-10-23 09:20:52','<h1>What you need to know about the 7 day cooling off period</h1>\r\nIf you find yourself pressured to sign with an agent who promises to be able to sell your house fast, it is important to note that they are now obliged to provide potential house sellers with a 7 day cooling off period. If this is not provided, you may be able to withhold payment of the <a href=\"estate-agents.html\">estate agents fee for selling</a> your property.\r\n<h2><strong>What is a cooling off period?</strong></h2>\r\nEstate Agency contracts usually stipulate heavy penalty fees for contract cancelation. Thus it has been deemed necessary for Estate Agents to provide their clients with a 7 day cooling off period, during which they may cancel their contract penalty free. This applies only if it is signed at a location other than the agents business premises e.g. at the selling property. When signing such a contract house sellers must be given clear written notice, stating their right to cancel the contract within the cooling off period. Note that this applies to agency agreements but not contracts to buy, sell or let. If you need advice about property permission, <a href=\"http://www.planning-permission.org.uk/do-i-need-planning-permission-for-construction-project\" target=\"_blank\">see this website</a>.\r\n<h2><strong>Cooling off Controversy:</strong></h2>\r\nInitially instituted to protect house sellers from aggressive unsolicited sales advances, this regulation has become the source of much debate between Consumer Representation Bodies and Estate Agency Organizations.\r\n\r\nThe \"Cancelation of Contracts Made in a Consumer\'s Home or Place of Work Etc Regulations 2008\" states that clients, who sign contracts away from the relevant business premises, are entitled to the 7 day cooling off period. This is the case whether the sales visit is solicited or unsolicited by the estate agent.\r\n\r\nThe point of controversy centers on a stipulation stating that this ruling does not apply in the case of \"the construction, sale or rental of immovable property\" (with certain exceptions). Certain agents believe that this exemption applies to Real Estate sales (\'immovable property\'). However, the Office of Fair Trading has strongly advised that Estate Agencies are subject to the cooling off period regulation, and may be heavily fined if they violate it.\r\n\r\nThe wording of the act is open to discussion, but by and large ethical estate agents have agreed to adhere to this consumer protection policy.\r\n\r\nAny contract provided to you by an estate agent has to have a notice detailing your rights to cancel the agreement within 7 days. Any contract that does not include this is <a href=\"http://www.consumeractiongroup.co.uk/forum/showthread.php?299907-quot-estate-agent-be-warned-quot-%21%21%21\">automatically unenforceable</a> .\r\n<h2><strong>Read your contract:</strong></h2>\r\nBefore you sign a contract of any sort, it is vital that you read and understand what you are signing. Look out for stipulations pertaining to the type of agency agreement, the length of the agreement, and your rights and procedures for cancelling the contract. If you are unhappy with any of these terms do not sign. You can obtain advice on your rights from a solicitor, or a local Citizens Advice Bureau.\r\n<h2><strong>What can you do if you have a problem with your Estate Agent:</strong></h2>\r\nAll estate agents are bound by the <a href=\"http://www.legislation.gov.uk/ukpga/1979/38/section/18\">Estate Agents Act 1979 (EAA 79)</a>, which requires that they belong to a redress scheme such as <a href=\"http://www.tpos.co.uk/\">The Property Ombudsman</a> (TPO), thus providing house sellers with a port in the storm, if they have a problem with their agent.\r\n\r\nWhen choosing an estate agency to <a href=\"/\">sell a house</a>, it is also best to choose one registered with a relevant trade organization such as; <a href=\"http://www.naea.co.uk/\">The National Association of Estate Agents</a> (NAEA), <a href=\"http://www.guildproperty.co.uk/\">The Guild of Professional Estate Agents</a> or <a href=\"http://www.rics.org/uk/\">The Royal Institution of Chartered Surveyors</a> (RICS). Choosing an agent registered with one of these bodies ensures that you will get a better, and more ethical, level of customer service.\r\n\r\n ','What you need to know about the 7 day cooling off period','','inherit','closed','closed','','65-revision-v1','','','2017-10-23 09:20:52','2017-10-23 09:20:52','',65,'http://fisawards.co.uk/65-revision-v1',0,'revision','',0),(183,1,'2017-10-23 09:22:01','2017-10-23 09:22:01','<h1>Have you had a bad solicitors service? Check out the process of complaining</h1>\nIf you are not satisfied with the service provide by your conveyancing solicitor (during your house sale or purchase) there are avenues you can pursue in order to make a formal complaint.\n\nAll issues pertaining to the legal transfer of title (for residential property) by a conveyancing solicitor of licensed conveyancer can be reported to the appropriate regulatory body. Did your surveyor live up to trading standards? More information here.\n<h2>Your First Port Of Call (Your Solicitor)</h2>\n1. You can complain directly to the solicitor or the conveyancer\n\nAny solicitor or conveyancer must have a complaints procedure to be followed in the event of misconduct.\n\nDetails of how to initiate the complaints procedure can be found on their website or by speaking to the office administrator.\n\nYou can also contact the legal ombudsman who will ensure that your complaint is dealt with in a proper manner and will also give you advice on how to lodge your complaint.\n\nIf you are still not satisfied with how the solicitor or conveyancer deals with you matter, you can complain to the legal ombudsman as explained above, or to the council of licensed conveyancers. The other alternatives are going to the alternative dispute resolution or going to court.\n<h2>Bring Legal Action</h2>\nFailing that you can always <a href=\"http://www.sethlovisprofneg.co.uk/Solicitors-Barristers-Negligence/Conveyancing-Property-Negligence.shtml\">try to bring legal action</a> against your conveyancer with the help of a \"Solicitor\'s Negligence\" specialist.\n\n2. You can complain to the Council of Licensed Conveyancers (CLC)\n\nIf you are dealing with a licensed conveyancer you can lodge your complaint with CLC, if the complaint to the conveyancer did not yield any dividends regarding your case.\n\nThe CLC deals with issues of professional misconduct of the conveyancer. If it is a matter of negligence, the CLC will refer the matter to the conveyancer?s insurers before they can deal with the matter. The CLC can make the licensed conveyancer pay you compensation of up to £5000, repay you the fees you paid or put an error made right.\n\nThe CLC can also withdraw the conveyancer\'s licence or suspend them.\n<h2>Their Regulatory Body</h2>\n3. You can complain to the Solicitors\' Regulation Authority (SRA)\n\nIf one was dealing with a solicitor, one can complain to the SRA- only in instances where your matter has not been resolved by the solicitor or the legal ombudsman.\n\nThe SRA investigates and deals with matters of professional misconduct like lying to clients, taking unfair advantage of clients, holding onto clients money, breaking an undertaking given to you, discrimination on grounds of race, religion, age or disability by the solicitor, amongst others. The SRA has powers to prosecute a solicitor, and can take steps against a specific solicitor or the whole firm and the solicitor can be struck off from the roll of solicitors. The SRA does not however make the solicitor pay you compensation. For compensation you can try another method of complaint and a different avenue altogether.\n\nIn conclusion, you have a right to complain and you can enforce this right against your solicitor or conveyancer.\n\n<hr />\n\n\n\n<hr />','Have you had a bad solicitors service? Check out the process of complaining','','inherit','closed','closed','','64-autosave-v1','','','2017-10-23 09:22:01','2017-10-23 09:22:01','',64,'http://fisawards.co.uk/64-autosave-v1',0,'revision','',0),(184,1,'2017-10-23 09:22:05','2017-10-23 09:22:05','<h1>Have you had a bad solicitors service? Check out the process of complaining</h1>\r\nIf you are not satisfied with the service provide by your conveyancing solicitor (during your house sale or purchase) there are avenues you can pursue in order to make a formal complaint.\r\n\r\nAll issues pertaining to the legal transfer of title (for residential property) by a conveyancing solicitor of licensed conveyancer can be reported to the appropriate regulatory body. Did your surveyor live up to trading standards? <a href=\"http://www.planning-permission.org.uk/do-i-need-planning-permission-for-construction-project\" target=\"_blank\">More information here</a>.\r\n<h2>Your First Port Of Call (Your Solicitor)</h2>\r\n1. You can complain directly to the solicitor or the conveyancer\r\n\r\nAny solicitor or conveyancer must have a complaints procedure to be followed in the event of misconduct.\r\n\r\nDetails of how to initiate the complaints procedure can be found on their website or by speaking to the office administrator.\r\n\r\nYou can also contact the legal ombudsman who will ensure that your complaint is dealt with in a proper manner and will also give you advice on how to lodge your complaint.\r\n\r\nIf you are still not satisfied with how the solicitor or conveyancer deals with you matter, you can complain to the legal ombudsman as explained above, or to the council of licensed conveyancers. The other alternatives are going to the alternative dispute resolution or going to court.\r\n<h2>Bring Legal Action</h2>\r\nFailing that you can always <a href=\"http://www.sethlovisprofneg.co.uk/Solicitors-Barristers-Negligence/Conveyancing-Property-Negligence.shtml\">try to bring legal action</a> against your conveyancer with the help of a \"Solicitor\'s Negligence\" specialist.\r\n\r\n2. You can complain to the Council of Licensed Conveyancers (CLC)\r\n\r\nIf you are dealing with a licensed conveyancer you can lodge your complaint with CLC, if the complaint to the conveyancer did not yield any dividends regarding your case.\r\n\r\nThe CLC deals with issues of professional misconduct of the conveyancer. If it is a matter of negligence, the CLC will refer the matter to the conveyancer?s insurers before they can deal with the matter. The CLC can make the licensed conveyancer pay you compensation of up to £5000, repay you the fees you paid or put an error made right.\r\n\r\nThe CLC can also withdraw the conveyancer\'s licence or suspend them.\r\n<h2>Their Regulatory Body</h2>\r\n3. You can complain to the Solicitors\' Regulation Authority (SRA)\r\n\r\nIf one was dealing with a solicitor, one can complain to the SRA- only in instances where your matter has not been resolved by the solicitor or the legal ombudsman.\r\n\r\nThe SRA investigates and deals with matters of professional misconduct like lying to clients, taking unfair advantage of clients, holding onto clients money, breaking an undertaking given to you, discrimination on grounds of race, religion, age or disability by the solicitor, amongst others. The SRA has powers to prosecute a solicitor, and can take steps against a specific solicitor or the whole firm and the solicitor can be struck off from the roll of solicitors. The SRA does not however make the solicitor pay you compensation. For compensation you can try another method of complaint and a different avenue altogether.\r\n\r\nIn conclusion, you have a right to complain and you can enforce this right against your solicitor or conveyancer.\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />','Have you had a bad solicitors service? Check out the process of complaining','','inherit','closed','closed','','64-revision-v1','','','2017-10-23 09:22:05','2017-10-23 09:22:05','',64,'http://fisawards.co.uk/64-revision-v1',0,'revision','',0),(185,1,'2017-11-23 10:11:17','2017-11-23 10:11:17','<h1>Is your house difficult to sell? Here are 10 common problems</h1>\n<div class=\"entry-content\">\n\nThe time has come for you to sell your home, and you are envisioning a stress free and relatively fast sale. However, there are several common problems that can get in the way of this, and make it difficult to secure an offer. <a href=\"http://aje.org.uk/information-for-tenants\" target=\"_blank\">Click here</a> for information for tenants.\n<h2>Problem 1 - Repairs and Maintenance:</h2>\nBefore letting your estate agent put your house on the market it is vital that you handle all basic repair and maintenance issues that could turn buyers off and delay your sale.\n\nThese issues run the gamut from messy and overgrown gardens, to doors that do not fit properly into their door-frames, and stained sinks. Taking care of all basic repairs, and sprucing up the home with some fresh paint, is a good first step towards impressing buyers.\n\nRemember that your front garden is the first thing a prospective house buyer gets to see of your property, so you may also want to focus on improving it kerb appeal (your homes appearance from the outside).\n<blockquote>If you have garden waste and/or house junk to get rid of, why not hire a specialist waste removal company to collect it for you?\n\n<strong>Any Waste Berkshire</strong> provide a 24-48 hour domestic clearance service for the whole county including Windsor, Maidenhead, Ascot, Slough and Reading. <a href=\"http://berkshire.me.uk/house-and-flats/index.php\" target=\"_blank\">Click here for details.</a></blockquote>\n<h2>Problem 2 - Uncontrollable Factors:</h2>\nIf a home has a dubious history, is built on a flood plain, or is in the vicinity of problem plants such as Japanese Knotweed, these dilemmas can make it hard to sell your house quickly.\n\nThere is little you can do about the flood-plain issue (except to make best endeavors to flood proof your home) however, <a href=\"http://www.jksl.com/private-gardens-and-mortgages.htm\">problem plants can be removed by specialists</a> and they should be contacted as soon as possible.\n<h2>Problem 3 - Damp:</h2>\nClearly visible water stains and damp marks, on the inside and outside of your home, as well as musty smelling rooms, are a clear indication to buyers that the house has not been properly maintained. It is important that you take care of the problem causing the damp properly, and not attempt to simply cover it up with paint and air freshener, as buyers are often very through in their inspection of a selling property. If you have any queries, get in touch with <a href=\"http://tradingstandards.org.uk/\" target=\"_blank\">Trading Solutions.</a>\n<h2>Problem 4 - Odors:</h2>\nSmell is our most dominant sense. Thus it is important, when showing your house that you eradicate all unpleasant smells from your home. Smells such as cigarette smoke, mildew and pet odors, are a huge turn off to buyers. Do not simply try to mask smells with air freshener, as potential buyers may find this suspicious. Is your house not selling? Read more tips.\n<h2>Problem 5 - Divergent Decorative Tastes:</h2>\nWhen trying to sell a home it is not advisable to make drastic and irreversible renovations, as this not only causes you to have to raise your selling price, but these changes may also send prospective buyers running. Everyone has different tastes; so when getting your place ready for sale focus on basic improvements and keep paint colors neutral. There are small changes that you can make to enhance a room, that won\'t set you back a fortune e.g. add lamps to bring warm light to gloomy rooms, replace dowdy curtains with tasteful white sheers, etc...<a href=\"http://padlife.co.uk/interior-design.html\" target=\"_blank\">click here for interior design ideas.</a>\n<h2>Problem 6 - The Area:</h2>\nTry to get on good terms with your neighbors, as property buyers may talk to them to get a feel for the area. Noisy / Anti-social neighbors are a big turn off to prospective buyers, so it will be helpful if you can get the neighbors on your side. Other problems include the area having poor network reception, or no access to amenities such as schools and shops. If this is the case find area selling points to balance these negatives out.\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Call us today</a> to find out how we can help you <a href=\"/\">sell your house fast</a> with the least amount of fuss possible.</blockquote>\n\n<hr />\n\n\n\n<hr />\n\n</div>\n ','Is your house difficult to sell? Here are 10 common problems','','inherit','closed','closed','','62-autosave-v1','','','2017-11-23 10:11:17','2017-11-23 10:11:17','',62,'http://fisawards.co.uk/62-autosave-v1',0,'revision','',0),(186,1,'2017-10-23 09:23:39','2017-10-23 09:23:39','<h1>Is your house difficult to sell? Here are 10 common problems</h1>\r\n<div class=\"entry-content\">\r\n\r\nThe time has come for you to sell your home, and you are envisioning a stress free and relatively fast sale. However, there are several common problems that can get in the way of this, and make it difficult to secure an offer. <a href=\"http://aje.org.uk/information-for-tenants\" target=\"_blank\">Click here</a> for information for tenants.\r\n<h2>Problem 1 - Repairs and Maintenance:</h2>\r\nBefore letting your estate agent put your house on the market it is vital that you handle all basic repair and maintenance issues that could turn buyers off and delay your sale.\r\n\r\nThese issues run the gamut from messy and overgrown gardens, to doors that do not fit properly into their door-frames, and stained sinks. Taking care of all basic repairs, and sprucing up the home with some fresh paint, is a good first step towards impressing buyers.\r\n\r\nRemember that your front garden is the first thing a prospective house buyer gets to see of your property, so you may also want to focus on improving it kerb appeal (your homes appearance from the outside).\r\n<h2>Problem 2 - Uncontrollable Factors:</h2>\r\nIf a home has a dubious history, is built on a flood plain, or is in the vicinity of problem plants such as Japanese Knotweed, these dilemmas can make it hard to sell your house quickly.\r\n\r\nThere is little you can do about the flood-plain issue (except to make best endeavors to flood proof your home) however, <a href=\"http://www.jksl.com/private-gardens-and-mortgages.htm\">problem plants can be removed by specialists</a> and they should be contacted as soon as possible.\r\n<h2>Problem 3 - Damp:</h2>\r\nClearly visible water stains and damp marks, on the inside and outside of your home, as well as musty smelling rooms, are a clear indication to buyers that the house has not been properly maintained. It is important that you take care of the problem causing the damp properly, and not attempt to simply cover it up with paint and air freshener, as buyers are often very through in their inspection of a selling property.\r\n<h2>Problem 4 - Odors:</h2>\r\nSmell is our most dominant sense. Thus it is important, when showing your house that you eradicate all unpleasant smells from your home. Smells such as cigarette smoke, mildew and pet odors, are a huge turn off to buyers. Do not simply try to mask smells with air freshener, as potential buyers may find this suspicious.\r\n<h2>Problem 5 - Divergent Decorative Tastes:</h2>\r\nWhen trying to sell a home it is not advisable to make drastic and irreversible renovations, as this not only causes you to have to raise your selling price, but these changes may also send prospective buyers running. Everyone has different tastes; so when getting your place ready for sale focus on basic improvements and keep paint colors neutral. There are small changes that you can make to enhance a room, that won\'t set you back a fortune e.g. add lamps to bring warm light to gloomy rooms, replace dowdy curtains with tasteful white sheers, etc...\r\n<h2>Problem 6 - The Area:</h2>\r\nTry to get on good terms with your neighbors, as property buyers may talk to them to get a feel for the area. Noisy / Anti-social neighbors are a big turn off to prospective buyers, so it will be helpful if you can get the neighbors on your side. Other problems include the area having poor network reception, or no access to amenities such as schools and shops. If this is the case find area selling points to balance these negatives out.\r\n\r\nHere at us we buy any house in any condition, anywhere in the UK. Call us today to find out how we can help you <a href=\"/\">sell your house fast</a> with the least amount of fuss possible.\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n</div>\r\n ','Is your house difficult to sell? Here are 10 common problems','','inherit','closed','closed','','62-revision-v1','','','2017-10-23 09:23:39','2017-10-23 09:23:39','',62,'http://fisawards.co.uk/62-revision-v1',0,'revision','',0),(187,1,'2017-10-23 09:26:09','2017-10-23 09:26:09','<h1>Finding the best estate agent is a great idea!</h1>\r\nWhen it comes to selling your home, the success of your sale is hugely dependent on your estate agent.\r\n\r\nYour choice of an estate agent will determine largely what price you sell for and whether the sale will conclude in a timely manner.\r\n\r\nChoosing your estate agent therefore requires careful consideration. It is never a good idea to choose an estate agent purely on price. Experience is what you\'re looking for as a shoddy agent can cause more stress than you can believe.\r\n\r\nSo how then should one choose an estate agent? One must choose the best and most experienced when it comes to selling your type of property - be it a flat, a house with a big garden, an old house or a house in a rural setting. This is the primary consideration when short-listing agents. <a href=\"http://axworthy.co.uk/our-top-10-tips-on-how-to-add-value-to-your-home\" target=\"_blank\">Find out about property valuations</a>.\r\n<h2>How To Research Your Local Agents</h2>\r\nTake some time to research the agents in your area. Who seem to have the <a href=\"http://www.vizzihome.co.uk/property_market_share.php\">most \"for sale\" boards</a> up? They are most likely the best agent but are they selling your type of property?\r\n\r\nYou must not pick any agent who charges the lowest commission or the one who offers the highest valuation of your property.\r\n\r\nBe wary of any agent that caves in when you start to negotiate on their fee. Is this how they are going to negotiate with buyer on your behalf over the sale price of your house!?\r\n\r\nAlso, an agent that tells you your house is worth more than it actually is does your sale a major disservice. Instead of selling for more, your house may stay on the market for a long time without attracting any interest whatsoever. This too may be a sign of lack of experience on the estate agent?s side.\r\n\r\nSpend time rather monitoring agents in your area to see which ones are selling property quickly. The local newspapers, Rightmove Property Portal, Zoopla and driving around in your neighborhood and talking to friends and family can help you get a feel for which the best agent are.\r\n\r\nAs you do your research, it is important to find which estate agents sell property similar to yours. Once you have located them, the next step is to call them pretending to be a potential buyer. This mystery shopping exercise will give you a feel for how they will \"sell\" your house. Which estate agent pushes hardest to get you through the door of a property for a viewing? That\'s the kind of agent you want on your side.\r\n\r\nAs you visit the different estate agents in their offices, have a check-list handy and make sure that most of the questions you have are answered satisfactorily.\r\n\r\nYour check list should include such questions like what other similar properties to yours they have sold and at what price, how long it took to sell the property and how many viewings did they have on the property, how many buyers do they have on their books that are looking for properties similar to yours.\r\n<h2>Professional Bodies Governing Estate Agents</h2>\r\nYou should also find out if they are a member of a professional body such as the Property Ombudsman or The NAEA (National Association of Estate Agents). Have they have signed a code of conduct and are bound by such code? This is important information that will help you to choose the best estate agent to sell your property quickly and without fuss.\r\n\r\n<hr />','Finding the best estate agent is a great idea!','','inherit','closed','closed','','61-revision-v1','','','2017-10-23 09:26:09','2017-10-23 09:26:09','',61,'http://fisawards.co.uk/61-revision-v1',0,'revision','',0),(188,1,'2017-10-23 09:27:11','2017-10-23 09:27:11','<h1>What is conveyancing? Understanding the process with us</h1>\r\nSelling or buying a home is not an easy and straightforward procedure. It is rather complicated and requires the services of conveyancing solicitors in order to take care of the legal transfer and ownership of your property.\r\n<h2>Conveyancing Process For House Sellers</h2>\r\nFrom the seller\'s perspective, the conveyancing (while simpler than when buying) can take anywhere up to 6-weeks and has three main stages.\r\n<h3>Stage 1</h3>\r\nThe first stage involves the sending out of draft contracts, which are to be negotiated between the parties later.\r\n\r\nThis is the stage where enquiries are also made. The buyer\'s solicitor will contact the seller\'s solicitor and the two solicitors will exchange details. The seller\'s solicitor will receive the draft contract on behalf of the seller, and then negotiate the draft contract. The seller\'s solicitor will then prepare the solicitor\'s package which includes the draft contract, copies of title deeds and previous title deeds, property information form and fixtures and fittings and contents form, amongst others. <a href=\"http://alldriroofing.co.uk/\" target=\"_blank\">Click here for roofing advice</a>.\r\n<h3>Stage 2</h3>\r\nThe second stage involves the exchange of contracts. This is where the seller and buyer exchange contracts after signing them and the deposit is paid over by the buyer.\r\n\r\nAt this stage both parties are now legally bound to follow the process through. Default by the buyer or seller can result in breach of contract. <a href=\"http://www.youtube.com/watch?v=B-TNB19MVu4&feature=relmfu\">Gazumping</a> by the seller can no longer take place at this stage. The deposit paid is non refundable and is paid by the buyer to the seller as security. If the buyer does not have this deposit, he or she can apply to the bank for a bridging loan.\r\n\r\nThe buyer\'s solicitor at this stage must draft a transfer document and send it to the seller\'s solicitor. In the event that the land or property is not registered, a special conveyance will have to be carried out. The transfer document transfers the property from the seller to the buyer and once both the seller and the buyer are in agreement, the transfer document is signed by both parties, and the buyer?s solicitor arranges for signing of mortgage documents and finalization of the transfer.\r\n<h3>Stage 3</h3>\r\nThe third and last stage is the completion stage wherein the buyer receives the title deeds and is handed the keys of the house. The seller is responsible for stamp duty and the transfer at the Land Registry is also arranged. The buyer can now move into the property, and the seller will now be forced to move out if he or she had not done so already. The buyer must now pay the balance of the house through solicitors that is the agreed price of sale minus the deposit already paid.\r\n\r\nThe property seller will now have to make alternative arrangements for his accommodation. At this stage the conveyancing process is concluded.\r\n\r\n ','What is conveyancing? Understanding the process with us','','inherit','closed','closed','','77-revision-v1','','','2017-10-23 09:27:11','2017-10-23 09:27:11','',77,'http://fisawards.co.uk/77-revision-v1',0,'revision','',0),(190,1,'2019-02-08 10:59:45','2019-02-08 10:59:45','Moving day can be stressful enough as it is, one is worried about whether all has been packed and if one\'s valuable dinnerware is going to break. The last thing on your mind during this rather stressful period is about being late and delays on moving day.\n\n<strong>There are however, a few simple things to bear in mind that can help you avoid unnecessary and upsetting delays on moving day.</strong>\n<h2>Whether or not to use a removal company:</h2>\nRemoval companies can be a costly additional expense when moving and it may be tempting to cut costs and conduct the removal yourself. If you are only moving a short distance away this can be successfully accomplished but you need to be much organised and plan appropriately ahead of time.\n\nMeasure the size of all of your furniture and appliances to establish the size of removal van needed to save time. <a href=\"http://fisawards.co.uk/contact\">Contact us for more advice</a>.\n\nWhen moving home, it is often the case that people want to get rid of old furniture and junk. However, the last thing that is going to be on your mind is where to dispose of these things and when will you have the time?\n\nA reliable and professional rubbish removal company will be able to take care of all things waste, while you focus on getting to your new home. For house clearances in Ashford, Canterbury or Gravesend in Kent, <a href=\"http://www.rubbishclearancekent.me.uk/house-clearances\" target=\"_blank\">visit this website</a>.\n<h2>Hire a vacate cleaning service</h2>\nA vacate cleaning service gives you a 100% guarantee of getting your bond / deposit money back. Having a specialist cleaning service from experienced staff member\'s means you only have to worry about moving your furniture, rather than the dirty work.\n\n<strong>Typical services include:</strong>\n<ul>\n <li>Oven / stove cleaning</li>\n <li>Carpet cleaning</li>\n <li>Bench top wiping</li>\n <li>Shower / tile cleaning</li>\n <li>Wiping down of skirting boards</li>\n</ul>\n<h2>Moving furniture and appliances:</h2>\nThere are a few simple ways to ensure that the removal of furniture and appliances does not cause unnecessary delays. Firstly, ensure drawers are securely shut with strong tape, rope or bubble wrap or remove them entirely. <a href=\"http://decenthomesstandard.co.uk/Occasional_Chairs.htm\" target=\"_blank\">Find out about different furniture</a>.\n\nSecondly, protect furniture with the appropriate packing materials, blankets or padding. Finally, pack all electronics in their original packaging as far as possible or protect them with thick blankets or moving pads.\n\n<strong>Do you need help selling your property? <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Take a look at 10 most common problems</a>.</strong>\n<h2>Final tips:</h2>\nFinally, make sure you are adequately prepared for the day ahead. Go through your home and check that you have not forgotten anything important and that everything is clean and in order for the new owners.\n\nPhone the removal company to double check that they will be there on the agreed upon date and time. Ensure that all of the utilities have been transferred to the new owners. Finally, if you are concerned about getting everything done on time, enlist additional help from a removal company or family members and friends.','Moving day coming up? Here\'s how you can avoid delays on the big day','','inherit','closed','closed','','67-autosave-v1','','','2019-02-08 10:59:45','2019-02-08 10:59:45','',67,'http://fisawards.co.uk/67-autosave-v1',0,'revision','',0),(191,1,'2017-10-31 11:13:01','2017-10-31 11:13:01','Moving day can be stressful enough as it is, one is worried about whether all has been packed and if one\'s valuable dinnerware is going to break. The last thing on your mind during this rather stressful period is about being late and delays on moving day.\r\n\r\n<strong>There are however, a few simple things to bear in mind that can help you avoid unnecessary and upsetting delays on moving day.</strong>\r\n<h2>Whether or not to use a removal company:</h2>\r\nRemoval companies can be a costly additional expense when moving and it may be tempting to cut costs and conduct the removal yourself. If you are only moving a short distance away this can be successfully accomplished but you need to be much organised and plan appropriately ahead of time.\r\n\r\nMeasure the size of all of your furniture and appliances to establish the size of removal van needed to save time. <a href=\"http://fisawards.co.uk/contact\">Contact us for more advice</a>.\r\n\r\nWhen moving home, it is often the case that people want to get rid of old furniture and junk. However, the last thing that is going to be on your mind is where to dispose of these things and when will you have the time?\r\n\r\nA reliable and professional rubbish removal company will be able to take care of all things waste, while you focus on getting to your new home. For house clearances in Ashford, Canterbury or Gravesend in Kent, <a href=\"http://www.rubbishclearancekent.me.uk/house-clearances\" target=\"_blank\">visit this website</a>.\r\n<h2>Moving furniture and appliances:</h2>\r\nThere are a few simple ways to ensure that the removal of furniture and appliances does not cause unnecessary delays. Firstly, ensure drawers are securely shut with strong tape, rope or bubble wrap or remove them entirely. <a href=\"http://decenthomesstandard.co.uk/Occasional_Chairs.htm\" target=\"_blank\">Find out about different furniture</a>.\r\n\r\nSecondly, protect furniture with the appropriate packing materials, blankets or padding. Finally, pack all electronics in their original packaging as far as possible or protect them with thick blankets or moving pads.\r\n\r\n<strong>Do you need help selling your property? <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Take a look at 10 most common problems</a>.</strong>\r\n<h2>Final tips:</h2>\r\nFinally, make sure you are adequately prepared for the day ahead. Go through your home and check that you have not forgotten anything important and that everything is clean and in order for the new owners.\r\n\r\nPhone the removal company to double check that they will be there on the agreed upon date and time. Ensure that all of the utilities have been transferred to the new owners. Finally, if you are concerned about getting everything done on time, enlist additional help from a removal company or family members and friends.','Moving day coming up? Here\'s how you can avoid delays on the big day','','inherit','closed','closed','','67-revision-v1','','','2017-10-31 11:13:01','2017-10-31 11:13:01','',67,'http://fisawards.co.uk/67-revision-v1',0,'revision','',0),(193,1,'2017-11-09 16:18:32','2017-11-09 16:18:32','When your buyer\'s house valuation report comes in with a figure lower than that which you have negotiated this does not necessarily spell the end of your sale. <a href=\"http://www.wearespartacus.org.uk/top-10-tips-to-getting-to-know-house-surveys\" target=\"_blank\">Find out about surveyors</a>.\r\n\r\nSelling a home can be quite an expensive process, with all the expenses you will incur to effect repairs and replacements of what is old and broken.\r\n\r\nYou can spend a fortune fixing the obvious cracks, chirps, breakages and worn out places of your home and the buyer\'s valuation or the structural surveyor may still come back with more bad news about the state of your home.\r\n\r\nWhen you are the buyer, this will be disappointing as your mortgage lender may decide that they no longer want to lend on the property.\r\n\r\nAgain this does not spell the end to your move.\r\n<h2>Alternative To Explore With Your Buyer</h2>\r\nAs an interested buyer you do not have to walk away after a bad survey. One alternative is finding out how much repairs to the structural fault will cost. It may be something that can be easily fixed, without incurring high costs for the repairs. If you a cash buyer you can of course do what you like as you\'re not dependent on a mortgage (this is explained in more detail <a href=\"http://www.opusmove.co.uk/property-selling-questions-answers-york.aspx\" target=\"_blank\">here</a>).\r\n\r\nSecondly, you can renegotiate with the seller (after having obtained a quotation on how much the repairs will cost) by asking the seller to reduce their price by the same amount. This way you can still have your dream home. For more advice, <a href=\"http://www.planning-permission.org.uk/new-build\" target=\"_blank\">click here</a>.\r\n\r\nIn most instances, the most common problems include structural movement, timber and damp problems; rot- wet and dry, woodworm, defective wiring and an outdated or defective heating system. The seller can replace some of these, although this will mean more expenses for him.\r\n\r\nIt is also important to consider that an evaluation is exactly that - an evaluation, it enables the lender to make a lending decision. The buyer can still make his or her own decision about whether he or she really wants the house.\r\n<h2>Open Negotiation Is the Key</h2>\r\nIn most instances, what it takes to solve the problem is the coming together of the seller and the buyer and their working together in tackling the problems that would have arisen from the valuation.\r\n\r\nThe buyer\'s decision to want to buy the house was not on the basis of the valuation, but rather on his or her general impression of the house, and this often is not changed overnight by the valuation report obtained from the buyer\'s lender. The seller too can exercise some reasonableness and accommodate the new findings and adjust the price realistically. This way all parties will win and the problem will be resolved.\r\n\r\nHowever, if you\'re in the property market and are looking for a private lender to fund your project, a surveyor will have to come on site and take a report. They will go through all your figures and discuss an end product with you to see how suitable you are.\r\n\r\n<strong>To see the development loan process, <a href=\"https://www.hunterfinance.co.uk/property-development-finance/lending-process\" target=\"_blank\">visit this website</a>.</strong>','Has a surveyor highlighted problems with your property? Here are some alternative ideas','','inherit','closed','closed','','79-revision-v1','','','2017-11-09 16:18:32','2017-11-09 16:18:32','',79,'http://fisawards.co.uk/79-revision-v1',0,'revision','',0),(194,1,'2019-06-07 08:57:07','2019-06-07 08:57:07','<h1>Is your house not selling? Here is what you could do</h1>\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\n\nIt could be that the effects of the global recession have become personal and you need to sell a house fast due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home. Make sure you are with the right estate agent - <a href=\"http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html\">read more here.</a>\n\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell. <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Have a look at 10 reasons your house isn\'t selling.</a>\n<h2><strong>Rent your home:</strong></h2>\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job-related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\n<h2><strong>Price your home at the right price:</strong></h2>\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\n\nHave your home professionally cleaned. There is nothing more off putting than\n<h2><strong>Renovate: give your home a new lease of life</strong></h2>\n<em>Thinking like a buyer when making home improvements could assist you in attracting the right buyers.</em>\n<ul>\n <li>Ensure that all light fixtures in your home are clean and working - <a href=\"http://electrician.me.uk/\" target=\"_blank\">get them checked by a qualified electrician</a></li>\n <li>Fix cracks and damp in walls</li>\n <li>Replace your windows with the latest double or triple glazed options. Rooflights and skylights make a great feature in living spaces.</li>\n <li>Give the house a fresh coat of paint on the inside and outside - <a href=\"http://boschkitchens.co.uk/\" target=\"_blank\">have a look at other home improvement options</a></li>\n <li>Update your furnishings for a modern look. <a href=\"/\">Click here</a> for some design inspiration.</li>\n <li>Keep your garden neat and tidy and consider getting a landscape architect in to give it a fresh new look</li>\n</ul>\nIf your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\n\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.\n<h3><a href=\"http://fisawards.co.uk/contact\">Send us your top property tips</a></h3>','Is your house not selling? Here is what you could do','','inherit','closed','closed','','80-autosave-v1','','','2019-06-07 08:57:07','2019-06-07 08:57:07','',80,'http://fisawards.co.uk/80-autosave-v1',0,'revision','',0),(195,1,'2017-11-10 13:21:26','2017-11-10 13:21:26','<h1>Is your house not selling? Here is what you could do</h1>\r\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\r\n\r\nIt could be that the effects of the global recession have become personal and you need to sell a house fast due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home.\r\n\r\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell.\r\n<h2><strong>Rent your home:</strong></h2>\r\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\r\n<h2><strong>Price your home at the right price:</strong></h2>\r\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\r\n<h2><strong>Give it a new lease of life:</strong></h2>\r\nThinking like a buyer when making home improvements could assist you in attracting the right buyers. Ensuring that light fixtures in your home are clean and fixing cracks and damp in walls could all make the world of difference when it comes to attracting a buyer who is serious about purchasing your house. Giving the house a fresh coat of paint on the inside and outside also makes a house more appealing for a potential buyer. Finally, check that your garden is neat and tidy and consider getting a landscape architect in to give it a fresh new look. If your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\r\n\r\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.','Is your house not selling? Here is what you could do','','inherit','closed','closed','','80-revision-v1','','','2017-11-10 13:21:26','2017-11-10 13:21:26','',80,'http://fisawards.co.uk/80-revision-v1',0,'revision','',0),(196,1,'2017-11-10 13:24:20','2017-11-10 13:24:20','<h1>Is your house not selling? Here is what you could do</h1>\r\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\r\n\r\nIt could be that the effects of the global recession have become personal and you need to sell a house fast due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home.\r\n\r\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell.\r\n<h2><strong>Rent your home:</strong></h2>\r\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\r\n<h2><strong>Price your home at the right price:</strong></h2>\r\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\r\n<h2><strong>Renovate: give your home a new lease of life</strong></h2>\r\n<em>Thinking like a buyer when making home improvements could assist you in attracting the right buyers.</em>\r\n<ul>\r\n <li>Ensure that all light fixtures in your home are clean and working</li>\r\n <li>Fix cracks and damp in walls</li>\r\n <li>Give the house a fresh coat of paint on the inside and outside</li>\r\n <li>Keep your garden neat and tidy and consider getting a landscape architect in to give it a fresh new look</li>\r\n</ul>\r\nIf your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\r\n\r\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.','Is your house not selling? Here is what you could do','','inherit','closed','closed','','80-revision-v1','','','2017-11-10 13:24:20','2017-11-10 13:24:20','',80,'http://fisawards.co.uk/80-revision-v1',0,'revision','',0),(197,1,'2017-11-10 13:36:25','2017-11-10 13:36:25','<h1>Is your house not selling? Here is what you could do</h1>\r\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\r\n\r\nIt could be that the effects of the global recession have become personal and you need to sell a house fast due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home.\r\n\r\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell.\r\n<h2><strong>Rent your home:</strong></h2>\r\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\r\n<h2><strong>Price your home at the right price:</strong></h2>\r\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\r\n<h2><strong>Renovate: give your home a new lease of life</strong></h2>\r\n<em>Thinking like a buyer when making home improvements could assist you in attracting the right buyers.</em>\r\n<ul>\r\n <li>Ensure that all light fixtures in your home are clean and working - <a href=\"http://electrician.me.uk/\" target=\"_blank\">get them checked by a qualified electrician</a></li>\r\n <li>Fix cracks and damp in walls</li>\r\n <li>Replace your windows with the latest double or triple glazed options. Rooflights and sky lights make a great feature in living spaces. <a href=\"https://www.eosrooflights.co.uk/shop-online/\" target=\"_blank\">Buy online here.</a></li>\r\n <li>Give the house a fresh coat of paint on the inside and outside - <a href=\"http://boschkitchens.co.uk/\" target=\"_blank\">have a look at other home improvement options</a></li>\r\n <li>Update your furnishings for a modern look. <a href=\"http://blinds.me.uk/\" target=\"_blank\">Click here</a> for some design inspiration.</li>\r\n <li>Keep your garden neat and tidy and consider getting a landscape architect in to give it a fresh new look</li>\r\n</ul>\r\nIf your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\r\n\r\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.\r\n<h3><a href=\"http://fisawards.co.uk/contact\">Send us your top property tips</a></h3>','Is your house not selling? Here is what you could do','','inherit','closed','closed','','80-revision-v1','','','2017-11-10 13:36:25','2017-11-10 13:36:25','',80,'http://fisawards.co.uk/80-revision-v1',0,'revision','',0),(198,1,'2017-11-10 13:38:21','2017-11-10 13:38:21','<h1>Is your house not selling? Here is what you could do</h1>\r\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\r\n\r\nIt could be that the effects of the global recession have become personal and you need to sell a house fast due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home. Make sure you are with the right estate agent - <a href=\"http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html\">read more here.</a>\r\n\r\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell. <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Have a look at 10 reasons your house isn\'t selling.</a>\r\n<h2><strong>Rent your home:</strong></h2>\r\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\r\n<h2><strong>Price your home at the right price:</strong></h2>\r\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\r\n<h2><strong>Renovate: give your home a new lease of life</strong></h2>\r\n<em>Thinking like a buyer when making home improvements could assist you in attracting the right buyers.</em>\r\n<ul>\r\n <li>Ensure that all light fixtures in your home are clean and working - <a href=\"http://electrician.me.uk/\" target=\"_blank\">get them checked by a qualified electrician</a></li>\r\n <li>Fix cracks and damp in walls</li>\r\n <li>Replace your windows with the latest double or triple glazed options. Rooflights and sky lights make a great feature in living spaces. <a href=\"https://www.eosrooflights.co.uk/shop-online/\" target=\"_blank\">Buy online here.</a></li>\r\n <li>Give the house a fresh coat of paint on the inside and outside - <a href=\"http://boschkitchens.co.uk/\" target=\"_blank\">have a look at other home improvement options</a></li>\r\n <li>Update your furnishings for a modern look. <a href=\"http://blinds.me.uk/\" target=\"_blank\">Click here</a> for some design inspiration.</li>\r\n <li>Keep your garden neat and tidy and consider getting a landscape architect in to give it a fresh new look</li>\r\n</ul>\r\nIf your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\r\n\r\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.\r\n<h3><a href=\"http://fisawards.co.uk/contact\">Send us your top property tips</a></h3>','Is your house not selling? Here is what you could do','','inherit','closed','closed','','80-revision-v1','','','2017-11-10 13:38:21','2017-11-10 13:38:21','',80,'http://fisawards.co.uk/80-revision-v1',0,'revision','',0),(202,1,'2017-11-23 10:05:57','2017-11-23 10:05:57','<h1>Is your house difficult to sell? Here are 10 common problems</h1>\r\n<div class=\"entry-content\">\r\n\r\nThe time has come for you to sell your home, and you are envisioning a stress free and relatively fast sale. However, there are several common problems that can get in the way of this, and make it difficult to secure an offer. <a href=\"http://aje.org.uk/information-for-tenants\" target=\"_blank\">Click here</a> for information for tenants.\r\n<h2>Problem 1 - Repairs and Maintenance:</h2>\r\nBefore letting your estate agent put your house on the market it is vital that you handle all basic repair and maintenance issues that could turn buyers off and delay your sale.\r\n\r\nThese issues run the gamut from messy and overgrown gardens, to doors that do not fit properly into their door-frames, and stained sinks. Taking care of all basic repairs, and sprucing up the home with some fresh paint, is a good first step towards impressing buyers.\r\n\r\nRemember that your front garden is the first thing a prospective house buyer gets to see of your property, so you may also want to focus on improving it kerb appeal (your homes appearance from the outside).\r\n<blockquote>If you have garden waste and junk to get rid of, why not hire a specialist waste removal company to collect it for you? <strong>Any Waste Berkshire</strong> provide a 24-48 hour domestic clearance service for the whole county including Windsor, Maidenhead, Ascot, Slough and Reading. <a href=\"http://berkshire.me.uk/house-and-flats/index.php\" target=\"_blank\">Click here for details.</a></blockquote>\r\n<h2>Problem 2 - Uncontrollable Factors:</h2>\r\nIf a home has a dubious history, is built on a flood plain, or is in the vicinity of problem plants such as Japanese Knotweed, these dilemmas can make it hard to sell your house quickly.\r\n\r\nThere is little you can do about the flood-plain issue (except to make best endeavors to flood proof your home) however, <a href=\"http://www.jksl.com/private-gardens-and-mortgages.htm\">problem plants can be removed by specialists</a> and they should be contacted as soon as possible.\r\n<h2>Problem 3 - Damp:</h2>\r\nClearly visible water stains and damp marks, on the inside and outside of your home, as well as musty smelling rooms, are a clear indication to buyers that the house has not been properly maintained. It is important that you take care of the problem causing the damp properly, and not attempt to simply cover it up with paint and air freshener, as buyers are often very through in their inspection of a selling property.\r\n<h2>Problem 4 - Odors:</h2>\r\nSmell is our most dominant sense. Thus it is important, when showing your house that you eradicate all unpleasant smells from your home. Smells such as cigarette smoke, mildew and pet odors, are a huge turn off to buyers. Do not simply try to mask smells with air freshener, as potential buyers may find this suspicious.\r\n<h2>Problem 5 - Divergent Decorative Tastes:</h2>\r\nWhen trying to sell a home it is not advisable to make drastic and irreversible renovations, as this not only causes you to have to raise your selling price, but these changes may also send prospective buyers running. Everyone has different tastes; so when getting your place ready for sale focus on basic improvements and keep paint colors neutral. There are small changes that you can make to enhance a room, that won\'t set you back a fortune e.g. add lamps to bring warm light to gloomy rooms, replace dowdy curtains with tasteful white sheers, etc...\r\n<h2>Problem 6 - The Area:</h2>\r\nTry to get on good terms with your neighbors, as property buyers may talk to them to get a feel for the area. Noisy / Anti-social neighbors are a big turn off to prospective buyers, so it will be helpful if you can get the neighbors on your side. Other problems include the area having poor network reception, or no access to amenities such as schools and shops. If this is the case find area selling points to balance these negatives out.\r\n\r\nHere at us we buy any house in any condition, anywhere in the UK. Call us today to find out how we can help you <a href=\"/\">sell your house fast</a> with the least amount of fuss possible.\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n</div>\r\n ','Is your house difficult to sell? Here are 10 common problems','','inherit','closed','closed','','62-revision-v1','','','2017-11-23 10:05:57','2017-11-23 10:05:57','',62,'http://fisawards.co.uk/62-revision-v1',0,'revision','',0),(203,1,'2017-11-23 10:07:09','2017-11-23 10:07:09','<h1>Is your house difficult to sell? Here are 10 common problems</h1>\r\n<div class=\"entry-content\">\r\n\r\nThe time has come for you to sell your home, and you are envisioning a stress free and relatively fast sale. However, there are several common problems that can get in the way of this, and make it difficult to secure an offer. <a href=\"http://aje.org.uk/information-for-tenants\" target=\"_blank\">Click here</a> for information for tenants.\r\n<h2>Problem 1 - Repairs and Maintenance:</h2>\r\nBefore letting your estate agent put your house on the market it is vital that you handle all basic repair and maintenance issues that could turn buyers off and delay your sale.\r\n\r\nThese issues run the gamut from messy and overgrown gardens, to doors that do not fit properly into their door-frames, and stained sinks. Taking care of all basic repairs, and sprucing up the home with some fresh paint, is a good first step towards impressing buyers.\r\n\r\nRemember that your front garden is the first thing a prospective house buyer gets to see of your property, so you may also want to focus on improving it kerb appeal (your homes appearance from the outside).\r\n<blockquote>If you have garden waste and/or house junk to get rid of, why not hire a specialist waste removal company to collect it for you?\r\n\r\n<strong>Any Waste Berkshire</strong> provide a 24-48 hour domestic clearance service for the whole county including Windsor, Maidenhead, Ascot, Slough and Reading. <a href=\"http://berkshire.me.uk/house-and-flats/index.php\" target=\"_blank\">Click here for details.</a></blockquote>\r\n<h2>Problem 2 - Uncontrollable Factors:</h2>\r\nIf a home has a dubious history, is built on a flood plain, or is in the vicinity of problem plants such as Japanese Knotweed, these dilemmas can make it hard to sell your house quickly.\r\n\r\nThere is little you can do about the flood-plain issue (except to make best endeavors to flood proof your home) however, <a href=\"http://www.jksl.com/private-gardens-and-mortgages.htm\">problem plants can be removed by specialists</a> and they should be contacted as soon as possible.\r\n<h2>Problem 3 - Damp:</h2>\r\nClearly visible water stains and damp marks, on the inside and outside of your home, as well as musty smelling rooms, are a clear indication to buyers that the house has not been properly maintained. It is important that you take care of the problem causing the damp properly, and not attempt to simply cover it up with paint and air freshener, as buyers are often very through in their inspection of a selling property.\r\n<h2>Problem 4 - Odors:</h2>\r\nSmell is our most dominant sense. Thus it is important, when showing your house that you eradicate all unpleasant smells from your home. Smells such as cigarette smoke, mildew and pet odors, are a huge turn off to buyers. Do not simply try to mask smells with air freshener, as potential buyers may find this suspicious.\r\n<h2>Problem 5 - Divergent Decorative Tastes:</h2>\r\nWhen trying to sell a home it is not advisable to make drastic and irreversible renovations, as this not only causes you to have to raise your selling price, but these changes may also send prospective buyers running. Everyone has different tastes; so when getting your place ready for sale focus on basic improvements and keep paint colors neutral. There are small changes that you can make to enhance a room, that won\'t set you back a fortune e.g. add lamps to bring warm light to gloomy rooms, replace dowdy curtains with tasteful white sheers, etc...\r\n<h2>Problem 6 - The Area:</h2>\r\nTry to get on good terms with your neighbors, as property buyers may talk to them to get a feel for the area. Noisy / Anti-social neighbors are a big turn off to prospective buyers, so it will be helpful if you can get the neighbors on your side. Other problems include the area having poor network reception, or no access to amenities such as schools and shops. If this is the case find area selling points to balance these negatives out.\r\n\r\nHere at us we buy any house in any condition, anywhere in the UK. Call us today to find out how we can help you <a href=\"/\">sell your house fast</a> with the least amount of fuss possible.\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n</div>\r\n ','Is your house difficult to sell? Here are 10 common problems','','inherit','closed','closed','','62-revision-v1','','','2017-11-23 10:07:09','2017-11-23 10:07:09','',62,'http://fisawards.co.uk/62-revision-v1',0,'revision','',0),(204,1,'2017-11-23 10:12:24','2017-11-23 10:12:24','<h1>Is your house difficult to sell? Here are 10 common problems</h1>\r\n<div class=\"entry-content\">\r\n\r\nThe time has come for you to sell your home, and you are envisioning a stress free and relatively fast sale. However, there are several common problems that can get in the way of this, and make it difficult to secure an offer. <a href=\"http://aje.org.uk/information-for-tenants\" target=\"_blank\">Click here</a> for information for tenants.\r\n<h2>Problem 1 - Repairs and Maintenance:</h2>\r\nBefore letting your estate agent put your house on the market it is vital that you handle all basic repair and maintenance issues that could turn buyers off and delay your sale.\r\n\r\nThese issues run the gamut from messy and overgrown gardens, to doors that do not fit properly into their door-frames, and stained sinks. Taking care of all basic repairs, and sprucing up the home with some fresh paint, is a good first step towards impressing buyers.\r\n\r\nRemember that your front garden is the first thing a prospective house buyer gets to see of your property, so you may also want to focus on improving it kerb appeal (your homes appearance from the outside).\r\n<blockquote>If you have garden waste and/or house junk to get rid of, why not hire a specialist waste removal company to collect it for you?\r\n\r\n<strong>Any Waste Berkshire</strong> provide a 24-48 hour domestic clearance service for the whole county including Windsor, Maidenhead, Ascot, Slough and Reading. <a href=\"http://berkshire.me.uk/house-and-flats/index.php\" target=\"_blank\">Click here for details.</a></blockquote>\r\n<h2>Problem 2 - Uncontrollable Factors:</h2>\r\nIf a home has a dubious history, is built on a flood plain, or is in the vicinity of problem plants such as Japanese Knotweed, these dilemmas can make it hard to sell your house quickly.\r\n\r\nThere is little you can do about the flood-plain issue (except to make best endeavors to flood proof your home) however, <a href=\"http://www.jksl.com/private-gardens-and-mortgages.htm\">problem plants can be removed by specialists</a> and they should be contacted as soon as possible.\r\n<h2>Problem 3 - Damp:</h2>\r\nClearly visible water stains and damp marks, on the inside and outside of your home, as well as musty smelling rooms, are a clear indication to buyers that the house has not been properly maintained. This will be recorded in<a href=\"http://fisawards.co.uk/what-to-do-if-a-buyers-valuation-or-structural-survey-highlights-problems-with-your-house-html\"> the surveyor\'s report.</a> It is important that you take care of the problem causing the damp properly, and not attempt to simply cover it up with paint and air freshener, as buyers are often very through in their inspection of a selling property. If you have any queries, get in touch with <a href=\"http://tradingstandards.org.uk/\" target=\"_blank\">Trading Solutions.</a>\r\n<h2>Problem 4 - Odors:</h2>\r\nSmell is our most dominant sense. Thus it is important, when showing your house that you eradicate all unpleasant smells from your home. Smells such as cigarette smoke, mildew and pet odors, are a huge turn off to buyers. Do not simply try to mask smells with air freshener, as potential buyers may find this suspicious. Is your house not selling? <a href=\"http://fisawards.co.uk/what-to-do-if-your-house-will-not-sell-html\">Read more tips.</a>\r\n<h2>Problem 5 - Divergent Decorative Tastes:</h2>\r\nWhen trying to sell a home it is not advisable to make drastic and irreversible renovations, as this not only causes you to have to raise your selling price, but these changes may also send prospective buyers running. Everyone has different tastes; so when getting your place ready for sale focus on basic improvements and keep paint colors neutral. There are small changes that you can make to enhance a room, that won\'t set you back a fortune e.g. add lamps to bring warm light to gloomy rooms, replace dowdy curtains with tasteful white sheers, etc...<a href=\"http://padlife.co.uk/interior-design.html\" target=\"_blank\">click here for interior design ideas.</a>\r\n<h2>Problem 6 - The Area:</h2>\r\nTry to get on good terms with your neighbors, as property buyers may talk to them to get a feel for the area. Noisy / Anti-social neighbors are a big turn off to prospective buyers, so it will be helpful if you can get the neighbors on your side. Other problems include the area having poor network reception, or no access to amenities such as schools and shops. If this is the case find area selling points to balance these negatives out.\r\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Call us today</a> to find out how we can help you <a href=\"/\">sell your house fast</a> with the least amount of fuss possible.</blockquote>\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n</div>\r\n ','Is your house difficult to sell? Here are 10 common problems','','inherit','closed','closed','','62-revision-v1','','','2017-11-23 10:12:24','2017-11-23 10:12:24','',62,'http://fisawards.co.uk/62-revision-v1',0,'revision','',0),(206,1,'2020-11-23 13:56:33','2020-11-23 13:56:33','<h2><a href=\"/\">Moving home can be stress-free, just follow our tips</a></h2>\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\n\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\n\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\n<h2>Your Definitive Moving House Guide</h2>\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\n\nIf you are not taking the bulky stuff with you (washing machine, bookcases, fridge/freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\n\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\n\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\n\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\n\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\n\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\n\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\n\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\n\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\n\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\n<h3><strong>Step 3 - Get Organised</strong></h3>\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\n\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labelled along with wardrobe contents to make things easy.\n\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent, solicitor, mortgage broker and your new utility companies.\n\nMakeup and “emergency “ box with tea, coffee, milk, sugar, toilet roll, something to eat and the all-important paracetamol and plasters.\n\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\n<h3><strong>Step 4 - Let People Know You\'re Moving\n</strong></h3>\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\n\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\n\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ). Get you mail re-directed to the new address.\n\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\n\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\n\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\n<h3>Step 5 - Professional Cleaners</h3>\nWhen moving out, the last thing you want is to deep clean the property. It can be time-consuming to clean the house, whilst managing everything else such as the furniture and other essentials that you need. Especially because you will also have to clean and organise your new home which can be very draining.\n\n<em>Hiring Professional Cleaners would be a great help to you, saving you much more time and energy.</em>\n\n<strong>Similar services that you could consider are:</strong>\n<ul>\n <li>End of lease cleaning</li>\n <li>Bond Cleaning</li>\n <li>Carpet Cleaning</li>\n <li>Perth Domestic Cleaning</li>\n <li class=\"bottomleft\">Spring Cleaning</li>\n</ul>\nIf you live in Perth you may <a href=\"http://perthhomecleaners.com.au/our-services\" target=\"_blank\">want to hire professional cleaners.</a>\n<h3><strong>Step 6 - Moving-in Day\n</strong></h3>\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\n\nBoth pets and children find moving home stressful and it is dangerous for them.\n<ul>\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\n</ul>\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\n\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\n\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\n\nOnce in your new home, go over the property and make note and photograph any problems.\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\n\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\n\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\n\nUse newspapers, neighbours and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\n\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbours to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\n<h2>The Best Moving Home Checklists On The Web</h2>\nOur checklist is pretty comprehensive we feel, however, below are our top picks from what else is out there in the blogosphere. Enjoy!\n\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\n\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\n\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\n\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\n\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\n\n<em>A very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\n<h2><strong>Moving Home Costs</strong></h2>\nEstimating the total cost of moving house is not easy. Outlining the major expenses and give you a rough idea of how much they are each going to cost:\n<h3><strong>Stamp Duty:</strong></h3>\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\n<ul>\n <li>Up to £125,000- Zero</li>\n <li>£125,001 to £250,000- 1%</li>\n <li>£250,001 to £500,000- 3%</li>\n <li>£500,001 to £1,000,000 - 4%</li>\n <li>£1,000,001 to £2,000,000 - 5%</li>\n <li>£2,000,001 plus - 7%</li>\n</ul>\n<strong>To find out more, visit the HMRC website.</strong>\n<h3><strong>Estate Agents Fees</strong>:</h3>\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\n<h3>Conveyancing Solicitors:</h3>\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\n\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\n<h3>Building Survey:</h3>\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\n\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\n\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a <a href=\"http://www.pembrokeshirebuilders.com\">reputable contractor</a> that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditations. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\n<h3>Mortgage-Related Charges:</h3>\nFirst, check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\n<h3>Removals:</h3>\nFinally, you need to budget for \"da boys\" to come round and move all your stuff.\n\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\n\nYou should have a policy in place on your new house from the date you exchange contracts, however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\n\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\n\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\n\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at levelling off (and protecting the contents of) boxes that contain breakables.\n<h3>Conclusion</h3>\nMoving home is stressful. No one is denying that.\n\n<strong>The key to a smooth move, however, is making sure you start planning your move early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-autosave-v1','','','2020-11-23 13:56:33','2020-11-23 13:56:33','',24,'http://fisawards.co.uk/24-autosave-v1',0,'revision','',0),(207,1,'2018-03-15 16:17:26','2018-03-15 16:17:26','<h1>Here\'s everything you need to know about moving home</h1>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\nPacking is simple enough if you\'re using a removal company. Self-packed boxes usually aren\'t covered by a removal company\'s insurance plan, but the time saved in getting some items ready to go can save a significant amount of money. Inform your removal company if you plan to pack anything yourself. Otherwise, situate your items in a way that will make them easy for the movers to stow.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n\r\nThere are other types of removals you should consider. <strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3><strong>Step 5 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\nThe key to a smooth move however, is making sure you start planing your campaign early.\r\n\r\nTake advantage of online tools such as the handy move planner from moveme.com - <a href=\"https://planner.moveme.com/\">https://planner.moveme.com/</a> and do yourself a massive favor - splash out on a professional removal company. You will not regret it.','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-03-15 16:17:26','2018-03-15 16:17:26','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(208,1,'2018-03-15 16:23:26','2018-03-15 16:23:26','<h1>Here\'s everything you need to know about moving home</h1>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3><strong>Step 5 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\nThe key to a smooth move however, is making sure you start planing your campaign early.\r\n\r\nTake advantage of online tools such as the handy move planner from moveme.com - <a href=\"https://planner.moveme.com/\">https://planner.moveme.com/</a> and do yourself a massive favor - splash out on a professional removal company. You will not regret it.','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-03-15 16:23:26','2018-03-15 16:23:26','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(210,1,'2018-06-26 09:16:37','2018-06-26 09:16:37','<h2>Listen to our top tips on fast property sales</h2>\nOne of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\n\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\n\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\n\nA lot of people are selling their home and moving abroad. The most popular places Brits are moving to include Spain, Australia and Thailand. We are here to make your p\n\nAre you looking for a property for sale in the extravagant city of Pattaya? Start your search with MuangThai Real Estate. They have hundreds of property listings, as well as land available to purchase. <a href=\"https://muangthai-realestate.com/\" target=\"_blank\">Start your search for Pattaya property</a>.\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home.\n\nYou may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle.\n\nDo a bit of budget DIY maintenance. Potential buyers will notice when things need work, such as shed roofs, broken fences and uneven walls. You can easily fix things these yourself and just buy the materials online.\n\nFor those homeowners that have a leaking shed roof, install rubber roofing instead. Rubber roofing is vastly superior to other materials such as felt and has a lifetime of 50+ years.\n\nEPDM rubber is easy to apply and has huge aesthetic benefits. Use an online calculator to figure out how much material you need and what other tools you may need for easy application. <a href=\"https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1\" target=\"_blank\">Click here</a>.\n\nAny buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession.\n\nYou may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell.\n\nDo not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\n\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short time frame (usually a matter of days).\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Contact FISA Awards for your local property experts</a>.</blockquote>\n\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','inherit','closed','closed','','23-autosave-v1','','','2018-06-26 09:16:37','2018-06-26 09:16:37','',23,'http://fisawards.co.uk/23-autosave-v1',0,'revision','',0),(211,1,'2018-05-30 11:19:33','2018-05-30 11:19:33','One of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\r\n\r\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\r\n\r\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\r\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\r\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home.\r\n\r\nYou may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\r\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\r\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle.\r\n\r\nDo a bit of budget DIY maintenance. Potential buyers will notice when things need work, such as shed roofs, broken fences and uneven walls. You can easily fix things these yourself and just buy the materials online.\r\n\r\nFor those homeowners that have a leaking shed roof, install rubber roofing instead. Rubber roofing is vastly superior to other materials such as felt and has a lifetime of 50+ years.\r\n\r\nEPDM rubber is easy to apply and has huge aesthetic benefits. Use an online calculator to figure out how much material you need and what other tools you may need for easy application. <a href=\"https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1\" target=\"_blank\">Click here</a>.\r\n\r\nAny buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\r\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\r\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession.\r\n\r\nYou may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell.\r\n\r\nDo not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\r\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\r\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\r\n\r\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short time frame (usually a matter of days).\r\n\r\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','inherit','closed','closed','','23-revision-v1','','','2018-05-30 11:19:33','2018-05-30 11:19:33','',23,'http://fisawards.co.uk/23-revision-v1',0,'revision','',0),(212,1,'2018-05-30 11:21:26','2018-05-30 11:21:26','One of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\r\n\r\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\r\n\r\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\r\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\r\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home.\r\n\r\nYou may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\r\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\r\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle.\r\n\r\nDo a bit of budget DIY maintenance. Potential buyers will notice when things need work, such as shed roofs, broken fences and uneven walls. You can easily fix things these yourself and just buy the materials online.\r\n\r\nFor those homeowners that have a leaking shed roof, install rubber roofing instead. Rubber roofing is vastly superior to other materials such as felt and has a lifetime of 50+ years.\r\n\r\nEPDM rubber is easy to apply and has huge aesthetic benefits. Use an online calculator to figure out how much material you need and what other tools you may need for easy application. <a href=\"https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1\" target=\"_blank\">Click here</a>.\r\n\r\nAny buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\r\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\r\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession.\r\n\r\nYou may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell.\r\n\r\nDo not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\r\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\r\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\r\n\r\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short time frame (usually a matter of days).\r\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Contact FISA Awards for your local property experts</a>.</blockquote>\r\n\r\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','inherit','closed','closed','','23-revision-v1','','','2018-05-30 11:21:26','2018-05-30 11:21:26','',23,'http://fisawards.co.uk/23-revision-v1',0,'revision','',0),(213,1,'2018-05-30 11:21:56','2018-05-30 11:21:56','<h2>Listen to our top tips</h2>\r\nOne of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\r\n\r\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\r\n\r\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\r\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\r\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home.\r\n\r\nYou may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\r\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\r\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle.\r\n\r\nDo a bit of budget DIY maintenance. Potential buyers will notice when things need work, such as shed roofs, broken fences and uneven walls. You can easily fix things these yourself and just buy the materials online.\r\n\r\nFor those homeowners that have a leaking shed roof, install rubber roofing instead. Rubber roofing is vastly superior to other materials such as felt and has a lifetime of 50+ years.\r\n\r\nEPDM rubber is easy to apply and has huge aesthetic benefits. Use an online calculator to figure out how much material you need and what other tools you may need for easy application. <a href=\"https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1\" target=\"_blank\">Click here</a>.\r\n\r\nAny buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\r\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\r\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession.\r\n\r\nYou may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell.\r\n\r\nDo not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\r\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\r\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\r\n\r\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short time frame (usually a matter of days).\r\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Contact FISA Awards for your local property experts</a>.</blockquote>\r\n\r\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','inherit','closed','closed','','23-revision-v1','','','2018-05-30 11:21:56','2018-05-30 11:21:56','',23,'http://fisawards.co.uk/23-revision-v1',0,'revision','',0),(214,1,'2018-05-30 11:26:19','2018-05-30 11:26:19','<h2>Listen to our top tips on fast property sales</h2>\r\nOne of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\r\n\r\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\r\n\r\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\r\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\r\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home.\r\n\r\nYou may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\r\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\r\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle.\r\n\r\nDo a bit of budget DIY maintenance. Potential buyers will notice when things need work, such as shed roofs, broken fences and uneven walls. You can easily fix things these yourself and just buy the materials online.\r\n\r\nFor those homeowners that have a leaking shed roof, install rubber roofing instead. Rubber roofing is vastly superior to other materials such as felt and has a lifetime of 50+ years.\r\n\r\nEPDM rubber is easy to apply and has huge aesthetic benefits. Use an online calculator to figure out how much material you need and what other tools you may need for easy application. <a href=\"https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1\" target=\"_blank\">Click here</a>.\r\n\r\nAny buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\r\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\r\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession.\r\n\r\nYou may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell.\r\n\r\nDo not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\r\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\r\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\r\n\r\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short time frame (usually a matter of days).\r\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Contact FISA Awards for your local property experts</a>.</blockquote>\r\n\r\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','inherit','closed','closed','','23-revision-v1','','','2018-05-30 11:26:19','2018-05-30 11:26:19','',23,'http://fisawards.co.uk/23-revision-v1',0,'revision','',0),(216,1,'2018-06-20 10:28:06','2018-06-20 10:28:06','<h2>Here\'s everything you need to know about moving home</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3><strong>Step 5 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\nThe key to a smooth move however, is making sure you start planing your campaign early.\r\n\r\nTake advantage of online tools such as the handy move planner from moveme.com - <a href=\"https://planner.moveme.com/\">https://planner.moveme.com/</a> and do yourself a massive favor - splash out on a professional removal company. You will not regret it.','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-06-20 10:28:06','2018-06-20 10:28:06','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(217,1,'2018-06-20 10:28:37','2018-06-20 10:28:37','<h2>Moving home can be stress free, just follow our tips</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3><strong>Step 5 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\nThe key to a smooth move however, is making sure you start planing your campaign early.\r\n\r\nTake advantage of online tools such as the handy move planner from moveme.com - <a href=\"https://planner.moveme.com/\">https://planner.moveme.com/</a> and do yourself a massive favor - splash out on a professional removal company. You will not regret it.','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-06-20 10:28:37','2018-06-20 10:28:37','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(218,1,'2018-06-20 10:33:00','2018-06-20 10:33:00','<h2>Moving home can be stress free, just follow our tips</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3><strong>Step 5 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a reputable contractor that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditation\'s. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move however, is making sure you start planing your campaign early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-06-20 10:33:00','2018-06-20 10:33:00','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(219,1,'2018-06-26 09:17:15','2018-06-26 09:17:15','<h2>Listen to our top tips on fast property sales</h2>\r\nOne of the ways to sell your home quickly is through anticipating what the buyer would want from a house.\r\n\r\nIn short, a seller must view his or her house from the viewpoint of the buyer. You need to view the house with a dispassionate eye and <a href=\"http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8\">take your personal emotions out of the equation</a>.\r\n\r\nHaving done this, it is important for you to follow up and present your home so that it is attractive to as many buyers as possible. This will increase the chances of securing a buyer quickly.\r\n<h2>Moving home internationally</h2>\r\nA lot of people are selling their home and moving abroad. The most popular places Brits are moving to include Spain, Australia and Thailand. <em>We are here to make your property search easier.</em>\r\n\r\nAre you looking for a property for sale in the extravagant city of Pattaya? Start your search with MuangThai Real Estate. They have hundreds of property listings, as well as land available to purchase. <a href=\"https://muangthai-realestate.com/\" target=\"_blank\">Start your search for Pattaya property</a>.\r\n<h2><strong>1. Don\'t be a stalker:</strong></h2>\r\nSound dramatic but it really does not help to follow buyers everywhere, from the kitchen, lounge to the bedrooms, trying to convince them to buy or showing them the strengths of your home. This is stalking the buyer and may turn the buyer away and may result in him or her never coming back again to your home.\r\n\r\nYou may think that you are being helpful but putting yourself in the buyer\'s shoes may solve the problem. It is best to give the buyer space and time to assess your home on his or her own and come to a decision without influence from you. If the buyer likes what he or she sees, an offer will be made. Here\'s <a href=\"http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908\">some more opinions</a> on how best to conduct a viewing.\r\n<h2><strong>2. Buyers are not attracted to dirty and shabby looking homes:</strong></h2>\r\nWhen you put yourself in the buyer\'s shoes you will automatically deal with dirt walls and shabby appearance of your home speedily. Shabby houses or smelly homes are a big turn off for prospective buyers. Therefore dirty walls, greasy kitchen tops and stoves or ovens need to be cleaned until they sparkle.\r\n\r\nDo a bit of budget DIY maintenance. Potential buyers will notice when things need work, such as shed roofs, broken fences and uneven walls. You can easily fix things these yourself and just buy the materials online.\r\n\r\nFor those homeowners that have a leaking shed roof, install rubber roofing instead. Rubber roofing is vastly superior to other materials such as felt and has a lifetime of 50+ years.\r\n\r\nEPDM rubber is easy to apply and has huge aesthetic benefits. Use an online calculator to figure out how much material you need and what other tools you may need for easy application. <a href=\"https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1\" target=\"_blank\">Click here</a>.\r\n\r\nAny buyer will be easily won over by a clean and neat home. What is not needed must be packed up, and all the clutter removed. Only what is needed for immediate use should be left in the open.\r\n<h2><strong>3. An overpriced home will not sell:</strong></h2>\r\nNo buyer will go for an over-priced home, whether rich or well-off. When you put yourself in your buyer\'s shoes, you will bring the price of your home down and make sure that it is reasonable. An overpriced home will not sell especially in a recession.\r\n\r\nYou may love your home and hold dear sentiments over it, but your buyer may not share the same sentiments. Let your expectations be reasonable and not over the top. The best thing you can do is not listing your house at the price you expect it to sell.\r\n\r\nDo not tempt the market with your high price or else you will be greatly disappointed. If not sure, get advice and valuations on your house to get an idea of how much it is worth.\r\n<h2><strong>4. When buyers feel misled, they will not buy:</strong></h2>\r\nMake sure that the photos you have posted about your home are a true reflection of how your home looks like. If you were a buyer, you will not want to see beautiful pictures of your dream home only to be greatly disappointed during viewing. It is good to be honest and upfront about the state of your home. Your buyers will appreciate this.\r\n\r\nIf you are short on time and need a quick house sale, typically estate agents aren\'t going to be able to help. If that\'s the case, call us today and get the ball rolling. Many agencies can buy your house for cash and complete in a very short time frame (usually a matter of days).\r\n<blockquote><a href=\"http://fisawards.co.uk/contact\">Contact FISA Awards for your local property experts</a>.</blockquote>\r\n\r\n<hr />','Prospective Homebuyer? Imagine selling your property fast','','inherit','closed','closed','','23-revision-v1','','','2018-06-26 09:17:15','2018-06-26 09:17:15','',23,'http://fisawards.co.uk/23-revision-v1',0,'revision','',0),(221,1,'2018-10-04 11:14:01','2018-10-04 11:14:01','<h2>Sell your house fast</h2>\r\n<p style=\"text-align: left;\"><strong>1. Consult price comparison websites</strong></p>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unnecessary costs. The <a href=\"https://www.barrandstandley.com.au/\" target=\"_blank\">best real estate agents</a> will be able to use your fees in the best way to sell your house fast.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable environment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\n<strong>Many thanks to the following websites for their help and advice</strong>\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','publish','closed','closed','','top-20-tips-sell-house','','','2018-10-04 13:00:35','2018-10-04 13:00:35','',0,'http://fisawards.co.uk/?p=221',0,'post','',0),(222,1,'2018-08-14 11:14:01','2018-08-14 11:14:01','Consult price comparison websites\r\n\r\nYou need to consider what best works for you? Finding the best estate agent is key in selling your house\r\n\r\nConsider the market\r\n\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property - so if you can sell your property that season.\r\n\r\nGood asking price\r\n\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\nChoose best buyer\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\nDon\'t view with Pets\r\n\r\nViewers may be allergic to your beloved animal, also you don\'t want the house smelling like animals, it doesn\'t make a good first impression.\r\n\r\nDe-clutter your house\r\n\r\nTidy and de-clutter your house. Remove the nick-naks it\'s unneccessary and takes away from the house your selling.\r\n\r\nNeutral paint\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\nGood lightning\r\n\r\nChoose the right lightbulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\nGood garden\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\nIncrease \'kerb appeal\'\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\nFresh flowers\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\nCheck out the competition\r\n\r\nWho are you competing with? If neccessary go to open house viewings - take\r\n\r\nLocate house deeds\r\n\r\nFees\r\n\r\nMake updates\r\n\r\nBedroom elegance- on trend sheets\r\n\r\nProfessionally photograph your home for buyers\r\n\r\nGood temperature- not too stuffy\r\n\r\nRemoving bulky furthiture','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:14:01','2018-08-14 11:14:01','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(224,1,'2018-08-14 11:22:15','2018-08-14 11:22:15','Consult price comparison websites\r\n\r\nYou need to consider what best works for you? Finding the best estate agent is key in selling your house\r\n\r\nConsider the market\r\n\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property - so if you can sell your property that season.\r\n\r\nGood asking price\r\n\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\nChoose best buyer\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\nDon\'t view with Pets\r\n\r\nViewers may be allergic to your beloved animal, also you don\'t want the house smelling like animals, it doesn\'t make a good first impression.\r\n\r\nDe-clutter your house\r\n\r\nTidy and de-clutter your house. Remove the nick-naks it\'s unneccessary and takes away from the house your selling.\r\n\r\nNeutral paint\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\nGood lightning\r\n\r\nChoose the right lightbulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\nGood garden\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\nIncrease \'kerb appeal\'\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\nFresh flowers\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\nCheck out the competition\r\n\r\nWho are you competing with? If neccessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\nLocate house deeds\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n\r\nFees\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\nMake updates\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\nBedroom elegance- on trend sheets\r\n\r\nSmall things like changing the sheets, buying throw cusions and changing your bedroom curtains make all the difference. It just freshens up your bedroom and shows that you look after your house.\r\n\r\nProfessionally photograph your home for buyers\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo of a shiny house will attract more potential buyers over your DIY photos.\r\n\r\nGood temperature- not too stuffy\r\n\r\nKeep room temperature low but not too low, there is nothing worse than a stuffy house. Don\'t create an unconfertable enviroment unnecessarily.\r\n\r\nRemoving bulky furthiture','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:22:15','2018-08-14 11:22:15','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(225,1,'2018-08-14 11:29:39','2018-08-14 11:29:39','Consult price comparison websites\r\n\r\nYou need to consider what best works for you? Finding the best estate agent is key in selling your house\r\n\r\nConsider the market\r\n\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n\r\nGood asking price\r\n\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\nChoose best buyer\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\nDon\'t view with Pets\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\nDe-clutter your house\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\nNeutral paint\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\nGood lightning\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\nGood garden\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\nIncrease \'kerb appeal\'\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\nFresh flowers\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\nCheck out the competition\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\nLocate house deeds\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n\r\nFees\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\nMake updates\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\nBedroom elegance\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\nProfessionally photographs\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\nGood temperature\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\nRemoving bulky furniture\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\nMirrors\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:29:39','2018-08-14 11:29:39','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(226,1,'2018-08-14 11:33:47','2018-08-14 11:33:47','Consult price comparison websites\r\n\r\nYou need to consider what best works for you? Finding the best estate agent is key in selling your house\r\n\r\nConsider the market\r\n\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n\r\nGood asking price\r\n\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\nChoose best buyer\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"alignnone size-medium wp-image-152\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n \r\n\r\nDon\'t view with Pets\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\nDe-clutter your house\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\nNeutral paint\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\nGood lightning\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\nGood garden\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\nIncrease \'kerb appeal\'\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\nFresh flowers\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\nCheck out the competition\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\nLocate house deeds\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\nFees\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\nMake updates\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\nBedroom elegance\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\nProfessionally photographs\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\nGood temperature\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\nRemoving bulky furniture\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\nMirrors\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:33:47','2018-08-14 11:33:47','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(227,1,'2018-08-14 11:35:35','2018-08-14 11:35:35','Consult price comparison websites\r\n\r\nYou need to consider what best works for you? Finding the best estate agent is key in selling your house\r\n\r\nConsider the market\r\n\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n\r\nGood asking price\r\n\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\nChoose best buyer\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n \r\n\r\nDon\'t view with Pets\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\nDe-clutter your house\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\nNeutral paint\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\nGood lightning\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\nGood garden\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\nIncrease \'kerb appeal\'\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\nFresh flowers\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\nCheck out the competition\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\nLocate house deeds\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\nFees\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\nMake updates\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\nBedroom elegance\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\nProfessionally photographs\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\nGood temperature\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\nRemoving bulky furniture\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\nMirrors\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:35:35','2018-08-14 11:35:35','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(228,1,'2018-08-14 11:38:49','2018-08-14 11:38:49','<ol>\r\n <li>Consult price comparison websites</li>\r\n</ol>\r\n<blockquote>You need to consider what best works for you? Finding the best estate agent is key in selling your house</blockquote>\r\n<ol>\r\n <li>2. Consider the market</li>\r\n</ol>\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n\r\n3. Good asking price\r\n\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\nChoose best buyer\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\nDon\'t view with Pets\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\nDe-clutter your house\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\nNeutral paint\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\nGood lightning\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\nGood garden\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\nIncrease \'kerb appeal\'\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\nFresh flowers\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\nCheck out the competition\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\nLocate house deeds\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n\r\n \r\n\r\nAre you spending too much?\r\n\r\nFees\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\nMake updates\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\nBedroom elegance\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\nProfessionally photographs\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\nGood temperature\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\nRemoving bulky furniture\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\nMirrors\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:38:49','2018-08-14 11:38:49','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(229,1,'2018-08-14 11:39:34','2018-08-14 11:39:34','<ol>\r\n <li>Consult price comparison websites</li>\r\n</ol>\r\n<blockquote>\r\n<p style=\"text-align: left;\">You need to consider what best works for you? Finding the best estate agent is key in selling your house</p>\r\n</blockquote>\r\n<p style=\"text-align: left;\">2. Consider the market</p>\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n<p style=\"text-align: left;\">3. Good asking price</p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\nChoose best buyer\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\nDon\'t view with Pets\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\nDe-clutter your house\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\nNeutral paint\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\nGood lightning\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\nGood garden\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\nIncrease \'kerb appeal\'\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\nFresh flowers\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\nCheck out the competition\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\nLocate house deeds\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n\r\n \r\n\r\nAre you spending too much?\r\n\r\nFees\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\nMake updates\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\nBedroom elegance\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\nProfessionally photographs\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\nGood temperature\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\nRemoving bulky furniture\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\nMirrors\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:39:34','2018-08-14 11:39:34','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(230,1,'2018-08-14 11:45:13','2018-08-14 11:45:13','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what best works for you? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance</strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:45:13','2018-08-14 11:45:13','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(231,1,'2018-08-14 11:46:56','2018-08-14 11:46:56','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what best works for you? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:46:56','2018-08-14 11:46:56','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(232,1,'2018-08-14 11:48:02','2018-08-14 11:48:02','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what best works for you? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. Autumn is the perfect time to sell you property. 89% of people asked agree\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\nKeep tabs on your garden - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\nWho are you competing with? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep room temperature low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:48:02','2018-08-14 11:48:02','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(233,1,'2018-08-14 11:54:12','2018-08-14 11:54:12','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 11:54:12','2018-08-14 11:54:12','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(234,1,'2018-10-04 12:56:54','2018-10-04 12:56:54','<h2>Sell your house fast</h2>\n<p style=\"text-align: left;\"><strong>1. Consult price comparison websites</strong></p>\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\n\n<strong>4. Choose best buyer</strong>\n\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\n\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\n\n<strong> 5. Don\'t view with Pets </strong>\n\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\n\n<strong>6. De-clutter your house</strong>\n\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\n\n<strong>7. Neutral paint</strong>\n\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\n\n<strong>8. Good lightning</strong>\n\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\n\n<strong>9. Great garden</strong>\n\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\n\n<strong>10. Increase \'kerb appeal\'</strong>\n\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\n\n<strong>11. Fresh flowers</strong>\n\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\n\n<strong>12. Check out the competition</strong>\n\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\n\n<strong>13. Locate house deeds</strong>\n\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\n<blockquote>Are you spending too much?</blockquote>\n<strong>14. Fees</strong>\n\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs. The best real estate agents will be able t\n\n<strong>15. Make updates</strong>\n\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\n\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\n\n<strong>16. Bedroom elegance </strong>\n\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\n\n<strong>17. Professionally photographs</strong>\n\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\n\n<strong>18. Good temperature</strong>\n\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\n\n<strong>19. Removing bulky furniture</strong>\n\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\n\n<strong>20. Mirrors</strong>\n\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\n\n \n\n<strong>Many thanks to the following websites for their help and advice</strong>\n<table width=\"273\">\n<tbody>\n<tr>\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\n</tr>\n<tr>\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\n</tr>\n<tr>\n<td></td>\n</tr>\n<tr>\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\n</tr>\n<tr>\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\n</tr>\n<tr>\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\n</tr>\n<tr>\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\n</tr>\n<tr>\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\n</tr>\n<tr>\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\n</tr>\n</tbody>\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-autosave-v1','','','2018-10-04 12:56:54','2018-10-04 12:56:54','',221,'http://fisawards.co.uk/221-autosave-v1',0,'revision','',0),(235,1,'2018-08-14 12:06:47','2018-08-14 12:06:47','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 12:06:47','2018-08-14 12:06:47','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(236,1,'2018-08-14 12:07:56','2018-08-14 12:07:56','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\nMany thanks to the following websites for their help and advice\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://scotsm.co.uk/\">scotsm.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 12:07:56','2018-08-14 12:07:56','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(237,1,'2018-08-14 12:08:43','2018-08-14 12:08:43','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\nMany thanks to the following websites for their help and advice\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 12:08:43','2018-08-14 12:08:43','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(238,1,'2018-08-14 12:09:01','2018-08-14 12:09:01','<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\nMany thanks to the following websites for their help and advice\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 12:09:01','2018-08-14 12:09:01','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(239,1,'2018-08-14 12:09:24','2018-08-14 12:09:24','<h2>Sell your house fast</h2>\r\n<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 aligncenter\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\nMany thanks to the following websites for their help and advice\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 12:09:24','2018-08-14 12:09:24','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(240,1,'2018-08-14 12:09:33','2018-08-14 12:09:33','<h2>Sell your house fast</h2>\r\n<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\nMany thanks to the following websites for their help and advice\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 12:09:33','2018-08-14 12:09:33','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(241,1,'2018-08-14 12:09:44','2018-08-14 12:09:44','<h2>Sell your house fast</h2>\r\n<ol>\r\n <li><strong>Consult price comparison websites</strong></li>\r\n</ol>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\n<strong>Many thanks to the following websites for their help and advice</strong>\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-08-14 12:09:44','2018-08-14 12:09:44','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(243,1,'2018-10-04 12:55:50','2018-10-04 12:55:50','<h2>Sell your house fast</h2>\r\n<p style=\"text-align: left;\"><strong>1. Consult price comparison websites</strong></p>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\n<strong>Many thanks to the following websites for their help and advice</strong>\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-10-04 12:55:50','2018-10-04 12:55:50','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(244,1,'2018-10-04 12:58:44','2018-10-04 12:58:44','<h2>Sell your house fast</h2>\r\n<p style=\"text-align: left;\"><strong>1. Consult price comparison websites</strong></p>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unneccessary costs. The <a href=\"https://www.barrandstandley.com.au/\" target=\"_blank\">best real estate agents</a> will be able to use your fees in the best way to sell your house fast.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable enviroment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\n<strong>Many thanks to the following websites for their help and advice</strong>\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-10-04 12:58:44','2018-10-04 12:58:44','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(245,1,'2018-10-04 13:00:35','2018-10-04 13:00:35','<h2>Sell your house fast</h2>\r\n<p style=\"text-align: left;\"><strong>1. Consult price comparison websites</strong></p>\r\n<p style=\"text-align: left;\">You need to consider what <a href=\"https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/\">best works for you</a>? Finding the best estate agent is key in selling your house</p>\r\n<p style=\"text-align: left;\"><strong>2. Consider the market</strong></p>\r\nYou need to key an eye out on the market, falling and rising prices. <a href=\"https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/\">Autumn is the perfect time to sell you property</a>. 89% of people asked agree. You may be buying off plan <a href=\"https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to\" target=\"_blank\">through a property developer</a> or even thinking of building your own new home, either way you\'ll need to keep a keen eye on prices.\r\n<p style=\"text-align: left;\"><strong>3. Good asking price</strong></p>\r\nYour asking price shouldn\'t be too high or low. Don\'t let your personal feelings influence you - it may not be worth as much as you think. Get your house estimated.\r\n\r\n<strong>4. Choose best buyer</strong>\r\n\r\nHow many rooms do you have - are you looking to sell to singletons, first time buyers, or families. Pick one and focus on that.\r\n\r\n<img class=\"size-medium wp-image-152 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/mortgage12-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong> 5. Don\'t view with Pets </strong>\r\n\r\nViewers may be allergic to your beloved animal, and the smell doesn\'t make a good first impression.\r\n\r\n<strong>6. De-clutter your house</strong>\r\n\r\nJust tidy and de-clutter. Remove the nick-naks it takes away from the house your selling.\r\n\r\n<strong>7. Neutral paint</strong>\r\n\r\nIt may not be your personal preference but avoid dark coloured paints as it will make the room look smaller and drab.\r\n\r\n<strong>8. Good lightning</strong>\r\n\r\nChoose the right light-bulbs, open the windows as it makes a room look bigger and more livable.\r\n\r\n<strong>9. Great garden</strong>\r\n\r\n<a href=\"https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/\">Keep tabs on your garden</a> - it is one of the best selling points in the house. De-weed, trim the hedges, mow the lawn and you will sell.\r\n\r\n<strong>10. Increase \'kerb appeal\'</strong>\r\n\r\nMake a good first impression if the outside of your house is a dump it creates a precedence for the inside.\r\n\r\n<strong>11. Fresh flowers</strong>\r\n\r\nJust a little touch - makes the room smell nice, cheers up your house. Everyone loves flowers it just makes your house a little bit brighter.\r\n\r\n<strong>12. Check out the competition</strong>\r\n\r\n<a href=\"http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html\">Who are you competing with</a>? If necessary go to open house viewings - you need to get one-up on that \'other house\'\r\n\r\n<strong>13. Locate house deeds</strong>\r\n\r\nMake sure house deeds are all in order, disorganisation is disastrous. Don\'t keep potential buyers waiting it looks unprofessional.\r\n<blockquote>Are you spending too much?</blockquote>\r\n<strong>14. Fees</strong>\r\n\r\nKeep tabs on your fees. How much are you spending - and are you spending too much? Don\'t bankrupt yourself and cut any unnecessary costs. The <a href=\"https://www.barrandstandley.com.au/\" target=\"_blank\">best real estate agents</a> will be able to use your fees in the best way to sell your house fast.\r\n\r\n<strong>15. Make updates</strong>\r\n\r\nModernise your house, replace a drab bit of 1960\'s furniture. Modern houses are popular houses. 68% buyers asked prefer a new build, so you got to keep up with the time.\r\n\r\n<img class=\"size-medium wp-image-144 alignright\" src=\"http://fisawards.co.uk/wp-content/uploads/2017/10/IMG_5591-300x200.jpg\" alt=\"\" width=\"600\" height=\"400\" />\r\n\r\n<strong>16. Bedroom elegance </strong>\r\n\r\nSmall things like changing the sheets, buying cushions and changing your bedroom curtains make all the difference. It freshens up your bedroom and shows that you look after your house.\r\n\r\n<strong>17. Professionally photographs</strong>\r\n\r\nEven the smallest of properties look spacious with help from the professionals. A shiny photo will attract more potential buyers.\r\n\r\n<strong>18. Good temperature</strong>\r\n\r\nKeep <a href=\"https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/\">room temperature</a> low, there is nothing worse than a stuffy house. Don\'t create an unconformable environment.\r\n\r\n<strong>19. Removing bulky furniture</strong>\r\n\r\nIf you want to make your property look bigger remove the massive sofa. It\'s not doing you any favours - let your house be a blank canvas.\r\n\r\n<strong>20. Mirrors</strong>\r\n\r\nThe more mirrors the better. It give an illusions of light and space, and it\'s super cheap.\r\n\r\n \r\n\r\n<strong>Many thanks to the following websites for their help and advice</strong>\r\n<table width=\"273\">\r\n<tbody>\r\n<tr>\r\n<td width=\"273\"><a href=\"http://mxalliance.co.uk/\">mxalliance.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://centralweddings.co.uk/\">centralweddings.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://wildkids.org.uk/\">wildkids.org.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://old-computer-mags.co.uk/\">old-computer-mags.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://waxandwane.co.uk/\">waxandwane.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://asdlighting.co.uk/\">asdlighting.co.uk</a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://trendsettertiles.co.uk/\">trendsettertiles.co.uk </a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"http://jennylloyd.co.uk/\">jennylloyd.co.uk</a></td>\r\n</tr>\r\n</tbody>\r\n</table>','Top 20 tips to sell your house','','inherit','closed','closed','','221-revision-v1','','','2018-10-04 13:00:35','2018-10-04 13:00:35','',221,'http://fisawards.co.uk/221-revision-v1',0,'revision','',0),(247,1,'2019-01-07 11:14:04','2019-01-07 11:14:04','Deciding on the most suitable building after the amount and type of space required has been determined. Our guide is here to help you make the right decision for your company, employees and clients.\r\n<h2>Socio-economic trends</h2>\r\nToday\'s office market is beginning to be influenced by changes in the demographics of the office population. These trends will inevitably have an impact on an organisation\'s overall requirements.\r\n\r\n<strong>Some of the following may well influence the final design solution:</strong>\r\n<ul>\r\n <li>job and workstation sharing</li>\r\n <li>staff retention and attraction</li>\r\n <li>home-working</li>\r\n <li>smoking</li>\r\n <li>staff catering</li>\r\n <li>female staff returning to work</li>\r\n <li>staff fitness considerations</li>\r\n <li>flexi-time</li>\r\n <li>healthy buildings</li>\r\n <li>24hr working</li>\r\n <li>leisure facilities</li>\r\n <li>childcare requirements</li>\r\n</ul>\r\nChanges in statutory regulations being implemented by the European Community will also impact the office environment, by providing minimum standards and guidelines for the environment and <a href=\"https://www.market-inspector.co.uk/blog/2017/01/10-basic-office-equipment-for-starting-a-business\" target=\"_blank\">use of equipment</a>.\r\n\r\n<strong>The process so far has allowed a model of the tenant\'s organisation to be established</strong>. Clearly, the extent of this analysis will vary depending on the size and complexity of the company; and the time taken can range from a couple of days to a few weeks.\r\n\r\nHowever, once the profile has been produced, the picture of an \'ideal\' building that fits the organisation may be established. And this ideal can be matched against the reality of a shortlist of available buildings.\r\n<h2>The best choice for clients and employees</h2>\r\nThink about what would be most beneficial to your clients. How accessible is the building, i.e. ramps, automatic doors and local public transport. Find out about the importance of <a href=\"https://erreka-automaticdoors.uk.com/case-studies/offices-bristol-automatic-doors/\" target=\"_blank\">automatic doors in an office block</a> from this case study.\r\n\r\nAlso, is there a car park there which could be used by employees and clients? It is important to factor all of these into your decision as finding an office that is suitable for your customers and employees can be a difficult choice.\r\n<h2><a href=\"https://www.searchofficespace.com/blog/business-advice/what-services-are-included-in-a-serviced-office/\" target=\"_blank\">Office services</a></h2>\r\nThe biggest deciding factor is what services are supplied by your centre. It is important to know how much your rent is and what you get for your money. You should expect to have your phone answered, mail handled, a reception area, access to a meeting room, cleaning services and access to office supplies. Your office may also be furnished. Many <a href=\"http://www.voc-ltd.co.uk/office-cleaners-crawley.htm\" target=\"_blank\">offices in the Crawley area</a> have frequent cleaning services.\r\n<h2>Building Configuration</h2>\r\nThe internal shape and configuration of a building will have an enormous impact on the amount of space which may be used effectively and therefore need to occupy.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>space efficiency & circulation factors</li>\r\n <li>module size</li>\r\n <li>sublet considerations</li>\r\n <li>footprint</li>\r\n <li>storage availability</li>\r\n <li>access for wheelchairs</li>\r\n <li>flexibility</li>\r\n <li>total usable square footage</li>\r\n <li>access</li>\r\n <li>security</li>\r\n</ul>\r\n<h2>Space Standards</h2>\r\nA Space Planner should analyse the different tasks carried out and develop a set of functional space standards or review existing corporate space standards. Space standards allow for planning consistency and flexibility and also allow for predictions on future space requirements to be made more accurately.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>functional requirements</li>\r\n <li>effect of building module</li>\r\n</ul>\r\n<h2>Filing and Storage</h2>\r\nA schedule of all filing and storage will be made, together with forecasts of expansion needs. All types of storage from security rooms to cleaner\'s cupboards will be included. New offices can also be the impetus for a re-evaluation of storage needs and practices. Find out how a serviced office <a href=\"https://www.freeofficefinder.com/article/10-ways-renting-a-serviced-office-can-save-you-money\" target=\"_blank\">can save you money</a>.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>existing & future requirements</li>\r\n <li>general and archive storage</li>\r\n <li>costs</li>\r\n <li>internal configuration of filing unit</li>\r\n <li>rationalisation potential</li>\r\n <li>furniture and stationery</li>\r\n <li>space use and savings</li>\r\n</ul>','Choosing a Building For Your Office: Top Tips to Make This Process Easier','','publish','closed','closed','','choosing-building-office-top-tips-make-process-easier','','','2019-01-11 08:55:38','2019-01-11 08:55:38','',0,'http://fisawards.co.uk/?page_id=247',0,'page','',0),(248,1,'2018-11-26 11:13:52','2018-11-26 11:13:52','','office-productivity','','inherit','closed','closed','','serviced-office','','','2019-06-19 13:12:15','2019-06-19 13:12:15','',247,'http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg',0,'attachment','image/jpeg',0),(249,1,'2018-11-26 11:14:04','2018-11-26 11:14:04','Deciding on the most suitable building after the amount and type of space required has been determined. Our guide is here to help you make the right decision for your company, employees and clients.\r\n<h2>Socio-economic trends</h2>\r\nToday\'s office market is beginning to be influenced by changes in the demographics of the office population. These trends will inevitably have an impact on an organisation\'s overall requirements.\r\n\r\n<strong>Some of the following may well influence the final design solution:</strong>\r\n<ul>\r\n <li>job and workstation sharing</li>\r\n <li>staff retention and attraction</li>\r\n <li>home-working</li>\r\n <li>smoking</li>\r\n <li>staff catering</li>\r\n <li>female staff returning to work</li>\r\n <li>staff fitness considerations</li>\r\n <li>flexi-time</li>\r\n <li>healthy buildings</li>\r\n <li>24hr working</li>\r\n <li>leisure facilities</li>\r\n <li>childcare requirements</li>\r\n</ul>\r\nChanges in statutory regulations being implemented by the European Community will also impact the office environment, by providing minimum standards and guidelines for the environment and <a href=\"https://www.market-inspector.co.uk/blog/2017/01/10-basic-office-equipment-for-starting-a-business\" target=\"_blank\">use of equipment</a>.\r\n\r\n<strong>The process so far has allowed a model of the tenant\'s organisation to be established</strong>. Clearly, the extent of this analysis will vary depending on the size and complexity of the company; and the time taken can range from a couple of days to a few weeks.\r\n\r\nHowever, once the profile has been produced, the picture of an \'ideal\' building that fits the organisation may be established. And this ideal can be matched against the reality of a shortlist of available buildings.\r\n<h2><a href=\"https://www.searchofficespace.com/blog/business-advice/what-services-are-included-in-a-serviced-office/\" target=\"_blank\">Office Services</a></h2>\r\nThe biggest deciding factor is what services are supplied by your centre. It is important to know how much your rent is and what you get for your money. You should expect to have your phone answered, mail handled, a reception area, access to a meeting room, cleaning services and access to office supplies. Your office may also be furnished. Many <a href=\"http://www.voc-ltd.co.uk/office-cleaners-crawley.htm\" target=\"_blank\">offices in the Crawley area</a> have frequent cleaning services.\r\n<h2>Building Configuration</h2>\r\nThe internal shape and configuration of a building will have an enormous impact on the amount of space which may be used effectively and therefore need to occupy.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>space efficiency & circulation factors</li>\r\n <li>module size</li>\r\n <li>sublet considerations</li>\r\n <li>footprint</li>\r\n <li>storage availability</li>\r\n <li>access for wheelchairs</li>\r\n <li>flexibility</li>\r\n <li>total usable square footage</li>\r\n <li>access</li>\r\n <li>security</li>\r\n</ul>\r\n<h2>Space Standards</h2>\r\nA Space Planner should analyse the different tasks carried out and develop a set of functional space standards or review existing corporate space standards. Space standards allow for planning consistency and flexibility and also allow for predictions on future space requirements to be made more accurately.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>functional requirements</li>\r\n <li>effect of building module</li>\r\n</ul>\r\n<h2>Filing and Storage</h2>\r\nA schedule of all filing and storage will be made, together with forecasts of expansion needs. All types of storage from security rooms to cleaner\'s cupboards will be included. New offices can also be the impetus for a re-evaluation of storage needs and practices. Find out how a serviced office <a href=\"https://www.freeofficefinder.com/article/10-ways-renting-a-serviced-office-can-save-you-money\" target=\"_blank\">can save you money</a>.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>existing & future requirements</li>\r\n <li>general and archive storage</li>\r\n <li>costs</li>\r\n <li>internal configuration of filing unit</li>\r\n <li>rationalisation potential</li>\r\n <li>furniture and stationery</li>\r\n <li>space use and savings</li>\r\n</ul>','Choosing a Building For Your Office: Top Tips to Make This Process Easier','','inherit','closed','closed','','247-revision-v1','','','2018-11-26 11:14:04','2018-11-26 11:14:04','',247,'http://fisawards.co.uk/247-revision-v1',0,'revision','',0),(251,1,'2018-11-26 11:18:31','2018-11-26 11:18:31',' ','','','publish','closed','closed','','251','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/251',20,'nav_menu_item','',0),(253,1,'2018-12-11 11:23:59','2018-12-11 11:23:59','<h2>Avoiding cowboy tradesmen</h2>\nFinding a good tradesman is not always an easy task. Many have posed as the best and when the job has been done, the finished work will leave a lot to be desired and cost you double as the work had to be done again.\n\nIt is therefore crucial to get a reputable tradesman with a proven track record if you have any building work that needs doing.\n\nYou will be using your money, therefore it is best to get excellent value for your money and this is what you will get from a tradesman that comes with excellent references.\n\n1. Get referrals and recommendations:\n\nIt is important that you get referrals from friends, family and colleagues for any tradesman you consider. Their account and testimonials can be used as a starting point. Their information will at least give you an idea on where to start with looking for a good man.\n\nIf friends, family or colleagues cannot help you out on this one, you can also contact your local Builder\'s register where possible. This register will have a list of all plumbers, builders and tradesman who are properly qualified and carry the necessary insurance.\n\nLocal newspapers and online directories are also a good source of information. As you look around, take note of experience and the previous work done by the tradesman, this will give you an idea of what they can do for you.\n\nAlso keep an eye out online for <a href=\"http://www.facebook.com/pages/Name-And-Shame-Dodgy-Builders-Workmen-In-All-Trades-Here/156265024392212\">websites that name and shame</a> dodgy builders.\n\n2. Deal with established firms:\n\nAnother way to safeguard yourself and ensure that you are dealing with a reputable operator is through making sure that in looking for one, you deal only with established firms, not fly by nights or individual tradesman with no record of their work.\n\nTo this end, you can ensure that the firm has a physical address, offices, telephone numbers where you can contact them and that they correspond through headed paper. This is all-important as it shows that the tradesmen are established and can be trusted to do the job.\n\nYou must also check if the tradesman or the firm is a member of a reputable trade association and if they have a VAT number.\n\n3. Be clear about what you want done:\n\nHave estimates and specifications of what work you are looking to have done. Certainly get more than one estimate, as this will help you compare one builder against the other.\n\nAgree with your tradesman on payments and how payments will be scheduled before the work starts. Make sure that you have a clear plan of what you want before the job starts as changing your mind midway can be costly for you and can also result in delays.\n\n4. Have a checklist of what questions to ask:\n\nAs you go about choosing a reputable tradesman, have a ready checklist on what to look for and what to avoid. Avoid those who pressurise you and call themselves specialists. Do not sign anything even under pressure when you do not understand it. Avoid tradesman who ask for advance payments, especially at the beginning of the job. Also avoid those who demand cash payments.\n<h2>List of companies we recommend:</h2>\n<div>\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iY6Vv1LIWHG4\" data-hveid=\"71\">\n<div class=\"uMdZh rl-qs-crs-t mnr-c iY6Vv1LIWHG4-QjYh_nvGmIg\" data-rtid=\"iY6Vv1LIWHG4\">\n<div class=\"VkpGBb\">\n<div class=\"cXedhc uQ4NLd\">\n<div class=\"dbg0pd\">\n<h3><a href=\"http://www.msboilerrepairsnorwich.co.uk/\" target=\"_blank\">Majestic Services</a></h3>\n</div>\n<div>Central Heating Service</div>\n<div>Norwich</div>\n<div>07948 557560</div>\n<div>\n<div class=\"rllt__wrapped\">Open ⋅ Closes 11PM</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iZ1uDzIKwh24\" data-hveid=\"79\">\n<div class=\"uMdZh rl-qs-crs-t mnr-c iZ1uDzIKwh24-QjYh_nvGmIg\" data-rtid=\"iZ1uDzIKwh24\">\n<div class=\"VkpGBb\">\n<div class=\"cXedhc uQ4NLd\">\n<div class=\"dbg0pd\">\n<h3>Gateway Services Ltd</h3>\n</div>\n<div> Central Heating Service</div>\n<div>Norwich</div>\n<div>0800 074 3030</div>\n<div>\n<div class=\"rllt__wrapped\">Open ⋅ Closes 8PM</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-i_H3RajskIbU\" data-hveid=\"89\">\n<div class=\"uMdZh rl-qs-crs-t mnr-c i_H3RajskIbU-QjYh_nvGmIg\" data-rtid=\"i_H3RajskIbU\">\n<div class=\"VkpGBb\">\n<div class=\"cXedhc uQ4NLd\">\n<div class=\"dbg0pd\">\n<h3>HGS Plumbing and <wbr />Heating</h3>\n</div>\n<div><span class=\"BTtC6e\">4.8</span> (79) · Central Heating Service</div>\n<div>Norwich</div>\n<div>01603 630608</div>\n<div>\n<div class=\"rllt__wrapped\">Open 24 hours</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iRsjjDTQuVTA\" data-hveid=\"102\">\n<div class=\"uMdZh rl-qs-crs-t mnr-c iRsjjDTQuVTA-QjYh_nvGmIg\" data-rtid=\"iRsjjDTQuVTA\">\n<div class=\"VkpGBb\">\n<div class=\"cXedhc uQ4NLd\">\n<div class=\"dbg0pd\">\n<h3><a href=\"https://www.allstarsystems.co.uk/\" target=\"_blank\">Allstar Systems <wbr />(Norwich) Ltd</a></h3>\n</div>\n<div>Central Heating Service</div>\n<div>Norwich</div>\n<div>07557 349856</div>\n<div>\n<div class=\"rllt__wrapped\">Open 24 hours</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iFqKuRhuTgH0\" data-hveid=\"112\">\n<div class=\"uMdZh rl-qs-crs-t mnr-c iFqKuRhuTgH0-QjYh_nvGmIg\" data-rtid=\"iFqKuRhuTgH0\">\n<div class=\"VkpGBb\">\n<div class=\"cXedhc uQ4NLd\">\n<div class=\"dbg0pd\">\n<h3>Rockwater</h3>\n</div>\n<div>Central Heating Service</div>\n<div>Norwich</div>\n<div>01603 498889</div>\n<div>\n<div class=\"rllt__wrapped\">Open 24 hours</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-inlpxh5fw26M\" data-hveid=\"122\">\n<div class=\"uMdZh rl-qs-crs-t mnr-c inlpxh5fw26M-QjYh_nvGmIg rllt__local-item-selected\" data-rtid=\"inlpxh5fw26M\">\n<div class=\"VkpGBb\">\n<div class=\"cXedhc uQ4NLd\">\n<div class=\"dbg0pd\">\n<h3>OJ Thurston Norwich <wbr />Heating Engineer</h3>\n</div>\n<div>Central Heating Service</div>\n<div>Norwich</div>\n<div>01603 431871</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iLTyQ9bxS99k\" data-hveid=\"129\">\n<div class=\"uMdZh rl-qs-crs-t mnr-c iLTyQ9bxS99k-QjYh_nvGmIg\" data-rtid=\"iLTyQ9bxS99k\">\n<div class=\"VkpGBb\">\n<div class=\"cXedhc uQ4NLd\">\n<div class=\"dbg0pd\">\n<h3>Custance & Son Ltd</h3>\n</div>\n<div>Central Heating Service</div>\n<div>Norwich</div>\n<div>01603 401111</div>\n<div></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n\n<hr />','Avoiding cowboy tradesmen','','inherit','closed','closed','','68-autosave-v1','','','2018-12-11 11:23:59','2018-12-11 11:23:59','',68,'http://fisawards.co.uk/68-autosave-v1',0,'revision','',0),(254,1,'2018-12-11 11:25:15','2018-12-11 11:25:15','<h2>Avoiding cowboy tradesmen</h2>\r\nFinding a good tradesman is not always an easy task. Many have posed as the best and when the job has been done, the finished work will leave a lot to be desired and cost you double as the work had to be done again.\r\n\r\nIt is therefore crucial to get a reputable tradesman with a proven track record if you have any building work that needs doing.\r\n\r\nYou will be using your money, therefore it is best to get excellent value for your money and this is what you will get from a tradesman that comes with excellent references.\r\n\r\n1. Get referrals and recommendations:\r\n\r\nIt is important that you get referrals from friends, family and colleagues for any tradesman you consider. Their account and testimonials can be used as a starting point. Their information will at least give you an idea on where to start with looking for a good man.\r\n\r\nIf friends, family or colleagues cannot help you out on this one, you can also contact your local Builder\'s register where possible. This register will have a list of all plumbers, builders and tradesman who are properly qualified and carry the necessary insurance.\r\n\r\nLocal newspapers and online directories are also a good source of information. As you look around, take note of experience and the previous work done by the tradesman, this will give you an idea of what they can do for you.\r\n\r\nAlso keep an eye out online for <a href=\"http://www.facebook.com/pages/Name-And-Shame-Dodgy-Builders-Workmen-In-All-Trades-Here/156265024392212\">websites that name and shame</a> dodgy builders.\r\n\r\n2. Deal with established firms:\r\n\r\nAnother way to safeguard yourself and ensure that you are dealing with a reputable operator is through making sure that in looking for one, you deal only with established firms, not fly by nights or individual tradesman with no record of their work.\r\n\r\nTo this end, you can ensure that the firm has a physical address, offices, telephone numbers where you can contact them and that they correspond through headed paper. This is all-important as it shows that the tradesmen are established and can be trusted to do the job.\r\n\r\nYou must also check if the tradesman or the firm is a member of a reputable trade association and if they have a VAT number.\r\n\r\n3. Be clear about what you want done:\r\n\r\nHave estimates and specifications of what work you are looking to have done. Certainly get more than one estimate, as this will help you compare one builder against the other.\r\n\r\nAgree with your tradesman on payments and how payments will be scheduled before the work starts. Make sure that you have a clear plan of what you want before the job starts as changing your mind midway can be costly for you and can also result in delays.\r\n\r\n4. Have a checklist of what questions to ask:\r\n\r\nAs you go about choosing a reputable tradesman, have a ready checklist on what to look for and what to avoid. Avoid those who pressurise you and call themselves specialists. Do not sign anything even under pressure when you do not understand it. Avoid tradesman who ask for advance payments, especially at the beginning of the job. Also avoid those who demand cash payments.\r\n<h2>List of companies we recommend:</h2>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iY6Vv1LIWHG4\" data-hveid=\"71\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iY6Vv1LIWHG4-QjYh_nvGmIg\" data-rtid=\"iY6Vv1LIWHG4\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"http://www.msboilerrepairsnorwich.co.uk/\" target=\"_blank\">Majestic Services</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>07948 557560</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open ⋅ Closes 11PM</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iZ1uDzIKwh24\" data-hveid=\"79\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iZ1uDzIKwh24-QjYh_nvGmIg\" data-rtid=\"iZ1uDzIKwh24\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"http://www.gasway.co.uk/\" target=\"_blank\">Gasway Services Ltd</a></h3>\r\n</div>\r\n<div> Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>0800 074 3030</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open ⋅ Closes 8PM</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-i_H3RajskIbU\" data-hveid=\"89\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c i_H3RajskIbU-QjYh_nvGmIg\" data-rtid=\"i_H3RajskIbU\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.hgsplumbingandheating.co.uk/\" target=\"_blank\">HGS Plumbing and <wbr />Heating</a></h3>\r\n</div>\r\n<div><span class=\"BTtC6e\">4.8</span> (79) · Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 630608</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open 24 hours</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iRsjjDTQuVTA\" data-hveid=\"102\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iRsjjDTQuVTA-QjYh_nvGmIg\" data-rtid=\"iRsjjDTQuVTA\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.allstarsystems.co.uk/\" target=\"_blank\">Allstar Systems <wbr />(Norwich) Ltd</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>07557 349856</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open 24 hours</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iFqKuRhuTgH0\" data-hveid=\"112\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iFqKuRhuTgH0-QjYh_nvGmIg\" data-rtid=\"iFqKuRhuTgH0\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.rockwater.co.uk/\" target=\"_blank\">Rockwater</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 498889</div>\r\n<div>\r\n<div class=\"rllt__wrapped\">Open 24 hours</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-inlpxh5fw26M\" data-hveid=\"122\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c inlpxh5fw26M-QjYh_nvGmIg rllt__local-item-selected\" data-rtid=\"inlpxh5fw26M\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"https://www.heatingengineernorwich.co.uk/\" target=\"_blank\">OJ Thurston Norwich <wbr />Heating Engineer</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 431871</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"ihH5ZIBIboyE-ptqfrjbX76M r-iLTyQ9bxS99k\" data-hveid=\"129\">\r\n<div class=\"uMdZh rl-qs-crs-t mnr-c iLTyQ9bxS99k-QjYh_nvGmIg\" data-rtid=\"iLTyQ9bxS99k\">\r\n<div class=\"VkpGBb\">\r\n<div class=\"cXedhc uQ4NLd\">\r\n<div class=\"dbg0pd\">\r\n<h3><a href=\"http://www.custanceandson.co.uk/\" target=\"_blank\">Custance & Son Ltd</a></h3>\r\n</div>\r\n<div>Central Heating Service</div>\r\n<div>Norwich</div>\r\n<div>01603 401111</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<hr />','Avoiding cowboy tradesmen','','inherit','closed','closed','','68-revision-v1','','','2018-12-11 11:25:15','2018-12-11 11:25:15','',68,'http://fisawards.co.uk/68-revision-v1',0,'revision','',0),(255,1,'2018-12-13 13:40:46','2018-12-13 13:40:46','<h2>Moving home can be stress free, just follow our tips</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3>Step 5 - Professional Cleaners</h3>\r\nYou will find that it can be time consuming to clean the house when you vacate and manage everything else important such as the furniture and essentials you need. Especially because you will also have to clean and organize your new home and all this can be very draining.\r\n\r\nHiring Professional Cleaners would be of great help to you saving you much more time and energy.\r\n\r\nSimilar services that you could consider are:\r\n<ul>\r\n <li>End of lease cleaning</li>\r\n <li>Bond Cleaning</li>\r\n <li>Carpet Cleaning</li>\r\n <li class=\"other-services\">\r\n<div class=\"bottomleft\">Perth Domestic Cleaning</div></li>\r\n <li class=\"bottomleft\">Spring Cleaning</li>\r\n</ul>\r\nIf you live in Perth click here to hire professional cleaners.\r\n<h3><strong>Step 6 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a reputable contractor that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditation\'s. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move however, is making sure you start planing your campaign early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-12-13 13:40:46','2018-12-13 13:40:46','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(256,1,'2018-12-13 13:42:20','2018-12-13 13:42:20','<h2>Moving home can be stress free, just follow our tips</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3>Step 5 - Professional Cleaners</h3>\r\nYou will find that it can be time consuming to clean the house when you vacate and manage everything else important such as the furniture and essentials you need. Especially because you will also have to clean and organize your new home and all this can be very draining.\r\n\r\nHiring Professional Cleaners would be of great help to you saving you much more time and energy.\r\n\r\nSimilar services that you could consider are:\r\n<ul>\r\n <li>End of lease cleaning</li>\r\n <li>Bond Cleaning</li>\r\n <li>Carpet Cleaning</li>\r\n <li class=\"other-services\">\r\n<div class=\"bottomleft\">Perth Domestic Cleaning</div></li>\r\n <li class=\"bottomleft\">Spring Cleaning</li>\r\n</ul>\r\nIf you live in Perth you may <a href=\"http://perthhomecleaners.com.au/our-services\" target=\"_blank\">want to hire professional cleaners.</a>\r\n<h3><strong>Step 6 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a reputable contractor that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditation\'s. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move however, is making sure you start planing your campaign early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-12-13 13:42:20','2018-12-13 13:42:20','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(257,1,'2018-12-13 13:43:27','2018-12-13 13:43:27','<h2>Moving home can be stress free, just follow our tips</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3>Step 5 - Professional Cleaners</h3>\r\nYou will find that it can be time consuming to clean the house when you vacate and manage everything else important such as the furniture and essentials you need. Especially because you will also have to clean and organize your new home and all this can be very draining.\r\n\r\nHiring Professional Cleaners would be of great help to you saving you much more time and energy.\r\n\r\nSimilar services that you could consider are:\r\n<ul>\r\n <li>End of lease cleaning</li>\r\n <li>Bond Cleaning</li>\r\n <li>Carpet Cleaning</li>\r\n <li>Perth Domestic Cleaning</li>\r\n <li class=\"bottomleft\">Spring Cleaning</li>\r\n</ul>\r\nIf you live in Perth you may <a href=\"http://perthhomecleaners.com.au/our-services\" target=\"_blank\">want to hire professional cleaners.</a>\r\n<h3><strong>Step 6 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a reputable contractor that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditation\'s. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move however, is making sure you start planing your campaign early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-12-13 13:43:27','2018-12-13 13:43:27','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(258,1,'2018-12-17 11:05:31','2018-12-17 11:05:31','<h2>Moving home can be stress free, just follow our tips</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3>Step 5 - Professional Cleaners</h3>\r\nWhen moving out, the last thing you want is to deep clean the property. It can be time consuming to clean the house, whilst managing everything else such as the furniture and other essentials that you need. Especially because you will also have to clean and organise your new home which can be very draining.\r\n\r\n<em>Hiring Professional Cleaners would be a great help to you, saving you much more time and energy.</em>\r\n\r\n<strong>Similar services that you could consider are:</strong>\r\n<ul>\r\n <li>End of lease cleaning</li>\r\n <li>Bond Cleaning</li>\r\n <li>Carpet Cleaning</li>\r\n <li>Perth Domestic Cleaning</li>\r\n <li class=\"bottomleft\">Spring Cleaning</li>\r\n</ul>\r\nIf you live in Perth you may <a href=\"http://perthhomecleaners.com.au/our-services\" target=\"_blank\">want to hire professional cleaners.</a>\r\n<h3><strong>Step 6 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. It\'s outline the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero\r\n£125,001 to £250,000- 1%\r\n£250,001 to £500,000- 3%\r\n£500,001 to £1,000,000 - 4%\r\n£1,000,001 to £2,000,000 - 5%\r\n£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a reputable contractor that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditation\'s. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage Related Charges:</h3>\r\nFirst check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at leveling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move however, is making sure you start planing your campaign early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2018-12-17 11:05:31','2018-12-17 11:05:31','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(260,1,'2019-01-11 08:55:22','2019-01-11 08:55:22','Deciding on the most suitable building after the amount and type of space required has been determined. Our guide is here to help you make the right decision for your company, employees and clients.\n<h2>Socio-economic trends</h2>\nToday\'s office market is beginning to be influenced by changes in the demographics of the office population. These trends will inevitably have an impact on an organisation\'s overall requirements.\n\n<strong>Some of the following may well influence the final design solution:</strong>\n<ul>\n <li>job and workstation sharing</li>\n <li>staff retention and attraction</li>\n <li>home-working</li>\n <li>smoking</li>\n <li>staff catering</li>\n <li>female staff returning to work</li>\n <li>staff fitness considerations</li>\n <li>flexi-time</li>\n <li>healthy buildings</li>\n <li>24hr working</li>\n <li>leisure facilities</li>\n <li>childcare requirements</li>\n</ul>\nChanges in statutory regulations being implemented by the European Community will also impact the office environment, by providing minimum standards and guidelines for the environment and <a href=\"https://www.market-inspector.co.uk/blog/2017/01/10-basic-office-equipment-for-starting-a-business\" target=\"_blank\">use of equipment</a>.\n\n<strong>The process so far has allowed a model of the tenant\'s organisation to be established</strong>. Clearly, the extent of this analysis will vary depending on the size and complexity of the company; and the time taken can range from a couple of days to a few weeks.\n\nHowever, once the profile has been produced, the picture of an \'ideal\' building that fits the organisation may be established. And this ideal can be matched against the reality of a shortlist of available buildings.\n<h2>The best choice for clients and employees</h2>\nThink about what would be most beneficial to your clients. How accessible is the building, i.e. ramps, automatic doors and local public transport. Find out about the importance of <a href=\"https://erreka-automaticdoors.uk.com/case-studies/offices-bristol-automatic-doors/\">automatic doors in an office block</a> from this case study.\n\nAlso, is there a car park there which could be used by employees and clients? It is important to factor all of these into your decision as finding an office that is suitable for your customers and employees can be a difficult choice.\n<h2><a href=\"https://www.searchofficespace.com/blog/business-advice/what-services-are-included-in-a-serviced-office/\" target=\"_blank\">Office services</a></h2>\nThe biggest deciding factor is what services are supplied by your centre. It is important to know how much your rent is and what you get for your money. You should expect to have your phone answered, mail handled, a reception area, access to a meeting room, cleaning services and access to office supplies. Your office may also be furnished. Many <a href=\"http://www.voc-ltd.co.uk/office-cleaners-crawley.htm\" target=\"_blank\">offices in the Crawley area</a> have frequent cleaning services.\n<h2>Building Configuration</h2>\nThe internal shape and configuration of a building will have an enormous impact on the amount of space which may be used effectively and therefore need to occupy.\n\n<strong>The following areas will be addressed:</strong>\n<ul>\n <li>space efficiency & circulation factors</li>\n <li>module size</li>\n <li>sublet considerations</li>\n <li>footprint</li>\n <li>storage availability</li>\n <li>access for wheelchairs</li>\n <li>flexibility</li>\n <li>total usable square footage</li>\n <li>access</li>\n <li>security</li>\n</ul>\n<h2>Space Standards</h2>\nA Space Planner should analyse the different tasks carried out and develop a set of functional space standards or review existing corporate space standards. Space standards allow for planning consistency and flexibility and also allow for predictions on future space requirements to be made more accurately.\n\n<strong>The following areas will be addressed:</strong>\n<ul>\n <li>functional requirements</li>\n <li>effect of building module</li>\n</ul>\n<h2>Filing and Storage</h2>\nA schedule of all filing and storage will be made, together with forecasts of expansion needs. All types of storage from security rooms to cleaner\'s cupboards will be included. New offices can also be the impetus for a re-evaluation of storage needs and practices. Find out how a serviced office <a href=\"https://www.freeofficefinder.com/article/10-ways-renting-a-serviced-office-can-save-you-money\" target=\"_blank\">can save you money</a>.\n\n<strong>The following areas will be addressed:</strong>\n<ul>\n <li>existing & future requirements</li>\n <li>general and archive storage</li>\n <li>costs</li>\n <li>internal configuration of filing unit</li>\n <li>rationalisation potential</li>\n <li>furniture and stationery</li>\n <li>space use and savings</li>\n</ul>','Choosing a Building For Your Office: Top Tips to Make This Process Easier','','inherit','closed','closed','','247-autosave-v1','','','2019-01-11 08:55:22','2019-01-11 08:55:22','',247,'http://fisawards.co.uk/247-autosave-v1',0,'revision','',0),(261,1,'2019-01-11 08:55:38','2019-01-11 08:55:38','Deciding on the most suitable building after the amount and type of space required has been determined. Our guide is here to help you make the right decision for your company, employees and clients.\r\n<h2>Socio-economic trends</h2>\r\nToday\'s office market is beginning to be influenced by changes in the demographics of the office population. These trends will inevitably have an impact on an organisation\'s overall requirements.\r\n\r\n<strong>Some of the following may well influence the final design solution:</strong>\r\n<ul>\r\n <li>job and workstation sharing</li>\r\n <li>staff retention and attraction</li>\r\n <li>home-working</li>\r\n <li>smoking</li>\r\n <li>staff catering</li>\r\n <li>female staff returning to work</li>\r\n <li>staff fitness considerations</li>\r\n <li>flexi-time</li>\r\n <li>healthy buildings</li>\r\n <li>24hr working</li>\r\n <li>leisure facilities</li>\r\n <li>childcare requirements</li>\r\n</ul>\r\nChanges in statutory regulations being implemented by the European Community will also impact the office environment, by providing minimum standards and guidelines for the environment and <a href=\"https://www.market-inspector.co.uk/blog/2017/01/10-basic-office-equipment-for-starting-a-business\" target=\"_blank\">use of equipment</a>.\r\n\r\n<strong>The process so far has allowed a model of the tenant\'s organisation to be established</strong>. Clearly, the extent of this analysis will vary depending on the size and complexity of the company; and the time taken can range from a couple of days to a few weeks.\r\n\r\nHowever, once the profile has been produced, the picture of an \'ideal\' building that fits the organisation may be established. And this ideal can be matched against the reality of a shortlist of available buildings.\r\n<h2>The best choice for clients and employees</h2>\r\nThink about what would be most beneficial to your clients. How accessible is the building, i.e. ramps, automatic doors and local public transport. Find out about the importance of <a href=\"https://erreka-automaticdoors.uk.com/case-studies/offices-bristol-automatic-doors/\" target=\"_blank\">automatic doors in an office block</a> from this case study.\r\n\r\nAlso, is there a car park there which could be used by employees and clients? It is important to factor all of these into your decision as finding an office that is suitable for your customers and employees can be a difficult choice.\r\n<h2><a href=\"https://www.searchofficespace.com/blog/business-advice/what-services-are-included-in-a-serviced-office/\" target=\"_blank\">Office services</a></h2>\r\nThe biggest deciding factor is what services are supplied by your centre. It is important to know how much your rent is and what you get for your money. You should expect to have your phone answered, mail handled, a reception area, access to a meeting room, cleaning services and access to office supplies. Your office may also be furnished. Many <a href=\"http://www.voc-ltd.co.uk/office-cleaners-crawley.htm\" target=\"_blank\">offices in the Crawley area</a> have frequent cleaning services.\r\n<h2>Building Configuration</h2>\r\nThe internal shape and configuration of a building will have an enormous impact on the amount of space which may be used effectively and therefore need to occupy.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>space efficiency & circulation factors</li>\r\n <li>module size</li>\r\n <li>sublet considerations</li>\r\n <li>footprint</li>\r\n <li>storage availability</li>\r\n <li>access for wheelchairs</li>\r\n <li>flexibility</li>\r\n <li>total usable square footage</li>\r\n <li>access</li>\r\n <li>security</li>\r\n</ul>\r\n<h2>Space Standards</h2>\r\nA Space Planner should analyse the different tasks carried out and develop a set of functional space standards or review existing corporate space standards. Space standards allow for planning consistency and flexibility and also allow for predictions on future space requirements to be made more accurately.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>functional requirements</li>\r\n <li>effect of building module</li>\r\n</ul>\r\n<h2>Filing and Storage</h2>\r\nA schedule of all filing and storage will be made, together with forecasts of expansion needs. All types of storage from security rooms to cleaner\'s cupboards will be included. New offices can also be the impetus for a re-evaluation of storage needs and practices. Find out how a serviced office <a href=\"https://www.freeofficefinder.com/article/10-ways-renting-a-serviced-office-can-save-you-money\" target=\"_blank\">can save you money</a>.\r\n\r\n<strong>The following areas will be addressed:</strong>\r\n<ul>\r\n <li>existing & future requirements</li>\r\n <li>general and archive storage</li>\r\n <li>costs</li>\r\n <li>internal configuration of filing unit</li>\r\n <li>rationalisation potential</li>\r\n <li>furniture and stationery</li>\r\n <li>space use and savings</li>\r\n</ul>','Choosing a Building For Your Office: Top Tips to Make This Process Easier','','inherit','closed','closed','','247-revision-v1','','','2019-01-11 08:55:38','2019-01-11 08:55:38','',247,'http://fisawards.co.uk/247-revision-v1',0,'revision','',0),(263,1,'2019-02-01 14:21:39','2019-02-01 14:21:39','','Advice to Sell','','publish','closed','closed','','advice-to-sell','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=263',3,'nav_menu_item','',0),(264,1,'2019-02-01 14:21:39','2019-02-01 14:21:39','','Cooling Off Period','','publish','closed','closed','','cooling-off-period','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=264',19,'nav_menu_item','',0),(265,1,'2019-02-01 14:21:40','2019-02-01 14:21:40','','Process of Complaining','','publish','closed','closed','','process-of-complaining','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=265',26,'nav_menu_item','',0),(266,1,'2019-02-01 14:21:39','2019-02-01 14:21:39','','Struggling to Sell?','','publish','closed','closed','','struggling-to-sell','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=266',5,'nav_menu_item','',0),(267,1,'2019-02-01 14:21:39','2019-02-01 14:21:39','','Finding an Estate Agent','','publish','closed','closed','','finding-an-estate-agent','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=267',9,'nav_menu_item','',0),(268,1,'2019-02-01 14:21:40','2019-02-01 14:21:40','','Conveyancing','','publish','closed','closed','','268','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=268',15,'nav_menu_item','',0),(269,1,'2019-02-01 14:21:39','2019-02-01 14:21:39','','Who Should You Inform?','','publish','closed','closed','','who-should-you-inform','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=269',10,'nav_menu_item','',0),(270,1,'2019-02-01 14:21:40','2019-02-01 14:21:40','','Fallen House Sale Advice','','publish','closed','closed','','has-your-house-sale-turned-bad-heres-what-you-should-do','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=270',17,'nav_menu_item','',0),(271,1,'2019-02-01 14:21:40','2019-02-01 14:21:40',' ','','','publish','closed','closed','','271','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=271',6,'nav_menu_item','',0),(272,1,'2019-02-01 14:21:40','2019-02-01 14:21:40','','Has a surveyor highlighted problems with your property?','','publish','closed','closed','','272','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=272',25,'nav_menu_item','',0),(273,1,'2019-02-01 14:21:40','2019-02-01 14:21:40',' ','','','publish','closed','closed','','273','','','2020-08-20 15:41:02','2020-08-20 15:41:02','',0,'http://fisawards.co.uk/?p=273',28,'nav_menu_item','',0),(274,1,'2019-02-01 14:21:41','2019-02-01 14:21:41','','Estate agents commission policy','','publish','closed','closed','','274','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=274',14,'nav_menu_item','',0),(275,1,'2019-02-01 14:21:41','2019-02-01 14:21:41','','Changing Estate Agents','','publish','closed','closed','','maybe-you-should-change-your-estate-agent-if-your-property-isnt-selling','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=275',4,'nav_menu_item','',0),(276,1,'2019-02-01 14:21:41','2019-02-01 14:21:41','','Mortgage Arrears','','publish','closed','closed','','276','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=276',16,'nav_menu_item','',0),(277,1,'2019-02-01 14:22:08','2019-02-01 14:22:08','','Advice','','publish','closed','closed','','advice','','','2019-02-01 14:22:08','2019-02-01 14:22:08','',0,'http://fisawards.co.uk/?page_id=277',0,'page','',0),(278,1,'2019-02-01 14:22:08','2019-02-01 14:22:08','','Advice','','inherit','closed','closed','','277-revision-v1','','','2019-02-01 14:22:08','2019-02-01 14:22:08','',277,'http://fisawards.co.uk/277-revision-v1',0,'revision','',0),(279,1,'2019-02-01 14:24:57','2019-02-01 14:24:57',' ','','','publish','closed','closed','','279','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=279',11,'nav_menu_item','',0),(280,1,'2019-02-01 15:03:16','2019-02-01 15:03:16','<a href=\"https://www.ktmollerremovals.com.au/the-procedure/\"><img class=\"alignnone size-full wp-image-281\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/02/truck-3910170_960_720.jpg\" alt=\"moving-out\" width=\"960\" height=\"640\" /></a>\r\n\r\n<strong>Moving homes can be a stressful experience.</strong> However, there is a range of companies and services that are here to make moving homes a little less stressful for you.\r\n<blockquote>Before browsing online for a removal company, always plan ahead.</blockquote>\r\nStart drawing up a list together of what you want from a removal company, what items are a priority and how fragile items are going to be transported. <a href=\"http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html\">Find an estate agent.</a>\r\n<h2>Understand How the Removal Company Transports Your Belongings</h2>\r\n<strong>When choosing</strong> an interstate removal company, you want to be assured and understand how they exactly plan on moving your belongings to your new property or office.\r\n\r\nDependable removal companies will <a href=\"https://www.ktmollerremovals.com.au/the-procedure/\">explain their process</a>, giving you peace of mind that your belongings are being moved correctly and safely.\r\n<h2>Check Their Reviews</h2>\r\n<strong>In this day and age,</strong> it’s incredibly rare to find a company or industry that haven’t got customer reviews and feedback available online.\r\n\r\nYou want to make sure that the furniture removal company has taken care of previous customers well. Check to see how they value their reviews because a lot of companies know <a href=\"https://blog.booker.com/the-booker-blog/5-reasons-reviews-are-important-for-your-business-2\">how important reviews are for their business.</a>\r\n<h2>Make Sure You Feel Valued</h2>\r\n<strong>When discussing services</strong> with a potential furniture removal company, make sure you feel comfortable about having that company transport your furniture.\r\n\r\nThere are a number of removal businesses that operate around Brisbane and Perth, but you have to choose the right one to help you when you move home. <a href=\"http://fisawards.co.uk/who-to-inform-when-moving-house-html\">Are you moving? Who should you inform?</a>','Finding the Right Furniture Removal Company','','publish','closed','closed','','finding-right-furniture-removal-company','','','2019-02-01 15:03:16','2019-02-01 15:03:16','',0,'http://fisawards.co.uk/?page_id=280',0,'page','',0),(281,1,'2019-02-01 15:02:46','2019-02-01 15:02:46','','truck-3910170_960_720','','inherit','closed','closed','','truck-3910170_960_720','','','2019-02-01 15:03:14','2019-02-01 15:03:14','',280,'http://fisawards.co.uk/wp-content/uploads/2019/02/truck-3910170_960_720.jpg',0,'attachment','image/jpeg',0),(282,1,'2019-02-01 15:03:16','2019-02-01 15:03:16','<a href=\"https://www.ktmollerremovals.com.au/the-procedure/\"><img class=\"alignnone size-full wp-image-281\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/02/truck-3910170_960_720.jpg\" alt=\"moving-out\" width=\"960\" height=\"640\" /></a>\r\n\r\n<strong>Moving homes can be a stressful experience.</strong> However, there is a range of companies and services that are here to make moving homes a little less stressful for you.\r\n<blockquote>Before browsing online for a removal company, always plan ahead.</blockquote>\r\nStart drawing up a list together of what you want from a removal company, what items are a priority and how fragile items are going to be transported. <a href=\"http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html\">Find an estate agent.</a>\r\n<h2>Understand How the Removal Company Transports Your Belongings</h2>\r\n<strong>When choosing</strong> an interstate removal company, you want to be assured and understand how they exactly plan on moving your belongings to your new property or office.\r\n\r\nDependable removal companies will <a href=\"https://www.ktmollerremovals.com.au/the-procedure/\">explain their process</a>, giving you peace of mind that your belongings are being moved correctly and safely.\r\n<h2>Check Their Reviews</h2>\r\n<strong>In this day and age,</strong> it’s incredibly rare to find a company or industry that haven’t got customer reviews and feedback available online.\r\n\r\nYou want to make sure that the furniture removal company has taken care of previous customers well. Check to see how they value their reviews because a lot of companies know <a href=\"https://blog.booker.com/the-booker-blog/5-reasons-reviews-are-important-for-your-business-2\">how important reviews are for their business.</a>\r\n<h2>Make Sure You Feel Valued</h2>\r\n<strong>When discussing services</strong> with a potential furniture removal company, make sure you feel comfortable about having that company transport your furniture.\r\n\r\nThere are a number of removal businesses that operate around Brisbane and Perth, but you have to choose the right one to help you when you move home. <a href=\"http://fisawards.co.uk/who-to-inform-when-moving-house-html\">Are you moving? Who should you inform?</a>','Finding the Right Furniture Removal Company','','inherit','closed','closed','','280-revision-v1','','','2019-02-01 15:03:16','2019-02-01 15:03:16','',280,'http://fisawards.co.uk/280-revision-v1',0,'revision','',0),(283,1,'2019-02-01 15:03:33','2019-02-01 15:03:33',' ','','','publish','closed','closed','','283','','','2020-08-20 15:41:00','2020-08-20 15:41:00','',0,'http://fisawards.co.uk/?p=283',8,'nav_menu_item','',0),(284,1,'2019-02-08 11:00:13','2019-02-08 11:00:13','Moving day can be stressful enough as it is, one is worried about whether all has been packed and if one\'s valuable dinnerware is going to break. The last thing on your mind during this rather stressful period is about being late and delays on moving day.\r\n\r\n<strong>There are however, a few simple things to bear in mind that can help you avoid unnecessary and upsetting delays on moving day.</strong>\r\n<h2>Whether or not to use a removal company:</h2>\r\nRemoval companies can be a costly additional expense when moving and it may be tempting to cut costs and conduct the removal yourself. If you are only moving a short distance away this can be successfully accomplished but you need to be much organised and plan appropriately ahead of time.\r\n\r\nMeasure the size of all of your furniture and appliances to establish the size of removal van needed to save time. <a href=\"http://fisawards.co.uk/contact\">Contact us for more advice</a>.\r\n\r\nWhen moving home, it is often the case that people want to get rid of old furniture and junk. However, the last thing that is going to be on your mind is where to dispose of these things and when will you have the time?\r\n\r\nA reliable and professional rubbish removal company will be able to take care of all things waste, while you focus on getting to your new home. For house clearances in Ashford, Canterbury or Gravesend in Kent, <a href=\"http://www.rubbishclearancekent.me.uk/house-clearances\" target=\"_blank\">visit this website</a>.\r\n<h2>Hire a vacate cleaning service</h2>\r\nA vacate cleaning service gives you a 100% guarantee of getting your bond / deposit money back. Having a specialist cleaning service from experienced staff member\'s means you only have to worry about moving your furniture, rather than the dirty work. <a href=\"https://thatcarpetguy.com.au/services/vacate-cleans/\" target=\"_blank\">Click here</a>.\r\n\r\n<strong>Typical services include:</strong>\r\n<ul>\r\n <li>Oven / stove cleaning</li>\r\n <li>Carpet cleaning</li>\r\n <li>Bench top wiping</li>\r\n <li>Shower / tile cleaning</li>\r\n <li>Wiping down of skirting boards</li>\r\n</ul>\r\n<h2>Moving furniture and appliances:</h2>\r\nThere are a few simple ways to ensure that the removal of furniture and appliances does not cause unnecessary delays. Firstly, ensure drawers are securely shut with strong tape, rope or bubble wrap or remove them entirely. <a href=\"http://decenthomesstandard.co.uk/Occasional_Chairs.htm\" target=\"_blank\">Find out about different furniture</a>.\r\n\r\nSecondly, protect furniture with the appropriate packing materials, blankets or padding. Finally, pack all electronics in their original packaging as far as possible or protect them with thick blankets or moving pads.\r\n\r\n<strong>Do you need help selling your property? <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Take a look at 10 most common problems</a>.</strong>\r\n<h2>Final tips:</h2>\r\nFinally, make sure you are adequately prepared for the day ahead. Go through your home and check that you have not forgotten anything important and that everything is clean and in order for the new owners.\r\n\r\nPhone the removal company to double check that they will be there on the agreed upon date and time. Ensure that all of the utilities have been transferred to the new owners. Finally, if you are concerned about getting everything done on time, enlist additional help from a removal company or family members and friends.','Moving day coming up? Here\'s how you can avoid delays on the big day','','inherit','closed','closed','','67-revision-v1','','','2019-02-08 11:00:13','2019-02-08 11:00:13','',67,'http://fisawards.co.uk/67-revision-v1',0,'revision','',0),(286,1,'2019-06-07 08:57:58','2019-06-07 08:57:58','<h1>Is your house not selling? Here is what you could do</h1>\r\nIt can be stressful deciding to sell your home and even more so when your house will not sell.\r\n\r\nIt could be that the effects of the global recession have become personal and you need to sell a house fast due to financial difficulties or maybe you would like to sell in order to move to something smaller and more manageable now that your children have finally left home. Make sure you are with the right estate agent - <a href=\"http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html\">read more here.</a>\r\n\r\nNo matter what the reasons are for selling, there are things you can do to help move things along if your house will not sell. <a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Have a look at 10 reasons your house isn\'t selling.</a>\r\n<h2><strong>Rent your home:</strong></h2>\r\nIt could be that you are in a position where you need to relocate urgently whether for personal reasons or for job-related matters. If you are struggling to sell your home in these circumstances, it could be worthwhile considering the option of renting your house and <a href=\"http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/\">finding some tenants</a> until the right buyers emerge. An additional source of income that could potentially cover the cost of renting a new home is now available placing you under less financial strain.\r\n<h2><strong>Price your home at the right price:</strong></h2>\r\nIf your house is not selling it could be that you are asking too much for the property. Even though you may have purchased your home for a lot more, <a href=\"http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html\">the market today</a> has meant that real estate is worth a lot less than it was a number of years ago. Speak to a real estate agent about getting your home appropriately valued to ensure that you are asking the right amount for it. This could assist you in finding buyers more quickly.\r\n\r\nHave your home professionally cleaned. There is nothing more off-putting than see dirty windows are paintwork when looking at properties to buy. It is estimated that a buyer will pay 12% less for a dirty home! <a href=\"https://www.no1cleaningsolutions.co.nz/services/residential-domestic-cleaning/\" target=\"_blank\">Click here </a>for residential cleaning.\r\n<h2><strong>Renovate: give your home a new lease of life</strong></h2>\r\n<em>Thinking like a buyer when making home improvements could assist you in attracting the right buyers.</em>\r\n<ul>\r\n <li>Ensure that all light fixtures in your home are clean and working - <a href=\"http://electrician.me.uk/\" target=\"_blank\">get them checked by a qualified electrician</a></li>\r\n <li>Fix cracks and damp in walls</li>\r\n <li>Replace your windows with the latest double or triple glazed options. Rooflights and skylights make a great feature in living spaces.</li>\r\n <li>Give the house a fresh coat of paint on the inside and outside - <a href=\"http://boschkitchens.co.uk/\" target=\"_blank\">have a look at other home improvement options</a></li>\r\n <li>Update your furnishings for a modern look. <a href=\"/\">Click here</a> for some design inspiration.</li>\r\n <li>Keep your garden neat and tidy and consider getting a landscape architect in to give it a fresh new look</li>\r\n</ul>\r\nIf your home looks well maintained and taken care of buyers are more likely to be interested as it means that they will have less work to do once they move in.\r\n\r\nIf your house is not selling there is no need to panic. There are ways to improve the chances that your home will be sold shortly and at the right price. If you are able to, it is always better to hold tight and wait for better economic times in which to sell your home. If you are not in a position to do this, talk to your estate agent for more advice on what to do.\r\n<h3><a href=\"http://fisawards.co.uk/contact\">Send us your top property tips</a></h3>','Is your house not selling? Here is what you could do','','inherit','closed','closed','','80-revision-v1','','','2019-06-07 08:57:58','2019-06-07 08:57:58','',80,'http://fisawards.co.uk/80-revision-v1',0,'revision','',0),(289,1,'2019-06-19 11:53:34','2019-06-19 11:53:34','<h2><strong>How Does Data Cabling in an Office Work?</strong></h2>\r\n<strong> </strong>The needs of every business are different. A lot depends on the number of tasks at hand and the size of these tasks. We take a look at just how data cabling works in the office and how it can be a benefit to your business.\r\n\r\nOn-site surveys can be conducted by a technician so they can understand the potential usage of devices in the office throughout the day.\r\n\r\n<em>Technicians can analyse what work needs to be done or recommend what work should be done in any situation.</em>\r\n\r\nWhether you are planning a <em>major</em> overhaul of office layout, location, and network or if you simply want to install cables to implement a new system. <a href=\"https://network-data-cabling.co.uk/data-cabling-installation/\">Read more about data cabling.</a>\r\n\r\nThese surveys not only give you an outline of the work you may consider undertaking; <strong>they can highlight any potential cabling problems</strong> caused by your current system which may be affecting network performance.\r\n\r\nThis visit will allow you to plan <strong>work that fits around your ideas, needs and budget for the company</strong> including accounting for the potential of future growth in your company so that the work needed to keep up with the rate of growth in future will be minimal.\r\n<p style=\"text-align: center;\">During the work, cables can be <a href=\"https://medlininc.com/how-to-future-proof-your-it-network-cat6-cables/\">organised and labelled</a> so that they are easily identified if they ever need to be fixed or replaced.</p>\r\nAs companies begin to <a href=\"https://www.getkisi.com/guides/off-management-checklist-how-to-plan-an-office-expansion\">grow and expand</a> in size, <strong>data cabling quickly becomes a fundamental aspect that a business has to think about</strong> to make sure productivity remains high amongst employees and that the network remains reliable.\r\n\r\n<a href=\"/\"><img class=\"size-full wp-image-290 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/data-cabling.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a>','A Guide to Data Cabling','','publish','closed','closed','','guide-data-cabling','','','2019-06-19 11:53:34','2019-06-19 11:53:34','',0,'http://fisawards.co.uk/?p=289',0,'post','',0),(290,1,'2019-06-19 11:37:26','2019-06-19 11:37:26','','data-cabling','','inherit','closed','closed','','data-cabling','','','2019-06-19 11:37:26','2019-06-19 11:37:26','',289,'http://fisawards.co.uk/wp-content/uploads/2019/06/data-cabling.jpg',0,'attachment','image/jpeg',0),(291,1,'2019-06-19 11:39:46','2019-06-19 11:39:46','','office-data-cabling','','inherit','closed','closed','','office-data-cabling','','','2019-06-19 11:40:10','2019-06-19 11:40:10','',289,'http://fisawards.co.uk/wp-content/uploads/2019/06/office-data-cabling.jpg',0,'attachment','image/jpeg',0),(292,1,'2019-06-19 11:40:46','2019-06-19 11:40:46','<h2><strong>How Does Data Cabling in an Office Work?</strong></h2>\r\n<strong> </strong>The needs of every business are different. A lot depends on the number of tasks at hand and the size of these tasks. We take a look at just how data cabling works in the office and how it can be a benefit to your business.\r\n\r\nOn-site surveys can be conducted by a technician so they can understand the potential usage of devices in the office throughout the day.\r\n\r\n<em>Technicians can analyse what work needs to be done or recommend what work should be done in any situation.</em>\r\n\r\nWhether you are planning a <em>major</em> overhaul of office layout, location, and network or if you simply want to install cables to implement a new system. <a href=\"https://network-data-cabling.co.uk/data-cabling-installation/\">Read more about data cabling.</a>\r\n\r\nThese surveys not only give you an outline of the work you may consider undertaking; <strong>they can highlight any potential cabling problems</strong> caused by your current system which may be affecting network performance.\r\n\r\nThis visit will allow you to plan <strong>work that fits around your ideas, needs and budget for the company</strong> including accounting for the potential of future growth in your company so that the work needed to keep up with the rate of growth in future will be minimal.\r\n<p style=\"text-align: center;\">During the work, cables can be <a href=\"https://medlininc.com/how-to-future-proof-your-it-network-cat6-cables/\">organised and labelled</a> so that they are easily identified if they ever need to be fixed or replaced.</p>\r\nAs companies begin to <a href=\"https://www.getkisi.com/guides/off-management-checklist-how-to-plan-an-office-expansion\">grow and expand</a> in size, <strong>data cabling quickly becomes a fundamental aspect that a business has to think about</strong> to make sure productivity remains high amongst employees and that the network remains reliable.\r\n\r\n \r\n\r\n<a href=\"/\"><img class=\"size-full wp-image-290 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/data-cabling.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a>','Office','','inherit','closed','closed','','289-revision-v1','','','2019-06-19 11:40:46','2019-06-19 11:40:46','',289,'http://fisawards.co.uk/289-revision-v1',0,'revision','',0),(293,1,'2019-06-19 11:41:39','2019-06-19 11:41:39','<h2><strong>How Does Data Cabling in an Office Work?</strong></h2>\r\n<strong> </strong>The needs of every business are different. A lot depends on the number of tasks at hand and the size of these tasks. We take a look at just how data cabling works in the office and how it can be a benefit to your business.\r\n\r\nOn-site surveys can be conducted by a technician so they can understand the potential usage of devices in the office throughout the day.\r\n\r\n<em>Technicians can analyse what work needs to be done or recommend what work should be done in any situation.</em>\r\n\r\nWhether you are planning a <em>major</em> overhaul of office layout, location, and network or if you simply want to install cables to implement a new system. <a href=\"https://network-data-cabling.co.uk/data-cabling-installation/\">Read more about data cabling.</a>\r\n\r\nThese surveys not only give you an outline of the work you may consider undertaking; <strong>they can highlight any potential cabling problems</strong> caused by your current system which may be affecting network performance.\r\n\r\nThis visit will allow you to plan <strong>work that fits around your ideas, needs and budget for the company</strong> including accounting for the potential of future growth in your company so that the work needed to keep up with the rate of growth in future will be minimal.\r\n<p style=\"text-align: center;\">During the work, cables can be <a href=\"https://medlininc.com/how-to-future-proof-your-it-network-cat6-cables/\">organised and labelled</a> so that they are easily identified if they ever need to be fixed or replaced.</p>\r\nAs companies begin to <a href=\"https://www.getkisi.com/guides/off-management-checklist-how-to-plan-an-office-expansion\">grow and expand</a> in size, <strong>data cabling quickly becomes a fundamental aspect that a business has to think about</strong> to make sure productivity remains high amongst employees and that the network remains reliable.\r\n\r\n<a href=\"/\"><img class=\"size-full wp-image-290 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/data-cabling.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a>','Office','','inherit','closed','closed','','289-revision-v1','','','2019-06-19 11:41:39','2019-06-19 11:41:39','',289,'http://fisawards.co.uk/289-revision-v1',0,'revision','',0),(294,1,'2019-06-19 11:44:51','2019-06-19 11:44:51','<h2><strong>How Does Data Cabling in an Office Work?</strong></h2>\r\n<strong> </strong>The needs of every business are different. A lot depends on the number of tasks at hand and the size of these tasks. We take a look at just how data cabling works in the office and how it can be a benefit to your business.\r\n\r\nOn-site surveys can be conducted by a technician so they can understand the potential usage of devices in the office throughout the day.\r\n\r\n<em>Technicians can analyse what work needs to be done or recommend what work should be done in any situation.</em>\r\n\r\nWhether you are planning a <em>major</em> overhaul of office layout, location, and network or if you simply want to install cables to implement a new system. <a href=\"https://network-data-cabling.co.uk/data-cabling-installation/\">Read more about data cabling.</a>\r\n\r\nThese surveys not only give you an outline of the work you may consider undertaking; <strong>they can highlight any potential cabling problems</strong> caused by your current system which may be affecting network performance.\r\n\r\nThis visit will allow you to plan <strong>work that fits around your ideas, needs and budget for the company</strong> including accounting for the potential of future growth in your company so that the work needed to keep up with the rate of growth in future will be minimal.\r\n<p style=\"text-align: center;\">During the work, cables can be <a href=\"https://medlininc.com/how-to-future-proof-your-it-network-cat6-cables/\">organised and labelled</a> so that they are easily identified if they ever need to be fixed or replaced.</p>\r\nAs companies begin to <a href=\"https://www.getkisi.com/guides/off-management-checklist-how-to-plan-an-office-expansion\">grow and expand</a> in size, <strong>data cabling quickly becomes a fundamental aspect that a business has to think about</strong> to make sure productivity remains high amongst employees and that the network remains reliable.\r\n\r\n<a href=\"/\"><img class=\"size-full wp-image-290 alignleft\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/data-cabling.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a>','A Guide to Data Cabling','','inherit','closed','closed','','289-revision-v1','','','2019-06-19 11:44:51','2019-06-19 11:44:51','',289,'http://fisawards.co.uk/289-revision-v1',0,'revision','',0),(296,1,'2019-06-19 11:56:36','2019-06-19 11:56:36','','Data Management','','publish','closed','closed','','office','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/office',22,'nav_menu_item','',0),(297,1,'2019-06-19 13:12:40','2019-06-19 13:12:40','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\r\n\r\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2><a href=\"/\"><img class=\"aligncenter size-full wp-image-248\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg\" alt=\"office-productivity\" width=\"960\" height=\"639\" /></a></h2>\r\n<h2><a href=\"/\">3. Good office spaces improve productivity</a></h2>\r\nThe kind of office you have directly affects the productivity of employees.\r\n\r\nIf you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space.\r\n\r\nGood office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n ','How to boost office productivity','','publish','closed','closed','','boost-office-productivity','','','2019-10-21 16:09:28','2019-10-21 16:09:28','',0,'http://fisawards.co.uk/?page_id=297',0,'page','',0),(298,1,'2019-06-19 13:11:22','2019-06-19 13:11:22','','boost-office-productivity','','inherit','closed','closed','','boost-office-productivity','','','2019-06-19 13:11:28','2019-06-19 13:11:28','',297,'http://fisawards.co.uk/wp-content/uploads/2019/06/boost-office-productivity.jpg',0,'attachment','image/jpeg',0),(299,1,'2019-06-19 13:12:40','2019-06-19 13:12:40','When it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2><strong><a href=\"/\">3. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving head first into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n<a href=\"/\"><img class=\"alignleft size-full wp-image-248\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg\" alt=\"office-productivity\" width=\"960\" height=\"639\" /></a>','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-06-19 13:12:40','2019-06-19 13:12:40','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(301,1,'2019-06-19 13:14:11','2019-06-19 13:14:11','','Office','','publish','closed','closed','','office-2','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/office-2',21,'nav_menu_item','',0),(303,1,'2019-10-21 16:05:42','2019-10-21 16:05:42','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\n\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\n\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\n\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\nTaking regular breaks will significantly <em>enhance</em> your work performance.\n\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\n\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\n\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\n<h2><a href=\"/\">3. Good office spaces make for productivity</a></h2>\nThe kind of office you have directly affects the productivity of employees.\n\nIf you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\n\nOne way you can improve the productivity of your office is to rent out office space.\n\nGood office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\n\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\n\n ','How to boost office productivity','','inherit','closed','closed','','297-autosave-v1','','','2019-10-21 16:05:42','2019-10-21 16:05:42','',297,'http://fisawards.co.uk/297-autosave-v1',0,'revision','',0),(304,1,'2019-10-21 16:00:57','2019-10-21 16:00:57','When it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2>3. Good office spaces make for productivity</h2>\r\nThe kind of office you have directly affects the productivity of employees. If you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space. Good office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n<a href=\"/\"><img class=\"alignleft size-full wp-image-248\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg\" alt=\"office-productivity\" width=\"960\" height=\"639\" /></a>','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-10-21 16:00:57','2019-10-21 16:00:57','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(305,1,'2019-10-21 16:02:11','2019-10-21 16:02:11','','meetings','','inherit','closed','closed','','meetings','','','2019-10-21 16:02:11','2019-10-21 16:02:11','',297,'http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg',0,'attachment','image/jpeg',0),(306,1,'2019-10-21 16:02:19','2019-10-21 16:02:19','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\r\n\r\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2>3. Good office spaces make for productivity</h2>\r\nThe kind of office you have directly affects the productivity of employees. If you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space. Good office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n<a href=\"/\"><img class=\"alignleft size-full wp-image-248\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg\" alt=\"office-productivity\" width=\"960\" height=\"639\" /></a>','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-10-21 16:02:19','2019-10-21 16:02:19','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(307,1,'2019-10-21 16:02:32','2019-10-21 16:02:32','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\r\n\r\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2><a href=\"/\">3. Good office spaces make for productivity</a></h2>\r\nThe kind of office you have directly affects the productivity of employees. If you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space. Good office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n<a href=\"/\"><img class=\"alignleft size-full wp-image-248\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg\" alt=\"office-productivity\" width=\"960\" height=\"639\" /></a>','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-10-21 16:02:32','2019-10-21 16:02:32','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(308,1,'2019-10-21 16:03:22','2019-10-21 16:03:22','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\r\n\r\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2><a href=\"/\"><img class=\"alignleft wp-image-248 size-medium\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office-300x200.jpg\" alt=\"office-productivity\" width=\"300\" height=\"200\" /></a><a href=\"/\">3. Good office spaces make for productivity</a></h2>\r\nThe kind of office you have directly affects the productivity of employees. If you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space. Good office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2></h2>\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n ','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-10-21 16:03:22','2019-10-21 16:03:22','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(309,1,'2019-10-21 16:03:41','2019-10-21 16:03:41','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\r\n\r\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2><a href=\"/\"><img class=\"alignleft wp-image-248 size-medium\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office-300x200.jpg\" alt=\"office-productivity\" width=\"300\" height=\"200\" /></a><a href=\"/\">3. Good office spaces make for productivity</a></h2>\r\nThe kind of office you have directly affects the productivity of employees.\r\n\r\nIf you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space.\r\n\r\nGood office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2></h2>\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n ','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-10-21 16:03:41','2019-10-21 16:03:41','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(310,1,'2019-10-21 16:05:49','2019-10-21 16:05:49','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\r\n\r\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2><a href=\"/\"><img class=\"aligncenter size-full wp-image-248\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg\" alt=\"office-productivity\" width=\"960\" height=\"639\" />3. Good office spaces make for productivity</a></h2>\r\nThe kind of office you have directly affects the productivity of employees.\r\n\r\nIf you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space.\r\n\r\nGood office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n ','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-10-21 16:05:49','2019-10-21 16:05:49','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(311,1,'2019-10-21 16:09:28','2019-10-21 16:09:28','<img class=\"aligncenter size-full wp-image-305\" src=\"http://fisawards.co.uk/wp-content/uploads/2019/06/meetings.jpg\" alt=\"\" width=\"960\" height=\"643\" />\r\n\r\nWhen it comes to office productivity, you’ll want to make sure your workforce remains motivated throughout their working day.\r\n\r\nIt’s incredibly important to keep your staff motivated and morale high when it comes to productivity.\r\n\r\nThere are a number of solutions when it comes to boosting productivity, but here at <strong>FIS Property Advice</strong>, we’re taking a look at just a few ways in which productivity can be increased. Here are three great ways to boost office productivity:\r\n<h2><a href=\"/\"><strong>1. Take regular breaks</strong></a></h2>\r\nTaking regular breaks will significantly <em>enhance</em> your work performance.\r\n\r\n<strong>According to a 2014 study: <em>the ideal break should be 17 minutes</em></strong>\r\n\r\nBe it a walk to get a coffee or to chat with other co-workers,<strong> implementing these small breaks is proven to reduce the negative health effects of sitting for too long.</strong>\r\n\r\nRegular breaks also reduce stress and therefore help to clear your mind. <a href=\"https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity\">You can find more information here</a>.\r\n<h2><strong><a href=\"/\">2. Set goals for each hour</a> </strong></h2>\r\nSetting goals for each our will enable you to keep motivated as you\'ll be able to keep track of how much you\'ve done and still need to do.\r\n<blockquote>This is effective and efficient because you will be more aware of the approaching deadline.</blockquote>\r\nIt is important to note that you should <a href=\"https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c\">make these deadlines realistic so</a> if you need more than an hour, that is perfectly fine!\r\n<h2><a href=\"/\"><img class=\"aligncenter size-full wp-image-248\" src=\"http://fisawards.co.uk/wp-content/uploads/2018/11/serviced-office.jpg\" alt=\"office-productivity\" width=\"960\" height=\"639\" /></a></h2>\r\n<h2><a href=\"/\">3. Good office spaces improve productivity</a></h2>\r\nThe kind of office you have directly affects the productivity of employees.\r\n\r\nIf you have a crowded office space, with a lack of up-to-date technology and little to no additional facilities, productivity is likely to be hindered as workers will often have problems with their devices or are just stressed by the overcrowding of their office space.\r\n\r\nOne way you can improve the productivity of your office is to rent out office space.\r\n\r\nGood office spaces have <a href=\"https://www.mashmellow.co/facilities/\" target=\"_blank\">additional facilities for employees</a> to take breaks, such as kitchens, and outdoor areas.\r\n\r\nIf your office is too small to add places for workers to \'de-stress\' you should consider renting a new office space or co-working spaces that offer these facilities all in one.\r\n<h2><strong>4<a href=\"/\">. Prioritise the important tasks when you are more focused</a> </strong></h2>\r\nThere is absolutely no point in doing a task when you aren\'t fully focused.<strong> Your thought process will be slower and this will hinder your creativity</strong>.\r\n<blockquote>It has even been proven that you should save the important tasks for when you are most focused.</blockquote>\r\nYou may be a morning person; driving headfirst into your biggest task of the day. But remember, everyone is different, only you know how you work best.\r\n\r\n ','How to boost office productivity','','inherit','closed','closed','','297-revision-v1','','','2019-10-21 16:09:28','2019-10-21 16:09:28','',297,'http://fisawards.co.uk/297-revision-v1',0,'revision','',0),(313,1,'2020-08-20 15:38:01','2020-08-20 15:38:01','<a href=\"http://fisawards.co.uk/\"><img class=\"aligncenter size-full wp-image-315\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/08/bath.jpeg\" alt=\"Fixing something on your own can be an overwhelming thought, but it doesn’t have to be that way. There are lots of easy fixes you can do at home without needing to call out a plumber.\" width=\"1920\" height=\"1500\" /></a>\r\n<h2><a href=\"/\">Save money on your plumbing</a></h2>\r\n<blockquote>You might not immediately notice that your toilet is blocked.</blockquote>\r\nIf the water drains from the bowl slowly, a blockage might in the process of forming.\r\n\r\nIn other cases, the blockage might be instantaneous, caused by too much toilet roll or other waste. If, after flushing, the bowl has almost no water, there is likely to be an issue with ventilation in the pipes.\r\n\r\nFixing something on your own can be an overwhelming thought, but it doesn’t have to be that way.\r\n\r\nThere are lots of easy fixes you can do at home without needing to call out a plumber.\r\n<h3>How to unblock a badly blocked toilet</h3>\r\nHave you ever found yourself panicking while watching the water slowly rise in the toilet bowl?\r\n\r\nStay calm and assess the situation before making any radical decisions. First, you must identify the cause of the blockage.\r\n\r\nIn many cases, there is no need to call out a plumber and the problem can be fixed easily.\r\n\r\nThe quickest way is to find a <a href=\"https://thejandpgroup.co.uk/plumbers-london/toilet-plumbing-and-repair\">reputable company</a> known for efficient plumbing and heating services to save the day.\r\n<h3>Tips for fixing the toilet at home</h3>\r\nToilets are made up of a cistern connected to the water supply (behind the toilet) and the bowl.\r\n\r\nIt really is quite a simple invention.\r\n\r\nWhen the toilet is flushed, the water flows swiftly from the cistern into the bowl, carrying away the waste.\r\n\r\nYour toilet may have either a horizontal or vertical waste outlet.\r\n<blockquote>Unfortunately, these are both prone to occasional blockages.</blockquote>\r\n<h3>What to avoid</h3>\r\nYou will have heard this time and time again, but do not attempt to flush anything other than toilet paper.\r\n\r\nWet wipes, sanitary items or any other disposal items should not be put in the toilet, as they can cause severe blockages.\r\n\r\nShould none of the above tips work, it’s time to call in a professional.\r\n<h3>Read more:</h3>\r\n<ul>\r\n <li><a href=\"http://fisawards.co.uk/top-20-tips-sell-house\">Top 20 tips to sell your house</a></li>\r\n <li><a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Is your house difficult to sell? Here are 10 common problems</a></li>\r\n <li><a href=\"http://fisawards.co.uk/apply\">15 of the best tips for selling a house that has tenants!</a></li>\r\n <li><a href=\"http://fisawards.co.uk/shortlist\">How can you sell a residential leasehold property?</a></li>\r\n</ul>','Common plumbing issues and how to fix them','','publish','closed','closed','','common-plumbing-issues-fix','','','2020-08-20 15:40:10','2020-08-20 15:40:10','',0,'http://fisawards.co.uk/?page_id=313',0,'page','',0),(314,1,'2020-08-20 15:38:01','2020-08-20 15:38:01','<h2></h2>\r\n<h2><a href=\"/\">Save money on your plumbing</a></h2>\r\nYou might not immediately notice that your toilet is blocked.\r\n\r\nIf the water drains from the bowl slowly, a blockage might in the process of forming.\r\n\r\nIn other cases, the blockage might be instantaneous, caused by too much toilet roll or other waste. If, after flushing, the bowl has almost no water, there is likely to be an issue with ventilation in the pipes.\r\n\r\nFixing something on your own can be an overwhelming thought, but it doesn’t have to be that way.\r\n\r\nThere are lots of easy fixes you can do at home without needing to call out a plumber.\r\n<h3>How to unblock a badly blocked toilet</h3>\r\nHave you ever found yourself panicking while watching the water slowly rise in the toilet bowl?\r\n\r\nStay calm and assess the situation before making any radical decisions. First, you must identify the cause of the blockage.\r\n\r\nIn many cases, there is no need to call out a plumber and the problem can be fixed easily.\r\n\r\nThe quickest way is to find a <a href=\"https://thejandpgroup.co.uk/plumbers-london/toilet-plumbing-and-repair\">reputable company</a> known for efficient plumbing and heating services to save the day.\r\n<h3>Tips for fixing the toilet at home</h3>\r\nToilets are made up of a cistern connected to the water supply (behind the toilet) and the bowl.\r\n\r\nIt really is quite a simple invention.\r\n\r\nWhen the toilet is flushed, the water flows swiftly from the cistern into the bowl, carrying away the waste.\r\n\r\nYour toilet may have either a horizontal or vertical waste outlet.\r\n<blockquote>Unfortunately, these are both prone to occasional blockages.</blockquote>\r\n<h3>What to avoid</h3>\r\nYou will have heard this time and time again, but do not attempt to flush anything other than toilet paper.\r\n\r\nWet wipes, sanitary items or any other disposal items should not be put in the toilet, as they can cause severe blockages.\r\n\r\nShould none of the above tips work, it’s time to call in a professional.\r\n<h3>Read more:</h3>\r\n<ul>\r\n <li><a href=\"http://fisawards.co.uk/top-20-tips-sell-house\">Top 20 tips to sell your house</a></li>\r\n <li><a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Is your house difficult to sell? Here are 10 common problems</a></li>\r\n <li><a href=\"http://fisawards.co.uk/apply\">15 of the best tips for selling a house that has tenants!</a></li>\r\n <li><a href=\"http://fisawards.co.uk/shortlist\">How can you sell a residential leasehold property?</a></li>\r\n</ul>','Common plumbing issues and how to fix them','','inherit','closed','closed','','313-revision-v1','','','2020-08-20 15:38:01','2020-08-20 15:38:01','',313,'http://fisawards.co.uk/313-revision-v1',0,'revision','',0),(315,1,'2020-08-20 15:38:33','2020-08-20 15:38:33','','bath','','inherit','closed','closed','','bath','','','2020-08-20 15:38:45','2020-08-20 15:38:45','',313,'http://fisawards.co.uk/wp-content/uploads/2020/08/bath.jpeg',0,'attachment','image/jpeg',0),(316,1,'2020-08-20 15:38:55','2020-08-20 15:38:55','<a href=\"http://fisawards.co.uk/\"><img class=\"aligncenter size-full wp-image-315\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/08/bath.jpeg\" alt=\"Fixing something on your own can be an overwhelming thought, but it doesn’t have to be that way. There are lots of easy fixes you can do at home without needing to call out a plumber.\" width=\"1920\" height=\"1500\" /></a>\r\n<h2><a href=\"/\">Save money on your plumbing</a></h2>\r\nYou might not immediately notice that your toilet is blocked.\r\n\r\nIf the water drains from the bowl slowly, a blockage might in the process of forming.\r\n\r\nIn other cases, the blockage might be instantaneous, caused by too much toilet roll or other waste. If, after flushing, the bowl has almost no water, there is likely to be an issue with ventilation in the pipes.\r\n\r\nFixing something on your own can be an overwhelming thought, but it doesn’t have to be that way.\r\n\r\nThere are lots of easy fixes you can do at home without needing to call out a plumber.\r\n<h3>How to unblock a badly blocked toilet</h3>\r\nHave you ever found yourself panicking while watching the water slowly rise in the toilet bowl?\r\n\r\nStay calm and assess the situation before making any radical decisions. First, you must identify the cause of the blockage.\r\n\r\nIn many cases, there is no need to call out a plumber and the problem can be fixed easily.\r\n\r\nThe quickest way is to find a <a href=\"https://thejandpgroup.co.uk/plumbers-london/toilet-plumbing-and-repair\">reputable company</a> known for efficient plumbing and heating services to save the day.\r\n<h3>Tips for fixing the toilet at home</h3>\r\nToilets are made up of a cistern connected to the water supply (behind the toilet) and the bowl.\r\n\r\nIt really is quite a simple invention.\r\n\r\nWhen the toilet is flushed, the water flows swiftly from the cistern into the bowl, carrying away the waste.\r\n\r\nYour toilet may have either a horizontal or vertical waste outlet.\r\n<blockquote>Unfortunately, these are both prone to occasional blockages.</blockquote>\r\n<h3>What to avoid</h3>\r\nYou will have heard this time and time again, but do not attempt to flush anything other than toilet paper.\r\n\r\nWet wipes, sanitary items or any other disposal items should not be put in the toilet, as they can cause severe blockages.\r\n\r\nShould none of the above tips work, it’s time to call in a professional.\r\n<h3>Read more:</h3>\r\n<ul>\r\n <li><a href=\"http://fisawards.co.uk/top-20-tips-sell-house\">Top 20 tips to sell your house</a></li>\r\n <li><a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Is your house difficult to sell? Here are 10 common problems</a></li>\r\n <li><a href=\"http://fisawards.co.uk/apply\">15 of the best tips for selling a house that has tenants!</a></li>\r\n <li><a href=\"http://fisawards.co.uk/shortlist\">How can you sell a residential leasehold property?</a></li>\r\n</ul>','Common plumbing issues and how to fix them','','inherit','closed','closed','','313-revision-v1','','','2020-08-20 15:38:55','2020-08-20 15:38:55','',313,'http://fisawards.co.uk/313-revision-v1',0,'revision','',0),(317,1,'2020-08-20 15:39:03','2020-08-20 15:39:03','<a href=\"http://fisawards.co.uk/\"><img class=\"aligncenter size-full wp-image-315\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/08/bath.jpeg\" alt=\"Fixing something on your own can be an overwhelming thought, but it doesn’t have to be that way. There are lots of easy fixes you can do at home without needing to call out a plumber.\" width=\"1920\" height=\"1500\" /></a>\r\n<h2><a href=\"/\">Save money on your plumbing</a></h2>\r\n<blockquote>You might not immediately notice that your toilet is blocked.</blockquote>\r\nIf the water drains from the bowl slowly, a blockage might in the process of forming.\r\n\r\nIn other cases, the blockage might be instantaneous, caused by too much toilet roll or other waste. If, after flushing, the bowl has almost no water, there is likely to be an issue with ventilation in the pipes.\r\n\r\nFixing something on your own can be an overwhelming thought, but it doesn’t have to be that way.\r\n\r\nThere are lots of easy fixes you can do at home without needing to call out a plumber.\r\n<h3>How to unblock a badly blocked toilet</h3>\r\nHave you ever found yourself panicking while watching the water slowly rise in the toilet bowl?\r\n\r\nStay calm and assess the situation before making any radical decisions. First, you must identify the cause of the blockage.\r\n\r\nIn many cases, there is no need to call out a plumber and the problem can be fixed easily.\r\n\r\nThe quickest way is to find a <a href=\"https://thejandpgroup.co.uk/plumbers-london/toilet-plumbing-and-repair\">reputable company</a> known for efficient plumbing and heating services to save the day.\r\n<h3>Tips for fixing the toilet at home</h3>\r\nToilets are made up of a cistern connected to the water supply (behind the toilet) and the bowl.\r\n\r\nIt really is quite a simple invention.\r\n\r\nWhen the toilet is flushed, the water flows swiftly from the cistern into the bowl, carrying away the waste.\r\n\r\nYour toilet may have either a horizontal or vertical waste outlet.\r\n<blockquote>Unfortunately, these are both prone to occasional blockages.</blockquote>\r\n<h3>What to avoid</h3>\r\nYou will have heard this time and time again, but do not attempt to flush anything other than toilet paper.\r\n\r\nWet wipes, sanitary items or any other disposal items should not be put in the toilet, as they can cause severe blockages.\r\n\r\nShould none of the above tips work, it’s time to call in a professional.\r\n<h3>Read more:</h3>\r\n<ul>\r\n <li><a href=\"http://fisawards.co.uk/top-20-tips-sell-house\">Top 20 tips to sell your house</a></li>\r\n <li><a href=\"http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html\">Is your house difficult to sell? Here are 10 common problems</a></li>\r\n <li><a href=\"http://fisawards.co.uk/apply\">15 of the best tips for selling a house that has tenants!</a></li>\r\n <li><a href=\"http://fisawards.co.uk/shortlist\">How can you sell a residential leasehold property?</a></li>\r\n</ul>','Common plumbing issues and how to fix them','','inherit','closed','closed','','313-revision-v1','','','2020-08-20 15:39:03','2020-08-20 15:39:03','',313,'http://fisawards.co.uk/313-revision-v1',0,'revision','',0),(318,1,'2020-08-20 15:41:01','2020-08-20 15:41:01',' ','','','publish','closed','closed','','318','','','2020-08-20 15:41:01','2020-08-20 15:41:01','',0,'http://fisawards.co.uk/?p=318',13,'nav_menu_item','',0),(320,1,'2020-11-23 13:55:18','2020-11-23 13:55:18','<h2>Moving home can be stress free, just follow our tips</h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, book cases, fridge / freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labeled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent , solicitor, mortgage broker and your your new utility companies.\r\n\r\nMake up and “emergency “ box with tea, coffee, milk, sugar, toilet roll , something to eat and the all important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ) .Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3>Step 5 - Professional Cleaners</h3>\r\nWhen moving out, the last thing you want is to deep clean the property. It can be time-consuming to clean the house, whilst managing everything else such as the furniture and other essentials that you need. Especially because you will also have to clean and organise your new home which can be very draining.\r\n\r\n<em>Hiring Professional Cleaners would be a great help to you, saving you much more time and energy.</em>\r\n\r\n<strong>Similar services that you could consider are:</strong>\r\n<ul>\r\n <li>End of lease cleaning</li>\r\n <li>Bond Cleaning</li>\r\n <li>Carpet Cleaning</li>\r\n <li>Perth Domestic Cleaning</li>\r\n <li class=\"bottomleft\">Spring Cleaning</li>\r\n</ul>\r\nIf you live in Perth you may <a href=\"http://perthhomecleaners.com.au/our-services\" target=\"_blank\">want to hire professional cleaners.</a>\r\n<h3><strong>Step 6 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbors and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbors to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel, however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>Very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. Outlining the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero</li>\r\n <li>£125,001 to £250,000- 1%</li>\r\n <li>£250,001 to £500,000- 3%</li>\r\n <li>£500,001 to £1,000,000 - 4%</li>\r\n <li>£1,000,001 to £2,000,000 - 5%</li>\r\n <li>£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a <a href=\"http://www.pembrokeshirebuilders.com\">reputable contractor</a> that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditations. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage-Related Charges:</h3>\r\nFirst, check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally, you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts, however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at levelling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move, however, is making sure you start planning your move early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2020-11-23 13:55:18','2020-11-23 13:55:18','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(321,1,'2020-11-23 13:56:46','2020-11-23 13:56:46','<h2><a href=\"/\">Moving home can be stress-free, just follow our tips</a></h2>\r\nMoving house can be a stressful and complicated process. It\'s important to have the right people working on your behalf to make things go as smoothly as possible. The most important things to remember are packing and moving your items quickly and securely, and notifying all those who need to know of your change of address (Rightmove has a handy checklist <a href=\"http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf\">here</a>).\r\n\r\nThe <a href=\"http://www.royalmail.com/personal/receiving-mail/redirection\">Royal Mail</a> will also need to be contacted so that they can redirect your post. This is often overlooked and is important to remember as it helps guard again <a href=\"http://www.actionfraud.police.uk/fraud_protection/identity_fraud\">identity theft</a>.\r\n\r\nOnce those issues are taken care of, it\'s easy to work on the enjoyable aspects of moving into a new home and making it your own.\r\n<h2>Your Definitive Moving House Guide</h2>\r\n<h3><strong>Step 1 - Clean Out: Ready for the Move</strong></h3>\r\nA month or so before you begin <strong>moving home</strong> you need to get serious about de-cluttering. The process of removing unneeded, worn out and broken items from your home should start as soon as possible. The truth is, unless you\'re using them, you will probably forget many things as soon as they\'re discarded.\r\n\r\nIf you are not taking the bulky stuff with you (washing machine, bookcases, fridge/freezer, garden furniture etc..) because they are a little \"passed-it\", you will need to refer back to the terms of your sale contract. If they are not included in the contract then it\'s advisable to organize their disposal. It would be within the rights of your buyer to kick up a fuss and come after you for the cost of having these items taken away.\r\n\r\nCheck with your <a href=\"https://www.gov.uk/find-your-local-council\">Local Authority</a> for nearby recycling programs, scrap yards and charities when dealing with large, bulky items that need be disposed of.\r\n\r\n<strong>How about rubbish removal?</strong> Are there any pieces of furniture that you aren\'t taking with you and needs disposing of?\r\n\r\nA reputable waste collection company can gather all of your old furniture and will aim to recycle 100% of all waste collected.\r\n\r\nDon\'t you stress about the amount of time that it\'ll take to transfer everything to a recycling lot - the specialists will handle everything for you. Also, always check what their <strong>license number is</strong> and if they are a <strong>Registered Waste Carrier</strong>. For example, Rubbish Clearance Ltd\'s Registered Waste Carrier no. is CB/AE5143TV. <a href=\"http://rubbishclearance.me.uk/contact.php\" target=\"_blank\">Make your online booking</a>.\r\n<h3><strong>Step 2 - Choose a Reputable Removal Firm</strong></h3>\r\nWhen deciding on your professional removal company, protect your assets by working with members of the <a href=\"http://www.ngrs.co.uk/\" target=\"_blank\">National Guild of Removers and Storers</a> (NGRS) or the <a href=\"http://www.bar.co.uk/\" target=\"_blank\">British Association of Removers</a> (BAR). Ask family and friends to recommend firms they have used.\r\n\r\nMake sure you check out company policies, procedures, not to mention quotes and ensure that the removal firm has comprehensive insurance to cover your move.\r\n\r\nSome removal companies provide all packing materials and comprehensive insurance whilst others offer little more than a lorry.\r\n\r\nPrices for removals are using estimated by considering load and travel, plus the number of men needed to do the job - also remember that moving over a long distance can be costly, always shop around for the best deal.\r\n\r\nBook your removal team as far ahead as you can as this has the advantage that you\'re more likely to find an available spot on the day you\'re moving. Fridays and the last week of each month are the most common periods for removals - try moving mid-week and not only will it be easier to book, but the service might be cheaper due to lower demand. There is quite a nice article on the best time to move <a href=\"http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php\">here</a>.\r\n\r\nAdditionally ask for a written quote and ensure that this will be the final cost with no hidden extras.\r\n<h3><strong>Step 3 - Get Organised</strong></h3>\r\nWrite a checklist of everything you need to do and your timetable. Staying organized can actually cut down on time more than pre-packing boxes.\r\n\r\nMake maps of your new home and number and label the rooms on it. Draw out exactly where you want the beds and furniture to be and label these items to ensure everything is placed correctly. Label all your boxes with the room numbers to ensure they are placed in the correct rooms. Make sure the bedding for each room is clearly labelled along with wardrobe contents to make things easy.\r\n\r\nUnplug your freezer at the last moment and ensure that it is turned on as soon as it gets to your new home Keep all your personal paperwork with you ( take it in your own transport if possible ) and have to hand the contact details of your estate agent, solicitor, mortgage broker and your new utility companies.\r\n\r\nMakeup and “emergency “ box with tea, coffee, milk, sugar, toilet roll, something to eat and the all-important paracetamol and plasters.\r\n\r\nIf you decide to handle the removal on your own, <a href=\"http://www.wikihow.com/Pack-Your-Possessions-When-Moving\">pack your boxes sensibly</a>. Heavy items should be spread out over several small boxes. Secure a moving vehicle that can safely handle the size of your furniture. Get plenty of help and make sure you don\'t strain your muscles by rushing.\r\n<h3><strong>Step 4 - Let People Know You\'re Moving\r\n</strong></h3>\r\nYou\'ll have many responsibilities on moving day. The more you can handle in advance, the better.\r\n\r\nCancelling the newspaper and telephone service and switching electricity and gas over to your new home should be planned well in advance.\r\n\r\nMain priorities include notifying your bank, utility providers, existing lenders, tax authorities, <a href=\"http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/\">TV Licensing Agency</a>, <a href=\"https://www.gov.uk/change-name-address-v5c\">vehicle registration</a>, <a href=\"https://www.gov.uk/change-address-driving-licence\">drivers license</a> and mobile phone providers (as well as friends and family ). Get you mail re-directed to the new address.\r\n\r\nTake <a href=\"http://www.clacksweb.org.uk/housing/meterreadings/\">readings of the electricity and gas meters</a> when you leave your old home and do the same as soon as you reach your new home (good idea to take a dated photo of the meters to avoid any discrepancies).\r\n\r\nRemember that installing the internet in your new home could take a week or two; we\'d advise contacting your ISP around two weeks in advance. A smart-phone with access to hotspots and GPS can help you answer basic e-mails and use your banking applications whilst you wait on your new internet connection.\r\n\r\nThe website <a href=\"http://www.iammoving.com/\">www.iammoving.com</a> is an interesting service that aims to notify business contacts of your move. The service is free beyond switching charges by the providers themselves.\r\n<h3>Step 5 - Professional Cleaners</h3>\r\nWhen moving out, the last thing you want is to deep clean the property. It can be time-consuming to clean the house, whilst managing everything else such as the furniture and other essentials that you need. Especially because you will also have to clean and organise your new home which can be very draining.\r\n\r\n<em>Hiring Professional Cleaners would be a great help to you, saving you much more time and energy.</em>\r\n\r\n<strong>Similar services that you could consider are:</strong>\r\n<ul>\r\n <li>End of lease cleaning</li>\r\n <li>Bond Cleaning</li>\r\n <li>Carpet Cleaning</li>\r\n <li>Perth Domestic Cleaning</li>\r\n <li class=\"bottomleft\">Spring Cleaning</li>\r\n</ul>\r\nIf you live in Perth you may <a href=\"http://perthhomecleaners.com.au/our-services\" target=\"_blank\">want to hire professional cleaners.</a>\r\n<h3><strong>Step 6 - Moving-in Day\r\n</strong></h3>\r\nThe actual day that you move should be as easy-going as can be. Have a phone on you to communicate with movers, utility workers and the people in charge of your new residence. Have your emergency box to hand.\r\n\r\nBoth pets and children find moving home stressful and it is dangerous for them.\r\n<ul>\r\n <li><a href=\"http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf\">moving advice for dog owners</a></li>\r\n <li><a href=\"http://www.fabcats.org/owners/moving/info.html\">moving advice for cat owners</a></li>\r\n <li><a href=\"http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm\">moving advice for child owners</a></li>\r\n</ul>\r\nIf at all possible it’s best if they can be looked after on the day and come to their new home the following day when calm prevails!\r\n\r\nPickup the keys to your new home from the estate agent and drop yours off when completion is notified.\r\n\r\nIt\'s a sensible idea to have one person stay behind at the previous property to ensure that everything is clear and one to go to the next. This ensures that both sides are singing from the same page and that the job is being completed satisfactorily at either end. Send the individual with the old keys round to your estate agent to drop them off.\r\n\r\nOnce in your new home, go over the property and make note and photograph any problems.\r\nWhen the removal company arrives with your belongings be available for questions and supervision while still giving the professionals enough space to do their jobs. Look after them with snacks and refreshments. The short distraction won\'t cause them too waste much time, and the extra consideration will ensure they do the best possible job.\r\n\r\nCheck your furniture and boxes for signs of damage, and be sure to check thoroughly the detail of any removal paperwork before signing it. If you have reason to make a complaint, the industry does have a dedicated <a href=\"http://www.removalsombudsman.co.uk/making-a-complaint\">Ombudsman</a>.\r\n\r\nMake the beds and unpack kitchen and bathroom essentials on the day and ensure the TV is set up so you can have a bath and then put your feet up at the end of the day.\r\n\r\nUse newspapers, neighbours and local professionals to get a feel for the community. It helps everyone feel better about moving home when they wind up in a place where they <a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">f</a><a href=\"http://www.wikihow.com/Deal-With-Moving-Related-Loneliness\">eel they belong</a>.\r\n\r\nRemember to <a href=\"http://www.nhs.uk/Service-Search/GP/LocationSearch/4\">sign up with the Doctors Surgery</a> as soon as possible and send a card to your new neighbours to let them know your names. Then all you have left to arrange is your <a href=\"http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1\">house party </a>!\r\n<h2>The Best Moving Home Checklists On The Web</h2>\r\nOur checklist is pretty comprehensive we feel, however, below are our top picks from what else is out there in the blogosphere. Enjoy!\r\n\r\n<strong>Number 1:</strong> <a href=\"http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/\">John Lamb\'s Alternative Checklist</a>\r\n\r\n<em>Who knew moving house could also be hilarious! Thanks John, you totally made writing this post worthwhile.</em>\r\n\r\n<strong>Number 2: </strong><a href=\"http://www.rogersremovals.co.uk/packing_household.htm\">Packing Advice From Rogers Removals</a>\r\n\r\n<em>Not strictly a checklist but deserves a mention here because it\'s a really great resource on how to attack the nasty job of packing up all your belongings. It\'s part art, part science.</em>\r\n\r\n<strong>Number 3: </strong><a href=\"http://www.reallymoving.com/moving-advice/moving-checklist\">Stick it on the Fridge - ReallyMoving</a>\r\n\r\n<em>A very handy checklist you can download and stick on the fridge. For those that like to keep their admin simple. </em>\r\n<h2><strong>Moving Home Costs</strong></h2>\r\nEstimating the total cost of moving house is not easy. Outlining the major expenses and give you a rough idea of how much they are each going to cost:\r\n<h3><strong>Stamp Duty:</strong></h3>\r\nThe good old HMRC are going to take their bite. How much is calculated as a percentage of the property\'s purchase price:\r\n<ul>\r\n <li>Up to £125,000- Zero</li>\r\n <li>£125,001 to £250,000- 1%</li>\r\n <li>£250,001 to £500,000- 3%</li>\r\n <li>£500,001 to £1,000,000 - 4%</li>\r\n <li>£1,000,001 to £2,000,000 - 5%</li>\r\n <li>£2,000,001 plus - 7%</li>\r\n</ul>\r\n<strong>To find out more, visit the HMRC website.</strong>\r\n<h3><strong>Estate Agents Fees</strong>:</h3>\r\nThese guys charge on average 1-2%+VAT (of the property\'s sale price). If you use an online estate agent you could cut this cost down to around £400+VAT.\r\n<h3>Conveyancing Solicitors:</h3>\r\nFirst of all, make sure you use a \"fixed fee\" & \"no sale no fee\" conveyancer. That way, if the transaction fails to complete you will not be charged for anything other than the disbursements.\r\n\r\nIf you know where to look you should be able to secure the services of a decent property lawyer for around £450+VAT each way (sale & purchase). Conveyancing fees on leasehold property are a little more at around £550 - £650 each way.\r\n<h3>Building Survey:</h3>\r\nDepending on the age and the state of the property you are going to want either a \"Homebuyer Survey\" (this will give you a valuation of the property and an overview of any physical problems that can be seen to the eye) or a \"Full Structural Survey\" (this will dig a little deeper into any potentially expensive structural issues).\r\n\r\nExpect to pay around £300-£500+VAT for a \"Homebuyer Survey\" and £500-£1000+VAT for a \"Structural Survey\". The final amount will really depend on the size of the property being surveyed.\r\n\r\n<em>A surveyor will recognise any structural issues from the foundations all the way to the roof. </em>If you do require any roof repairs, we suggest using a <a href=\"http://www.pembrokeshirebuilders.com\">reputable contractor</a> that has worked on various types of buildings. This means they will be skilled enough to repair any damage that your roof has. We recommend checking their testimonials and accreditations. <a href=\"http://www.saffronwaldenroofingservices.co.uk/testimonials.php\" target=\"_blank\">See examples here</a>.\r\n<h3>Mortgage-Related Charges:</h3>\r\nFirst, check to see if there are any penalty charges for coming out of your current mortgage. Over and above that expect to pay an arrangement fee and valuation fee on any new mortgage at a rate of around £1000.\r\n<h3>Removals:</h3>\r\nFinally, you need to budget for \"da boys\" to come round and move all your stuff.\r\n\r\nFor an average 3 bed house expect to pay £500-£1000+VAT depending on how far the distance is between properties and the day of the week you decide to make your move.\r\n<h2><strong>Top 3 Moving Home Tips</strong></h2>\r\n<strong>Tip #1 </strong>- Don\'t forget about your various insurance policies (pets, car, medical etc). These are often overlooked but the number 1 killer is if you forget to <a href=\"https://www.moneyadviceservice.org.uk/en/categories/home-insurance\" target=\"_blank\">take care of building insurance</a>.\r\n\r\nYou should have a policy in place on your new house from the date you exchange contracts, however, depending on the wording, you may be able to get away with a policy that only starts on the completion date of your purchase.\r\n\r\n<strong>Tip #2</strong> - Saving some money by hiring a van and attempting to play \"removal man\" is always tempting. It\'s your call of course but I tell you this from bitter experience, once you\'ve tried it yourself you\'ll never do it again. Treat yourself and call in the professionals - I guarantee you will not regret it.\r\n\r\n<strong>Tip #3</strong> - One word - Bubble wrap! Get lots. When moving house it\'s your best friend. Your removal company will be happy to give you a big roll along with boxes of all sizes and tissue paper (your second best friend).\r\n\r\n<strong>Bonus Tip</strong> - Don\'t pack all your towels, cushions or blankets as they are brilliant at levelling off (and protecting the contents of) boxes that contain breakables.\r\n<h3>Conclusion</h3>\r\nMoving home is stressful. No one is denying that.\r\n\r\n<strong>The key to a smooth move, however, is making sure you start planning your move early.</strong>','Here\'s everything you need to know about moving home','','inherit','closed','closed','','24-revision-v1','','','2020-11-23 13:56:46','2020-11-23 13:56:46','',24,'http://fisawards.co.uk/24-revision-v1',0,'revision','',0),(322,1,'2020-12-10 11:14:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2020-12-10 11:14:44','0000-00-00 00:00:00','',0,'http://fisawards.co.uk/?p=322',0,'post','',0),(323,1,'2020-12-10 11:50:45','2020-12-10 11:50:45','<h2><a href=\"https://fisawards.co.uk/\"><img class=\"aligncenter wp-image-324\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/12/forest-ant-queen-55512_1920.jpg\" alt=\"ants in your home\" width=\"1599\" height=\"1199\" /></a></h2>\r\n<h2><a href=\"/\">How to prevent ant infestations in your property</a></h2>\r\n<h3>Why do ants come into homes?</h3>\r\n<blockquote>The odd ant coming into your home is natural. They can wiggle in through open doors or windows. The fact is, you are never going completely prevent bugs.</blockquote>\r\n<strong>Ant infestations however, do not happen all of a sudden, or haphazardly.</strong>\r\n\r\nThey are constantly looking for food, water and sustenance for their colonies. As a result, the most common places to find ants are in your bathroom or kitchen.\r\n\r\nAnts are particularly partial to sweet things, which is why they are most likely found in kitchens, looking for fruit, or anything they can find.\r\n\r\n<strong>But your kitchen will always have food in, so how can you prevent ant infestations?</strong>\r\n\r\nAnd what can you do if you get an infestation? We\'ve gathered together all those important tips and tricks for that can help you prevent, and get rid of ants in your home or office.\r\n<h3>How to prevent ants:</h3>\r\n<ul>\r\n <li><em>Clean up spills immediately to avoid stickiness or attracting ants.</em></li>\r\n <li><em>Keep ripe fruit in the fridge, and to avoid smells, keep your food in airtight containers. <a href=\"https://home.bt.com/lifestyle/house-home/cleaning/5-ways-to-keep-your-fridge-smelling-fresh-without-using-chemicals-11364179341091#:~:text=Sprinkle%20baking%20soda%20onto%20a,be%20changed%20every%20three%20months.\" target=\"_blank\">More</a>.</em></li>\r\n <li><em>Keep your bins clean, and regularly take them out. Avoid overflowing bins.</em></li>\r\n <li><em>If you have pets, wipe up any spills and clean their bowls regularly.</em></li>\r\n <li><em>If you have plants, make sure to check leaves and soil regularly for plant activity.</em></li>\r\n <li><em>Make it hard for ants to get in! Keep your home clean, fill any small gaps and crevices in floors, windows and foundations.</em></li>\r\n</ul>\r\n<h3>How about outside?</h3>\r\nPreventing ant infestations doesn\'t just begin inside, but there are also some outdoor measures you can take:\r\n<ul>\r\n <li><em>If you have a log pile, keep it as far away from your house as possible.</em></li>\r\n <li><em>Seal cracks in external walls.</em></li>\r\n <li><em>Check regularly for leaky pipes, <a href=\"https://www.confused.com/home-insurance/guides/damp-in-the-home\" target=\"_blank\">damp </a>or moisture.</em></li>\r\n</ul>\r\n<a href=\"https://www.thekitchn.com/10-ways-to-keep-those-outdoor-bugs-away-232063\" target=\"_blank\">Read more here.</a>\r\n<h3>What do I do if I have an infestation?</h3>\r\nDIY options can be temporarily effective, however it can often worsen the situation. Spraying toxic pesticides and repellent can be unhealthy for you and if you have any children.\r\n\r\nThe best way to get rid of an ant infestation is by contracting <a href=\"https://www.pestexterminatorshertfordshire.co.uk/insect-control/ant-pest-control\">professional exterminators</a> to ant infestation for you.\r\n\r\nMost pest control companies will use non-chemical and safe methods that are proven and long-lasting, so those pesky ants won\'t come crawling back for more! <a href=\"https://pestsamurai.com/ant-control-chemicals/\" target=\"_blank\">Read more</a> about the methods used.','Preventing ants in your home','','publish','closed','closed','','preventing-ants-at-home','','','2020-12-10 11:53:04','2020-12-10 11:53:04','',0,'http://fisawards.co.uk/?p=323',0,'post','',0),(324,1,'2020-12-10 11:27:43','2020-12-10 11:27:43','','ants in your home','','inherit','closed','closed','','forest-ant-queen-55512_1920','','','2020-12-10 11:27:54','2020-12-10 11:27:54','',323,'http://fisawards.co.uk/wp-content/uploads/2020/12/forest-ant-queen-55512_1920.jpg',0,'attachment','image/jpeg',0),(325,1,'2020-12-10 11:50:45','2020-12-10 11:50:45','<h2><a href=\"https://fisawards.co.uk/\"><img class=\"aligncenter wp-image-324\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/12/forest-ant-queen-55512_1920.jpg\" alt=\"ants in your home\" width=\"1599\" height=\"1199\" /></a></h2>\r\n<h2><a href=\"/\">How to prevent ant infestations in your property</a></h2>\r\n<h3>Why do ants come into homes?</h3>\r\n<blockquote>The odd ant coming into your home is natural. They can wiggle in through open doors or windows. The fact is, you are never going completely prevent bugs.</blockquote>\r\n<strong>Ant infestations however, do not happen all of a sudden, or haphazardly.</strong>\r\n\r\nThey are constantly looking for food, water and sustenance for their colonies. As a result, the most common places to find ants are in your bathroom or kitchen.\r\n\r\nAnts are particularly partial to sweet things, which is why they are most likely found in kitchens, looking for fruit, or anything they can find.\r\n\r\nBut your kitchen will always have food in, so how can you prevent ant infestations?\r\n\r\nAnd what can you do if you get an infestation? We\'ve gathered together all those important tips and tricks for that can help you prevent, and get rid of ants in your home or office.\r\n<h3>How to prevent ants:</h3>\r\n<ul>\r\n <li>Clean up spills immediately to avoid stickiness or attracting ants.</li>\r\n <li>Keep ripe fruit in the fridge, and to avoid smells, keep your food in airtight containers. <a href=\"https://home.bt.com/lifestyle/house-home/cleaning/5-ways-to-keep-your-fridge-smelling-fresh-without-using-chemicals-11364179341091#:~:text=Sprinkle%20baking%20soda%20onto%20a,be%20changed%20every%20three%20months.\" target=\"_blank\">More</a>.</li>\r\n <li>Keep your bins clean, and regularly take them out. Avoid overflowing bins.</li>\r\n <li>If you have pets, wipe up any spills and clean their bowls regularly.</li>\r\n <li>If you have plants, make sure to check leaves and soil regularly for plant activity.</li>\r\n <li>Make it hard for ants to get in! Keep your home clean, fill any small gaps and crevices in floors, windows and foundations.</li>\r\n</ul>\r\n<h3>How about outside?</h3>\r\nPreventing ant infestations doesn\'t just begin inside, but there are also some outdoor measures you can take:\r\n<ul>\r\n <li>If you have a log pile, keep it as far away from your house as possible.</li>\r\n <li>Seal cracks in external walls.</li>\r\n <li>Check regularly for leaky pipes, <a href=\"https://www.confused.com/home-insurance/guides/damp-in-the-home\" target=\"_blank\">damp </a>or moisture.</li>\r\n</ul>\r\n<a href=\"https://www.thekitchn.com/10-ways-to-keep-those-outdoor-bugs-away-232063\" target=\"_blank\">Read more here.</a>\r\n<h3>What do I do if I have an infestation?</h3>\r\nDIY options can be temporarily effective, however it can often worsen the situation. Spraying toxic pesticides and repellent can be unhealthy for you and if you have any children.\r\n\r\nThe best way to get rid of an ant infestation is by contracting <a href=\"https://www.pestexterminatorshertfordshire.co.uk/insect-control/ant-pest-control\">professional exterminators</a> to ant infestation for you. Most pest control companies will use non-chemical and safe methods that are proven and long-lasting, so those pesky ants won\'t come crawling back for more! <a href=\"https://pestsamurai.com/ant-control-chemicals/\" target=\"_blank\">Read more</a> about the methods used.','Preventing ants in your home','','inherit','closed','closed','','323-revision-v1','','','2020-12-10 11:50:45','2020-12-10 11:50:45','',323,'http://fisawards.co.uk/323-revision-v1',0,'revision','',0),(326,1,'2020-12-10 11:51:49','2020-12-10 11:51:49','<h2><a href=\"https://fisawards.co.uk/\"><img class=\"aligncenter wp-image-324\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/12/forest-ant-queen-55512_1920.jpg\" alt=\"ants in your home\" width=\"1599\" height=\"1199\" /></a></h2>\n<h2><a href=\"/\">How to prevent ant infestations in your property</a></h2>\n<h3>Why do ants come into homes?</h3>\n<blockquote>The odd ant coming into your home is natural. They can wiggle in through open doors or windows. The fact is, you are never going completely prevent bugs.</blockquote>\n<strong>Ant infestations however, do not happen all of a sudden, or haphazardly.</strong>\n\nThey are constantly looking for food, water and sustenance for their colonies. As a result, the most common places to find ants are in your bathroom or kitchen.\n\nAnts are particularly partial to sweet things, which is why they are most likely found in kitchens, looking for fruit, or anything they can find.\n\n<strong>But your kitchen will always have food in, so how can you prevent ant infestations?</strong>\n\nAnd what can you do if you get an infestation? We\'ve gathered together all those important tips and tricks for that can help you prevent, and get rid of ants in your home or office.\n<h3>How to prevent ants:</h3>\n<ul>\n <li><em>Clean up spills immediately to avoid stickiness or attracting ants.</em></li>\n <li><em>Keep ripe fruit in the fridge, and to avoid smells, keep your food in airtight containers. <a href=\"https://home.bt.com/lifestyle/house-home/cleaning/5-ways-to-keep-your-fridge-smelling-fresh-without-using-chemicals-11364179341091#:~:text=Sprinkle%20baking%20soda%20onto%20a,be%20changed%20every%20three%20months.\" target=\"_blank\">More</a>.</em></li>\n <li><em>Keep your bins clean, and regularly take them out. Avoid overflowing bins.</em></li>\n <li><em>If you have pets, wipe up any spills and clean their bowls regularly.</em></li>\n <li><em>If you have plants, make sure to check leaves and soil regularly for plant activity.</em></li>\n <li><em>Make it hard for ants to get in! Keep your home clean, fill any small gaps and crevices in floors, windows and foundations.</em></li>\n</ul>\n<h3>How about outside?</h3>\nPreventing ant infestations doesn\'t just begin inside, but there are also some outdoor measures you can take:\n<ul>\n <li><em>If you have a log pile, keep it as far away from your house as possible.</em></li>\n <li><em>Seal cracks in external walls.</em></li>\n <li><em>Check regularly for leaky pipes, <a href=\"https://www.confused.com/home-insurance/guides/damp-in-the-home\" target=\"_blank\">damp </a>or moisture.</em></li>\n</ul>\n<a href=\"https://www.thekitchn.com/10-ways-to-keep-those-outdoor-bugs-away-232063\" target=\"_blank\">Read more here.</a>\n<h3>What do I do if I have an infestation?</h3>\nDIY options can be temporarily effective, however it can often worsen the situation. Spraying toxic pesticides and repellent can be unhealthy for you and if you have any children.\n\nThe best way to get rid of an ant infestation is by contracting <a href=\"https://www.pestexterminatorshertfordshire.co.uk/insect-control/ant-pest-control\">professional exterminators</a> to ant infestation for you. Most pest control companies will use non-chemical and safe methods that are proven and long-lasting, so those pesky ants won\'t come crawling back for more! <a href=\"https://pestsamurai.com/ant-control-chemicals/\" target=\"_blank\">Read more</a> about the methods used.','Preventing ants in your home','','inherit','closed','closed','','323-autosave-v1','','','2020-12-10 11:51:49','2020-12-10 11:51:49','',323,'http://fisawards.co.uk/323-autosave-v1',0,'revision','',0),(327,1,'2020-12-10 11:51:58','2020-12-10 11:51:58','<h2><a href=\"https://fisawards.co.uk/\"><img class=\"aligncenter wp-image-324\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/12/forest-ant-queen-55512_1920.jpg\" alt=\"ants in your home\" width=\"1599\" height=\"1199\" /></a></h2>\r\n<h2><a href=\"/\">How to prevent ant infestations in your property</a></h2>\r\n<h3>Why do ants come into homes?</h3>\r\n<blockquote>The odd ant coming into your home is natural. They can wiggle in through open doors or windows. The fact is, you are never going completely prevent bugs.</blockquote>\r\n<strong>Ant infestations however, do not happen all of a sudden, or haphazardly.</strong>\r\n\r\nThey are constantly looking for food, water and sustenance for their colonies. As a result, the most common places to find ants are in your bathroom or kitchen.\r\n\r\nAnts are particularly partial to sweet things, which is why they are most likely found in kitchens, looking for fruit, or anything they can find.\r\n\r\n<strong>But your kitchen will always have food in, so how can you prevent ant infestations?</strong>\r\n\r\nAnd what can you do if you get an infestation? We\'ve gathered together all those important tips and tricks for that can help you prevent, and get rid of ants in your home or office.\r\n<h3>How to prevent ants:</h3>\r\n<ul>\r\n <li><em>Clean up spills immediately to avoid stickiness or attracting ants.</em></li>\r\n <li><em>Keep ripe fruit in the fridge, and to avoid smells, keep your food in airtight containers. <a href=\"https://home.bt.com/lifestyle/house-home/cleaning/5-ways-to-keep-your-fridge-smelling-fresh-without-using-chemicals-11364179341091#:~:text=Sprinkle%20baking%20soda%20onto%20a,be%20changed%20every%20three%20months.\" target=\"_blank\">More</a>.</em></li>\r\n <li><em>Keep your bins clean, and regularly take them out. Avoid overflowing bins.</em></li>\r\n <li><em>If you have pets, wipe up any spills and clean their bowls regularly.</em></li>\r\n <li><em>If you have plants, make sure to check leaves and soil regularly for plant activity.</em></li>\r\n <li><em>Make it hard for ants to get in! Keep your home clean, fill any small gaps and crevices in floors, windows and foundations.</em></li>\r\n</ul>\r\n<h3>How about outside?</h3>\r\nPreventing ant infestations doesn\'t just begin inside, but there are also some outdoor measures you can take:\r\n<ul>\r\n <li><em>If you have a log pile, keep it as far away from your house as possible.</em></li>\r\n <li><em>Seal cracks in external walls.</em></li>\r\n <li><em>Check regularly for leaky pipes, <a href=\"https://www.confused.com/home-insurance/guides/damp-in-the-home\" target=\"_blank\">damp </a>or moisture.</em></li>\r\n</ul>\r\n<a href=\"https://www.thekitchn.com/10-ways-to-keep-those-outdoor-bugs-away-232063\" target=\"_blank\">Read more here.</a>\r\n<h3>What do I do if I have an infestation?</h3>\r\nDIY options can be temporarily effective, however it can often worsen the situation. Spraying toxic pesticides and repellent can be unhealthy for you and if you have any children.\r\n\r\nThe best way to get rid of an ant infestation is by contracting <a href=\"https://www.pestexterminatorshertfordshire.co.uk/insect-control/ant-pest-control\">professional exterminators</a> to ant infestation for you. Most pest control companies will use non-chemical and safe methods that are proven and long-lasting, so those pesky ants won\'t come crawling back for more! <a href=\"https://pestsamurai.com/ant-control-chemicals/\" target=\"_blank\">Read more</a> about the methods used.','Preventing ants in your home','','inherit','closed','closed','','323-revision-v1','','','2020-12-10 11:51:58','2020-12-10 11:51:58','',323,'http://fisawards.co.uk/323-revision-v1',0,'revision','',0),(328,1,'2020-12-10 11:52:24','2020-12-10 11:52:24','<h2><a href=\"https://fisawards.co.uk/\"><img class=\"aligncenter wp-image-324\" src=\"http://fisawards.co.uk/wp-content/uploads/2020/12/forest-ant-queen-55512_1920.jpg\" alt=\"ants in your home\" width=\"1599\" height=\"1199\" /></a></h2>\r\n<h2><a href=\"/\">How to prevent ant infestations in your property</a></h2>\r\n<h3>Why do ants come into homes?</h3>\r\n<blockquote>The odd ant coming into your home is natural. They can wiggle in through open doors or windows. The fact is, you are never going completely prevent bugs.</blockquote>\r\n<strong>Ant infestations however, do not happen all of a sudden, or haphazardly.</strong>\r\n\r\nThey are constantly looking for food, water and sustenance for their colonies. As a result, the most common places to find ants are in your bathroom or kitchen.\r\n\r\nAnts are particularly partial to sweet things, which is why they are most likely found in kitchens, looking for fruit, or anything they can find.\r\n\r\n<strong>But your kitchen will always have food in, so how can you prevent ant infestations?</strong>\r\n\r\nAnd what can you do if you get an infestation? We\'ve gathered together all those important tips and tricks for that can help you prevent, and get rid of ants in your home or office.\r\n<h3>How to prevent ants:</h3>\r\n<ul>\r\n <li><em>Clean up spills immediately to avoid stickiness or attracting ants.</em></li>\r\n <li><em>Keep ripe fruit in the fridge, and to avoid smells, keep your food in airtight containers. <a href=\"https://home.bt.com/lifestyle/house-home/cleaning/5-ways-to-keep-your-fridge-smelling-fresh-without-using-chemicals-11364179341091#:~:text=Sprinkle%20baking%20soda%20onto%20a,be%20changed%20every%20three%20months.\" target=\"_blank\">More</a>.</em></li>\r\n <li><em>Keep your bins clean, and regularly take them out. Avoid overflowing bins.</em></li>\r\n <li><em>If you have pets, wipe up any spills and clean their bowls regularly.</em></li>\r\n <li><em>If you have plants, make sure to check leaves and soil regularly for plant activity.</em></li>\r\n <li><em>Make it hard for ants to get in! Keep your home clean, fill any small gaps and crevices in floors, windows and foundations.</em></li>\r\n</ul>\r\n<h3>How about outside?</h3>\r\nPreventing ant infestations doesn\'t just begin inside, but there are also some outdoor measures you can take:\r\n<ul>\r\n <li><em>If you have a log pile, keep it as far away from your house as possible.</em></li>\r\n <li><em>Seal cracks in external walls.</em></li>\r\n <li><em>Check regularly for leaky pipes, <a href=\"https://www.confused.com/home-insurance/guides/damp-in-the-home\" target=\"_blank\">damp </a>or moisture.</em></li>\r\n</ul>\r\n<a href=\"https://www.thekitchn.com/10-ways-to-keep-those-outdoor-bugs-away-232063\" target=\"_blank\">Read more here.</a>\r\n<h3>What do I do if I have an infestation?</h3>\r\nDIY options can be temporarily effective, however it can often worsen the situation. Spraying toxic pesticides and repellent can be unhealthy for you and if you have any children.\r\n\r\nThe best way to get rid of an ant infestation is by contracting <a href=\"https://www.pestexterminatorshertfordshire.co.uk/insect-control/ant-pest-control\">professional exterminators</a> to ant infestation for you.\r\n\r\nMost pest control companies will use non-chemical and safe methods that are proven and long-lasting, so those pesky ants won\'t come crawling back for more! <a href=\"https://pestsamurai.com/ant-control-chemicals/\" target=\"_blank\">Read more</a> about the methods used.','Preventing ants in your home','','inherit','closed','closed','','323-revision-v1','','','2020-12-10 11:52:24','2020-12-10 11:52:24','',323,'http://fisawards.co.uk/323-revision-v1',0,'revision','',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 (51,2,0),(52,2,0),(53,2,0),(54,2,0),(55,2,0),(61,1,0),(62,1,0),(63,1,0),(64,1,0),(65,1,0),(66,1,0),(67,4,0),(68,1,0),(69,1,0),(70,1,0),(71,1,0),(73,1,0),(77,1,0),(78,1,0),(79,1,0),(80,1,0),(81,1,0),(82,1,0),(171,2,0),(172,2,0),(178,2,0),(179,2,0),(221,3,0),(251,2,0),(263,2,0),(264,2,0),(265,2,0),(266,2,0),(267,2,0),(268,2,0),(269,2,0),(270,2,0),(271,2,0),(272,2,0),(273,2,0),(274,2,0),(275,2,0),(276,2,0),(279,2,0),(283,2,0),(289,1,0),(296,2,0),(301,2,0),(318,2,0),(323,4,0),(323,7,0),(323,8,0),(323,9,0),(323,10,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=11 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,18),(2,2,'nav_menu','',0,29),(3,3,'category','',0,1),(4,4,'category','',0,2),(6,6,'category','',0,0),(7,7,'category','',0,1),(8,8,'post_tag','',0,1),(9,9,'post_tag','',0,1),(10,10,'post_tag','',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=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'top','top',0),(3,'Selling Property','selling-property',0),(4,'Moving Home','moving-home',0),(6,'For Landlords','for-landlords',0),(7,'Home maintenance','home-maintenance',0),(8,'ant infestations','ant-infestations',0),(9,'home maintenance','home-maintenance',0),(10,'home advice','home-advice',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=35 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','fisawards'),(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,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wp_user_level','10'),(13,1,'dismissed_wp_pointers',''),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:1:{s:64:\"ea96825484c17647a174cb5e6c5fbf19d49e1d4848286f936ffec2b6e265a737\";a:4:{s:10:\"expiration\";i:1607771683;s:2:\"ip\";s:14:\"185.175.113.72\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36\";s:5:\"login\";i:1607598883;}}'),(16,1,'wp_dashboard_quick_press_last_post_id','322'),(17,1,'wp_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";s:130:\"Since you are new to Yoast SEO you can configure the <a href=\"http://fisawards.co.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:778:\"We\'ve noticed you\'ve been using Yoast SEO for some time now; we hope you love it! We\'d be thrilled if you could <a href=\"https://yoa.st/rate-yoast-seo?utm_content=5.7.1\">give us a 5 stars rating on WordPress.org</a>!\n\nIf you are experiencing issues, <a href=\"https://yoa.st/bugreport?utm_content=5.7.1\">please file a bug report</a> and we\'ll do our best to help you out.\n\nBy the way, did you know we also have a <a href=\'https://yoa.st/premium-notification?utm_content=5.7.1\'>Premium plugin</a>? It offers advanced features, like a redirect manager and support for multiple keywords. It also comes with 24/7 personal support.\n\n<a class=\"button\" href=\"https://fisawards.co.uk/wp-admin/?page=wpseo_dashboard&yoast_dismiss=upsell\">Please don\'t show me this notification anymore</a>\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:19:\"wpseo-upsell-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:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:2;a:2:{s:7:\"message\";s:166:\"Don\'t miss your crawl errors: <a href=\"https://fisawards.co.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:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}'),(18,1,'last_login_time','2018-03-15 16:10:32'),(19,1,'_yoast_wpseo_profile_updated','1487006623'),(20,1,'wpseo_title',''),(21,1,'wpseo_metadesc',''),(22,1,'wpseo_metakey',''),(23,1,'wpseo_excludeauthorsitemap',''),(24,1,'wpseo_content_analysis_disable',''),(25,1,'wpseo_keyword_analysis_disable',''),(26,1,'googleplus',''),(27,1,'twitter',''),(28,1,'facebook',''),(29,1,'wp_user-settings','libraryContent=browse&posts_list_mode=list&editor=tinymce&urlbutton=custom&imgsize=full&align=center'),(30,1,'wp_user-settings-time','1571673734'),(31,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\";}'),(32,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(33,1,'edit_post_per_page','22'),(34,1,'nav_menu_recently_edited','2');
/*!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,'admin','$P$Bw4DMyQlV2vk9YjyiIOAdJ9qGQBpqI.','fisawards','zoe.allen@vanillacircus.co.uk','','2017-01-18 10:02:47','',0,'fisawards');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfblockediplog`
--
DROP TABLE IF EXISTS `wp_wfblockediplog`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblockediplog` (
`IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`countryCode` varchar(2) NOT NULL,
`blockCount` int(10) unsigned NOT NULL DEFAULT 0,
`unixday` int(10) unsigned NOT NULL,
`blockType` varchar(50) NOT NULL DEFAULT 'generic',
PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfblockediplog`
--
LOCK TABLES `wp_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `wp_wfblockediplog` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfblocks7`
--
DROP TABLE IF EXISTS `wp_wfblocks7`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblocks7` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` int(10) unsigned NOT NULL DEFAULT 0,
`IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`blockedTime` bigint(20) NOT NULL,
`reason` varchar(255) NOT NULL,
`lastAttempt` int(10) unsigned DEFAULT 0,
`blockedHits` int(10) unsigned DEFAULT 0,
`expiration` bigint(20) unsigned NOT NULL DEFAULT 0,
`parameters` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `IP` (`IP`),
KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfblocks7`
--
LOCK TABLES `wp_wfblocks7` WRITE;
/*!40000 ALTER TABLE `wp_wfblocks7` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfblocks7` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfconfig`
--
DROP TABLE IF EXISTS `wp_wfconfig`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfconfig` (
`name` varchar(100) NOT NULL,
`val` longblob DEFAULT NULL,
`autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfconfig`
--
LOCK TABLES `wp_wfconfig` WRITE;
/*!40000 ALTER TABLE `wp_wfconfig` DISABLE KEYS */;
INSERT INTO `wp_wfconfig` VALUES ('actUpdateInterval','2','yes'),('addCacheComment','0','yes'),('advancedCommentScanning','1','yes'),('ajaxWatcherDisabled_admin','0','yes'),('ajaxWatcherDisabled_front','0','yes'),('alertEmails','','yes'),('alertOn_adminLogin','1','yes'),('alertOn_block','1','yes'),('alertOn_breachLogin','1','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_loginLockout','1','yes'),('alertOn_lostPasswdForm','1','yes'),('alertOn_nonAdminLogin','0','yes'),('alertOn_scanIssues','1','yes'),('alertOn_severityLevel','25','yes'),('alertOn_throttle','0','yes'),('alertOn_update','0','yes'),('alertOn_wafDeactivated','1','yes'),('alertOn_wordfenceDeactivated','1','yes'),('alert_maxHourly','0','yes'),('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('allowed404s6116Migration','1','yes'),('allowHTTPSCaching','0','yes'),('allowLegacy2FA','0','yes'),('allScansScheduled','a:0:{}','yes'),('apiKey','48bf382f277755e516fc36ce227fd1be2c15cc88bbafb8b0d1704b35245616b0f55641f2ad468058041244a076dec45831e319fdb4a3189f9daaa4b20f82bb4ca800b3baee30e99ce42e1422a2e12956','yes'),('autoBlockScanners','1','yes'),('autoUpdate','0','yes'),('autoUpdateAttempts','0','yes'),('bannedURLs','','yes'),('betaThreatDefenseFeed','0','yes'),('blockCustomText','','yes'),('blockedTime','300','yes'),('blocks702Migration','1','yes'),('cacheType','disabled','yes'),('cbl_action','block','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassViewURL','','yes'),('cbl_cookieVal','60d1bd023103b','yes'),('cbl_loggedInBlocked','','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked','1','yes'),('checkSpamIP','1','yes'),('config701Migration','1','yes'),('config720Migration','1','yes'),('debugOn','0','yes'),('deleteTablesOnDeact','0','yes'),('detectProxyNextCheck','1624962945','no'),('detectProxyNonce','93d04af7c362f24ccd8b5f030523dadf6225d96182758eb7f0537f6386d46504','no'),('detectProxyRecommendation','','no'),('diagnosticsWflogsRemovalHistory','[]','no'),('disableCodeExecutionUploads','0','yes'),('disableConfigCaching','0','yes'),('disableWAFIPBlocking','0','yes'),('dismissAutoPrependNotice','0','yes'),('displayAutomaticBlocks','1','yes'),('displayTopLevelBlocking','0','yes'),('displayTopLevelLiveTraffic','0','yes'),('displayTopLevelOptions','1','yes'),('email_summary_dashboard_widget_enabled','1','yes'),('email_summary_enabled','1','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),('email_summary_interval','weekly','yes'),('encKey','30227303ee8c192a','yes'),('fileContentsGSB6315Migration','1','yes'),('firewallEnabled','1','yes'),('geoIPVersionHash','e5ee69a4db1e318c2a1668873a8f5074012abb9852f5596fe3feaa8c07dac334','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('isPaid','','yes'),('keyType','free','yes'),('lastBlockAggregation','1624358144','yes'),('lastNotificationID','2','no'),('lastPermissionsTemplateCheck','0','yes'),('liveActivityPauseEnabled','1','yes'),('liveTrafficEnabled','0','yes'),('liveTraf_displayExpandedRecords','0','no'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignorePublishers','1','yes'),('liveTraf_ignoreUA','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_maxAge','30','yes'),('liveTraf_maxRows','2000','yes'),('loginSecurityEnabled','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_breachPasswds','admins','yes'),('loginSec_breachPasswds_enabled','1','yes'),('loginSec_countFailMins','240','yes'),('loginSec_disableApplicationPasswords','1','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_lockoutMins','240','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('loginSec_requireAdminTwoFactor','0','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_strongPasswds_enabled','1','yes'),('loginSec_userBlacklist','','yes'),('longEncKey','848f1244f7efb3d2313b5f97caf790ba23099905389c2c013a717cf64abfc8b4','yes'),('lowResourceScansEnabled','0','yes'),('manualScanType','onceDaily','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxExecutionTime','0','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxMem','256','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('migration636_email_summary_excluded_directories','1','no'),('needsNewTour_blocking','1','yes'),('needsNewTour_dashboard','1','yes'),('needsNewTour_firewall','1','yes'),('needsNewTour_livetraffic','1','yes'),('needsNewTour_loginsecurity','1','yes'),('needsNewTour_scan','1','yes'),('needsUpgradeTour_blocking','0','yes'),('needsUpgradeTour_dashboard','0','yes'),('needsUpgradeTour_firewall','0','yes'),('needsUpgradeTour_livetraffic','0','yes'),('needsUpgradeTour_loginsecurity','0','yes'),('needsUpgradeTour_scan','0','yes'),('neverBlockBG','neverBlockVerified','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_promotions','1','yes'),('notification_scanStatus','1','yes'),('notification_securityAlerts','1','yes'),('notification_updatesNeeded','1','yes'),('onboardingAttempt1','','no'),('onboardingAttempt2','','no'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial','0','yes'),('other_blockBadPOST','0','yes'),('other_bypassLitespeedNoabort','0','yes'),('other_hideWPVersion','0','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_scanComments','1','yes'),('other_scanOutside','0','yes'),('other_WFNet','1','yes'),('previousWflogsFileList','[]','no'),('scansEnabled_checkGSB','1','yes'),('scansEnabled_checkHowGetIPs','1','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_fileContentsGSB','1','yes'),('scansEnabled_geoipSupport','1','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_options','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_plugins','0','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('scansEnabled_suspiciousOptions','1','yes'),('scansEnabled_themes','0','yes'),('scansEnabled_wafStatus','1','yes'),('scansEnabled_wpscan_directoryListingEnabled','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','1','yes'),('scanType','standard','yes'),('scan_exclude','','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues','1000','yes'),('schedMode','auto','yes'),('schedStartHour','16','yes'),('scheduledScansEnabled','1','yes'),('serverDNS','1624621979;10800;199.59.242.153','yes'),('serverIP','1624358146;51.77.116.174','yes'),('showAdminBarMenu','1','yes'),('spamvertizeCheck','1','yes'),('ssl_verify','1','yes'),('startScansRemotely','0','yes'),('supportContent','{}','no'),('supportHash','','no'),('timeoffset_wf','0','yes'),('timeoffset_wf_updated','1624621982','yes'),('touppBypassNextCheck','0','yes'),('touppPromptNeeded','1','yes'),('vulnerabilities_plugin','a:8:{i:0;a:4:{s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:11:\"fromVersion\";s:5:\"4.4.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:4:{s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"fromVersion\";s:5:\"4.9.1\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:73:\"https://wpvulndb.com/vulnerabilities/7391118e-eef5-4ff8-a8ea-f6b65f442c63\";}i:2;a:4:{s:4:\"slug\";s:16:\"head-footer-code\";s:11:\"fromVersion\";s:5:\"1.0.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:12:\"spam-captcha\";s:11:\"fromVersion\";s:5:\"1.4.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:26:\"universal-google-analytics\";s:11:\"fromVersion\";s:5:\"1.3.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"7.5.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:9:\"wp-cerber\";s:11:\"fromVersion\";s:5:\"8.8.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:13:\"wordpress-seo\";s:11:\"fromVersion\";s:5:\"5.7.1\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:73:\"https://wpvulndb.com/vulnerabilities/41e0aa47-f2f6-4f64-a95e-ed5c884bfe9e\";}}','yes'),('vulnerabilities_theme','a:1:{i:0;a:4:{s:4:\"slug\";s:9:\"businessx\";s:9:\"toVersion\";s:7:\"1.0.5.7\";s:11:\"fromVersion\";s:7:\"1.0.5.5\";s:10:\"vulnerable\";b:0;}}','yes'),('wafAlertInterval','600','yes'),('wafAlertOnAttacks','1','yes'),('wafAlertThreshold','100','yes'),('wafAlertWhitelist','','yes'),('waf_status','learning-mode','yes'),('whitelisted','','yes'),('whitelistedServices','{}','yes'),('whitelistHash','','no'),('whitelistPresets','{}','no'),('wordfenceI18n','1','yes'),('wordpressPluginVersions','a:8:{s:35:\"all-in-one-wp-security-and-firewall\";s:5:\"4.4.8\";s:14:\"contact-form-7\";s:5:\"4.9.1\";s:16:\"head-footer-code\";s:5:\"1.0.7\";s:12:\"spam-captcha\";s:5:\"1.4.2\";s:26:\"universal-google-analytics\";s:5:\"1.3.7\";s:9:\"wordfence\";s:5:\"7.5.4\";s:9:\"wp-cerber\";s:5:\"8.8.5\";s:13:\"wordpress-seo\";s:5:\"5.7.1\";}','yes'),('wordpressThemeVersions','a:1:{s:9:\"businessx\";s:7:\"1.0.5.5\";}','yes'),('wordpressVersion','4.7.3','yes');
/*!40000 ALTER TABLE `wp_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfcrawlers`
--
DROP TABLE IF EXISTS `wp_wfcrawlers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfcrawlers` (
`IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`patternSig` binary(16) NOT NULL,
`status` char(8) NOT NULL,
`lastUpdate` int(10) unsigned NOT NULL,
`PTR` varchar(255) DEFAULT '',
PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfcrawlers`
--
LOCK TABLES `wp_wfcrawlers` WRITE;
/*!40000 ALTER TABLE `wp_wfcrawlers` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfcrawlers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wffilechanges`
--
DROP TABLE IF EXISTS `wp_wffilechanges`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilechanges` (
`filenameHash` char(64) NOT NULL,
`file` varchar(1000) NOT NULL,
`md5` char(32) NOT NULL,
PRIMARY KEY (`filenameHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wffilechanges`
--
LOCK TABLES `wp_wffilechanges` WRITE;
/*!40000 ALTER TABLE `wp_wffilechanges` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wffilechanges` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wffilemods`
--
DROP TABLE IF EXISTS `wp_wffilemods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilemods` (
`filenameMD5` binary(16) NOT NULL,
`filename` varchar(1000) NOT NULL,
`knownFile` tinyint(3) unsigned NOT NULL,
`oldMD5` binary(16) NOT NULL,
`newMD5` binary(16) NOT NULL,
`SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
`stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT 0,
`isSafeFile` varchar(1) NOT NULL DEFAULT '?',
PRIMARY KEY (`filenameMD5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wffilemods`
--
LOCK TABLES `wp_wffilemods` WRITE;
/*!40000 ALTER TABLE `wp_wffilemods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wffilemods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfhits`
--
DROP TABLE IF EXISTS `wp_wfhits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhits` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`attackLogTime` double(17,6) unsigned NOT NULL,
`ctime` double(17,6) unsigned NOT NULL,
`IP` binary(16) DEFAULT NULL,
`jsRun` tinyint(4) DEFAULT 0,
`statusCode` int(11) NOT NULL DEFAULT 200,
`isGoogle` tinyint(4) NOT NULL,
`userID` int(10) unsigned NOT NULL,
`newVisit` tinyint(3) unsigned NOT NULL,
`URL` text DEFAULT NULL,
`referer` text DEFAULT NULL,
`UA` text DEFAULT NULL,
`action` varchar(64) NOT NULL DEFAULT '',
`actionDescription` text DEFAULT NULL,
`actionData` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `k1` (`ctime`),
KEY `k2` (`IP`,`ctime`),
KEY `attackLogTime` (`attackLogTime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfhits`
--
LOCK TABLES `wp_wfhits` WRITE;
/*!40000 ALTER TABLE `wp_wfhits` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfhits` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfhoover`
--
DROP TABLE IF EXISTS `wp_wfhoover`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhoover` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`owner` text DEFAULT NULL,
`host` text DEFAULT NULL,
`path` text DEFAULT NULL,
`hostKey` varbinary(124) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `k2` (`hostKey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfhoover`
--
LOCK TABLES `wp_wfhoover` WRITE;
/*!40000 ALTER TABLE `wp_wfhoover` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfhoover` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfissues`
--
DROP TABLE IF EXISTS `wp_wfissues`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfissues` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`time` int(10) unsigned NOT NULL,
`lastUpdated` int(10) unsigned NOT NULL,
`status` varchar(10) NOT NULL,
`type` varchar(20) NOT NULL,
`severity` tinyint(3) unsigned NOT NULL,
`ignoreP` char(32) NOT NULL,
`ignoreC` char(32) NOT NULL,
`shortMsg` varchar(255) NOT NULL,
`longMsg` text DEFAULT NULL,
`data` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `lastUpdated` (`lastUpdated`),
KEY `status` (`status`),
KEY `ignoreP` (`ignoreP`),
KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfissues`
--
LOCK TABLES `wp_wfissues` WRITE;
/*!40000 ALTER TABLE `wp_wfissues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfissues` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfknownfilelist`
--
DROP TABLE IF EXISTS `wp_wfknownfilelist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfknownfilelist` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`path` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfknownfilelist`
--
LOCK TABLES `wp_wfknownfilelist` WRITE;
/*!40000 ALTER TABLE `wp_wfknownfilelist` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfknownfilelist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wflivetraffichuman`
--
DROP TABLE IF EXISTS `wp_wflivetraffichuman`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflivetraffichuman` (
`IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`expiration` int(10) unsigned NOT NULL,
PRIMARY KEY (`IP`,`identifier`),
KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wflivetraffichuman`
--
LOCK TABLES `wp_wflivetraffichuman` WRITE;
/*!40000 ALTER TABLE `wp_wflivetraffichuman` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wflivetraffichuman` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wflocs`
--
DROP TABLE IF EXISTS `wp_wflocs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflocs` (
`IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`ctime` int(10) unsigned NOT NULL,
`failed` tinyint(3) unsigned NOT NULL,
`city` varchar(255) DEFAULT '',
`region` varchar(255) DEFAULT '',
`countryName` varchar(255) DEFAULT '',
`countryCode` char(2) DEFAULT '',
`lat` float(10,7) DEFAULT 0.0000000,
`lon` float(10,7) DEFAULT 0.0000000,
PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wflocs`
--
LOCK TABLES `wp_wflocs` WRITE;
/*!40000 ALTER TABLE `wp_wflocs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wflocs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wflogins`
--
DROP TABLE IF EXISTS `wp_wflogins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflogins` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`hitID` int(11) DEFAULT NULL,
`ctime` double(17,6) unsigned NOT NULL,
`fail` tinyint(3) unsigned NOT NULL,
`action` varchar(40) NOT NULL,
`username` varchar(255) NOT NULL,
`userID` int(10) unsigned NOT NULL,
`IP` binary(16) DEFAULT NULL,
`UA` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `k1` (`IP`,`fail`),
KEY `hitID` (`hitID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wflogins`
--
LOCK TABLES `wp_wflogins` WRITE;
/*!40000 ALTER TABLE `wp_wflogins` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wflogins` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfls_2fa_secrets`
--
DROP TABLE IF EXISTS `wp_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_2fa_secrets` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`secret` tinyblob NOT NULL,
`recovery` blob NOT NULL,
`ctime` int(10) unsigned NOT NULL,
`vtime` int(10) unsigned NOT NULL,
`mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfls_2fa_secrets`
--
LOCK TABLES `wp_wfls_2fa_secrets` WRITE;
/*!40000 ALTER TABLE `wp_wfls_2fa_secrets` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfls_2fa_secrets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfls_settings`
--
DROP TABLE IF EXISTS `wp_wfls_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_settings` (
`name` varchar(191) NOT NULL DEFAULT '',
`value` longblob DEFAULT NULL,
`autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfls_settings`
--
LOCK TABLES `wp_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wp_wfls_settings` DISABLE KEYS */;
INSERT INTO `wp_wfls_settings` VALUES ('allow-xml-rpc','1','yes'),('captcha-stats','{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('global-notices','[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh','1624358139','yes'),('recaptcha-threshold','0.5','yes'),('remember-device','','yes'),('remember-device-duration','2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret','71a548815609722acb66fc7a24463213bf6cf176a4fb1656eb7936cfda879d21','yes'),('shared-symmetric-secret','813ad3271afa01c0d3b87d5021f9000b40cd268be6436a5ce8f43d3f40eb2520','yes'),('whitelisted','','yes'),('xmlrpc-enabled','1','yes');
/*!40000 ALTER TABLE `wp_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfnotifications`
--
DROP TABLE IF EXISTS `wp_wfnotifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfnotifications` (
`id` varchar(32) NOT NULL DEFAULT '',
`new` tinyint(3) unsigned NOT NULL DEFAULT 1,
`category` varchar(255) NOT NULL,
`priority` int(11) NOT NULL DEFAULT 1000,
`ctime` int(10) unsigned NOT NULL,
`html` text NOT NULL,
`links` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfnotifications`
--
LOCK TABLES `wp_wfnotifications` WRITE;
/*!40000 ALTER TABLE `wp_wfnotifications` DISABLE KEYS */;
INSERT INTO `wp_wfnotifications` VALUES ('site-AEAAAAA',1,'wfplugin_updates',502,1624621984,'<a href=\"http://fisawards.co.uk/wp-adminupdate-core.php\">Updates are available for WordPress (v5.7.2) and 1 theme</a>','[]');
/*!40000 ALTER TABLE `wp_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfpendingissues`
--
DROP TABLE IF EXISTS `wp_wfpendingissues`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfpendingissues` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`time` int(10) unsigned NOT NULL,
`lastUpdated` int(10) unsigned NOT NULL,
`status` varchar(10) NOT NULL,
`type` varchar(20) NOT NULL,
`severity` tinyint(3) unsigned NOT NULL,
`ignoreP` char(32) NOT NULL,
`ignoreC` char(32) NOT NULL,
`shortMsg` varchar(255) NOT NULL,
`longMsg` text DEFAULT NULL,
`data` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `lastUpdated` (`lastUpdated`),
KEY `status` (`status`),
KEY `ignoreP` (`ignoreP`),
KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfpendingissues`
--
LOCK TABLES `wp_wfpendingissues` WRITE;
/*!40000 ALTER TABLE `wp_wfpendingissues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfpendingissues` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfreversecache`
--
DROP TABLE IF EXISTS `wp_wfreversecache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfreversecache` (
`IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`host` varchar(255) NOT NULL,
`lastUpdate` int(10) unsigned NOT NULL,
PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfreversecache`
--
LOCK TABLES `wp_wfreversecache` WRITE;
/*!40000 ALTER TABLE `wp_wfreversecache` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfsnipcache`
--
DROP TABLE IF EXISTS `wp_wfsnipcache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfsnipcache` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`IP` varchar(45) NOT NULL DEFAULT '',
`expiration` timestamp NOT NULL DEFAULT current_timestamp(),
`body` varchar(255) NOT NULL DEFAULT '',
`count` int(10) unsigned NOT NULL DEFAULT 0,
`type` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `expiration` (`expiration`),
KEY `IP` (`IP`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfsnipcache`
--
LOCK TABLES `wp_wfsnipcache` WRITE;
/*!40000 ALTER TABLE `wp_wfsnipcache` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfsnipcache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wfstatus`
--
DROP TABLE IF EXISTS `wp_wfstatus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfstatus` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ctime` double(17,6) unsigned NOT NULL,
`level` tinyint(3) unsigned NOT NULL,
`type` char(5) NOT NULL,
`msg` varchar(1000) NOT NULL,
PRIMARY KEY (`id`),
KEY `k1` (`ctime`),
KEY `k2` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wfstatus`
--
LOCK TABLES `wp_wfstatus` WRITE;
/*!40000 ALTER TABLE `wp_wfstatus` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wftrafficrates`
--
DROP TABLE IF EXISTS `wp_wftrafficrates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wftrafficrates` (
`eMin` int(10) unsigned NOT NULL,
`IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
`hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
`hits` int(10) unsigned NOT NULL,
PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wftrafficrates`
--
LOCK TABLES `wp_wftrafficrates` WRITE;
/*!40000 ALTER TABLE `wp_wftrafficrates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wftrafficrates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_seo_links`
--
DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=864 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_seo_links`
--
LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (1,'http://axworthy.co.uk/our-top-10-tips-on-how-to-add-value-to-your-home',61,0,'external'),(2,'http://www.vizzihome.co.uk/property_market_share.php',61,0,'external'),(3,'http://alldriroofing.co.uk/',77,0,'external'),(4,'http://www.youtube.com/watch?v=B-TNB19MVu4&feature=relmfu',77,0,'external'),(9,'http://www.wearespartacus.org.uk/top-10-tips-to-getting-to-know-house-surveys',79,0,'external'),(10,'http://www.opusmove.co.uk/property-selling-questions-answers-york.aspx',79,0,'external'),(11,'http://www.planning-permission.org.uk/new-build',79,0,'external'),(12,'https://www.hunterfinance.co.uk/property-development-finance/lending-process',79,0,'external'),(41,'http://aje.org.uk/information-for-tenants',62,0,'external'),(42,'http://berkshire.me.uk/house-and-flats/index.php',62,0,'external'),(43,'http://www.jksl.com/private-gardens-and-mortgages.htm',62,0,'external'),(44,'http://fisawards.co.uk/what-to-do-if-a-buyers-valuation-or-structural-survey-highlights-problems-with-your-house-html',62,79,'internal'),(45,'http://tradingstandards.org.uk/',62,0,'external'),(46,'http://fisawards.co.uk/what-to-do-if-your-house-will-not-sell-html',62,80,'internal'),(47,'http://padlife.co.uk/interior-design.html',62,0,'external'),(48,'http://fisawards.co.uk/contact',62,173,'internal'),(49,'/',62,0,'internal'),(199,'http://www.oft.gov.uk/about-the-oft/legal-powers/legal/estate-agents-act/clients-information#.UtAOZPuKbk8',23,0,'external'),(200,'https://muangthai-realestate.com/',23,0,'external'),(201,'http://www.ukbusinessforums.co.uk/forums/showthread.php?t=61908',23,0,'external'),(202,'https://www.rubberroofingdirect.co.uk/classicbond-epdm-calculator/step1',23,0,'external'),(203,'http://fisawards.co.uk/contact',23,173,'internal'),(344,'https://www.telegraph.co.uk/money/consumer-affairs/top-five-comparison-websites-find-best-deal/',221,0,'external'),(345,'https://www.onthemarket.com/content/a-guide-to-selling-at-the-right-time/',221,0,'external'),(346,'https://www.hunterfinance.co.uk/property-development-finance/who-we-lend-to',221,0,'external'),(347,'https://www.telegraph.co.uk/property/online-estate-agent/does-garden-add-value-to-home/',221,0,'external'),(348,'http://www.dailymail.co.uk/property/article-4545496/How-beat-competitors-buying-home.html',221,0,'external'),(349,'https://www.barrandstandley.com.au/',221,0,'external'),(350,'https://www.thinkglink.com/2014/05/06/how-to-find-the-best-temperature-for-your-home-during-an-open-house/',221,0,'external'),(351,'http://mxalliance.co.uk/',221,0,'external'),(352,'http://centralweddings.co.uk/',221,0,'external'),(353,'http://wildkids.org.uk/',221,0,'external'),(354,'http://old-computer-mags.co.uk/',221,0,'external'),(355,'http://waxandwane.co.uk/',221,0,'external'),(356,'http://asdlighting.co.uk/',221,0,'external'),(357,'http://trendsettertiles.co.uk/',221,0,'external'),(358,'http://jennylloyd.co.uk/',221,0,'external'),(374,'http://www.facebook.com/pages/Name-And-Shame-Dodgy-Builders-Workmen-In-All-Trades-Here/156265024392212',68,0,'external'),(375,'http://www.msboilerrepairsnorwich.co.uk/',68,0,'external'),(376,'http://www.gasway.co.uk/',68,0,'external'),(377,'https://www.hgsplumbingandheating.co.uk/',68,0,'external'),(378,'https://www.allstarsystems.co.uk/',68,0,'external'),(379,'https://www.rockwater.co.uk/',68,0,'external'),(380,'https://www.heatingengineernorwich.co.uk/',68,0,'external'),(381,'http://www.custanceandson.co.uk/',68,0,'external'),(493,'https://www.market-inspector.co.uk/blog/2017/01/10-basic-office-equipment-for-starting-a-business',247,0,'external'),(494,'https://erreka-automaticdoors.uk.com/case-studies/offices-bristol-automatic-doors/',247,0,'external'),(495,'https://www.searchofficespace.com/blog/business-advice/what-services-are-included-in-a-serviced-office/',247,0,'external'),(496,'http://www.voc-ltd.co.uk/office-cleaners-crawley.htm',247,0,'external'),(497,'https://www.freeofficefinder.com/article/10-ways-renting-a-serviced-office-can-save-you-money',247,0,'external'),(502,'https://www.ktmollerremovals.com.au/the-procedure/',280,0,'external'),(503,'http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html',280,61,'internal'),(504,'https://www.ktmollerremovals.com.au/the-procedure/',280,0,'external'),(505,'https://blog.booker.com/the-booker-blog/5-reasons-reviews-are-important-for-your-business-2',280,0,'external'),(506,'http://fisawards.co.uk/who-to-inform-when-moving-house-html',280,82,'internal'),(507,'http://fisawards.co.uk/contact',67,173,'internal'),(508,'http://www.rubbishclearancekent.me.uk/house-clearances',67,0,'external'),(509,'https://thatcarpetguy.com.au/services/vacate-cleans/',67,0,'external'),(510,'http://decenthomesstandard.co.uk/Occasional_Chairs.htm',67,0,'external'),(511,'http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html',67,62,'internal'),(521,'http://fisawards.co.uk/choosing-your-estate-agent-wisely-is-always-a-good-idea-html',80,61,'internal'),(522,'http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html',80,62,'internal'),(523,'http://www.propertyinvestmentproject.co.uk/blog/finding-tenant-guide-for-landlords/',80,0,'external'),(524,'http://www.telegraph.co.uk/property/propertynews/10539233/House-prices-what-to-expect-in-2014.html',80,0,'external'),(525,'https://www.no1cleaningsolutions.co.nz/services/residential-domestic-cleaning/',80,0,'external'),(526,'http://electrician.me.uk/',80,0,'external'),(527,'http://boschkitchens.co.uk/',80,0,'external'),(528,'/',80,0,'internal'),(529,'http://fisawards.co.uk/contact',80,173,'internal'),(580,'https://network-data-cabling.co.uk/data-cabling-installation/',289,0,'external'),(581,'https://medlininc.com/how-to-future-proof-your-it-network-cat6-cables/',289,0,'external'),(582,'https://www.getkisi.com/guides/off-management-checklist-how-to-plan-an-office-expansion',289,0,'external'),(583,'/',289,0,'internal'),(663,'/',297,0,'internal'),(664,'https://www.bustle.com/articles/51884-9-reasons-to-take-breaks-at-work-from-improving-memory-to-boosting-creativity',297,0,'external'),(665,'/',297,0,'internal'),(666,'https://medium.com/swlh/you-need-to-give-yourself-more-realistic-deadlines-c22cd862c55c',297,0,'external'),(667,'/',297,0,'internal'),(668,'/',297,0,'internal'),(669,'https://www.mashmellow.co/facilities/',297,0,'external'),(670,'/',297,0,'internal'),(700,'http://fisawards.co.uk/',313,0,'internal'),(701,'/',313,0,'internal'),(702,'https://thejandpgroup.co.uk/plumbers-london/toilet-plumbing-and-repair',313,0,'external'),(703,'http://fisawards.co.uk/top-20-tips-sell-house',313,221,'internal'),(704,'http://fisawards.co.uk/common-problems-that-can-make-your-house-difficult-to-sell-html',313,62,'internal'),(705,'http://fisawards.co.uk/apply',313,25,'internal'),(706,'http://fisawards.co.uk/shortlist',313,26,'internal'),(765,'/',24,0,'internal'),(766,'http://www.rightmove.co.uk/ps/pdf/p/propertyguide/SELL_CONTACTS.pdf',24,0,'external'),(767,'http://www.royalmail.com/personal/receiving-mail/redirection',24,0,'external'),(768,'http://www.actionfraud.police.uk/fraud_protection/identity_fraud',24,0,'external'),(769,'https://www.gov.uk/find-your-local-council',24,0,'external'),(770,'http://rubbishclearance.me.uk/contact.php',24,0,'external'),(771,'http://www.ngrs.co.uk/',24,0,'external'),(772,'http://www.bar.co.uk/',24,0,'external'),(773,'http://savingmoney.thefuntimesguide.com/2011/04/best_day_to_move.php',24,0,'external'),(774,'http://www.wikihow.com/Pack-Your-Possessions-When-Moving',24,0,'external'),(775,'http://www.tvlicensing.co.uk/check-if-you-need-one/for-your-home/moving-home-aud23/',24,0,'external'),(776,'https://www.gov.uk/change-name-address-v5c',24,0,'external'),(777,'https://www.gov.uk/change-address-driving-licence',24,0,'external'),(778,'http://www.clacksweb.org.uk/housing/meterreadings/',24,0,'external'),(779,'http://www.iammoving.com/',24,0,'external'),(780,'http://perthhomecleaners.com.au/our-services',24,0,'external'),(781,'http://www.dogstrust.org.uk/az/factsheetsanddownloads/factsheetmovinghouse09.pdf',24,0,'external'),(782,'http://www.fabcats.org/owners/moving/info.html',24,0,'external'),(783,'http://www.netdoctor.co.uk/health_advice/facts/movinghouse.htm',24,0,'external'),(784,'http://www.removalsombudsman.co.uk/making-a-complaint',24,0,'external'),(785,'http://www.wikihow.com/Deal-With-Moving-Related-Loneliness',24,0,'external'),(786,'http://www.wikihow.com/Deal-With-Moving-Related-Loneliness',24,0,'external'),(787,'http://www.nhs.uk/Service-Search/GP/LocationSearch/4',24,0,'external'),(788,'http://www.redbookmag.com/recipes-home/tips-advice/party-ideas-for-adults-2012-punch-recipe#slide-1',24,0,'external'),(789,'http://www.housemovechecklist.co.uk/2010/12/08/alternative-moving-house-checklist/',24,0,'external'),(790,'http://www.rogersremovals.co.uk/packing_household.htm',24,0,'external'),(791,'http://www.reallymoving.com/moving-advice/moving-checklist',24,0,'external'),(792,'http://www.pembrokeshirebuilders.com',24,0,'external'),(793,'http://www.saffronwaldenroofingservices.co.uk/testimonials.php',24,0,'external'),(794,'https://www.moneyadviceservice.org.uk/en/categories/home-insurance',24,0,'external'),(857,'https://fisawards.co.uk/',323,0,'internal'),(858,'/',323,0,'internal'),(859,'https://home.bt.com/lifestyle/house-home/cleaning/5-ways-to-keep-your-fridge-smelling-fresh-without-using-chemicals-11364179341091#:~:text=Sprinkle%20baking%20soda%20onto%20a,be%20changed%20every%20three%20months.',323,0,'external'),(860,'https://www.confused.com/home-insurance/guides/damp-in-the-home',323,0,'external'),(861,'https://www.thekitchn.com/10-ways-to-keep-those-outdoor-bugs-away-232063',323,0,'external'),(862,'https://www.pestexterminatorshertfordshire.co.uk/insect-control/ant-pest-control',323,0,'external'),(863,'https://pestsamurai.com/ant-control-chemicals/',323,0,'external');
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_yoast_seo_meta`
--
DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_yoast_seo_meta`
--
LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (23,1,0),(24,1,0),(25,NULL,1),(26,NULL,1),(56,0,0),(57,0,0),(58,0,0),(59,0,0),(61,0,2),(62,4,3),(67,2,0),(68,0,0),(72,0,0),(74,0,0),(75,0,0),(76,0,0),(77,0,0),(79,0,1),(80,4,1),(82,NULL,1),(83,0,0),(84,0,0),(85,0,0),(86,0,0),(87,0,0),(91,0,0),(92,0,0),(169,0,0),(170,0,0),(173,NULL,4),(177,0,0),(180,0,0),(181,0,0),(189,0,0),(192,0,0),(199,0,0),(200,0,0),(201,0,0),(205,0,0),(209,0,0),(215,0,0),(220,0,0),(221,0,1),(223,0,0),(242,0,0),(246,0,0),(247,0,0),(250,0,0),(252,0,0),(259,0,0),(262,0,0),(277,0,0),(280,2,0),(285,0,0),(287,0,0),(288,0,0),(289,1,0),(295,0,0),(297,5,0),(300,0,0),(302,0,0),(312,0,0),(313,6,0),(319,0,0),(322,0,0),(323,2,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` 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:06:52